diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a1e3c60aa3..972cd492a3 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -2,7 +2,7 @@ This issue tracker is only for technical issues related to Ravencoin. -General Ravencoin questions and/or support requests and are best directed to the [Ravencoin Discord](https://discord.gg/jn6uhur)). +General Ravencoin questions and/or support requests and are best directed to the [Ravencoin Discord](https://discord.gg/GwtXdyc). For reporting security issues, please direct message one of the core developers in discord. diff --git a/.github/workflows/build-raven.yml b/.github/workflows/build-raven.yml index 35a1c3da84..53d55e1b0c 100644 --- a/.github/workflows/build-raven.yml +++ b/.github/workflows/build-raven.yml @@ -9,23 +9,49 @@ on: - master - develop - release* - paths-ignore: - - 'binaries/**' - - 'community/**' - - 'contrib/**' - - 'doc/**' - - 'roadmap/**' - - 'share/**' - - 'static-builds/**' - - 'whitepaper/**' - - '*.md' +# paths-ignore: +# - 'binaries/**' +# - 'community/**' +# - 'contrib/**' +# - 'doc/**' +# - 'roadmap/**' +# - 'share/**' +# - 'static-builds/**' +# - 'whitepaper/**' +# - '*.md' env: SCRIPTS: ${{ GITHUB.WORKSPACE }}/.github/scripts jobs: - build: + check-jobs: + # continue-on-error: true # Uncomment once integration is finished + runs-on: ubuntu-18.04 + # Map a step output to a job output + outputs: + should_skip: ${{ steps.skip_check.outputs.should_skip }} + steps: + - id: skip_check + uses: fkirc/skip-duplicate-actions@master + with: + # All of these options are optional, so you can remove them if you are happy with the defaults + concurrent_skipping: 'never' + skip_after_successful_duplicate: 'true' + paths_ignore: '[ + "binaries/**", + "community/**", + "contrib/**", + "doc/**", + "roadmap/**", + "share/**", + "static-builds/**", + "whitepaper/**", + "**/*.md" + ]' + do_not_skip: '["workflow_dispatch", "schedule"]' + build: + needs: check-jobs runs-on: ubuntu-18.04 strategy: matrix: @@ -33,13 +59,16 @@ jobs: # OS: [ 'windows', 'linux', 'linux-disable-wallet', 'osx', 'arm32v7', 'arm32v7-disable-wallet' ] steps: - - name: Checkout the Code + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Checkout the Code uses: actions/checkout@v1 - - name: Install Build Tools + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Install Build Tools run: sudo ${SCRIPTS}/00-install-deps.sh ${{ MATRIX.OS }} - - name: Cache dependencies. + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Cache dependencies. uses: actions/cache@v2 with: path: | @@ -48,28 +77,36 @@ jobs: ${{ GITHUB.WORKSPACE }}/depends/work key: ${{ MATRIX.OS }} - - name: Build dependencies. + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Build dependencies. run: ${SCRIPTS}/02-copy-build-dependencies.sh ${{ MATRIX.OS }} ${{ GITHUB.WORKSPACE }} ${{ GITHUB.BASE_REF }} ${{ GITHUB.REF }} - - name: Add Dependencies to the System PATH + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Add Dependencies to the System PATH run: ${SCRIPTS}/03-export-path.sh ${{ MATRIX.OS }} ${{ GITHUB.WORKSPACE }} - - name: Build Config + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Build Config run: cd ${{ GITHUB.WORKSPACE }} && ./autogen.sh - - name: Configure Build + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Configure Build run: ${SCRIPTS}/04-configure-build.sh ${{ MATRIX.OS }} ${{ GITHUB.WORKSPACE }} - - name: Build Raven + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Build Raven run: make -j2 - - name: Check Binary Security + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Check Binary Security run: ${SCRIPTS}/05-binary-checks.sh ${{ MATRIX.OS }} ${{ GITHUB.WORKSPACE }} - - name: Package Up the Build + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Package Up the Build run: ${SCRIPTS}/06-package.sh ${{ MATRIX.OS }} ${{ GITHUB.WORKSPACE }} ${{ GITHUB.BASE_REF }} ${{ GITHUB.REF }} - - name: Upload Artifacts to Job + - if: ${{ needs.check-jobs.outputs.should_skip != 'true' }} + name: Upload Artifacts to Job uses: actions/upload-artifact@master with: name: ${{ MATRIX.OS }} diff --git a/.tx/config b/.tx/config index 53365b7f21..aac8e07ce4 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,10 @@ [main] host = https://www.transifex.com -[raven.qt-translation-014x] +[qt-translation.raven-en-ts] file_filter = src/qt/locale/raven_.ts +minimum_perc = 0 source_file = src/qt/locale/raven_en.ts source_lang = en +type = QT + diff --git a/build-aux/m4/ax_cxx_compile_stdcxx.m4 b/build-aux/m4/ax_cxx_compile_stdcxx.m4 index f147cee3b1..43087b2e68 100644 --- a/build-aux/m4/ax_cxx_compile_stdcxx.m4 +++ b/build-aux/m4/ax_cxx_compile_stdcxx.m4 @@ -1,5 +1,5 @@ # =========================================================================== -# http://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html +# https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html # =========================================================================== # # SYNOPSIS @@ -33,21 +33,23 @@ # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov # Copyright (c) 2015 Paul Norman # Copyright (c) 2015 Moritz Klammler +# Copyright (c) 2016, 2018 Krzesimir Nowak +# Copyright (c) 2019 Enji Cooper # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. -#serial 4 +#serial 11 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro dnl (serial version number 13). AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl - m4_if([$1], [11], [], - [$1], [14], [], - [$1], [17], [m4_fatal([support for C++17 not yet implemented in AX_CXX_COMPILE_STDCXX])], + m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"], + [$1], [14], [ax_cxx_compile_alternatives="14 1y"], + [$1], [17], [ax_cxx_compile_alternatives="17 1z"], [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl m4_if([$2], [], [], [$2], [ext], [], @@ -57,26 +59,13 @@ AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true], [$3], [optional], [ax_cxx_compile_cxx$1_required=false], [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])]) - m4_if([$4], [], [ax_cxx_compile_cxx$1_try_default=true], - [$4], [default], [ax_cxx_compile_cxx$1_try_default=true], - [$4], [nodefault], [ax_cxx_compile_cxx$1_try_default=false], - [m4_fatal([invalid fourth argument `$4' to AX_CXX_COMPILE_STDCXX])]) AC_LANG_PUSH([C++])dnl ac_success=no - m4_if([$4], [nodefault], [], [dnl - AC_CACHE_CHECK(whether $CXX supports C++$1 features by default, - ax_cv_cxx_compile_cxx$1, - [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], - [ax_cv_cxx_compile_cxx$1=yes], - [ax_cv_cxx_compile_cxx$1=no])]) - if test x$ax_cv_cxx_compile_cxx$1 = xyes; then - ac_success=yes - fi]) - m4_if([$2], [noext], [], [dnl if test x$ac_success = xno; then - for switch in -std=gnu++$1 -std=gnu++0x; do + for alternative in ${ax_cxx_compile_alternatives}; do + switch="-std=gnu++${alternative}" cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, @@ -102,22 +91,27 @@ AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl dnl HP's aCC needs +std=c++11 according to: dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf dnl Cray's crayCC needs "-h std=c++11" - for switch in -std=c++$1 -std=c++0x +std=c++$1 "-h std=c++$1"; do - cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) - AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, - $cachevar, - [ac_save_CXX="$CXX" - CXX="$CXX $switch" - AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], - [eval $cachevar=yes], - [eval $cachevar=no]) - CXX="$ac_save_CXX"]) - if eval test x\$$cachevar = xyes; then - CXX="$CXX $switch" - if test -n "$CXXCPP" ; then - CXXCPP="$CXXCPP $switch" + for alternative in ${ax_cxx_compile_alternatives}; do + for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do + cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) + AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, + $cachevar, + [ac_save_CXX="$CXX" + CXX="$CXX $switch" + AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], + [eval $cachevar=yes], + [eval $cachevar=no]) + CXX="$ac_save_CXX"]) + if eval test x\$$cachevar = xyes; then + CXX="$CXX $switch" + if test -n "$CXXCPP" ; then + CXXCPP="$CXXCPP $switch" + fi + ac_success=yes + break fi - ac_success=yes + done + if test x$ac_success = xyes; then break fi done @@ -154,6 +148,11 @@ m4_define([_AX_CXX_COMPILE_STDCXX_testbody_14], _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 ) +m4_define([_AX_CXX_COMPILE_STDCXX_testbody_17], + _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 + _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 + _AX_CXX_COMPILE_STDCXX_testbody_new_in_17 +) dnl Tests for new features in C++11 @@ -191,11 +190,13 @@ namespace cxx11 struct Base { + virtual ~Base() {} virtual void f() {} }; struct Derived : public Base { + virtual ~Derived() override {} virtual void f() override {} }; @@ -524,7 +525,7 @@ namespace cxx14 } - namespace test_digit_seperators + namespace test_digit_separators { constexpr auto ten_million = 100'000'000; @@ -566,3 +567,385 @@ namespace cxx14 #endif // __cplusplus >= 201402L ]]) + + +dnl Tests for new features in C++17 + +m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_17], [[ + +// If the compiler admits that it is not ready for C++17, why torture it? +// Hopefully, this will speed up the test. + +#ifndef __cplusplus + +#error "This is not a C++ compiler" + +#elif __cplusplus < 201703L + +#error "This is not a C++17 compiler" + +#else + +#include +#include +#include + +namespace cxx17 +{ + + namespace test_constexpr_lambdas + { + + constexpr int foo = [](){return 42;}(); + + } + + namespace test::nested_namespace::definitions + { + + } + + namespace test_fold_expression + { + + template + int multiply(Args... args) + { + return (args * ... * 1); + } + + template + bool all(Args... args) + { + return (args && ...); + } + + } + + namespace test_extended_static_assert + { + + static_assert (true); + + } + + namespace test_auto_brace_init_list + { + + auto foo = {5}; + auto bar {5}; + + static_assert(std::is_same, decltype(foo)>::value); + static_assert(std::is_same::value); + } + + namespace test_typename_in_template_template_parameter + { + + template typename X> struct D; + + } + + namespace test_fallthrough_nodiscard_maybe_unused_attributes + { + + int f1() + { + return 42; + } + + [[nodiscard]] int f2() + { + [[maybe_unused]] auto unused = f1(); + + switch (f1()) + { + case 17: + f1(); + [[fallthrough]]; + case 42: + f1(); + } + return f1(); + } + + } + + namespace test_extended_aggregate_initialization + { + + struct base1 + { + int b1, b2 = 42; + }; + + struct base2 + { + base2() { + b3 = 42; + } + int b3; + }; + + struct derived : base1, base2 + { + int d; + }; + + derived d1 {{1, 2}, {}, 4}; // full initialization + derived d2 {{}, {}, 4}; // value-initialized bases + + } + + namespace test_general_range_based_for_loop + { + + struct iter + { + int i; + + int& operator* () + { + return i; + } + + const int& operator* () const + { + return i; + } + + iter& operator++() + { + ++i; + return *this; + } + }; + + struct sentinel + { + int i; + }; + + bool operator== (const iter& i, const sentinel& s) + { + return i.i == s.i; + } + + bool operator!= (const iter& i, const sentinel& s) + { + return !(i == s); + } + + struct range + { + iter begin() const + { + return {0}; + } + + sentinel end() const + { + return {5}; + } + }; + + void f() + { + range r {}; + + for (auto i : r) + { + [[maybe_unused]] auto v = i; + } + } + + } + + namespace test_lambda_capture_asterisk_this_by_value + { + + struct t + { + int i; + int foo() + { + return [*this]() + { + return i; + }(); + } + }; + + } + + namespace test_enum_class_construction + { + + enum class byte : unsigned char + {}; + + byte foo {42}; + + } + + namespace test_constexpr_if + { + + template + int f () + { + if constexpr(cond) + { + return 13; + } + else + { + return 42; + } + } + + } + + namespace test_selection_statement_with_initializer + { + + int f() + { + return 13; + } + + int f2() + { + if (auto i = f(); i > 0) + { + return 3; + } + + switch (auto i = f(); i + 4) + { + case 17: + return 2; + + default: + return 1; + } + } + + } + + namespace test_template_argument_deduction_for_class_templates + { + + template + struct pair + { + pair (T1 p1, T2 p2) + : m1 {p1}, + m2 {p2} + {} + + T1 m1; + T2 m2; + }; + + void f() + { + [[maybe_unused]] auto p = pair{13, 42u}; + } + + } + + namespace test_non_type_auto_template_parameters + { + + template + struct B + {}; + + B<5> b1; + B<'a'> b2; + + } + + namespace test_structured_bindings + { + + int arr[2] = { 1, 2 }; + std::pair pr = { 1, 2 }; + + auto f1() -> int(&)[2] + { + return arr; + } + + auto f2() -> std::pair& + { + return pr; + } + + struct S + { + int x1 : 2; + volatile double y1; + }; + + S f3() + { + return {}; + } + + auto [ x1, y1 ] = f1(); + auto& [ xr1, yr1 ] = f1(); + auto [ x2, y2 ] = f2(); + auto& [ xr2, yr2 ] = f2(); + const auto [ x3, y3 ] = f3(); + + } + + namespace test_exception_spec_type_system + { + + struct Good {}; + struct Bad {}; + + void g1() noexcept; + void g2(); + + template + Bad + f(T*, T*); + + template + Good + f(T1*, T2*); + + static_assert (std::is_same_v); + + } + + namespace test_inline_variables + { + + template void f(T) + {} + + template inline T g(T) + { + return T{}; + } + + template<> inline void f<>(int) + {} + + template<> int g<>(int) + { + return 5; + } + + } + +} // namespace cxx17 + +#endif // __cplusplus < 201703L + +]]) diff --git a/configure.ac b/configure.ac index b8cf947d1e..acdd916b62 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ define(_CLIENT_VERSION_MAJOR, 4) define(_CLIENT_VERSION_MINOR, 7) define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_RC, 1) +define(_CLIENT_VERSION_RC, 2) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2021) define(_COPYRIGHT_HOLDERS,[The %s developers]) @@ -62,8 +62,8 @@ case $host in lt_cv_deplibs_check_method="pass_all" ;; esac -dnl Require C++11 compiler (no GNU extensions) -AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory], [nodefault]) +dnl Require C++17 compiler (no GNU extensions) +AX_CXX_COMPILE_STDCXX([17], [noext], [mandatory], [nodefault]) dnl Check if -latomic is required for CHECK_ATOMIC @@ -730,9 +730,29 @@ dnl Check for libminiupnpc (optional) if test x$use_upnp != xno; then AC_CHECK_HEADERS( [miniupnpc/miniwget.h miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h], - [AC_CHECK_LIB([miniupnpc], [main],[MINIUPNPC_LIBS=-lminiupnpc], [have_miniupnpc=no])], + [AC_CHECK_LIB([miniupnpc], [upnpDiscover], [MINIUPNPC_LIBS=-lminiupnpc], [have_miniupnpc=no])], [have_miniupnpc=no] ) +dnl The minimum supported miniUPnPc API version is set to 10. This keeps compatibility +dnl with Ubuntu 16.04 LTS and Debian 8 libminiupnpc-dev packages. +if test x$have_miniupnpc != xno; then + AC_MSG_CHECKING([whether miniUPnPc API version is supported]) + AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[ + @%:@include + ]], [[ + #if MINIUPNPC_API_VERSION >= 10 + // Everything is okay + #else + # error miniUPnPc API version is too old + #endif + ]])],[ + AC_MSG_RESULT(yes) + ],[ + AC_MSG_RESULT(no) + AC_MSG_WARN([miniUPnPc API version < 10 is unsupported, disabling UPnP support.]) + have_miniupnpc=no + ]) +fi fi RAVEN_QT_INIT diff --git a/contrib/Dockerfile b/contrib/Dockerfile index 8710a4bf0e..480df2f214 100644 --- a/contrib/Dockerfile +++ b/contrib/Dockerfile @@ -1,4 +1,4 @@ -FROM amd64/ubuntu:18.04 AS base +FROM amd64/ubuntu:20.04 AS base #If you found this docker image helpful please donate RVN to the maintainer LABEL maintainer="RV9zdNeUTQUToZUcRp9uNF8gwH5LzDFtan" @@ -8,19 +8,13 @@ EXPOSE 8767/tcp ENV DEBIAN_FRONTEND=noninteractive -#Add ppa:bitcoin/bitcoin repository so we can install libdb4.8 libdb4.8++ -RUN apt-get update && \ - apt-get install -y software-properties-common && \ - add-apt-repository ppa:bitcoin/bitcoin - #Install runtime dependencies RUN apt-get update && \ apt-get install -y --no-install-recommends \ - bash net-tools libminiupnpc10 \ + bash wget net-tools libminiupnpc17 \ libevent-2.1 libevent-pthreads-2.1 \ - libdb4.8 libdb4.8++ \ - libboost-system1.65 libboost-filesystem1.65 libboost-chrono1.65 \ - libboost-program-options1.65 libboost-thread1.65 \ + libboost-system1.71 libboost-filesystem1.71 libboost-chrono1.71 \ + libboost-program-options1.71 libboost-thread1.71 \ libzmq5 && \ apt-get clean @@ -31,15 +25,22 @@ RUN apt-get update && \ apt-get install -y --no-install-recommends \ bash net-tools build-essential libtool autotools-dev automake \ pkg-config libssl-dev libevent-dev bsdmainutils python3 \ - libboost-system1.65-dev libboost-filesystem1.65-dev libboost-chrono1.65-dev \ - libboost-program-options1.65-dev libboost-test1.65-dev libboost-thread1.65-dev \ - libzmq3-dev libminiupnpc-dev libdb4.8-dev libdb4.8++-dev && \ + libboost-system1.71-dev libboost-filesystem1.71-dev libboost-chrono1.71-dev \ + libboost-program-options1.71-dev libboost-test1.71-dev libboost-thread1.71-dev \ + libzmq3-dev libminiupnpc-dev && \ apt-get clean -#Build Ravencoin from source +#Copy source dir COPY . /home/raven/build/Ravencoin/ WORKDIR /home/raven/build/Ravencoin -RUN ./autogen.sh && ./configure --disable-tests --with-gui=no && make + +#build db4 from source +WORKDIR /home/raven/build/Ravencoin/contrib +RUN ./install_db4.sh ../../ + +# build Ravencore +WORKDIR /home/raven/build/Ravencoin +RUN ./autogen.sh && ./configure --disable-tests BDB_LIBS="-L/home/raven/build/db4/lib -ldb_cxx-4.8" BDB_CFLAGS="-I/home/raven/build/db4/include" --with-gui=no && make -j4 FROM base AS final diff --git a/contrib/Dockerfile.amd64 b/contrib/Dockerfile.amd64 deleted file mode 100644 index 6ab4afc89f..0000000000 --- a/contrib/Dockerfile.amd64 +++ /dev/null @@ -1,27 +0,0 @@ -FROM amd64/ubuntu:latest - -MAINTAINER cade - -EXPOSE $RPCPORT - -EXPOSE $PORT - -RUN apt-get update && apt-get install -y bash net-tools && apt-get clean - -RUN useradd -ms /bin/bash raven - -RUN mkdir /etc/raven - -RUN mkdir /var/lib/raven - -RUN chown raven:raven /etc/raven /var/lib/raven - -WORKDIR /home/raven - -COPY --chown=raven:raven linux64/* /home/raven/ - -COPY --chown=raven:raven run.sh /home/raven/ - -USER raven - -CMD ["/home/raven/run.sh"] diff --git a/contrib/Dockerfile.arm32v7 b/contrib/Dockerfile.arm32v7 deleted file mode 100644 index 2052170e22..0000000000 --- a/contrib/Dockerfile.arm32v7 +++ /dev/null @@ -1,23 +0,0 @@ -FROM arm32v7/ubuntu:latest - -MAINTAINER cade - -EXPOSE $RPCPORT - -EXPOSE $PORT - -RUN useradd -ms /bin/bash raven - -RUN mkdir /etc/raven - -RUN mkdir /var/lib/raven - -RUN chown raven:raven /etc/raven /var/lib/raven - -WORKDIR /home/raven - -COPY --chown=raven:raven linux64/* ./run.sh /home/raven/ - -USER raven - -CMD ["/home/raven/run.sh"] diff --git a/contrib/testgen/base58.py b/contrib/testgen/base58.py index 00094f2231..f2ad84bb2f 100644 --- a/contrib/testgen/base58.py +++ b/contrib/testgen/base58.py @@ -1,5 +1,5 @@ # Copyright (c) 2012-2016 The Bitcoin Core developers -# Copyright (c) 2017-2020 The Raven Core developers +# Copyright (c) 2017-2021 The Raven Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. ''' diff --git a/contrib/zmq/zmq_sub.py b/contrib/zmq/zmq_sub.py index 26f549b839..450f7ed791 100755 --- a/contrib/zmq/zmq_sub.py +++ b/contrib/zmq/zmq_sub.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers -# Copyright (c) 2017-2020 The Raven Core developers +# Copyright (c) 2017-2021 The Raven Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/contrib/zmq/zmq_sub3.4.py b/contrib/zmq/zmq_sub3.4.py index 94e41f3421..4cf8d76df7 100755 --- a/contrib/zmq/zmq_sub3.4.py +++ b/contrib/zmq/zmq_sub3.4.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers -# Copyright (c) 2017-2020 The Raven Core developers +# Copyright (c) 2017-2021 The Raven Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/depends/packages/expat.mk b/depends/packages/expat.mk index e901e9f990..8ad491537e 100644 --- a/depends/packages/expat.mk +++ b/depends/packages/expat.mk @@ -1,8 +1,8 @@ package=expat -$(package)_version=2.3.0 -$(package)_download_path=https://downloads.sourceforge.net/project/expat/expat/$($(package)_version) +$(package)_version=2.4.1 +$(package)_download_path=https://github.com/libexpat/libexpat/releases/download/R_$(subst .,_,$($(package)_version))/ $(package)_file_name=$(package)-$($(package)_version).tar.bz2 -$(package)_sha256_hash=f122a20eada303f904d5e0513326c5b821248f2d4d2afbf5c6f1339e511c0586 +$(package)_sha256_hash=2f9b6a580b94577b150a7d5617ad4643a4301a6616ff459307df3e225bcfbf40 define $(package)_set_vars $(package)_config_opts=--disable-static diff --git a/depends/packages/libevent.mk b/depends/packages/libevent.mk index 1cd5a1749a..dad317193c 100644 --- a/depends/packages/libevent.mk +++ b/depends/packages/libevent.mk @@ -1,14 +1,8 @@ package=libevent -$(package)_version=2.1.11-stable -$(package)_download_path=https://github.com/libevent/libevent/archive/ -$(package)_file_name=release-$($(package)_version).tar.gz -$(package)_sha256_hash=229393ab2bf0dc94694f21836846b424f3532585bac3468738b7bf752c03901e -$(package)_patches=0001-fix-windows-getaddrinfo.patch - -define $(package)_preprocess_cmds - patch -p1 < $($(package)_patch_dir)/0001-fix-windows-getaddrinfo.patch && \ - ./autogen.sh -endef +$(package)_version=2.1.12-stable +$(package)_download_path=https://github.com/libevent/libevent/releases/download/release-$($(package)_version)/ +$(package)_file_name=$(package)-$($(package)_version).tar.gz +$(package)_sha256_hash=92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb # When building for Windows, we set _WIN32_WINNT to target the same Windows # version as we do in configure. Due to quirks in libevents build system, this diff --git a/depends/packages/qt.mk b/depends/packages/qt.mk index 271d47ef5d..31e60fcd6a 100644 --- a/depends/packages/qt.mk +++ b/depends/packages/qt.mk @@ -1,23 +1,23 @@ PACKAGE=qt -$(package)_version=5.12.10 +$(package)_version=5.12.11 $(package)_download_path=https://download.qt.io/official_releases/qt/5.12/$($(package)_version)/submodules $(package)_suffix=everywhere-src-$($(package)_version).tar.xz $(package)_file_name=qtbase-$($(package)_suffix) -$(package)_sha256_hash=8088f174e6d28e779516c083b6087b6a9e3c8322b4bc161fd1b54195e3c86940 +$(package)_sha256_hash=1c1b4e33137ca77881074c140d54c3c9747e845a31338cfe8680f171f0bc3a39 $(package)_dependencies=openssl $(package)_linux_dependencies=freetype fontconfig libxcb libxkbcommon $(package)_qt_libs=corelib network widgets gui plugins testlib $(package)_patches=fix_qt_pkgconfig.patch mac-qmake.conf fix_no_printer.patch no-xlib.patch $(package)_patches+= fix_android_qmake_conf.patch fix_android_jni_static.patch dont_hardcode_pwd.patch $(package)_patches+= drop_lrelease_dependency.patch no_sdk_version_check.patch -$(package)_patches+= fix_qpainter_non_determinism.patch fix_lib_paths.patch fix_android_pch.patch -$(package)_patches+= fix_bigsur_drawing.patch +$(package)_patches+= fix_lib_paths.patch fix_android_pch.patch +$(package)_patches+= qtbase-moc-ignore-gcc-macro.patch $(package)_qttranslations_file_name=qttranslations-$($(package)_suffix) -$(package)_qttranslations_sha256_hash=e1de58ed108b7e0a138815ea60fd46a2c4e1fc31396a707e5630e92de79c53de +$(package)_qttranslations_sha256_hash=577b0668a777eb2b451c61e8d026d79285371597ce9df06b6dee6c814164b7c3 $(package)_qttools_file_name=qttools-$($(package)_suffix) -$(package)_qttools_sha256_hash=b0cfa6e7aac41b7c61fc59acc04843d7a98f9e1840370611751bcfc1834a636c +$(package)_qttools_sha256_hash=98b2aaca230458f65996f3534fd471d2ffd038dd58ac997c0589c06dc2385b4f $(package)_extra_sources = $($(package)_qttranslations_file_name) $(package)_extra_sources += $($(package)_qttools_file_name) @@ -227,10 +227,9 @@ define $(package)_preprocess_cmds patch -p1 -i $($(package)_patch_dir)/fix_android_jni_static.patch && \ patch -p1 -i $($(package)_patch_dir)/fix_android_pch.patch && \ patch -p1 -i $($(package)_patch_dir)/no-xlib.patch && \ - patch -p1 -i $($(package)_patch_dir)/fix_qpainter_non_determinism.patch &&\ patch -p1 -i $($(package)_patch_dir)/no_sdk_version_check.patch && \ patch -p1 -i $($(package)_patch_dir)/fix_lib_paths.patch && \ - patch -p1 -i $($(package)_patch_dir)/fix_bigsur_drawing.patch && \ + patch -p1 -i $($(package)_patch_dir)/qtbase-moc-ignore-gcc-macro.patch && \ sed -i.old "s|updateqm.commands = \$$$$\$$$$LRELEASE|updateqm.commands = $($(package)_extract_dir)/qttools/bin/lrelease|" qttranslations/translations/translations.pro && \ mkdir -p qtbase/mkspecs/macx-clang-linux &&\ cp -f qtbase/mkspecs/macx-clang/qplatformdefs.h qtbase/mkspecs/macx-clang-linux/ &&\ diff --git a/depends/packages/zeromq.mk b/depends/packages/zeromq.mk index 3b7f3690a4..d0497c6962 100644 --- a/depends/packages/zeromq.mk +++ b/depends/packages/zeromq.mk @@ -1,8 +1,8 @@ package=zeromq -$(package)_version=4.3.1 +$(package)_version=4.3.4 $(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/ $(package)_file_name=$(package)-$($(package)_version).tar.gz -$(package)_sha256_hash=bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb +$(package)_sha256_hash=c593001a89f5a85dd2ddf564805deb860e02471171b3f204944857336295c3e5 $(package)_patches=remove_libstd_link.patch define $(package)_set_vars diff --git a/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch b/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch deleted file mode 100644 index a98cd90bd5..0000000000 --- a/depends/patches/libevent/0001-fix-windows-getaddrinfo.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -ur libevent-2.1.8-stable.orig/configure.ac libevent-2.1.8-stable/configure.ac ---- libevent-2.1.8-stable.orig/configure.ac 2017-01-29 17:51:00.000000000 +0000 -+++ libevent-2.1.8-stable/configure.ac 2020-03-07 01:11:16.311335005 +0000 -@@ -389,6 +389,10 @@ - #ifdef HAVE_NETDB_H - #include - #endif -+#ifdef _WIN32 -+#include -+#include -+#endif - ]], - [[ - getaddrinfo; -Only in libevent-2.1.8-stable: configure.ac~ diff --git a/depends/patches/qt/fix_android_jni_static.patch b/depends/patches/qt/fix_android_jni_static.patch index f891da6ddf..a186aeb8f6 100644 --- a/depends/patches/qt/fix_android_jni_static.patch +++ b/depends/patches/qt/fix_android_jni_static.patch @@ -1,6 +1,6 @@ --- old/qtbase/src/plugins/platforms/android/androidjnimain.cpp +++ new/qtbase/src/plugins/platforms/android/androidjnimain.cpp -@@ -897,6 +897,14 @@ +@@ -898,6 +898,14 @@ __android_log_print(ANDROID_LOG_FATAL, "Qt", "registerNatives failed"); return -1; } diff --git a/depends/patches/qt/fix_bigsur_drawing.patch b/depends/patches/qt/fix_bigsur_drawing.patch deleted file mode 100644 index 98c0c6be30..0000000000 --- a/depends/patches/qt/fix_bigsur_drawing.patch +++ /dev/null @@ -1,31 +0,0 @@ -Fix GUI stuck on Big Sur - -See: - - https://github.com/bitcoin-core/gui/issues/249 - - https://github.com/bitcoin/bitcoin/pull/21495 - - https://bugreports.qt.io/browse/QTBUG-87014 - -We should be able to drop this once we are using one of the following versions: - - Qt 5.12.11 or later, see upstream commit: c5d904639dbd690a36306e2b455610029704d821 - - Qt 5.15.3 or later, see upstream commit: 2cae34354bd41ae286258c7a6b3653b746e786ae - ---- a/qtbase/src/plugins/platforms/cocoa/qnsview_drawing.mm -+++ b/qtbase/src/plugins/platforms/cocoa/qnsview_drawing.mm -@@ -95,8 +95,15 @@ - // by AppKit at a point where we've already set up other parts of the platform plugin - // based on the presence of layers or not. Once we've rewritten these parts to support - // dynamically picking up layer enablement we can let AppKit do its thing. -- return QMacVersion::buildSDK() >= QOperatingSystemVersion::MacOSMojave -- && QMacVersion::currentRuntime() >= QOperatingSystemVersion::MacOSMojave; -+ -+ if (QMacVersion::currentRuntime() >= QOperatingSystemVersion::MacOSBigSur) -+ return true; // Big Sur always enables layer-backing, regardless of SDK -+ -+ if (QMacVersion::currentRuntime() >= QOperatingSystemVersion::MacOSMojave -+ && QMacVersion::buildSDK() >= QOperatingSystemVersion::MacOSMojave) -+ return true; // Mojave and Catalina enable layers based on the app's SDK -+ -+ return false; // Prior versions needed explicitly enabled layer backing - } - - - (BOOL)layerExplicitlyRequested diff --git a/depends/patches/qt/fix_qpainter_non_determinism.patch b/depends/patches/qt/fix_qpainter_non_determinism.patch deleted file mode 100644 index 44c45187c5..0000000000 --- a/depends/patches/qt/fix_qpainter_non_determinism.patch +++ /dev/null @@ -1,63 +0,0 @@ -commit 2a8f7dc6ddfc414a66491522501c1574a1343ee1 -Author: Andrew Chow -Date: Sat Nov 21 01:11:04 2020 -0500 - - build: Fix determinism issue when building with Clang 8 - - When building Qt with LLVM/Clang 8 under -O3 (the default), we run into - a determinism issue in `qt_interset_spans`. The issue has been fixed for - LLVM/Clang 9, see - https://github.com/llvm/llvm-project/commit/db101864bdc938deb1d63fe4f7da761bd38e5cae - and https://reviews.llvm.org/D64601, however this fix was not backported - to 8.x. Once LLVM/Clang 9 is used, this patch can be dropped. - - The particular issue appears to be an optimization done by -O3 which - adds a temporary variable for `spans->y` in `qt_intersect_spans`. When - it does this, sometimes it chooses to use a 32-bit movs instruction - (movswl), and other times it chooses a 64-bit movs instruction (movswq). - By patching `qt_intersect_spans` to always make a temporary variable for - `spans->y`, we are able to sidestep this problem. - -diff --git a/qtbase/src/gui/painting/qpaintengine_raster.cpp b/qtbase/src/gui/painting/qpaintengine_raster.cpp -index 92ab6e8375..f018009e0b 100644 ---- a/qtbase/src/gui/painting/qpaintengine_raster.cpp -+++ b/qtbase/src/gui/painting/qpaintengine_raster.cpp -@@ -4128,22 +4128,23 @@ static const QSpan *qt_intersect_spans(const QClipData *clip, int *currentClip, - const QSpan *clipEnd = clip->m_spans + clip->count; - - while (available && spans < end ) { -+ const short spans_y = spans->y; - if (clipSpans >= clipEnd) { - spans = end; - break; - } -- if (clipSpans->y > spans->y) { -+ if (clipSpans->y > spans_y) { - ++spans; - continue; - } -- if (spans->y != clipSpans->y) { -- if (spans->y < clip->count && clip->m_clipLines[spans->y].spans) -- clipSpans = clip->m_clipLines[spans->y].spans; -+ if (spans_y != clipSpans->y) { -+ if (spans_y < clip->count && clip->m_clipLines[spans_y].spans) -+ clipSpans = clip->m_clipLines[spans_y].spans; - else - ++clipSpans; - continue; - } -- Q_ASSERT(spans->y == clipSpans->y); -+ Q_ASSERT(spans_y == clipSpans->y); - - int sx1 = spans->x; - int sx2 = sx1 + spans->len; -@@ -4162,7 +4163,7 @@ static const QSpan *qt_intersect_spans(const QClipData *clip, int *currentClip, - if (len) { - out->x = qMax(sx1, cx1); - out->len = qMin(sx2, cx2) - out->x; -- out->y = spans->y; -+ out->y = spans_y; - out->coverage = qt_div_255(spans->coverage * clipSpans->coverage); - ++out; - --available; - diff --git a/depends/patches/qt/qtbase-moc-ignore-gcc-macro.patch b/depends/patches/qt/qtbase-moc-ignore-gcc-macro.patch new file mode 100644 index 0000000000..0358bea6e9 --- /dev/null +++ b/depends/patches/qt/qtbase-moc-ignore-gcc-macro.patch @@ -0,0 +1,17 @@ +The moc executable loops through headers on CPLUS_INCLUDE_PATH and stumbles +on the GCC internal _GLIBCXX_VISIBILITY macro. Tell it to ignore it as it is +not supposed to be looking there to begin with. + +Upstream report: https://bugreports.qt.io/browse/QTBUG-83160 + +diff --git a/qtbase/src/tools/moc/main.cpp b/qtbase/src/tools/moc/main.cpp +--- a/qtbase/src/tools/moc/main.cpp ++++ b/qtbase/src/tools/moc/main.cpp +@@ -188,6 +188,7 @@ int runMoc(int argc, char **argv) + dummyVariadicFunctionMacro.arguments += Symbol(0, PP_IDENTIFIER, "__VA_ARGS__"); + pp.macros["__attribute__"] = dummyVariadicFunctionMacro; + pp.macros["__declspec"] = dummyVariadicFunctionMacro; ++ pp.macros["_GLIBCXX_VISIBILITY"] = dummyVariadicFunctionMacro; + + QString filename; + QString output; diff --git a/doc/dependencies.md b/doc/dependencies.md index 443d6c4f70..b7e50e8539 100644 --- a/doc/dependencies.md +++ b/doc/dependencies.md @@ -14,13 +14,13 @@ These are the dependencies currently used by Raven Core. You can find instructio | Clang | [11.0.1](http://llvm.org/releases/download.html) | (C++11 support) | | | | | D-Bus | [1.10.18](https://cgit.freedesktop.org/dbus/dbus/tree/NEWS?h=dbus-1.10) | | No | Yes | | | ds_store | 1.3.0 | | | | | -| Expat | [2.3.0](https://libexpat.github.io/) | | Yes | Yes | | +| Expat | [2.4.1](https://libexpat.github.io/) | | Yes | Yes | | | fontconfig | [2.12.1](https://www.freedesktop.org/software/fontconfig/release/) | | No | Yes | | | FreeType | [2.7.1](http://download.savannah.gnu.org/releases/freetype) | | No | | | | GCC | | [4.7+](https://gcc.gnu.org/) | | | | | HarfBuzz-NG | | | | | | | libdmg-hfsplus | | | | | | -| libevent | [2.1.11-stable](https://github.com/libevent/libevent/releases) | 2.0.22 | No | | | +| libevent | [2.1.12-stable](https://github.com/libevent/libevent/releases) | 2.0.22 | No | | | | libICE | 1.0.9 | | | | | | libjpeg | | | | | [Yes](https://github.com/RavenProject/Ravencoin/blob/master/depends/packages/qt.mk#L75) | | libpng | | | | | [Yes](https://github.com/RavenProject/Ravencoin/blob/master/depends/packages/qt.mk#L74) | @@ -36,7 +36,7 @@ These are the dependencies currently used by Raven Core. You can find instructio | protobuf | [2.6.1](https://github.com/google/protobuf/releases) | | No | | | | Python (tests) | | [3.4](https://www.python.org/downloads) | | | | | qrencode | [3.4.4](https://fukuchi.org/works/qrencode) | | No | | | -| Qt | [5.12.10](https://download.qt.io/official_releases/qt/) | 4.7+ | No | | | +| Qt | [5.12.11](https://download.qt.io/official_releases/qt/) | 4.7+ | No | | | | XCB | 1.10 | | | | [Yes](https://github.com/RavenProject/Ravencoin/blob/master/depends/packages/qt.mk#L94) (Linux only) | | xkbcommon | 0.8.4 | | | | [Yes](https://github.com/RavenProject/Ravencoin/blob/master/depends/packages/qt.mk#L93) (Linux only) | | ZeroMQ | [4.1.5](https://github.com/zeromq/libzmq/releases) | | No | | | diff --git a/share/qt/Info.plist.in b/share/qt/Info.plist.in index f86e4cac01..6e22d558c7 100644 --- a/share/qt/Info.plist.in +++ b/share/qt/Info.plist.in @@ -97,6 +97,9 @@ NSHighResolutionCapable True + NSRequiresAquaSystemAppearance + True + LSAppNapIsDisabled True diff --git a/src/Makefile.qt.include b/src/Makefile.qt.include index 3a638c788f..33ee88dcca 100644 --- a/src/Makefile.qt.include +++ b/src/Makefile.qt.include @@ -353,6 +353,7 @@ RES_ICONS = \ qt/res/icons/tx_mined.png \ qt/res/icons/tx_asset_input.png \ qt/res/icons/tx_asset_output.png \ + qt/res/icons/tx_atomic_swap.png \ qt/res/icons/warning.png \ qt/res/icons/verify.png \ qt/res/darkstyle/icon_close.png \ diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 54775b819c..ff913db6c9 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -27,6 +27,7 @@ GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.r RAVEN_TESTS =\ test/assets/asset_tests.cpp \ test/assets/serialization_tests.cpp \ + test/assets/asset_p2sh_tests.cpp \ test/assets/asset_tx_tests.cpp \ test/assets/cache_tests.cpp \ test/assets/asset_reissue_tests.cpp \ diff --git a/src/assets/assets.cpp b/src/assets/assets.cpp index 18717c6621..4c6d7bd8c0 100644 --- a/src/assets/assets.cpp +++ b/src/assets/assets.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -3169,8 +3169,9 @@ bool IsScriptNewAsset(const CScript& scriptPubKey) bool IsScriptNewAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; - bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + int nScriptType = 0; + bool fIsOwner = false; + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_NEW_ASSET && !fIsOwner; } return false; @@ -3185,8 +3186,9 @@ bool IsScriptNewUniqueAsset(const CScript& scriptPubKey) bool IsScriptNewUniqueAsset(const CScript &scriptPubKey, int &nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) + if (!scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) return false; CNewAsset asset; @@ -3210,8 +3212,9 @@ bool IsScriptNewMsgChannelAsset(const CScript& scriptPubKey) bool IsScriptNewMsgChannelAsset(const CScript &scriptPubKey, int &nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) + if (!scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) return false; CNewAsset asset; @@ -3236,8 +3239,9 @@ bool IsScriptOwnerAsset(const CScript& scriptPubKey) bool IsScriptOwnerAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_NEW_ASSET && fIsOwner; } @@ -3253,8 +3257,9 @@ bool IsScriptReissueAsset(const CScript& scriptPubKey) bool IsScriptReissueAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_REISSUE_ASSET; } @@ -3270,8 +3275,9 @@ bool IsScriptTransferAsset(const CScript& scriptPubKey) bool IsScriptTransferAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_TRANSFER_ASSET; } @@ -3287,8 +3293,9 @@ bool IsScriptNewQualifierAsset(const CScript& scriptPubKey) bool IsScriptNewQualifierAsset(const CScript &scriptPubKey, int &nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) + if (!scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) return false; CNewAsset asset; @@ -3312,8 +3319,9 @@ bool IsScriptNewRestrictedAsset(const CScript& scriptPubKey) bool IsScriptNewRestrictedAsset(const CScript &scriptPubKey, int &nStartingIndex) { int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) + if (!scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) return false; CNewAsset asset; @@ -3506,12 +3514,15 @@ bool GetAssetData(const CScript& script, CAssetOutputEntry& data) std::string assetName = ""; int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!script.IsAssetScript(nType, fIsOwner)) { + if (!script.IsAssetScript(nType, nScriptType, fIsOwner)) { return false; } txnouttype type = txnouttype(nType); + txnouttype scriptType = txnouttype(nScriptType); + data.scriptType = scriptType; // Get the New Asset or Transfer Asset from the scriptPubKey if (type == TX_NEW_ASSET && !fIsOwner) { @@ -4439,13 +4450,13 @@ void GetTxOutAssetTypes(const std::vector& vout, int& issues, int& reiss } } -bool ParseAssetScript(CScript scriptPubKey, uint160 &hashBytes, std::string &assetName, CAmount &assetAmount) { +bool ParseAssetScript(CScript scriptPubKey, uint160 &hashBytes, int& nScriptType, std::string &assetName, CAmount &assetAmount) { int nType; bool fIsOwner; int _nStartingPoint; std::string _strAddress; bool isAsset = false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, _nStartingPoint)) { + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, _nStartingPoint)) { if (nType == TX_NEW_ASSET) { if (fIsOwner) { if (OwnerAssetFromScript(scriptPubKey, assetName, _strAddress)) { @@ -4489,8 +4500,16 @@ bool ParseAssetScript(CScript scriptPubKey, uint160 &hashBytes, std::string &ass // LogPrintf("%s : Found no asset in script: %s", __func__, HexStr(scriptPubKey)); } if (isAsset) { + if (nScriptType == TX_SCRIPTHASH) { + hashBytes = uint160(std::vector (scriptPubKey.begin()+2, scriptPubKey.begin()+22)); + } else if (nScriptType == TX_PUBKEYHASH) { + hashBytes = uint160(std::vector (scriptPubKey.begin()+3, scriptPubKey.begin()+23)); + } else { + return false; + } + // LogPrintf("%s : Found assets in script at address %s : %s (%s)", __func__, _strAddress, assetName, assetAmount); - hashBytes = uint160(std::vector (scriptPubKey.begin()+3, scriptPubKey.begin()+23)); + return true; } return false; diff --git a/src/assets/assets.h b/src/assets/assets.h index df98c5729d..bba96182a5 100644 --- a/src/assets/assets.h +++ b/src/assets/assets.h @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -549,7 +549,7 @@ bool VerifyWalletHasAsset(const std::string& asset_name, std::pair& qualifiers); diff --git a/src/assets/messages.cpp b/src/assets/messages.cpp index 09a439e149..f96b6ca45b 100644 --- a/src/assets/messages.cpp +++ b/src/assets/messages.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2019 The Raven Core developers +// Copyright (c) 2018-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -216,7 +216,7 @@ bool ScanForMessageChannels(std::string& strError) } for (auto out : ptx->vout) { - int nType = -1; + int nType = 0; bool fOwner = false; if (vpwallets[0]->IsMine(out) == ISMINE_SPENDABLE) { // Is the out mine if (out.scriptPubKey.IsAssetScript(nType, fOwner)) { diff --git a/src/assets/messages.h b/src/assets/messages.h index ae9f09d1bf..5afe1a070d 100644 --- a/src/assets/messages.h +++ b/src/assets/messages.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2019 The Raven Core developers +// Copyright (c) 2018-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/assets/myassetsdb.cpp b/src/assets/myassetsdb.cpp index b0f962bb60..a0c519964b 100644 --- a/src/assets/myassetsdb.cpp +++ b/src/assets/myassetsdb.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2019 The Raven Core developers +// Copyright (c) 2018-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "validation.h" diff --git a/src/bench/ccoins_caching.cpp b/src/bench/ccoins_caching.cpp index c5c19b7b0c..a03de228b1 100644 --- a/src/bench/ccoins_caching.cpp +++ b/src/bench/ccoins_caching.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/bench/coin_selection.cpp b/src/bench/coin_selection.cpp index ce8665eceb..b037611dd3 100644 --- a/src/bench/coin_selection.cpp +++ b/src/bench/coin_selection.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2012-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/bloom.cpp b/src/bloom.cpp index bdd095056e..12f021009e 100644 --- a/src/bloom.cpp +++ b/src/bloom.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2012-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -166,8 +166,9 @@ bool CBloomFilter::IsRelevantAndUpdate(const CTransaction& tx) else if ((nFlags & BLOOM_UPDATE_MASK) == BLOOM_UPDATE_P2PUBKEY_ONLY) { txnouttype type; + txnouttype scriptType; std::vector > vSolutions; - if (Solver(txout.scriptPubKey, type, vSolutions) && + if (Solver(txout.scriptPubKey, type, scriptType, vSolutions) && (type == TX_PUBKEY || type == TX_MULTISIG)) insert(COutPoint(hash, i)); } diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 6cad9837fd..f89f6c17e0 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -161,7 +161,13 @@ class CMainParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nTimeout = 1628877600; // UTC: Fri Aug 13 2021 18:00:00 consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideRuleChangeActivationThreshold = 1411; // Approx 70% of 2016 consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideMinerConfirmationWindow = 2016; - + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].bit = 11; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nStartTime = 1682956800; // UTC: Mon Mai 01 2023 18:00:00 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nTimeout = 1714579200; // UTC: Wed Mai 01 2024 18:00:00 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideRuleChangeActivationThreshold = 2016; // 100% required, hardly happens +// consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideRuleChangeActivationThreshold = 1411; // Approx 70% of 2016 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideMinerConfirmationWindow = 2016; + // The best chain should have at least this much work consensus.nMinimumChainWork = uint256S("000000000000000000000000000000000000000000000020d4ac871fb7009b63"); // Block 1186833 @@ -215,7 +221,8 @@ class CMainParams : public CChainParams { { 740000, uint256S("0x00000000000027d11bf1e7a3b57d3c89acc1722f39d6e08f23ac3a07e16e3172")}, { 909251, uint256S("0x000000000000694c9a363eff06518aa7399f00014ce667b9762f9a4e7a49f485")}, { 1040000, uint256S("0x000000000000138e2690b06b1ddd8cf158c3a5cf540ee5278debdcdffcf75839")}, - { 1186833, uint256S("0x0000000000000d4840d4de1f7d943542c2aed532bd5d6527274fc0142fa1a410")} + { 1186833, uint256S("0x0000000000000d4840d4de1f7d943542c2aed532bd5d6527274fc0142fa1a410")}, + { 1610000, uint256S("0x000000000001f1a67604ace3320cf722039f1b706b46a4d95e1d8502729b3046")} } }; @@ -323,6 +330,11 @@ class CTestNetParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nTimeout = 1628877600; // UTC: Fri Aug 13 2021 18:00:00 consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideRuleChangeActivationThreshold = 1411; // Approx 70% of 2016 consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideMinerConfirmationWindow = 2016; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].bit = 11; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nStartTime = 1619971200; // UTC: Sun May 02 2021 18:00:00 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nTimeout = 1651507200; // UTC: Mon May 02 2022 18:00:00 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideRuleChangeActivationThreshold = 1411; // Approx 70% of 2016 + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideMinerConfirmationWindow = 2016; // The best chain should have at least this much work. consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000000168050db560b4"); @@ -436,7 +448,8 @@ class CTestNetParams : public CChainParams { { 225, uint256S("0x000003465e3e0167322eb8269ce91246bbc211e293bc5fbf6f0a0d12c1ccb363")}, {223408, uint256S("0x000000012a0c09dd6456ab19018cc458648dec762b04f4ddf8ef8108eae69db9")}, {232980, uint256S("0x000000007b16ae547fce76c3308dbeec2090cde75de74ab5dfcd6f60d13f089b")}, - {257610, uint256S("0x000000006272208605c4df3b54d4d5515759105e7ffcb258e8cd8077924ffef1")} + {257610, uint256S("0x000000006272208605c4df3b54d4d5515759105e7ffcb258e8cd8077924ffef1")}, + {587000, uint256S("0x000000040ca00d88c1c3be8fb298365304a6fa13af95b8fa2a689ad6736e37f6")} } }; @@ -531,8 +544,8 @@ class CRegTestParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].bit = 8; consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nStartTime = 0; consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nTimeout = 999999999999ULL; - consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nOverrideRuleChangeActivationThreshold = 208; - consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nOverrideMinerConfirmationWindow = 288; + consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nOverrideRuleChangeActivationThreshold = 108; + consensus.vDeployments[Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE].nOverrideMinerConfirmationWindow = 144; consensus.vDeployments[Consensus::DEPLOYMENT_ENFORCE_VALUE].bit = 9; consensus.vDeployments[Consensus::DEPLOYMENT_ENFORCE_VALUE].nStartTime = 0; consensus.vDeployments[Consensus::DEPLOYMENT_ENFORCE_VALUE].nTimeout = 999999999999ULL; @@ -543,6 +556,11 @@ class CRegTestParams : public CChainParams { consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nTimeout = 999999999999ULL; consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideRuleChangeActivationThreshold = 400; consensus.vDeployments[Consensus::DEPLOYMENT_COINBASE_ASSETS].nOverrideMinerConfirmationWindow = 500; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].bit = 11; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nStartTime = 0; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nTimeout = 999999999999ULL; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideRuleChangeActivationThreshold = 108; + consensus.vDeployments[Consensus::DEPLOYMENT_P2SH_ASSETS].nOverrideMinerConfirmationWindow = 144; // The best chain should have at least this much work. consensus.nMinimumChainWork = uint256S("0x00"); diff --git a/src/chainparamsseeds.h b/src/chainparamsseeds.h index a7a45126b5..ae7ac2ad0c 100644 --- a/src/chainparamsseeds.h +++ b/src/chainparamsseeds.h @@ -191,7 +191,13 @@ static SeedSpec6 pnSeed6_main[] = { static SeedSpec6 pnSeed6_test[] = { - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x22,0xd6,0xc1,0x7d}, 18767}, - {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x34,0xd3,0xeb,0x6c}, 18767} + + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x36,0xbf,0x8f,0xad}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x12,0x74,0x3e,0x91}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x90,0x5b,0x66,0x9b}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xa8,0x77,0x64,0x8c}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xf3,0xbf,0xc7}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x23,0xa8,0x17,0x4c}, 18770}, + {{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x53,0xcd,0x97,0xb7}, 18770} }; #endif // RAVEN_CHAINPARAMSSEEDS_H diff --git a/src/clientversion.cpp b/src/clientversion.cpp index b5409008cc..e84418adb5 100644 --- a/src/clientversion.cpp +++ b/src/clientversion.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2012-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/coins.cpp b/src/coins.cpp index d19b20a150..3458778473 100644 --- a/src/coins.cpp +++ b/src/coins.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2012-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/consensus/params.h b/src/consensus/params.h index 6b6a738c2a..fd1489882f 100644 --- a/src/consensus/params.h +++ b/src/consensus/params.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -21,6 +21,7 @@ enum DeploymentPos DEPLOYMENT_TRANSFER_SCRIPT_SIZE, DEPLOYMENT_ENFORCE_VALUE, DEPLOYMENT_COINBASE_ASSETS, + DEPLOYMENT_P2SH_ASSETS, // DEPLOYMENT_CSV, // Deployment of BIP68, BIP112, and BIP113. // DEPLOYMENT_SEGWIT, // Deployment of BIP141, BIP143, and BIP147. // NOTE: Also add new deployments to VersionBitsDeploymentInfo in versionbits.cpp diff --git a/src/consensus/tx_verify.cpp b/src/consensus/tx_verify.cpp index f79e2c875e..6a1788c58a 100644 --- a/src/consensus/tx_verify.cpp +++ b/src/consensus/tx_verify.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2017-2017 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -653,11 +653,19 @@ bool Consensus::CheckTxAssets(const CTransaction& tx, CValidationState& state, c int i = 0; for (const auto& txout : tx.vout) { i++; - bool fIsAsset = false; + + // Values are subject to change, by isAssetScript a few lines down. int nType = 0; + int nScriptType = 0; + int nStart = 0; bool fIsOwner = false; - if (txout.scriptPubKey.IsAssetScript(nType, fIsOwner)) - fIsAsset = true; + + // False until BIP9 consensus activates P2SH for Assets. + bool fP2Active = AreP2SHAssetsAllowed(); + + // Returns true if operations on assets are found in the script. + // It will also possibly change the values of the arguments, as they are passed by reference. + bool fIsAsset = txout.scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStart, fP2Active); if (assetCache) { if (fIsAsset && !AreAssetsDeployed()) @@ -687,7 +695,8 @@ bool Consensus::CheckTxAssets(const CTransaction& tx, CValidationState& state, c CAssetTransfer transfer; std::string address = ""; if (!TransferAssetFromScript(txout.scriptPubKey, transfer, address)) - return state.DoS(100, false, REJECT_INVALID, "bad-tx-asset-transfer-bad-deserialize", false, "", tx.GetHash()); + return state.DoS(100, false, REJECT_INVALID, "bad-tx-asset-transfer-bad-deserialize", false, "", + tx.GetHash()); if (!ContextualCheckTransferAsset(assetCache, transfer, address, strError)) return state.DoS(100, false, REJECT_INVALID, strError, false, "", tx.GetHash()); @@ -828,8 +837,9 @@ bool Consensus::CheckTxAssets(const CTransaction& tx, CValidationState& state, c } else { for (auto out : tx.vout) { int nType; + int nScriptType; bool _isOwner; - if (out.scriptPubKey.IsAssetScript(nType, _isOwner)) { + if (out.scriptPubKey.IsAssetScript(nType, nScriptType, _isOwner)) { if (nType != TX_TRANSFER_ASSET) { return state.DoS(100, false, REJECT_INVALID, "bad-txns-bad-asset-transaction", false, "", tx.GetHash()); } diff --git a/src/consensus/tx_verify.h b/src/consensus/tx_verify.h index 9b919720fb..b026e82bfd 100644 --- a/src/consensus/tx_verify.h +++ b/src/consensus/tx_verify.h @@ -1,5 +1,5 @@ // Copyright (c) 2017-2017 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/core_write.cpp b/src/core_write.cpp index 189d96718f..7f2d0a1c2b 100644 --- a/src/core_write.cpp +++ b/src/core_write.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -159,6 +159,7 @@ void ScriptPubKeyToUniv(const CScript& scriptPubKey, UniValue& out, bool fIncludeHex) { txnouttype type; + txnouttype scriptType; std::vector addresses; int nRequired; @@ -166,7 +167,7 @@ void ScriptPubKeyToUniv(const CScript& scriptPubKey, if (fIncludeHex) out.pushKV("hex", HexStr(scriptPubKey.begin(), scriptPubKey.end())); - if (!ExtractDestinations(scriptPubKey, type, addresses, nRequired)) { + if (!ExtractDestinations(scriptPubKey, type, scriptType, addresses, nRequired)) { out.pushKV("type", GetTxnOutputType(type)); return; } diff --git a/src/httpserver.cpp b/src/httpserver.cpp index 4fc382152e..ab89e371de 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2015-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/init.cpp b/src/init.cpp index 41f34e1f80..9bef67af9f 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -1191,9 +1191,11 @@ bool AppInitParameterInteraction() dustRelayFee = CFeeRate(n); } - fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", !chainparams.RequireStandard()); + fRequireStandard = !gArgs.GetBoolArg("-acceptnonstdtxn", false); if (chainparams.RequireStandard() && !fRequireStandard) return InitError(strprintf("acceptnonstdtxn is not currently supported for %s chain", chainparams.NetworkIDString())); + // This defaults all chains to requiring standard transactions; testnet and regtest can use "-acceptnonstdtxn" to over-ride, but mainnet cannot + // Note that as previously coded, the "-acceptnonstdtxn" switch was broken. Bitcoin fixed this differently in their PR#15891 nBytesPerSigOp = gArgs.GetArg("-bytespersigop", nBytesPerSigOp); #ifdef ENABLE_WALLET diff --git a/src/keystore.h b/src/keystore.h index 829da9a3f0..644491a048 100644 --- a/src/keystore.h +++ b/src/keystore.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2015 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/net.cpp b/src/net.cpp index 4344536dc2..f90b2e9b05 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -1779,7 +1779,7 @@ void CConnman::ThreadOpenConnections() return; // Add seed nodes if DNS seeds are all down (an infrastructure attack?). - if (addrman.size() == 0 && (GetTime() - nStart > 60)) { + if (addrman.size() < 5 && (GetTime() - nStart > 60)) { static bool done = false; if (!done) { diff --git a/src/net.h b/src/net.h index 4bb785e136..7591811d7d 100644 --- a/src/net.h +++ b/src/net.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -83,7 +83,7 @@ static const uint64_t MAX_UPLOAD_TIMEFRAME = 60 * 60 * 24; /** Default for blocks only*/ static const bool DEFAULT_BLOCKSONLY = false; -static const bool DEFAULT_FORCEDNSSEED = true; +static const bool DEFAULT_FORCEDNSSEED = false; static const size_t DEFAULT_MAXRECEIVEBUFFER = 5 * 1000; static const size_t DEFAULT_MAXSENDBUFFER = 1 * 1000; diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 379fda63b2..af99c62c4c 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -42,7 +42,7 @@ std::atomic nTimeBestReceived(0); // Used only to inform the wallet of struct IteratorComparator { template - bool operator()(const I& a, const I& b) + bool operator()(const I& a, const I& b) const { return &(*a) < &(*b); } @@ -157,57 +157,57 @@ struct CNodeState { //! The peer's address const CService address; //! Whether we have a fully established connection. - bool fCurrentlyConnected; + bool fCurrentlyConnected{false}; //! Accumulated misbehaviour score for this peer. - int nMisbehavior; + int nMisbehavior{0}; //! Whether this peer should be disconnected and banned (unless whitelisted). - bool fShouldBan; + bool fShouldBan{false}; //! String name of this peer (debugging/logging purposes). const std::string name; //! List of asynchronously-determined block rejections to notify this peer about. std::vector rejects; //! The best known block we know this peer has announced. - const CBlockIndex *pindexBestKnownBlock; + const CBlockIndex* pindexBestKnownBlock{nullptr}; //! The hash of the last unknown block this peer has announced. - uint256 hashLastUnknownBlock; + uint256 hashLastUnknownBlock{}; //! The last full block we both have. - const CBlockIndex *pindexLastCommonBlock; + const CBlockIndex* pindexLastCommonBlock{nullptr}; //! The best header we have sent our peer. - const CBlockIndex *pindexBestHeaderSent; + const CBlockIndex* pindexBestHeaderSent{nullptr}; //! Length of current-streak of unconnecting headers announcements - int nUnconnectingHeaders; + int nUnconnectingHeaders{0}; //! Whether we've started headers synchronization with this peer. - bool fSyncStarted; + bool fSyncStarted{false}; //! When to potentially disconnect peer for stalling headers download - int64_t nHeadersSyncTimeout; + int64_t nHeadersSyncTimeout{0}; //! Since when we're stalling block download progress (in microseconds), or 0. - int64_t nStallingSince; + int64_t nStallingSince{0}; std::list vBlocksInFlight; //! When the first entry in vBlocksInFlight started downloading. Don't care when vBlocksInFlight is empty. - int64_t nDownloadingSince; - int nBlocksInFlight; - int nBlocksInFlightValidHeaders; + int64_t nDownloadingSince{0}; + int nBlocksInFlight{0}; + int nBlocksInFlightValidHeaders{0}; //! Whether we consider this a preferred download peer. - bool fPreferredDownload; + bool fPreferredDownload{false}; //! Whether this peer wants invs or headers (when possible) for block announcements. - bool fPreferHeaders; + bool fPreferHeaders{false}; //! Whether this peer wants invs or cmpctblocks (when possible) for block announcements. - bool fPreferHeaderAndIDs; + bool fPreferHeaderAndIDs{false}; /** * Whether this peer will send us cmpctblocks if we request them. * This is not used to gate request logic, as we really only care about fSupportsDesiredCmpctVersion, * but is used as a flag to "lock in" the version of compact blocks (fWantsCmpctWitness) we send. */ - bool fProvidesHeaderAndIDs; + bool fProvidesHeaderAndIDs{false}; //! Whether this peer can give us witnesses - bool fHaveWitness; + bool fHaveWitness{false}; //! Whether this peer wants witnesses in cmpctblocks/blocktxns - bool fWantsCmpctWitness; + bool fWantsCmpctWitness{false}; /** * If we've announced NODE_WITNESS to this peer: whether the peer sends witnesses in cmpctblocks/blocktxns, * otherwise: whether this peer sends non-witnesses in cmpctblocks/blocktxns. */ - bool fSupportsDesiredCmpctVersion; + bool fSupportsDesiredCmpctVersion{false}; /** State used to enforce CHAIN_SYNC_TIMEOUT * Only in effect for outbound, non-manual connections, with @@ -234,33 +234,12 @@ struct CNodeState { bool m_protect; }; - ChainSyncTimeoutState m_chain_sync; + ChainSyncTimeoutState m_chain_sync{0, nullptr, false, false}; //! Time of last new block announcement - int64_t m_last_block_announcement; + int64_t m_last_block_announcement{0}; CNodeState(CAddress addrIn, std::string addrNameIn) : address(addrIn), name(addrNameIn) { - fCurrentlyConnected = false; - nMisbehavior = 0; - fShouldBan = false; - pindexBestKnownBlock = nullptr; - hashLastUnknownBlock.SetNull(); - pindexLastCommonBlock = nullptr; - pindexBestHeaderSent = nullptr; - nUnconnectingHeaders = 0; - fSyncStarted = false; - nHeadersSyncTimeout = 0; - nStallingSince = 0; - nDownloadingSince = 0; - nBlocksInFlight = 0; - nBlocksInFlightValidHeaders = 0; - fPreferredDownload = false; - fPreferHeaders = false; - fPreferHeaderAndIDs = false; - fProvidesHeaderAndIDs = false; - fHaveWitness = false; - fWantsCmpctWitness = false; - fSupportsDesiredCmpctVersion = false; m_chain_sync = { 0, nullptr, false, false }; m_last_block_announcement = 0; } @@ -1192,9 +1171,6 @@ void static ProcessGetData(CNode* pfrom, const Consensus::Params& consensusParam } } - // Track requests for our stuff. - GetMainSignals().Inventory(inv.hash); - if (inv.type == MSG_BLOCK || inv.type == MSG_FILTERED_BLOCK || inv.type == MSG_CMPCT_BLOCK || inv.type == MSG_WITNESS_BLOCK) break; } @@ -1952,9 +1928,6 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr pfrom->AskFor(inv); } } - - // Track requests for our stuff - GetMainSignals().Inventory(inv.hash); } } diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp index e4df304922..4dd5c5f97b 100644 --- a/src/policy/policy.cpp +++ b/src/policy/policy.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -59,9 +59,9 @@ bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFeeIn) return (txout.nValue < GetDustThreshold(txout, dustRelayFeeIn)); } -bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, const bool witnessEnabled) { +bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, txnouttype& scriptType, const bool witnessEnabled) { std::vector > vSolutions; - if (!Solver(scriptPubKey, whichType, vSolutions)) + if (!Solver(scriptPubKey, whichType, scriptType, vSolutions)) return false; @@ -123,8 +123,9 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason, const bool witnes unsigned int nDataOut = 0; unsigned int nAssetDataOut = 0; txnouttype whichType; + txnouttype scriptType; for (const CTxOut& txout : tx.vout) { - if (!::IsStandard(txout.scriptPubKey, whichType, witnessEnabled)) { + if (!::IsStandard(txout.scriptPubKey, whichType, scriptType, witnessEnabled)) { reason = "scriptpubkey"; return false; } @@ -184,12 +185,13 @@ bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs) std::vector > vSolutions; txnouttype whichType; + txnouttype scriptType; // get the scriptPubKey corresponding to this input: const CScript& prevScript = prev.scriptPubKey; - if (!Solver(prevScript, whichType, vSolutions)) + if (!Solver(prevScript, whichType, scriptType, vSolutions)) return false; - if (whichType == TX_SCRIPTHASH) + if (whichType == TX_SCRIPTHASH || scriptType == TX_SCRIPTHASH) { std::vector > stack; // convert the scriptSig into a stack, so we can inspect the redeemScript diff --git a/src/policy/policy.h b/src/policy/policy.h index 371400181f..0d41412b80 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -78,7 +78,7 @@ CAmount GetDustThreshold(const CTxOut& txout, const CFeeRate& dustRelayFee); bool IsDust(const CTxOut& txout, const CFeeRate& dustRelayFee); -bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, const bool witnessEnabled = false); +bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, txnouttype& scriptType, const bool witnessEnabled = false); /** * Check for standard transaction types * @return True if all outputs (scriptPubKeys) use only standard transaction forms diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 6b76f1bf9f..54baacbe0d 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/protocol.h b/src/protocol.h index 2682214cdf..0b9180ce1b 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/addresstablemodel.cpp b/src/qt/addresstablemodel.cpp index a2123c5f6b..5efc223770 100644 --- a/src/qt/addresstablemodel.cpp +++ b/src/qt/addresstablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/assetcontroldialog.cpp b/src/qt/assetcontroldialog.cpp index 60a6f157c4..9cad6221c1 100644 --- a/src/qt/assetcontroldialog.cpp +++ b/src/qt/assetcontroldialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/assetrecord.h b/src/qt/assetrecord.h index b7f96e38b9..461959a5a1 100644 --- a/src/qt/assetrecord.h +++ b/src/qt/assetrecord.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/assetsdialog.cpp b/src/qt/assetsdialog.cpp index 3961eef7ed..f133b47456 100644 --- a/src/qt/assetsdialog.cpp +++ b/src/qt/assetsdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/assettablemodel.cpp b/src/qt/assettablemodel.cpp index 6969d92797..d5e859751d 100644 --- a/src/qt/assettablemodel.cpp +++ b/src/qt/assettablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/assettablemodel.h b/src/qt/assettablemodel.h index 21dabb4ce6..914f17d836 100644 --- a/src/qt/assettablemodel.h +++ b/src/qt/assettablemodel.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/bantablemodel.cpp b/src/qt/bantablemodel.cpp index c49138e565..8ced502b6e 100644 --- a/src/qt/bantablemodel.cpp +++ b/src/qt/bantablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index a50ad2c5db..39e85f8376 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index 68f0707972..d5c7ea6f91 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/createassetdialog.cpp b/src/qt/createassetdialog.cpp index ba30207cfc..bf7a8bb894 100644 --- a/src/qt/createassetdialog.cpp +++ b/src/qt/createassetdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/currencyunits.h b/src/qt/currencyunits.h index 9e52d48ad3..b2ae698590 100644 --- a/src/qt/currencyunits.h +++ b/src/qt/currencyunits.h @@ -1,33 +1,33 @@ -// Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers -// Distributed under the MIT software license, see the accompanying -// file COPYING or http://www.opensource.org/licenses/mit-license.php. - -#ifndef RAVEN_QT_CURRENCYUNITS_H -#define RAVEN_QT_CURRENCYUNITS_H - -#include -#include - -/** Currency unit definitions. Stores basic title and symbol for a rvn swap asset, - * as well as how many decimals to format the dispaly with. -*/ -struct CurrencyUnitDetails -{ - const char* Header; - const char* Ticker; - float Scalar; - int Decimals; -}; - -class CurrencyUnits -{ -public: - static std::array CurrencyOptions; - - static int count() { - return CurrencyOptions.size(); - } -}; - -#endif // RAVEN_QT_CURRENCYUNITS_H +// Copyright (c) 2011-2016 The Bitcoin Core developers +// Copyright (c) 2017-2021 The Raven Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef RAVEN_QT_CURRENCYUNITS_H +#define RAVEN_QT_CURRENCYUNITS_H + +#include +#include + +/** Currency unit definitions. Stores basic title and symbol for a rvn swap asset, + * as well as how many decimals to format the dispaly with. +*/ +struct CurrencyUnitDetails +{ + const char* Header; + const char* Ticker; + float Scalar; + int Decimals; +}; + +class CurrencyUnits +{ +public: + static std::array CurrencyOptions; + + static int count() { + return CurrencyOptions.size(); + } +}; + +#endif // RAVEN_QT_CURRENCYUNITS_H diff --git a/src/qt/forms/mnemonicdialog2.ui b/src/qt/forms/mnemonicdialog2.ui index ea1f8cf55a..00451e90a7 100644 --- a/src/qt/forms/mnemonicdialog2.ui +++ b/src/qt/forms/mnemonicdialog2.ui @@ -118,6 +118,9 @@ + + + diff --git a/src/qt/forms/mnemonicdialog3.ui b/src/qt/forms/mnemonicdialog3.ui index 84818e0a36..9223f56c77 100644 --- a/src/qt/forms/mnemonicdialog3.ui +++ b/src/qt/forms/mnemonicdialog3.ui @@ -117,6 +117,106 @@ + + + + + + + + + 239 + 41 + 41 + + + + + + + 239 + 41 + 41 + + + + + + + 239 + 41 + 41 + + + + + + + + + 239 + 41 + 41 + + + + + + + 239 + 41 + 41 + + + + + + + 239 + 41 + 41 + + + + + + + + + 190 + 190 + 190 + + + + + + + 190 + 190 + 190 + + + + + + + 190 + 190 + 190 + + + + + + + + + + + + + @@ -273,4 +373,4 @@ They are not recoverable !! - + \ No newline at end of file diff --git a/src/qt/forms/modaloverlay.ui b/src/qt/forms/modaloverlay.ui index 6ff0981e81..5cc835b57e 100644 --- a/src/qt/forms/modaloverlay.ui +++ b/src/qt/forms/modaloverlay.ui @@ -7,7 +7,7 @@ 0 0 640 - 385 + 401 @@ -333,6 +333,13 @@ QLabel { color: rgb(40,40,40); } 10 + + + + + + + diff --git a/src/qt/forms/optionsdialog.ui b/src/qt/forms/optionsdialog.ui index 054236a8d6..11baa0ff98 100644 --- a/src/qt/forms/optionsdialog.ui +++ b/src/qt/forms/optionsdialog.ui @@ -20,7 +20,7 @@ - 4 + 3 @@ -541,6 +541,16 @@ + + + + Only show toolbar icons. No text. + + + &Icons only + + + diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index 4884e62fb2..a07bd2452e 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -40,7 +40,7 @@ 34 - QLayout::SetMaximumSize + QLayout::SetMinAndMaxSize 40 @@ -70,6 +70,12 @@ 0 + + + 450 + 243 + + QFrame::NoFrame @@ -155,6 +161,9 @@ + + 10 + 12 @@ -464,7 +473,7 @@ 20 - 87 + 20 @@ -474,6 +483,12 @@ + + + 450 + 150 + + true @@ -657,6 +672,12 @@ 0 + + + 0 + 300 + + QFrame::NoFrame diff --git a/src/qt/forms/reissueassetdialog.ui b/src/qt/forms/reissueassetdialog.ui index 75b9471841..da02004fd6 100644 --- a/src/qt/forms/reissueassetdialog.ui +++ b/src/qt/forms/reissueassetdialog.ui @@ -10,6 +10,12 @@ 1051 + + + 600 + 550 + + Transaction details @@ -578,6 +584,12 @@ + + + 400 + 180 + + QFrame::StyledPanel @@ -588,6 +600,9 @@ 0 + + QLayout::SetDefaultConstraint + 12 @@ -1581,6 +1596,9 @@ + + QLayout::SetFixedSize + diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 8f41da9405..adebc9e1c7 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -29,8 +29,6 @@ static const bool DEFAULT_SPLASHSCREEN = true; #define COLOR_BAREADDRESS QColor(140, 140, 140) /* Transaction list -- TX status decoration - open until date */ #define COLOR_TX_STATUS_OPENUNTILDATE QColor(64, 64, 255) -/* Transaction list -- TX status decoration - offline */ -#define COLOR_TX_STATUS_OFFLINE QColor(192, 192, 192) /* Transaction list -- TX status decoration - danger, tx needs attention */ #define COLOR_TX_STATUS_DANGER QColor(200, 100, 100) /* Transaction list -- TX status decoration - default color */ diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index d2c0e597ee..be369811c6 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -597,125 +597,6 @@ bool ToolTipToRichTextFilter::eventFilter(QObject *obj, QEvent *evt) return QObject::eventFilter(obj, evt); } -void TableViewLastColumnResizingFixer::connectViewHeadersSignals() -{ - connect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); - connect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); -} - -// We need to disconnect these while handling the resize events, otherwise we can enter infinite loops. -void TableViewLastColumnResizingFixer::disconnectViewHeadersSignals() -{ - disconnect(tableView->horizontalHeader(), SIGNAL(sectionResized(int,int,int)), this, SLOT(on_sectionResized(int,int,int))); - disconnect(tableView->horizontalHeader(), SIGNAL(geometriesChanged()), this, SLOT(on_geometriesChanged())); -} - -// Setup the resize mode, handles compatibility for Qt5 and below as the method signatures changed. -// Refactored here for readability. -void TableViewLastColumnResizingFixer::setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode) -{ -#if QT_VERSION < 0x050000 - tableView->horizontalHeader()->setResizeMode(logicalIndex, resizeMode); -#else - tableView->horizontalHeader()->setSectionResizeMode(logicalIndex, resizeMode); -#endif -} - -void TableViewLastColumnResizingFixer::resizeColumn(int nColumnIndex, int width) -{ - tableView->setColumnWidth(nColumnIndex, width); - tableView->horizontalHeader()->resizeSection(nColumnIndex, width); -} - -int TableViewLastColumnResizingFixer::getColumnsWidth() -{ - int nColumnsWidthSum = 0; - for (int i = 0; i < columnCount; i++) - { - nColumnsWidthSum += tableView->horizontalHeader()->sectionSize(i); - } - return nColumnsWidthSum; -} - -int TableViewLastColumnResizingFixer::getAvailableWidthForColumn(int column) -{ - int nResult = lastColumnMinimumWidth; - int nTableWidth = tableView->horizontalHeader()->width(); - - if (nTableWidth > 0) - { - int nOtherColsWidth = getColumnsWidth() - tableView->horizontalHeader()->sectionSize(column); - nResult = std::max(nResult, nTableWidth - nOtherColsWidth); - } - - return nResult; -} - -// Make sure we don't make the columns wider than the table's viewport width. -void TableViewLastColumnResizingFixer::adjustTableColumnsWidth() -{ - disconnectViewHeadersSignals(); - resizeColumn(lastColumnIndex, getAvailableWidthForColumn(lastColumnIndex)); - connectViewHeadersSignals(); - - int nTableWidth = tableView->horizontalHeader()->width(); - int nColsWidth = getColumnsWidth(); - if (nColsWidth > nTableWidth) - { - resizeColumn(secondToLastColumnIndex,getAvailableWidthForColumn(secondToLastColumnIndex)); - } -} - -// Make column use all the space available, useful during window resizing. -void TableViewLastColumnResizingFixer::stretchColumnWidth(int column) -{ - disconnectViewHeadersSignals(); - resizeColumn(column, getAvailableWidthForColumn(column)); - connectViewHeadersSignals(); -} - -// When a section is resized this is a slot-proxy for ajustAmountColumnWidth(). -void TableViewLastColumnResizingFixer::on_sectionResized(int logicalIndex, int oldSize, int newSize) -{ - adjustTableColumnsWidth(); - int remainingWidth = getAvailableWidthForColumn(logicalIndex); - if (newSize > remainingWidth) - { - resizeColumn(logicalIndex, remainingWidth); - } -} - -// When the table's geometry is ready, we manually perform the stretch of the "Message" column, -// as the "Stretch" resize mode does not allow for interactive resizing. -void TableViewLastColumnResizingFixer::on_geometriesChanged() -{ - if ((getColumnsWidth() - this->tableView->horizontalHeader()->width()) != 0) - { - disconnectViewHeadersSignals(); - resizeColumn(secondToLastColumnIndex, getAvailableWidthForColumn(secondToLastColumnIndex)); - connectViewHeadersSignals(); - } -} - -/** - * Initializes all internal variables and prepares the - * the resize modes of the last 2 columns of the table and - */ -TableViewLastColumnResizingFixer::TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth, QObject *parent) : - QObject(parent), - tableView(table), - lastColumnMinimumWidth(lastColMinimumWidth), - allColumnsMinimumWidth(allColsMinimumWidth) -{ - columnCount = tableView->horizontalHeader()->count(); - lastColumnIndex = columnCount - 1; - secondToLastColumnIndex = columnCount - 2; - tableView->horizontalHeader()->setMinimumSectionSize(allColumnsMinimumWidth); - setViewHeaderResizeMode(columnCount - 3, QHeaderView::ResizeToContents); - setViewHeaderResizeMode(secondToLastColumnIndex, QHeaderView::ResizeToContents); - setViewHeaderResizeMode(lastColumnIndex, QHeaderView::Stretch); -} - #ifdef WIN32 fs::path static StartupShortcutPath() { diff --git a/src/qt/guiutil.h b/src/qt/guiutil.h index 9019949d81..9856b6b880 100644 --- a/src/qt/guiutil.h +++ b/src/qt/guiutil.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -166,45 +166,6 @@ namespace GUIUtil int size_threshold; }; - /** - * Makes a QTableView last column feel as if it was being resized from its left border. - * Also makes sure the column widths are never larger than the table's viewport. - * In Qt, all columns are resizable from the right, but it's not intuitive resizing the last column from the right. - * Usually our second to last columns behave as if stretched, and when on strech mode, columns aren't resizable - * interactively or programmatically. - * - * This helper object takes care of this issue. - * - */ - class TableViewLastColumnResizingFixer: public QObject - { - Q_OBJECT - - public: - TableViewLastColumnResizingFixer(QTableView* table, int lastColMinimumWidth, int allColsMinimumWidth, QObject *parent); - void stretchColumnWidth(int column); - - private: - QTableView* tableView; - int lastColumnMinimumWidth; - int allColumnsMinimumWidth; - int lastColumnIndex; - int columnCount; - int secondToLastColumnIndex; - - void adjustTableColumnsWidth(); - int getAvailableWidthForColumn(int column); - int getColumnsWidth(); - void connectViewHeadersSignals(); - void disconnectViewHeadersSignals(); - void setViewHeaderResizeMode(int logicalIndex, QHeaderView::ResizeMode resizeMode); - void resizeColumn(int nColumnIndex, int width); - - private Q_SLOTS: - void on_sectionResized(int logicalIndex, int oldSize, int newSize); - void on_geometriesChanged(); - }; - bool GetStartOnSystemStartup(); bool SetStartOnSystemStartup(bool fAutoStart); diff --git a/src/qt/locale/raven_af.ts b/src/qt/locale/raven_af.ts index 2d0a109497..e841915bb3 100644 --- a/src/qt/locale/raven_af.ts +++ b/src/qt/locale/raven_af.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Regs-kliek om die adres of etiket te verander + Create a new address - Skep 'n nuwe adres + Skep 'n nuwe adres + &New &Nuut + Copy the currently selected address to the system clipboard Dupliseer die geselekteerde adres na die sisteem se geheuebord + &Copy &Dupliseer + C&lose S&luit + Delete the currently selected address from the list Verwyder die adres wat u gekies het van die lys + Export the data in the current tab to a file - Voer die inligting op hierdie bladsy uit na 'n leer + Voer die inligting op hierdie bladsy uit na 'n leer + &Export &Voer uit + &Delete &Vee uit + Choose the address to send coins to Kies die adres waarheen u munte wil stuur + Choose the address to receive coins with Kies die adres wat die munte moet ontvang + C&hoose K&ies + Sending addresses Stuurders adresse + Receiving addresses Ontvanger adresse + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Hierdie is die adresse vanwaar u Raven betalings stuur. U moet altyd die bedrag en die adres van die ontvanger nagaan voordat u enige munte stuur. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Hierdie is die adresse waar u Ravens sal ontvang. Ons beveel aan dat u 'n nuwe adres kies vir elke transaksie + Hierdie is die adresse waar u Ravens sal ontvang. Ons beveel aan dat u 'n nuwe adres kies vir elke transaksie + &Copy Address &Dupliseer Adres + Copy &Label Kopieer &Etiket + &Edit &Verander + Export Address List Voer adreslys uit + Comma separated file (*.csv) Comma separated file (*.csv) + Exporting Failed Uitvoer was onsuksesvol + There was an error trying to save the address list to %1. Please try again. Die adreslys kon nie in %1 gestoor word nie. Probeer asseblief weer. @@ -103,14 +125,17 @@ AddressTableModel + Label Merk + Address Adres + (no label) (geen etiket) @@ -118,938 +143,8146 @@ AskPassphraseDialog + Passphrase Dialog Wagwoord Dialoog + Enter passphrase Tik u wagwoord in + New passphrase Nuwe wagwoord + Repeat new passphrase Herhaal nuwe wagwoord + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. - Tik die nuwe wagwoord vir u beursie.<br/>Gerbuik asseblief 'n wagwoord met <b>tien of meer lukrake karakters</b>, of <b>agt of meer woorde</b>. + Tik die nuwe wagwoord vir u beursie.<br/>Gerbuik asseblief 'n wagwoord met <b>tien of meer lukrake karakters</b>, of <b>agt of meer woorde</b>. + Encrypt wallet Kodifiseer beursie + This operation needs your wallet passphrase to unlock the wallet. U het u beursie se wagwoord nodig om toegang tot u beursie te verkry. + Unlock wallet Sluit beursie oop + This operation needs your wallet passphrase to decrypt the wallet. U het u beursie se wagwoord nodig om u beursie se kode te ontsyfer. + Decrypt wallet Ontsleutel beursie + Change passphrase Verander wagwoord + Enter the old passphrase and new passphrase to the wallet. Tik die ou en die nuwe wagwoorde vir die beursie. + Confirm wallet encryption Bevestig dat die beursie gekodifiseer is + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Waarskuwing: Indien u die beursie kodifiseer en u vergeet u wagwoord <b>VERLOOR U AL U RAVENS</b>! + Are you sure you wish to encrypt your wallet? Is u seker dat u die beursie wil kodifiseer? + + Wallet encrypted Beursie gekodifiseer + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. BELANGRIK: Alle vorige kopieë en rugsteun-weergawes wat u tevore van die gemaak het, moet vervang word met die jongste weergawe van u nuutste gekodifiseerde beursie. Alle vorige weergawes en rugsteun-kopieë van u beursie sal nutteloos raak die oomblik wat u die nuut-gekodifiseerde beursie begin gebruik. + + + + Wallet encryption failed Kodifikasie was onsuksesvol + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Weens 'n interne fout het kodifikasie het nie geslaag nie. U beursie is nie gekodifiseer nie + Weens 'n interne fout het kodifikasie het nie geslaag nie. U beursie is nie gekodifiseer nie + + The supplied passphrases do not match. Die wagwoorde stem nie ooreen nie. + Wallet unlock failed Die beursie is nie oopgesluit nie + + + The passphrase entered for the wallet decryption was incorrect. U het die verkeerde wagwoord ingetik. + Wallet decryption failed Beursie-dekripsie het misluk + Wallet passphrase was successfully changed. Beursie wagwoordfrase is suksesvol verander. + + Warning: The Caps Lock key is on! WAARSKUWING: Outomatiese Kapitalisering is aktief op u sleutelbord! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmasker + + Asset Selection + - Banned Until - Verban tot + + Quantity: + - - - RavenGUI - Sign &message... - Teken &boodskap... + + Bytes: + - Synchronizing with network... - Netwerk-sinkronisasie... + + Amount: + - &Overview - &Oorsig + + Dust: + - Node - Node + + Fee: + - Show general overview of wallet - Vertoon 'n algemene oorsig van die beursie + + After Fee: + - &Transactions - &Transaksies + + Change: + - Browse transaction history - Blaai deur transaksiegeskiedenis + + (un)select all + - E&xit - &Sluit + + Tree mode + - Quit application - Stop en verlaat die applikasie + + List mode + - &About %1 - &Oor %1 + + View assets that you have the ownership asset for + - Show information about %1 - Wys inligting oor %1 + + View Administrator Assets + - About &Qt - Oor &Qt + + Asset + - Show information about Qt - Wys inligting oor Qt + + Amount + - &Options... - &Opsies + + Received with label + - Modify configuration options for %1 - Verander konfigurasie-opsies vir %1 + + Received with address + - &Encrypt Wallet... - &Kodifiseer Beursie + + Date + - &Backup Wallet... - &Rugsteun-kopie van Beursie + + Confirmations + - &Change Passphrase... - &Verander Wagwoord + + Confirmed + - &Sending addresses... - &Versending adresse... + + Copy address + - &Receiving addresses... - &Ontvanger adresse + + Copy label + - Open &URI... - Oop & URI... + + + Copy amount + - Click to disable network activity. - Kliek om netwerkaktiwiteit af te skakel. + + Copy transaction ID + - Network activity disabled. - Netwerkaktiwiteit gedeaktiveer. + + Lock unspent + - Click to enable network activity again. - Kliek om netwerkaktiwiteit weer aan te skakel. + + Unlock unspent + - Reindexing blocks on disk... - Besig met herindeksering van blokke op hardeskyf... + + Copy quantity + - Send coins to a Raven address - Stuur munte na 'n Raven adres + + Copy fee + - Backup wallet to another location - Maak 'n rugsteun-kopié van beursie na 'n ander stoorplek + + Copy after fee + - Change the passphrase used for wallet encryption - Verander die wagwoord wat ek vir kodifikasie van my beursie gebruik + + Copy bytes + - &Debug window - &Ontfout venster + + Copy dust + - Open debugging and diagnostic console - Maak ontfouting en diagnostiese konsole oop + + Copy change + - Raven - Raven + + (%1 locked) + - Wallet - Beursie + + yes + - &Send - &Stuur + + no + - &Receive - &Ontvang + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Show / Hide - &Wys / Versteek + + Can vary +/- %1 satoshi(s) per input. + - Show or hide the main Window - Wys of versteek die hoofbladsy + + + (no label) + - Encrypt the private keys that belong to your wallet - Kodifiseer die private sleutes wat aan jou beursie gekoppel is. + + change from %1 (%2) + - Sign messages with your Raven addresses to prove you own them - Onderteken boodskappe met u Raven adresse om u eienaarskap te bewys + + (change) + + + + AssetTableModel - Verify messages to ensure they were signed with specified Raven addresses - Verifieër boodskappe om seker te maak dat dit met die gespesifiseerde Raven adresse + + Name + - &File - &Leër + + Quantity + + + + AssetsDialog - &Help - &Help + + + Send Coins + - Tabs toolbar - Orebalk + + Asset Control Features + - Request payments (generates QR codes and raven: URIs) - Versoek betalings (genereer QR-kodes en raven: URI's) + + Inputs... + - Show the list of used sending addresses and labels - Vertoon die lys van gebruikte versendingsadresse en etikette + + automatically selected + - Show the list of used receiving addresses and labels - Vertoon die lys van gebruikte ontvangers-adresse en etikette + + Insufficient funds! + - Open a raven: URI or payment request - Skep 'n raven: URI of betalingsversoek + + Quantity: + - Indexing blocks on disk... - Blokke op skyf word geïndekseer... + + Bytes: + - Processing blocks on disk... - Blokke op skyf word geprosesseer... + + Amount: + - %1 behind - %1 agter + + Dust: + - Last received block was generated %1 ago. - Laaste ontvange blok is %1 gelede gegenereer. + + Fee: + - Transactions after this will not yet be visible. - Transaksies hierna sal nog nie sigbaar wees nie. + + After Fee: + - Error - Fout + + Change: + - Warning - Waarskuwing + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Information - Inligting + + Custom change address + - Up to date - Op datum + + Transaction Fee: + - Catching up... - Word op datum gebring... + + Choose... + - Date: %1 - - Datum: %1 - + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Address: %1 - - Adres: %1 - + + Warning: Fee estimation is currently not possible. + - Sent transaction - Gestuurde transaksie + + collapse fee-settings + - Incoming transaction - Inkomende transaksie + + Hide + - - - CoinControlDialog - Bytes: - Grepe: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Fee: - Fooi: + + per kilobyte + - Dust: - Stof: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - After Fee: - Na Fooi: + + (read the tooltip) + - (un)select all - (de)selekteer alle + + Recommended: + - List mode - Lysmodus + + Custom: + - Date - Datum + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Confirmations - Bevestigings + + Confirmation time target: + - Confirmed - Bevestig + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - yes - ja + + Request Replace-By-Fee + - no - nee + + Confirm the send action + - Can vary +/- %1 satoshi(s) per input. - Kan verskil met +/- %1 satoshi(s) per invoer. + + S&end + - (no label) - (geen etiket) + + Clear all fields of the form. + - change from %1 (%2) - verander van %1 (%2) + + Clear &All + - (change) - (verander) + + Transfer to multiple recipients at once + - - - EditAddressDialog - Edit Address - Wysig Adres + + Add &Recipient + - &Label - &Etiket + + Balance: + - &Address - &Adres + + Copy quantity + - Could not unlock wallet. - Kon beursie nie oopsluit nie. + + Copy amount + - - - FreespaceChecker - name - naam + + Copy fee + - - - HelpMessageDialog - version - weergawe + + Copy after fee + - About %1 - Ongeveer %1 + + Copy bytes + - UI Options: - Gebruikerkoppelvlakopsies: + + Copy dust + - Start minimized - Begin geminimeer + + Copy change + - Reset all settings changed in the GUI - Alle instellings wat in die grafiese gebruikerkoppelvlak gewysig is, terugstel + + %1 (%2 blocks) + - - - Intro - Welcome - Welkom + + + + + %1 to %2 + - Welcome to %1. - Welkom by %1. + + Are you sure you want to send? + - Error: Specified data directory "%1" cannot be created. - Fout: Gespesifiseerde dataleêr "%1" kon nie geskep word nie. + + added as transaction fee + - Error - Fout + + Confirm send assets + - - - ModalOverlay - Hide - Versteek + + The recipient address is not valid. Please recheck. + - - - OpenURIDialog - - - OptionsDialog - Options - Opsies + + The amount to pay must be larger than 0. + - MB - MG + + The amount exceeds your balance. + - Accept connections from outside - Verbindings van buite toelaat + + The total exceeds your balance when the %1 transaction fee is included. + - Allow incoming connections - Inkomende verbindings toelaat + + Duplicate address found: addresses should only be used once each. + - Reset all client options to default. - Alle kliëntopsies na verstek terugstel. + + Transaction creation failed! + - &Network - &Netwerk + + The transaction was rejected with the following reason: %1 + - W&allet - B&eursie + + A fee higher than %1 is considered an absurdly high fee. + - Expert - Kenner + + Payment request expired. + - Enable coin &control features - Bemagtig munt &beheer funksies. + + Pay only the required fee of %1 + - - &Port: - &Poort: + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Invalid Raven address + - IPv6 - IPv6 + + Warning: Unknown change address + - Tor - Tor + + Confirm custom change address + - &OK - &OK + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - &Cancel + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmasker + + + + Banned Until + Verban tot + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + Grepe: + + + + Amount: + + + + + Fee: + Fooi: + + + + Dust: + Stof: + + + + After Fee: + Na Fooi: + + + + Change: + + + + + (un)select all + (de)selekteer alle + + + + Tree mode + + + + + List mode + Lysmodus + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + Datum + + + + Confirmations + Bevestigings + + + + Confirmed + Bevestig + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + ja + + + + no + nee + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + Kan verskil met +/- %1 satoshi(s) per invoer. + + + + + (no label) + (geen etiket) + + + + change from %1 (%2) + verander van %1 (%2) + + + + (change) + (verander) + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Wysig Adres + + + + &Label + &Etiket + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adres + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + Kon beursie nie oopsluit nie. + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + naam + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + weergawe + + + + + (%1-bit) + + + + + About %1 + Ongeveer %1 + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + Gebruikerkoppelvlakopsies: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Begin geminimeer + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + Alle instellings wat in die grafiese gebruikerkoppelvlak gewysig is, terugstel + + + + Intro + + + Welcome + Welkom + + + + Welcome to %1. + Welkom by %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Fout: Gespesifiseerde dataleêr "%1" kon nie geskep word nie. + + + + Error + Fout + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Versteek + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opsies + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MG + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Alle kliëntopsies na verstek terugstel. + + + + &Reset Options + + + + + &Network + &Netwerk + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + B&eursie + + + + Expert + Kenner + + + + Enable coin &control features + Bemagtig munt &beheer funksies. + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + &Poort: + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel &Kanselleer - default - verstek + + default + verstek + + + + none + geen + + + + Confirm options reset + Bevestig terugstel van opsies + + + + + Client restart required to activate changes. + Kliënt moet herbegin word om veranderinge te aktiveer. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Beskikbaar: + + + + Your current spendable balance + + + + + Pending: + Hangend: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Onvolwasse: + + + + Mined balance that has not yet matured + + + + + Total: + Totaal: + + + + Your current total balance + U huidige totale balans + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + Besteebaar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Onlangse transaksies + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Gebruikeragent + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + %1 d + + + + %1 h + %1 u + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Geen + + + + N/A + n.v.t. + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 en %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + n.v.t. + + + + Client version + Kliëntweergawe + + + + &Information + + + + + Debug window + + + + + General + Algemeen + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Netwerk + + + + Name + Naam + + + + Number of connections + Aantal verbindings + + + + Block chain + Blokketting + + + + Current number of blocks + Huidige aantal blokke + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Ontvang + + + + + Sent + Gestuur + + + + &Peers + + + + + Banned peers + Verbanne porture + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + Gewitlys + + + + Direction + Rigting + + + + Version + Weergawe + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Gebruikeragent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Teken &boodskap... + + + + Synchronizing with network... + Netwerk-sinkronisasie... + + + + &Overview + &Oorsig + + + + Node + Node + + + + Show general overview of wallet + Vertoon 'n algemene oorsig van die beursie + + + + &Transactions + &Transaksies + + + + Browse transaction history + Blaai deur transaksiegeskiedenis + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Sluit + + + + Quit application + Stop en verlaat die applikasie + + + + &About %1 + &Oor %1 + + + + Show information about %1 + Wys inligting oor %1 + + + + About &Qt + Oor &Qt + + + + Show information about Qt + Wys inligting oor Qt + + + + &Options... + &Opsies + + + + Modify configuration options for %1 + Verander konfigurasie-opsies vir %1 + + + + &Encrypt Wallet... + &Kodifiseer Beursie + + + + &Backup Wallet... + &Rugsteun-kopie van Beursie + + + + &Change Passphrase... + &Verander Wagwoord + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Versending adresse... + + + + &Receiving addresses... + &Ontvanger adresse + + + + Open &URI... + Oop & URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Kliek om netwerkaktiwiteit af te skakel. + + + + Network activity disabled. + Netwerkaktiwiteit gedeaktiveer. + + + + Click to enable network activity again. + Kliek om netwerkaktiwiteit weer aan te skakel. + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Besig met herindeksering van blokke op hardeskyf... + + + + Send coins to a Raven address + Stuur munte na 'n Raven adres + + + + Backup wallet to another location + Maak 'n rugsteun-kopié van beursie na 'n ander stoorplek + + + + Change the passphrase used for wallet encryption + Verander die wagwoord wat ek vir kodifikasie van my beursie gebruik + + + + Open debugging and diagnostic console + Maak ontfouting en diagnostiese konsole oop + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Beursie + + + + &Send + &Stuur + + + + &Receive + &Ontvang + + + + &Show / Hide + &Wys / Versteek + + + + Show or hide the main Window + Wys of versteek die hoofbladsy + + + + Encrypt the private keys that belong to your wallet + Kodifiseer die private sleutes wat aan jou beursie gekoppel is. + + + + Sign messages with your Raven addresses to prove you own them + Onderteken boodskappe met u Raven adresse om u eienaarskap te bewys + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifieër boodskappe om seker te maak dat dit met die gespesifiseerde Raven adresse + + + + &File + &Leër + + + + &Help + &Help + + + + Request payments (generates QR codes and raven: URIs) + Versoek betalings (genereer QR-kodes en raven: URI's) + + + + Show the list of used sending addresses and labels + Vertoon die lys van gebruikte versendingsadresse en etikette + + + + Show the list of used receiving addresses and labels + Vertoon die lys van gebruikte ontvangers-adresse en etikette + + + + Open a raven: URI or payment request + Skep 'n raven: URI of betalingsversoek + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Blokke op skyf word geïndekseer... + + + + Processing blocks on disk... + Blokke op skyf word geprosesseer... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 agter + + + + Last received block was generated %1 ago. + Laaste ontvange blok is %1 gelede gegenereer. + + + + Transactions after this will not yet be visible. + Transaksies hierna sal nog nie sigbaar wees nie. + + + + Error + Fout + + + + Warning + Waarskuwing + + + + Information + Inligting + + + + Up to date + Op datum + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Word op datum gebring... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + Adres: %1 + + + + + Sent transaction + Gestuurde transaksie + + + + Incoming transaction + Inkomende transaksie + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Adres + + + + Amount + + + + + Label + Merk + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Merk + + + + Message + + + + + (no label) + (geen etiket) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + Grepe: + + + + Amount: + + + + + Fee: + Fooi: + + + + After Fee: + Na Fooi: + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Transaksiefooi: + + + + Choose... + Kies... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + per kilogreep + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Versteek + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + Stof: + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Balans: + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (geen etiket) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Datum + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Datum + + + + Type + + + + + Label + Merk + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (geen etiket) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + Bevestig + + + + Watch-only + + + + + Date + Datum + + + + Type + + + + + Label + Merk + + + + Address + Adres + + + + Asset + + + + + ID + + + + + Exporting Failed + Uitvoer was onsuksesvol + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &Voer uit + + + + Export the data in the current tab to a file + Voer die inligting op hierdie bladsy uit na 'n leer + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Kern + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Inligting + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Waarskuwing + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + Moenie transaksies vir langer as <n> ure in die geheuepoel hou nie (verstek: %u) + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - none - geen + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Confirm options reset - Bevestig terugstel van opsies + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Client restart required to activate changes. - Kliënt moet herbegin word om veranderinge te aktiveer. + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - - - OverviewPage - Available: - Beskikbaar: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Pending: - Hangend: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Immature: - Onvolwasse: + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Balances - Balanse + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Total: - Totaal: + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Your current total balance - U huidige totale balans + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Spendable: - Besteebaar: + + %s is set very high! + - Recent transactions - Onlangse transaksies + + ' doesn't exist in the database + - - - PaymentServer - - - PeerTableModel - User Agent - Gebruikeragent + + ' has already been used + - - - QObject - %1 d - %1 d + + ' is not a valid character in the expression: + - %1 h - %1 u + + ' the amount trying to reissue is to large + - %1 m - %1 m + + (default: %s) + - %1 s - %1 s + + A space separated list of 12-words used to import a bip44 wallet + - None - Geen + + Always query for peer addresses via DNS lookup (default: %u) + - N/A - n.v.t. + + Asset Transfer amounts must be greater than 0 + - %1 ms - %1 ms + + Asset doesn't exist: + - %1 and %2 - %1 en %2 + + Asset must be a qualifier, sub qualifier, or a restricted asset + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - n.v.t. + + Asset name is not valid + - Client version - Kliëntweergawe + + Asset with this name is already in the mempool + - General - Algemeen + + Done Loading + - Network - Netwerk + + Enable publish raw asset messages in <address> + - Name - Naam + + Error creating %s: You can't create non-HD wallets with this version. + - Number of connections - Aantal verbindings + + Error loading wallet %s. -wallet filename must be a regular file. + - Block chain - Blokketting + + Error loading wallet %s. Duplicate -wallet filename specified. + - Current number of blocks - Huidige aantal blokke + + Error loading wallet %s. Invalid characters in -wallet filename. + - Received - Ontvang + + Error not set + - Sent - Gestuur + + Error writing bip 39 passphrase to database + - Banned peers - Verbanne porture + + Error writing bip 39 vchseed to database + - Whitelisted - Gewitlys + + Error writing bip 39 words to database + - Direction - Rigting + + Every '(' must have a corresponding ')' in the expression: + - Version - Weergawe + + Failed to extract destination from change script + - User Agent - Gebruikeragent + + Failed to find restricted asset change address from inputs + - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Address - Adres + + Failed to get asset data from script + - Label - Merk + + Failed to get verifier string from output: + - - - RecentRequestsTableModel - Date - Datum + + Failed to load Assets Database + - Label - Merk + + Flag must be 1 or 0 + - (no label) - (geen etiket) + + How many blocks to check at startup (default: %u, 0 = all) + - - - SendCoinsDialog - Bytes: - Grepe: + + Include IP addresses in debug output (default: %u) + - Fee: - Fooi: + + Init Message Channels - Scanning Asset Transactions + - After Fee: - Na Fooi: + + Insufficient asset funds + - Transaction Fee: - Transaksiefooi: + + Invalid Qualifier Name: + - Choose... - Kies... + + Invalid expressions in verifier string: + - per kilobyte - per kilogreep + + Invalid parameter: amount must be + - Hide - Versteek + + Invalid parameter: amount must be between + - total at least - totaal ten minste + + Invalid parameter: asset amount can't be equal to or less than zero. + - Dust: - Stof: + + Invalid parameter: asset amount greater than max money: + - Balance: - Balans: + + Invalid parameter: asset_name ' + - (no label) - (geen etiket) + + Invalid parameter: has_ipfs must be 0 or 1. + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Date - Datum + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - - - TransactionDescDialog - - - TransactionTableModel - Date - Datum + + Invalid parameter: reissuable must be 0 or 1 + - Label - Merk + + Invalid parameter: reissuable must be 0 + - (no label) - (geen etiket) + + Invalid parameter: units must be + - - - TransactionView - Comma separated file (*.csv) - Comma separated file (*.csv) + + Invalid parameter: units must be between 0-8. + - Confirmed - Bevestig + + Invalid syntax: + - Date - Datum + + Keypool ran out, please call keypoolrefill first + - Label - Merk + + Length is to large. Please use a smaller length + - Address - Adres + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Exporting Failed - Uitvoer was onsuksesvol + + Listen for connections on <port> (default: %u or testnet: %u) + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - &Export - &Voer uit + + Maintain at most <n> connections to peers (default: %u) + - Export the data in the current tab to a file - Voer die inligting op hierdie bladsy uit na 'n leer + + Make the wallet broadcast transactions + - - - raven-core - Raven Core - Raven Kern + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Information - Inligting + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Warning - Waarskuwing + + Mempool cleared + - Do not keep transactions in the mempool longer than <n> hours (default: %u) - Moenie transaksies vir langer as <n> ure in die geheuepoel hou nie (verstek: %u) + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + Insufficient funds Onvoldoende fondse + Loading block index... Blokindeks word gelaai... + Loading wallet... Beursie word gelaai... - Rescanning... - Word herskandeer... + + Cannot downgrade wallet + - Done loading - Klaar met laai + + Rescanning... + Word herskandeer... + Error Fout diff --git a/src/qt/locale/raven_af_ZA.ts b/src/qt/locale/raven_af_ZA.ts index 181076f0d2..0ca4d930a3 100644 --- a/src/qt/locale/raven_af_ZA.ts +++ b/src/qt/locale/raven_af_ZA.ts @@ -1,92 +1,141 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address - Skep 'n nuwe adres + Skep 'n nuwe adres + &New &Nuwe + Copy the currently selected address to the system clipboard - Maak 'n kopie van die huidige adres na die stelsel klipbord + Maak 'n kopie van die huidige adres na die stelsel klipbord + &Copy &Kopie + + C&lose + + + + Delete the currently selected address from the list Verwyder die huidiglik gekieste address van die lys + Export the data in the current tab to a file Voer inligting uit van die huidige blad na n lêer + &Export &Uitvoer + &Delete &Verwyder + Choose the address to send coins to Kies die address na wie die muntstukke gestuur moet word + + Choose the address to receive coins with + + + + C&hoose K&ies + Sending addresses Stuur adresse + Receiving addresses Ontvang adresse + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address &Kopie adres + Copy &Label Kopie &Etiket + &Edit &Wysig + Export Address List Voer adres lys uit + Comma separated file (*.csv) Koma geskeide lêers (*.csv) + Exporting Failed Uitvoering Misluk - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Etiket + Address Adres + (no label) (geen etiket) @@ -94,718 +143,8144 @@ AskPassphraseDialog + Passphrase Dialog Wagfrase Dialoog + Enter passphrase Tik wagfrase in + New passphrase Nuwe wagfrase + Repeat new passphrase Herhaal nuwe wagfrase + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Enkripteer beursie + This operation needs your wallet passphrase to unlock the wallet. - Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. + Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. + Unlock wallet Sluit beursie oop + This operation needs your wallet passphrase to decrypt the wallet. - Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. + Hierdie operasie benodig 'n wagwoord om die beursie oop te sluit. + Decrypt wallet Sluit beursie oop + Change passphrase Verander wagfrase + Enter the old passphrase and new passphrase to the wallet. Tik in die ou wagfrase en die nuwe wagfrase vir die beursie. + Confirm wallet encryption Bevestig beursie enkripsie. + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + Wallet encrypted Die beursie is nou bewaak + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Die beursie kon nie bewaak word nie + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Beursie bewaaking het misluk as gevolg van 'n interne fout. Die beursie is nie bewaak nie! + Beursie bewaaking het misluk as gevolg van 'n interne fout. Die beursie is nie bewaak nie! + + The supplied passphrases do not match. Die wagfrase stem nie ooreen nie + Wallet unlock failed Beursie oopsluiting het misluk + + + The passphrase entered for the wallet decryption was incorrect. Die wagfrase wat ingetik was om die beursie oop te sluit, was verkeerd. + Wallet decryption failed Beursie dekripsie het misluk + Wallet passphrase was successfully changed. Die beursie se wagfrase verandering was suksesvol. - - - BanTableModel - - - RavenGUI - Synchronizing with network... - Sinchroniseer met die netwerk ... + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Overview - &Oorsig + + Asset Selection + - Show general overview of wallet - Wys algemene oorsig van die beursie + + Quantity: + - &Transactions - &Transaksies + + Bytes: + - Browse transaction history - Besoek transaksie geskiedenis + + Amount: + - E&xit - S&luit af + + Dust: + - Quit application - Sluit af + + Fee: + - Show information about Qt - Wys inligting oor Qt + + After Fee: + - &Options... - &Opsies + + Change: + - Raven - Raven + + (un)select all + - Wallet - Beursie + + Tree mode + - &File - &Lêer + + List mode + - &Settings - &Instellings + + View assets that you have the ownership asset for + - &Help - &Hulp + + View Administrator Assets + - Tabs toolbar - Blad nutsbalk + + Asset + - %1 behind - %1 agter + + Amount + - Last received block was generated %1 ago. - Ontvangs van laaste blok is %1 terug. + + Received with label + - Error - Fout + + Received with address + - Information - Informasie + + Date + - - - CoinControlDialog - Amount: - Bedrag: + + Confirmations + - Amount - Bedrag + + Confirmed + - Date - Datum + + Copy address + - Copy address - Maak kopie van adres + + Copy label + + + Copy amount - Kopieer bedrag + - (no label) - (geen etiket) + + Copy transaction ID + - - - EditAddressDialog - &Label - &Etiket + + Lock unspent + - &Address - &Adres + + Unlock unspent + - New receiving address - Nuwe ontvangende adres + + Copy quantity + - New sending address - Nuwe stuurende adres + + Copy fee + - Edit receiving address - Wysig ontvangende adres + + Copy after fee + - Edit sending address - Wysig stuurende adres + + Copy bytes + - Could not unlock wallet. - Kon nie die beursie oopsluit nie. + + Copy dust + - - - FreespaceChecker - - - HelpMessageDialog - Usage: - Gebruik: + + Copy change + - - - Intro - Error - Fout + + (%1 locked) + - - - ModalOverlay - Form - Vorm + + yes + - - - OpenURIDialog - - - OptionsDialog - Options - Opsies + + no + - W&allet - &Beursie + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - OverviewPage - Form - Vorm + + Can vary +/- %1 satoshi(s) per input. + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Bedrag + + + (no label) + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Informasie + + change from %1 (%2) + - - - ReceiveCoinsDialog - &Amount: - &Bedrag: + + (change) + + + + AssetTableModel - &Message: - &Boodskap: + + Name + - Copy amount - Kopieer bedrag + + Quantity + - ReceiveRequestDialog + AssetsDialog - Address - Adres + + + Send Coins + - Amount - Bedrag + + Asset Control Features + - Label - Etiket + + Inputs... + - Message - Boodskap + + automatically selected + - - - RecentRequestsTableModel - Date - Datum + + Insufficient funds! + - Label - Etiket + + Quantity: + - Message - Boodskap + + Bytes: + - (no label) - (geen etiket) + + Amount: + - - - SendCoinsDialog - Send Coins - Stuur Munstukke + + Dust: + - Insufficient funds! - Onvoldoende fondse + + Fee: + - Amount: - Bedrag: + + After Fee: + - Transaction Fee: - Transaksie fooi: + + Change: + - Send to multiple recipients at once - Stuur aan vele ontvangers op eens + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Balance: - Balans: + + Custom change address + - S&end - S&tuur + + Transaction Fee: + - Copy amount - Kopieer bedrag + + Choose... + - %1 to %2 - %1 tot %2 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - or - of + + Warning: Fee estimation is currently not possible. + - (no label) - (geen etiket) + + collapse fee-settings + - - - SendCoinsEntry - A&mount: - &Bedrag: + + Hide + - Message: - Boodskap: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - &Sign Message - &Teken boodskap + + per kilobyte + - Signature - Handtekening + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Sign &Message - Teken &Boodskap + + (read the tooltip) + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Date - Datum + + Recommended: + - From - Van + + Custom: + - unknown - onbekend + + (Smart fee not initialized yet. This usually takes a few blocks...) + - To - Na + + Confirmation time target: + - own address - eie adres + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - label - etiket + + Request Replace-By-Fee + - Credit - Krediet + + Confirm the send action + - not accepted - nie aanvaar nie + + S&end + - Debit - Debiet + + Clear all fields of the form. + - Transaction fee - Transaksie fooi + + Clear &All + - Net amount - Netto bedrag + + Transfer to multiple recipients at once + - Message - Boodskap + + Add &Recipient + - Transaction ID - Transaksie ID + + Balance: + - Transaction - Transaksie + + Copy quantity + - Amount - Bedrag + + Copy amount + - true - waar + + Copy fee + - false - onwaar + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - TransactionDescDialog - - - TransactionTableModel + AssignQualifier - Date - Datum + + Frame + - Type - Tipe + + Select Type: + - Label - Etiket + + Select Qualifier: + - Received with - Ontvang met + + Address: + - Received from - Ontvang van + + IPFS / Hash: + - Sent to - Gestuur na + + Custom Change Address + - Payment to yourself - Betalings Aan/na jouself + + Check + - Mined - Gemyn + + Clear + - (n/a) - (n.v.t) + + Submit + - (no label) - (geen etiket) + + Assign Qualifier + - Date and time that the transaction was received. - Datum en tyd wat die transaksie ontvang was. + + Remove Qualifier + - Type of transaction. - Tipe transaksie. + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + - + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - TransactionView + BanTableModel - All - Alles + + IP/Netmask + - Today - Vandag + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + - This week - Hierdie week + + Quantity: + - This month - Hierdie maand + + Bytes: + - Last month - Verlede maand + + Amount: + Bedrag: - This year - Hierdie jaar + + Fee: + - Range... - Reeks... + + Dust: + - Received with - Ontvang met + + After Fee: + - Sent to - Gestuur na + + Change: + - To yourself - Aan/na jouself + + (un)select all + - Mined - Gemyn + + Tree mode + - Other - Ander + + List mode + - Min amount - Min bedrag + + Amount + Bedrag + + + + Received with label + + + + + Received with address + + + Date + Datum + + + + Confirmations + + + + + Confirmed + + + + Copy address Maak kopie van adres + + Copy label + + + + + Copy amount Kopieer bedrag - Comma separated file (*.csv) - Koma geskeide lêers (*.csv) + + Copy transaction ID + - Date - Datum + + Lock unspent + - Type - Tipe + + Unlock unspent + - Label - Etiket + + Copy quantity + - Address - Adres + + Copy fee + - ID - ID + + Copy after fee + - Exporting Failed - Uitvoering Misluk + + Copy bytes + - Range: - Reeks: + + Copy dust + - to - aan + + Copy change + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Stuur Munstukke + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (geen etiket) + + + + change from %1 (%2) + + + + + (change) + - WalletView + CreateAssetDialog - &Export - &Uitvoer + + Coin Control Features + - Export the data in the current tab to a file - Voer inligting uit van die huidige blad na n lêer + + Inputs... + - - - raven-core - Options: - Opsies: + + automatically selected + - Error: Disk space is low! - Fout: Hardeskyf spasie is baie laag! + + Insufficient funds! + - Information - Informasie + + + Quantity: + - Loading addresses... - Laai adresse... + + Bytes: + - Insufficient funds - Onvoldoende fondse + + Amount: + - Loading block index... - Laai blok indeks... + + Dust: + - Loading wallet... - Laai beursie... + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + &Etiket + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adres + + + + New receiving address + Nuwe ontvangende adres + + + + New sending address + Nuwe stuurende adres + + + + Edit receiving address + Wysig ontvangende adres + + + + Edit sending address + Wysig stuurende adres + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + Kon nie die beursie oopsluit nie. + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + Gebruik: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Fout + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Vorm + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opsies + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + &Beursie + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Vorm + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Bedrag + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Informasie + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Sinchroniseer met die netwerk ... + + + + &Overview + &Oorsig + + + + Node + + + + + Show general overview of wallet + Wys algemene oorsig van die beursie + + + + &Transactions + &Transaksies + + + + Browse transaction history + Besoek transaksie geskiedenis + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&luit af + + + + Quit application + Sluit af + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + Wys inligting oor Qt + + + + &Options... + &Opsies + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Beursie + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Lêer + + + + &Help + &Hulp + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 agter + + + + Last received block was generated %1 ago. + Ontvangs van laaste blok is %1 terug. + + + + Transactions after this will not yet be visible. + + + + + Error + Fout + + + + Warning + + + + + Information + Informasie + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Bedrag: + + + + &Label: + + + + + &Message: + &Boodskap: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + Kopieer bedrag + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Adres + + + + Amount + Bedrag + + + + Label + Etiket + + + + Message + Boodskap + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Etiket + + + + Message + Boodskap + + + + (no label) + (geen etiket) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Stuur Munstukke + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Onvoldoende fondse + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Bedrag: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Transaksie fooi: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Stuur aan vele ontvangers op eens + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Balans: + + + + Confirm the send action + + + + + S&end + S&tuur + + + + Copy quantity + + + + + Copy amount + Kopieer bedrag + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 tot %2 + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + of + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (geen etiket) + + + + SendCoinsEntry + + + + + A&mount: + &Bedrag: + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Boodskap: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &Teken boodskap + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + Handtekening + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + Teken &Boodskap + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Datum + + + + Source + + + + + Generated + + + + + + + + + From + Van + + + + + unknown + onbekend + + + + + + + + To + Na + + + + + own address + eie adres + + + + + + watch-only + + + + + + label + etiket + + + + + + + + + + Credit + Krediet + + + + matures in %n more block(s) + + + + + not accepted + nie aanvaar nie + + + + + + + + Debit + Debiet + + + + Total debit + + + + + Total credit + + + + + Transaction fee + Transaksie fooi + + + + Net amount + Netto bedrag + + + + + + + Message + Boodskap + + + + + Comment + + + + + + Transaction ID + Transaksie ID + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + Transaksie + + + + Inputs + + + + + Amount + Bedrag + + + + + true + waar + + + + + false + onwaar + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Datum + + + + Type + Tipe + + + + Label + Etiket + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + Ontvang met + + + + Received from + Ontvang van + + + + Sent to + Gestuur na + + + + Payment to yourself + Betalings Aan/na jouself + + + + Mined + Gemyn + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + (n.v.t) + + + + (no label) + (geen etiket) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + Datum en tyd wat die transaksie ontvang was. + + + + Type of transaction. + Tipe transaksie. + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Alles + + + + Today + Vandag + + + + This week + Hierdie week + + + + This month + Hierdie maand + + + + Last month + Verlede maand + + + + This year + Hierdie jaar + + + + Range... + Reeks... + + + + Received with + Ontvang met + + + + Sent to + Gestuur na + + + + To yourself + Aan/na jouself + + + + Mined + Gemyn + + + + Other + Ander + + + + Enter address or label to search + + + + + Min amount + Min bedrag + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Maak kopie van adres + + + + Copy label + + + + + Copy amount + Kopieer bedrag + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Koma geskeide lêers (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Datum + + + + Type + Tipe + + + + Label + Etiket + + + + Address + Adres + + + + Asset + + + + + ID + ID + + + + Exporting Failed + Uitvoering Misluk + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + Reeks: + + + + to + aan + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Stuur Munstukke + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &Uitvoer + + + + Export the data in the current tab to a file + Voer inligting uit van die huidige blad na n lêer + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opsies: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + Fout: Hardeskyf spasie is baie laag! + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informasie + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Onvoldoende fondse + + + + Loading block index... + Laai blok indeks... + + + + Loading wallet... + Laai beursie... + + + + Cannot downgrade wallet + - Done loading - Klaar gelaai + + Rescanning... + + Error Fout diff --git a/src/qt/locale/raven_ar.ts b/src/qt/locale/raven_ar.ts index 4d2ffd9f9f..275f13b213 100644 --- a/src/qt/locale/raven_ar.ts +++ b/src/qt/locale/raven_ar.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label انقر بالزر الايمن لتعديل العنوان + Create a new address انشأ عنوان جديد + &New &جديد + Copy the currently selected address to the system clipboard قم بنسخ القوانين المختارة لحافظة النظام + &Copy &نسخ + C&lose ا&غلاق + Delete the currently selected address from the list حذف العنوان المحدد من القائمة + Export the data in the current tab to a file تحميل البيانات في علامة التبويب الحالية إلى ملف. + &Export &تصدير + &Delete &أمسح + Choose the address to send coins to اختر العنوان الذي سترسل له العملات + Choose the address to receive coins with اختر العنوان الذي تستقبل عليه العملات + C&hoose &اختر + Sending addresses ارسال العناوين + Receiving addresses استقبال العناوين + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. هذه هي عناوين Bitcion التابعة لك من أجل إرسال الدفعات. تحقق دائما من المبلغ و عنوان المرسل المستقبل قبل إرسال العملات + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. هذه هي عناوين Bitcion التابعة لك من أجل إستقبال الدفعات. ينصح استخدام عنوان جديد من أجل كل صفقة + &Copy Address انسخ العنوان + Copy &Label نسخ &الوصف + &Edit تعديل + Export Address List تصدير قائمة العناوين + Comma separated file (*.csv) ملف مفصول بفواصل (*.csv) + Exporting Failed فشل التصدير + There was an error trying to save the address list to %1. Please try again. لقد حدث خطأ أثناء حفظ قائمة العناوين إلى %1. يرجى المحاولة مرة أخرى. @@ -103,14 +125,17 @@ AddressTableModel + Label وصف + Address عنوان + (no label) (لا وصف) @@ -118,1938 +143,8155 @@ AskPassphraseDialog + Passphrase Dialog حوار جملة السر + Enter passphrase ادخل كلمة المرور + New passphrase كلمة مرور جديدة + Repeat new passphrase ادخل كلمة المرور الجديدة مرة أخرى + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. أدخل عبارة مرور جديدة إلى المحفظة. الرجاء استخدام عبارة مرور تتكون من10 حروف عشوائية على الاقل, أو أكثر من 7 كلمات + Encrypt wallet تشفير المحفظة + This operation needs your wallet passphrase to unlock the wallet. هذه العملية تحتاج كلمة مرور محفظتك لفتحها + Unlock wallet إفتح المحفظة + This operation needs your wallet passphrase to decrypt the wallet. هذه العملية تحتاج كلمة مرور محفظتك لفك تشفيرها + Decrypt wallet فك تشفير المحفظة + Change passphrase تغيير كلمة المرور + Enter the old passphrase and new passphrase to the wallet. أدخل كلمة المرور القديمة والجديدة للمحفظة. + Confirm wallet encryption تأكيد تشفير المحفظة + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! تحذير: إذا قمت بتشفير محفظتك وفقدت كلمة المرور الخاص بك, ستفقد كل عملات RAVENS الخاصة بك. + Are you sure you wish to encrypt your wallet? هل أنت متأكد من رغبتك في تشفير محفظتك ؟ + + Wallet encrypted محفظة مشفرة + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + 1% سيغلق الآن لإنهاء عملية التشفير. + +تذكر أن تشفير محفظتك لا يحمي بشكل كامل الرايفن الذي بحوزتك من السرقة عن طريق البرامج الضارة التي تصيب جهاز الكمبيوتر الخاص بك. + +  + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. هام: أي نسخة إحتياطية سابقة قمت بها لمحفظتك يجب استبدالها بأخرى حديثة، مشفرة. لأسباب أمنية، النسخ الاحتياطية السابقة لملفات المحفظة الغير مشفرة تصبح عديمة الفائدة مع بداية استخدام المحفظة المشفرة الجديدة. + + + + Wallet encryption failed فشل تشفير المحفظة + Wallet encryption failed due to an internal error. Your wallet was not encrypted. فشل تشفير المحفظة بسبب خطأ داخلي. لم يتم تشفير محفظتك. + + The supplied passphrases do not match. كلمتي المرور ليستا متطابقتان + Wallet unlock failed فشل فتح المحفظة + + + The passphrase entered for the wallet decryption was incorrect. كلمة المرور التي تم إدخالها لفك تشفير المحفظة غير صحيحة. + Wallet decryption failed فشل فك التشفير المحفظة + Wallet passphrase was successfully changed. لقد تم تغير عبارة مرور المحفظة بنجاح + + Warning: The Caps Lock key is on! تحذير: مفتاح الحروف الكبيرة مفعل - BanTableModel + AssetControlDialog - IP/Netmask - عنوان البروتوكول/قناع + + Asset Selection + - Banned Until - محظور حتى + + Quantity: + الكمية : - - - RavenGUI - Sign &message... - التوقيع و الرسائل + + Bytes: + بايت - Synchronizing with network... - مزامنة مع الشبكة ... + + Amount: + المبلغ: - &Overview - &نظرة عامة + + Dust: + - Node - جهاز + + Fee: + رسوم : - Show general overview of wallet - إظهار نظرة عامة على المحفظة + + After Fee: + بعد الرسوم : - &Transactions - &المعاملات + + Change: + - Browse transaction history - تصفح سجل المعاملات + + (un)select all + - E&xit - خروج + + Tree mode + - Quit application - الخروج من التطبيق + + List mode + - &About %1 - حوالي %1 + + View assets that you have the ownership asset for + - Show information about %1 - أظهر المعلومات حولة %1 + + View Administrator Assets + - About &Qt - عن &Qt + + Asset + - Show information about Qt - اظهر المعلومات + + Amount + المبلغ: - &Options... - &خيارات ... + + Received with label + - Modify configuration options for %1 - تغيير خيارات الإعداد لأساس ل%1 + + Received with address + - &Encrypt Wallet... - &تشفير المحفظة + + Date + - &Backup Wallet... - &نسخ احتياط للمحفظة + + Confirmations + - &Change Passphrase... - &تغيير كلمة المرور + + Confirmed + - &Sending addresses... - ارسال العناوين. + + Copy address + - &Receiving addresses... - استقبال العناوين + + Copy label + - Open &URI... - افتح &URI... + + + Copy amount + - Click to disable network activity. - اضغط لإلغاء تفعيل الشبكه + + Copy transaction ID + - Network activity disabled. - تم إلغاء تفعيل الشبكه + + Lock unspent + - Click to enable network activity again. - اضغط لتفعيل الشبكه مره أخرى + + Unlock unspent + - Reindexing blocks on disk... - إعادة الفهرسة الكتل على القرص ... + + Copy quantity + - Send coins to a Raven address - ارسل عملات الى عنوان بيتكوين + + Copy fee + - Backup wallet to another location - احفظ نسخة احتياطية للمحفظة في مكان آخر + + Copy after fee + - Change the passphrase used for wallet encryption - تغيير كلمة المرور المستخدمة لتشفير المحفظة + + Copy bytes + - &Debug window - &نافذة المعالجة + + Copy dust + - Open debugging and diagnostic console - إفتح وحدة التصحيح و التشخيص + + Copy change + - &Verify message... - &التحقق من الرسالة... + + (%1 locked) + - Raven - بت كوين + + yes + - Wallet - محفظة + + no + - &Send - &ارسل + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Receive - &استقبل + + Can vary +/- %1 satoshi(s) per input. + - &Show / Hide - &عرض / اخفاء + + + (no label) + - Show or hide the main Window - عرض او اخفاء النافذة الرئيسية + + change from %1 (%2) + - Encrypt the private keys that belong to your wallet - تشفير المفتاح الخاص بمحفظتك + + (change) + + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - وقَع الرسائل بواسطة ال: Raven الخاص بك لإثبات امتلاكك لهم + + Name + - Verify messages to ensure they were signed with specified Raven addresses - تحقق من الرسائل للتأكد من أنَها وُقعت برسائل Raven محدَدة + + Quantity + + + + AssetsDialog - &File - &ملف + + + Send Coins + - &Settings - &الاعدادات + + Asset Control Features + - &Help - &مساعدة + + Inputs... + - Tabs toolbar - شريط أدوات علامات التبويب + + automatically selected + - Request payments (generates QR codes and raven: URIs) - أطلب دفعات (يولد كودات الرمز المربع وبيت كوين: العناوين المعطاة) + + Insufficient funds! + - Show the list of used sending addresses and labels - عرض قائمة عناوين الإرسال المستخدمة والملصقات + + Quantity: + - Show the list of used receiving addresses and labels - عرض قائمة عناوين الإستقبال المستخدمة والملصقات + + Bytes: + - Open a raven: URI or payment request - فتح URI : Raven أو طلب دفع + + Amount: + - &Command-line options - &خيارات سطر الأوامر + + Dust: + - Indexing blocks on disk... - ترتيب الفهرسة الكتل على القرص... + + Fee: + - Processing blocks on disk... - معالجة الكتل على القرص... + + After Fee: + - %1 behind - خلف %1 + + Change: + - Last received block was generated %1 ago. - تم توليد الكتلة المستقبلة الأخيرة منذ %1. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Transactions after this will not yet be visible. - المعاملات بعد ذلك لن تكون مريئة بعد. + + Custom change address + - Error - خطأ + + Transaction Fee: + - Warning - تحذير + + Choose... + - Information - معلومات + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Up to date - محدث + + Warning: Fee estimation is currently not possible. + - Show the %1 help message to get a list with possible Raven command-line options - بين اشارة المساعدة %1 للحصول على قائمة من خيارات اوامر البت كوين المحتملة + + collapse fee-settings + - %1 client - الزبون %1 + + Hide + - Catching up... - اللحاق بالركب ... + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Date: %1 - - التاريخ %1 - - - + + per kilobyte + - Amount: %1 - - الكمية %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Type: %1 - - نوع %1 - + + (read the tooltip) + - Label: %1 - - علامه: %1 - + + Recommended: + - Address: %1 - - عنوان %1 - + + Custom: + - Sent transaction - المعاملات المرسلة + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Incoming transaction - المعاملات الواردة + + Confirmation time target: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - المحفظة <b>مشفرة</b> و <b>مفتوحة</b> حاليا + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Wallet is <b>encrypted</b> and currently <b>locked</b> - المحفظة <b>مشفرة</b> و <b>مقفلة</b> حاليا + + Request Replace-By-Fee + - A fatal error occurred. Raven can no longer continue safely and will quit. - خطأ فادح حدث . لا يمكن اتمام بيتكوين بامان سيتم الخروج + + Confirm the send action + - - - CoinControlDialog - Coin Selection - اختيار العمله + + S&end + - Quantity: - الكمية : + + Clear all fields of the form. + - Bytes: - بايت + + Clear &All + - Amount: - القيمة : + + Transfer to multiple recipients at once + - Fee: - رسوم : + + Add &Recipient + - Dust: - غبار: + + Balance: + - After Fee: - بعد الرسوم : + + Copy quantity + - Change: - تعديل : + + Copy amount + - (un)select all - عدم اختيار الجميع + + Copy fee + - Tree mode - صيغة الشجرة + + Copy after fee + - List mode - صيغة القائمة + + Copy bytes + - Amount - مبلغ + + Copy dust + - Received with label - مستقبل مع ملصق + + Copy change + - Received with address - مستقبل مع عنوان + + %1 (%2 blocks) + - Date - تاريخ + + + + + %1 to %2 + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + عنوان البروتوكول/قناع + + + + Banned Until + محظور حتى + + + + CoinControlDialog + + + Coin Selection + اختيار العمله + + + + Quantity: + الكمية : + + + + Bytes: + بايت + + + + Amount: + القيمة : + + + + Fee: + رسوم : + + + + Dust: + غبار: + + + + After Fee: + بعد الرسوم : + + + + Change: + تعديل : + + + + (un)select all + عدم اختيار الجميع + + + + Tree mode + صيغة الشجرة + + + + List mode + صيغة القائمة + + + + Amount + مبلغ + + + + Received with label + مستقبل مع ملصق + + + + Received with address + مستقبل مع عنوان + + + + Date + تاريخ + + + Confirmations تأكيدات - Confirmed - تأكيد + + Confirmed + تأكيد + + + + Copy address + انسخ عنوان + + + + Copy label + انسخ التسمية + + + + + Copy amount + نسخ الكمية + + + + Copy transaction ID + نسخ رقم العملية + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + نسخ الكمية + + + + Copy fee + نسخ الرسوم + + + + Copy after fee + نسخ بعد الرسوم + + + + Copy bytes + نسخ البايتات + + + + Copy dust + + + + + Copy change + نسخ التعديل + + + + (%1 locked) + + + + + yes + نعم + + + + no + لا + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (لا وصف) + + + + change from %1 (%2) + + + + + (change) + (تغير) + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + عدل العنوان + + + + &Label + &وصف + + + + The label associated with this address list entry + الملصق المرتبط بقائمة العناوين المدخلة + + + + The address associated with this address list entry. This can only be modified for sending addresses. + العنوان المرتبط بقائمة العناوين المدخلة. و التي يمكن تعديلها فقط بواسطة ارسال العناوين + + + + &Address + &العنوان + + + + New receiving address + عنوان أستلام جديد + + + + New sending address + عنوان إرسال جديد + + + + Edit receiving address + تعديل عنوان الأستلام + + + + Edit sending address + تعديل عنوان الارسال + + + + The entered address "%1" is not a valid Raven address. + العنوان المدخل "%1" ليس عنوان بيت كوين صحيح. + + + + The entered address "%1" is already in the address book. + هدا العنوان "%1" موجود مسبقا في دفتر العناوين + + + + Could not unlock wallet. + يمكن فتح المحفظة. + + + + New key generation failed. + فشل توليد مفتاح جديد. + + + + FreespaceChecker + + + A new data directory will be created. + سيتم انشاء دليل بيانات جديد + + + + name + الاسم + + + + Directory already exists. Add %1 if you intend to create a new directory here. + الدليل موجوج بالفعل. أضف %1 لو نويت إنشاء دليل جديد هنا. + + + + Path already exists, and is not a directory. + المسار موجود بالفعل، وهو ليس دليلاً. + + + + Cannot create data directory here. + لا يمكن انشاء دليل بيانات هنا . + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + النسخة + + + + + (%1-bit) + + + + + About %1 + حوالي %1 + + + + Command-line options + خيارات سطر الأوامر + + + + Usage: + المستخدم + + + + command-line options + خيارات سطر الأوامر + + + + UI Options: + خيارات واجهة المستخدم + + + + Choose data directory on startup (default: %u) + اختر دليل البيانات عند بدء التشغير (افتراضي: %u) + + + + Set language, for example "de_DE" (default: system locale) + أضع لغة, على سبيل المثال " de_DE " (افتراضي:- مكان النظام) + + + + Start minimized + الدخول مصغر + + + + Set SSL root certificates for payment request (default: -system-) + أضع شهادة بروتوكول الشبقة الأمنية لطلب المدفوع (افتراضي: -نظام-) + + + + Show splash screen on startup (default: %u) + أظهر شاشة البداية عند بدء التشغيل (افتراضي: %u) + + + + Reset all settings changed in the GUI + اعد تعديل جميع النظم المتغيرة في GUI + + + + Intro + + + Welcome + أهلا + + + + Welcome to %1. + اهلا بكم في %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + بما انه هذه اول مرة لانطلاق هذا البرنامج, فيمكنك ان تختار اين سيخزن %1 بياناته + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + استخدام دليل البانات الافتراضي + + + + Use a custom data directory: + استخدام دليل بيانات مخصص: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + خطأ: لا يمكن تكوين دليل بيانات مخصص ل %1 + + + + Error + خطأ + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + نمودج + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + غير معرف + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + إخفاء + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + افتح URL + + + + Open payment request from URI or file + حدد طلب الدفع من ملف او URI + + + + URI: + + + + + Select payment request file + حدد ملف طلب الدفع + + + + Select payment request file to open + حدد ملف طلب الدفع لفتحه + + + + OptionsDialog + + + Options + خيارات ... + + + + &Main + &الرئيسي + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + م ب + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + &استعادة الخيارات + + + + &Network + &الشبكة + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + &محفظة + + + + Expert + تصدير + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + بروكسي &اي بي: + + + + + &Port: + &المنفذ: + + + + + Port of the proxy (e.g. 9050) + منفذ البروكسي (مثلا 9050) + + + + Used for reaching peers via: + مستخدم للاتصال بالاصدقاء من خلال: + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + نافذه + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &عرض + + + + User Interface &language: + واجهة المستخدم &اللغة: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + تم + + + + &Cancel + الغاء + + + + default + الافتراضي + + + + none + لا شيء + + + + Confirm options reset + تأكيد استعادة الخيارات + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + عنوان الوكيل توفيره غير صالح. + + + + OverviewPage + + + Form + نمودج + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + متوفر + + + + Your current spendable balance + + + + + Pending: + معلق: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + غير ناضجة + + + + Mined balance that has not yet matured + + + + + Total: + المجموع: + + + + Your current total balance + رصيدك الكلي الحالي + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + استجابة سيئة من الملقم %1 + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + مبلغ + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 ساعة + + + + %1 m + %1 دقيقة + + + + + %1 s + + + + + None + + + + + N/A + غير معروف + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 و %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &حفظ الصورة + + + + &Copy Image + &نسخ الصورة + + + + Save QR Code + حفظ رمز الاستجابة السريعة QR + + + + PNG Image (*.png) + صورة PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + غير معروف + + + + Client version + نسخه العميل + + + + &Information + المعلومات + + + + Debug window + نافذة المعالجة + + + + General + عام + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + وقت البدء + + + + Network + الشبكه + + + + Name + الاسم + + + + Number of connections + عدد الاتصالات + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + إستقبل + + + + + Sent + تم الإرسال + + + + &Peers + &اصدقاء + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + جهة + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + خدمات + + + + Ban Score + + + + + Connection Time + + + + + Last Send + آخر استقبال + + + + Last Receive + آخر إرسال + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + الفتح + + + + &Console + + + + + &Network Traffic + &حركة مرور الشبكة + + + + Totals + المجاميع + + + + In: + داخل: + + + + Out: + خارج: + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1 &ساعة + + + + 1 &day + 1 & يوم + + + + 1 &week + 1 & اسبوع + + + + 1 &year + 1 & سنة + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + ابدا + + + + Inbound + داخل + + + + Outbound + خارجي + + + + Yes + نعم + + + + No + لا + + + + + Unknown + غير معرف + + + + RavenGUI + + + Sign &message... + التوقيع و الرسائل + + + + Synchronizing with network... + مزامنة مع الشبكة ... + + + + &Overview + &نظرة عامة + + + + Node + جهاز + + + + Show general overview of wallet + إظهار نظرة عامة على المحفظة + + + + &Transactions + &المعاملات + + + + Browse transaction history + تصفح سجل المعاملات + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + خروج + + + + Quit application + الخروج من التطبيق + + + + &About %1 + حوالي %1 + + + + Show information about %1 + أظهر المعلومات حولة %1 + + + + About &Qt + عن &Qt + + + + Show information about Qt + اظهر المعلومات + + + + &Options... + &خيارات ... + + + + Modify configuration options for %1 + تغيير خيارات الإعداد لأساس ل%1 + + + + &Encrypt Wallet... + &تشفير المحفظة + + + + &Backup Wallet... + &نسخ احتياط للمحفظة + + + + &Change Passphrase... + &تغيير كلمة المرور + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + ارسال العناوين. + + + + &Receiving addresses... + استقبال العناوين + + + + Open &URI... + افتح &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + اضغط لإلغاء تفعيل الشبكه + + + + Network activity disabled. + تم إلغاء تفعيل الشبكه + + + + Click to enable network activity again. + اضغط لتفعيل الشبكه مره أخرى + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + إعادة الفهرسة الكتل على القرص ... + + + + Send coins to a Raven address + ارسل عملات الى عنوان بيتكوين + + + + Backup wallet to another location + احفظ نسخة احتياطية للمحفظة في مكان آخر + + + + Change the passphrase used for wallet encryption + تغيير كلمة المرور المستخدمة لتشفير المحفظة + + + + Open debugging and diagnostic console + إفتح وحدة التصحيح و التشخيص + + + + &Verify message... + &التحقق من الرسالة... + + + + Raven + بت كوين + + + + Wallet + محفظة + + + + &Send + &ارسل + + + + &Receive + &استقبل + + + + &Show / Hide + &عرض / اخفاء + + + + Show or hide the main Window + عرض او اخفاء النافذة الرئيسية + + + + Encrypt the private keys that belong to your wallet + تشفير المفتاح الخاص بمحفظتك + + + + Sign messages with your Raven addresses to prove you own them + وقَع الرسائل بواسطة ال: Raven الخاص بك لإثبات امتلاكك لهم + + + + Verify messages to ensure they were signed with specified Raven addresses + تحقق من الرسائل للتأكد من أنَها وُقعت برسائل Raven محدَدة + + + + &File + &ملف + + + + &Help + &مساعدة + + + + Request payments (generates QR codes and raven: URIs) + أطلب دفعات (يولد كودات الرمز المربع وبيت كوين: العناوين المعطاة) + + + + Show the list of used sending addresses and labels + عرض قائمة عناوين الإرسال المستخدمة والملصقات + + + + Show the list of used receiving addresses and labels + عرض قائمة عناوين الإستقبال المستخدمة والملصقات + + + + Open a raven: URI or payment request + فتح URI : Raven أو طلب دفع + + + + &Command-line options + &خيارات سطر الأوامر + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + ترتيب الفهرسة الكتل على القرص... + + + + Processing blocks on disk... + معالجة الكتل على القرص... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + خلف %1 + + + + Last received block was generated %1 ago. + تم توليد الكتلة المستقبلة الأخيرة منذ %1. + + + + Transactions after this will not yet be visible. + المعاملات بعد ذلك لن تكون مريئة بعد. + + + + Error + خطأ + + + + Warning + تحذير + + + + Information + معلومات + + + + Up to date + محدث + + + + Show the %1 help message to get a list with possible Raven command-line options + بين اشارة المساعدة %1 للحصول على قائمة من خيارات اوامر البت كوين المحتملة + + + + %1 client + الزبون %1 + + + + Connecting to peers... + + + + + Catching up... + اللحاق بالركب ... + + + + Date: %1 + + التاريخ %1 + + + + + + + + Amount: %1 + + الكمية %1 + + + + + Type: %1 + + نوع %1 + + + + + Label: %1 + + علامه: %1 + + + + + Address: %1 + + عنوان %1 + + + + + Sent transaction + المعاملات المرسلة + + + + Incoming transaction + المعاملات الواردة + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + المحفظة <b>مشفرة</b> و <b>مفتوحة</b> حاليا + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + المحفظة <b>مشفرة</b> و <b>مقفلة</b> حاليا + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + خطأ فادح حدث . لا يمكن اتمام بيتكوين بامان سيتم الخروج + + + + ReceiveCoinsDialog + + + &Amount: + &القيمة + + + + &Label: + &وصف : + + + + &Message: + &رسالة: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + مسح كل حقول النموذج المطلوبة + + + + Clear + مسح + + + + Requested payments history + سجل طلبات الدفع + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + عرض + + + + Remove the selected entries from the list + + + + + Remove + ازل + + + + Copy URI + + + + + Copy label + انسخ التسمية + + + + Copy message + انسخ الرسالة + + + + Copy amount + نسخ الكمية + + + + ReceiveRequestDialog + + + QR Code + رمز كيو ار + + + + Copy &URI + نسخ &URI + + + + Copy &Address + نسخ &العنوان + + + + &Save Image... + &حفظ الصورة + + + + Request payment to %1 + + + + + Payment information + معلومات الدفع + + + + URI + URI + + + + Address + عنوان + + + + Amount + مبلغ + + + + Label + وصف + + + + Message + رسالة + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + تاريخ + + + + Label + وصف + + + + Message + رسالة + + + + (no label) + (لا وصف) + + + + (no message) + ( لا رسائل ) + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + إرسال Coins + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + اختيار تلقائيا + + + + Insufficient funds! + الرصيد غير كافي! + + + + Quantity: + الكمية : + + + + Bytes: + بايت + + + + Amount: + القيمة : + + + + Fee: + رسوم : + + + + After Fee: + بعد الرسوم : + + + + Change: + تعديل : + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + رسوم المعاملة: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + إخفاء + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + إرسال إلى عدة مستلمين في وقت واحد + + + + Add &Recipient + أضافة &مستلم + + + + Clear all fields of the form. + مسح كل حقول النموذج المطلوبة + + + + Dust: + غبار: + + + + Confirmation time target: + + + + + Clear &All + مسح الكل + + + + Balance: + الرصيد: + + + + Confirm the send action + تأكيد الإرسال + + + + S&end + &ارسال + + + + Copy quantity + نسخ الكمية + + + + Copy amount + نسخ الكمية + + + + Copy fee + نسخ الرسوم + + + + Copy after fee + نسخ بعد الرسوم + + + + Copy bytes + نسخ البايتات + + + + Copy dust + + + + + Copy change + نسخ التعديل + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 الى %2 + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + أو + + + + Confirm send coins + تأكيد الإرسال Coins + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + المبلغ المدفوع يجب ان يكون اكبر من 0 + + + + The amount exceeds your balance. + القيمة تتجاوز رصيدك + + + + The total exceeds your balance when the %1 transaction fee is included. + المجموع يتجاوز رصيدك عندما يتم اضافة %1 رسوم العملية + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (لا وصف) + + + + SendCoinsEntry + + + + + A&mount: + &القيمة + + + + &Label: + &وصف : + + + + Choose previously used address + اختر عنوانا مستخدم سابقا + + + + This is a normal payment. + هذا دفع اعتيادي + + + + The Raven address to send the payment to + عنوان البت كوين المرسل اليه الدفع + + + + Alt+A + Alt+A + + + + Paste address from clipboard + انسخ العنوان من لوحة المفاتيح + + + + Alt+P + Alt+P + + + + + + Remove this entry + ازل هذه المداخله + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + الرسائل + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك + + + + SendConfirmationDialog + + + + Yes + نعم + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + لا توقف عمل الكمبيوتر حتى تختفي هذه النافذة + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &توقيع الرسالة + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + اختر عنوانا مستخدم سابقا + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + انسخ العنوان من لوحة المفاتيح + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + ادخل الرسالة التي تريد توقيعها هنا + + + + Signature + التوقيع + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + وقع الرسالة لتثبت انك تمتلك عنوان البت كوين هذا + + + + Sign &Message + توقيع $الرسالة + + + + Reset all sign message fields + + + + + + Clear &All + مسح الكل + + + + &Verify Message + &تحقق رسالة + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + تحقق &الرسالة + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + اضغط "توقيع الرسالة" لتوليد التوقيع + + + + + The entered address is invalid. + العنوان المدخل غير صالح + + + + + + + Please check the address and try again. + الرجاء التأكد من العنوان والمحاولة مرة اخرى + + + + + The entered address does not refer to a key. + العنوان المدخل لا يشير الى مفتاح + + + + Wallet unlock was cancelled. + تم الغاء عملية فتح المحفظة + + + + Private key for the entered address is not available. + المفتاح الخاص للعنوان المدخل غير موجود. + + + + Message signing failed. + فشل توقيع الرسالة. + + + + Message signed. + الرسالة موقعة. + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + فضلا تاكد من التوقيع وحاول مرة اخرى + + + + The signature did not match the message digest. + + + + + Message verification failed. + فشلت عملية التأكد من الرسالة. + + + + Message verified. + تم تأكيد الرسالة. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + مفتوح حتى %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1 غير متواجد + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + غير مؤكدة/%1 + + + + %1 confirmations + تأكيد %1 + + + + + Status + الحالة. + + + + + , has not been successfully broadcast yet + , لم يتم حتى الآن البث بنجاح + + + + + , broadcast through %n node(s) + + + + + + Date + تاريخ + + + + Source + المصدر + + + + Generated + تم اصداره. + + + + + + + + From + من + + + + + unknown + غير معروف + + + + + + + + To + الى + + + + + own address + عنوانه + + + + + + watch-only + + + + + + label + علامة + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + غير مقبولة + + + + + + + + Debit + دين + + + + Total debit + + + + + Total credit + + + + + Transaction fee + رسوم المعاملة + + + + Net amount + + + + + + + + Message + رسالة + + + + + Comment + تعليق + + + + + Transaction ID + رقم المعاملة + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + تاجر + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + معاملة + + + + Inputs + + + + + Amount + مبلغ + + + + + true + صحيح + + + + + false + خاطئ + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + يبين هذا الجزء وصفا مفصلا لهده المعاملة + + + + Details for %1 + + + + + TransactionTableModel + + + Date + تاريخ + + + + Type + النوع + + + + Label + وصف + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + مفتوح حتى %1 + + + + Offline + غير متصل + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + يتعارض + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + لم يتم تلقى هذه الكتلة (Block) من قبل أي العقد الأخرى وربما لن تكون مقبولة! + + + + Generated but not accepted + ولدت ولكن لم تقبل + + + + Received with + استقبل مع + + + + Received from + استقبل من + + + + Sent to + أرسل إلى + + + + Payment to yourself + دفع لنفسك + + + + Mined + Mined + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + غير متوفر + + + + (no label) + (لا وصف) + + + + Transaction status. Hover over this field to show number of confirmations. + حالة المعاملة. تحوم حول هذا الحقل لعرض عدد التأكيدات. + + + + Date and time that the transaction was received. + التاريخ والوقت الذي تم فيه تلقي المعاملة. + + + + Type of transaction. + نوع المعاملات + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + المبلغ الذي أزيل أو أضيف الى الرصيد + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + الكل + + + + Today + اليوم + + + + This week + هدا الاسبوع + + + + This month + هدا الشهر + + + + Last month + الشهر الماضي + + + + This year + هدا العام + + + + Range... + المدى... + + + + Received with + استقبل مع + + + + Sent to + أرسل إلى + + + + To yourself + إليك + + + + Mined + Mined + + + + Other + اخرى + + + + Enter address or label to search + ادخل عنوان أووصف للبحث + + + + Min amount + الحد الأدنى + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + انسخ عنوان + + + + Copy label + انسخ التسمية + + + + Copy amount + نسخ الكمية + + + + Copy transaction ID + نسخ رقم العملية + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + عدل الوصف + + + + Show transaction details + عرض تفاصيل المعاملة + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + ملف مفصول بفواصل (*.csv) + + + + Confirmed + تأكيد + + + + Watch-only + + + + + Date + تاريخ + + + + Type + النوع + + + + Label + وصف + + + + Address + عنوان + + + + Asset + + + + + ID + العنوان + + + + Exporting Failed + فشل التصدير + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + نجح التصدير + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + المدى: + + + + to + الى + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + إرسال Coins + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &تصدير + + + + Export the data in the current tab to a file + تحميل البيانات في علامة التبويب الحالية إلى ملف. - Copy address - انسخ عنوان + + Backup Wallet + نسخ احتياط للمحفظة - Copy label - انسخ التسمية + + Wallet Data (*.dat) + - Copy amount - نسخ الكمية + + Backup Failed + فشل النسخ الاحتياطي - Copy transaction ID - نسخ رقم العملية + + There was an error trying to save the wallet data to %1. + - Copy quantity - نسخ الكمية + + Backup Successful + نجاح النسخ الاحتياطي - Copy fee - نسخ الرسوم + + The wallet data was successfully saved to %1. + - Copy after fee - نسخ بعد الرسوم + + Recovery information + - Copy bytes - نسخ البايتات + + No words available. + - Copy change - نسخ التعديل + + This wallet is not a HD wallet, words not supported. + + + + raven-core - yes - نعم + + Options: + خيارات: - no - لا + + Specify data directory + حدد مجلد المعلومات - (no label) - (لا وصف) + + Connect to a node to retrieve peer addresses, and disconnect + - (change) - (تغير) + + Specify your own public address + - - - EditAddressDialog - Edit Address - عدل العنوان + + Accept command line and JSON-RPC commands + - &Label - &وصف + + Distributed under the MIT software license, see the accompanying file %s or %s + - The label associated with this address list entry - الملصق المرتبط بقائمة العناوين المدخلة + + If <category> is not supplied or if <category> = 1, output all debugging information. + - The address associated with this address list entry. This can only be modified for sending addresses. - العنوان المرتبط بقائمة العناوين المدخلة. و التي يمكن تعديلها فقط بواسطة ارسال العناوين + + Prune configured below the minimum of %d MiB. Please use a higher number. + - &Address - &العنوان + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - New receiving address - عنوان أستلام جديد + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - New sending address - عنوان إرسال جديد + + Error: A fatal internal error occurred, see debug.log for details + - Edit receiving address - تعديل عنوان الأستلام + + Fee (in %s/kB) to add to transactions you send (default: %s) + - Edit sending address - تعديل عنوان الارسال + + Pruning blockstore... + - The entered address "%1" is not a valid Raven address. - العنوان المدخل "%1" ليس عنوان بيت كوين صحيح. + + Run in the background as a daemon and accept commands + - The entered address "%1" is already in the address book. - هدا العنوان "%1" موجود مسبقا في دفتر العناوين + + Unable to start HTTP server. See debug log for details. + - Could not unlock wallet. - يمكن فتح المحفظة. + + Raven Core + جوهر البيت كوين - New key generation failed. - فشل توليد مفتاح جديد. + + The %s developers + %s المبرمجون - - - FreespaceChecker - A new data directory will be created. - سيتم انشاء دليل بيانات جديد + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - name - الاسم + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - Directory already exists. Add %1 if you intend to create a new directory here. - الدليل موجوج بالفعل. أضف %1 لو نويت إنشاء دليل جديد هنا. + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - Path already exists, and is not a directory. - المسار موجود بالفعل، وهو ليس دليلاً. + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + - Cannot create data directory here. - لا يمكن انشاء دليل بيانات هنا . + + Cannot obtain a lock on data directory %s. %s is probably already running. + - - - HelpMessageDialog - version - النسخة + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - About %1 - حوالي %1 + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Command-line options - خيارات سطر الأوامر + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Usage: - المستخدم + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - command-line options - خيارات سطر الأوامر + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - UI Options: - خيارات واجهة المستخدم + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Choose data directory on startup (default: %u) - اختر دليل البيانات عند بدء التشغير (افتراضي: %u) + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - Set language, for example "de_DE" (default: system locale) - أضع لغة, على سبيل المثال " de_DE " (افتراضي:- مكان النظام) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Start minimized - الدخول مصغر + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Set SSL root certificates for payment request (default: -system-) - أضع شهادة بروتوكول الشبقة الأمنية لطلب المدفوع (افتراضي: -نظام-) + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - Show splash screen on startup (default: %u) - أظهر شاشة البداية عند بدء التشغيل (افتراضي: %u) + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Reset all settings changed in the GUI - اعد تعديل جميع النظم المتغيرة في GUI + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - - - Intro - Welcome - أهلا + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Welcome to %1. - اهلا بكم في %1 + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - As this is the first time the program is launched, you can choose where %1 will store its data. - بما انه هذه اول مرة لانطلاق هذا البرنامج, فيمكنك ان تختار اين سيخزن %1 بياناته + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Use the default data directory - استخدام دليل البانات الافتراضي + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - Use a custom data directory: - استخدام دليل بيانات مخصص: + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + - Error: Specified data directory "%1" cannot be created. - خطأ: لا يمكن تكوين دليل بيانات مخصص ل %1 + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - Error - خطأ + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - - - ModalOverlay - Form - نمودج + + This is the transaction fee you may discard if change is smaller than dust at this level + - Unknown... - غير معرف + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - Hide - إخفاء + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - - - OpenURIDialog - Open URI - افتح URL + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Open payment request from URI or file - حدد طلب الدفع من ملف او URI + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Select payment request file - حدد ملف طلب الدفع + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Select payment request file to open - حدد ملف طلب الدفع لفتحه + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - - - OptionsDialog - Options - خيارات ... + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - &Main - &الرئيسي + + Whether to save the mempool on shutdown and load on restart (default: %u) + - MB - م ب + + %d of last 100 blocks have unexpected version + - Accept connections from outside - إقبل التواصل من الخارج + + %s corrupt, salvage failed + - Third party transaction URLs - عنوان النطاق للطرف الثالث + + -maxmempool must be at least %d MB + - &Reset Options - &استعادة الخيارات + + <category> can be: + - &Network - &الشبكة + + Accept connections from outside (default: 1 if no -proxy or -connect) + - W&allet - &محفظة + + Append comment to the user agent string + - Expert - تصدير + + Attempt to recover private keys from a corrupt wallet on startup + - Proxy &IP: - بروكسي &اي بي: + + Block creation options: + - &Port: - &المنفذ: + + Cannot resolve -%s address: '%s' + - Port of the proxy (e.g. 9050) - منفذ البروكسي (مثلا 9050) + + Chain selection options: + - Used for reaching peers via: - مستخدم للاتصال بالاصدقاء من خلال: + + Change index out of range + - &Window - نافذه + + Connection options: + - Hide tray icon - اخفاء لوحة الايقون + + Copyright (C) %i-%i + - &Display - &عرض + + Corrupted block database detected + - User Interface &language: - واجهة المستخدم &اللغة: + + Debugging/Testing options: + - &OK - تم + + Do not load the wallet and disable wallet RPC calls + - &Cancel - الغاء + + Do you want to rebuild the block database now? + - default - الافتراضي + + Enable publish hash block in <address> + - none - لا شيء + + Enable publish hash transaction in <address> + - Confirm options reset - تأكيد استعادة الخيارات + + Enable publish raw block in <address> + - The supplied proxy address is invalid. - عنوان الوكيل توفيره غير صالح. + + Enable publish raw transaction in <address> + - - - OverviewPage - Form - نمودج + + Enable transaction replacement in the memory pool (default: %u) + - Available: - متوفر + + Error initializing block database + - Pending: - معلق: + + Error initializing wallet database environment %s! + - Immature: - غير ناضجة + + Error loading %s + - Total: - المجموع: + + Error loading %s: Wallet corrupted + - Your current total balance - رصيدك الكلي الحالي + + Error loading %s: Wallet requires newer version of %s + - - - PaymentServer - Bad response from server %1 - استجابة سيئة من الملقم %1 + + Error loading block database + - - - PeerTableModel - - - QObject - Amount - مبلغ + + Error opening block database + - %1 h - %1 ساعة + + Error: Disk space is low! + تحذير: مساحة القرص منخفضة - %1 m - %1 دقيقة + + Failed to listen on any port. Use -listen=0 if you want this. + فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. - N/A - غير معروف + + Importing... + - %1 and %2 - %1 و %2 + + Incorrect or no genesis block found. Wrong datadir for network? + - - - QObject::QObject - - - QRImageWidget - &Save Image... - &حفظ الصورة + + Initialization sanity check failed. %s is shutting down. + - &Copy Image - &نسخ الصورة + + Invalid amount for -%s=<amount>: '%s' + - Save QR Code - حفظ رمز الاستجابة السريعة QR + + Invalid amount for -discardfee=<amount>: '%s' + - PNG Image (*.png) - صورة PNG (*.png) + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + - - - RPCConsole - N/A - غير معروف + + Print version and exit + - Client version - نسخه العميل + + Prune cannot be configured with a negative value. + - &Information - المعلومات + + Prune mode is incompatible with -txindex. + - Debug window - نافذة المعالجة + + Rebuild chain state and block index from the blk*.dat files on disk + - General - عام + + Rebuild chain state from the currently indexed blocks + - Startup time - وقت البدء + + Replaying blocks... + - Network - الشبكه + + Rewinding blocks... + - Name - الاسم + + Set database cache size in megabytes (%d to %d, default: %d) + - Number of connections - عدد الاتصالات + + Specify wallet file (within data directory) + - Received - إستقبل + + The source code is available from %s. + - Sent - تم الإرسال + + Transaction fee and change calculation failed + - &Peers - &اصدقاء + + Unable to bind to %s on this computer. %s is probably already running. + - Direction - جهة + + Unsupported argument -benchmark ignored, use -debug=bench. + - Services - خدمات + + Unsupported argument -debugnet ignored, use -debug=net. + - Last Send - آخر استقبال + + Unsupported argument -tor found, use -onion. + - Last Receive - آخر إرسال + + Unsupported logging category %s=%s. + - &Open - الفتح + + Upgrading UTXO database + - &Network Traffic - &حركة مرور الشبكة + + Use UPnP to map the listening port (default: %u) + - &Clear - &مسح + + Use the test chain + - Totals - المجاميع + + User Agent comment (%s) contains unsafe characters. + - In: - داخل: + + Verifying blocks... + - Out: - خارج: + + Wallet %s resides outside data directory %s + - 1 &hour - 1 &ساعة + + Wallet debugging/testing options: + - 1 &day - 1 & يوم + + Wallet needed to be rewritten: restart %s to complete + - 1 &week - 1 & اسبوع + + Wallet options: + خيارات المحفظة : - 1 &year - 1 & سنة + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - استخدم اسهم الاعلى و الاسفل للتنقل بين السجلات و <b>Ctrl-L</b> لمسح الشاشة + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - %1 B - %1 بايت + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - %1 KB - %1 كيلو بايت + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - %1 MB - %1 ميقا بايت + + Error: Listening for incoming connections failed (listen returned error %s) + - %1 GB - %1 قيقا بايت + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - never - ابدا + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Inbound - داخل + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Outbound - خارجي + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Yes - نعم + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - No - لا + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Unknown - غير معرف + + The transaction amount is too small to send after the fee has been deducted + - - - ReceiveCoinsDialog - &Amount: - &القيمة + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - &Label: - &وصف : + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - &Message: - &رسالة: + + (default: %u) + - Clear all fields of the form. - مسح كل حقول النموذج المطلوبة + + Accept public REST requests (default: %u) + - Clear - مسح + + Automatically create Tor hidden service (default: %d) + - Requested payments history - سجل طلبات الدفع + + Connect through SOCKS5 proxy + - Show - عرض + + Error loading %s: You can't disable HD on an already existing HD wallet + - Remove - ازل + + Error reading from database, shutting down. + - Copy label - انسخ التسمية + + Error upgrading chainstate database + - Copy message - انسخ الرسالة + + Imports blocks from external blk000??.dat file on startup + - Copy amount - نسخ الكمية + + Information + معلومات - - - ReceiveRequestDialog - QR Code - رمز كيو ار + + Invalid -onion address or hostname: '%s' + - Copy &URI - نسخ &URI + + Invalid -proxy address or hostname: '%s' + - Copy &Address - نسخ &العنوان + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Save Image... - &حفظ الصورة + + Invalid netmask specified in -whitelist: '%s' + - Payment information - معلومات الدفع + + Keep at most <n> unconnectable transactions in memory (default: %u) + - URI - URI + + Need to specify a port with -whitebind: '%s' + - Address - عنوان + + Node relay options: + - Amount - مبلغ + + RPC server options: + - Label - وصف + + Reducing -maxconnections from %d to %d, because of system limitations. + - Message - رسالة + + Rescan the block chain for missing wallet transactions on startup + - - - RecentRequestsTableModel - Date - تاريخ + + Send trace/debug info to console instead of debug.log file + - Label - وصف + + Show all debugging options (usage: --help -help-debug) + - Message - رسالة + + Shrink debug.log file on client startup (default: 1 when no -debug) + - (no label) - (لا وصف) + + Signing transaction failed + فشل توقيع المعاملة - (no message) - ( لا رسائل ) + + The transaction amount is too small to pay the fee + - - - SendCoinsDialog - Send Coins - إرسال Coins + + This is experimental software. + - automatically selected - اختيار تلقائيا + + Tor control port password (default: empty) + - Insufficient funds! - الرصيد غير كافي! + + Tor control port to use if onion listening enabled (default: %s) + - Quantity: - الكمية : + + Transaction amount too small + قيمة العملية صغيره جدا - Bytes: - بايت + + Transaction too large for fee policy + - Amount: - القيمة : + + Transaction too large + المعاملة طويلة جدا - Fee: - رسوم : + + Unable to bind to %s on this computer (bind returned error %s) + - After Fee: - بعد الرسوم : + + Upgrade wallet to latest format on startup + - Change: - تعديل : + + Username for JSON-RPC connections + - Transaction Fee: - رسوم المعاملة: + + Valid Verifier + - Hide - إخفاء + + Variable is not allow in the expression: ' + - normal - طبيعي + + Verifier String doesn't exist for asset: + - fast - سريع + + Verifier String for asset trasnfer, not found + - Send to multiple recipients at once - إرسال إلى عدة مستلمين في وقت واحد + + Verifier not found for asset: + - Add &Recipient - أضافة &مستلم + + Verifier string can not be empty. To default to true, use "true" + - Clear all fields of the form. - مسح كل حقول النموذج المطلوبة + + Verifier string is empty + - Dust: - غبار: + + Verifier string not found + - Clear &All - مسح الكل + + Verifying wallet(s)... + - Balance: - الرصيد: + + Warning + تحذير - Confirm the send action - تأكيد الإرسال + + Warning: unknown new rules activated (versionbit %i) + - S&end - &ارسال + + Whether to operate in a blocks only mode (default: %u) + - Copy quantity - نسخ الكمية + + You need to rebuild the database using -reindex to change -txindex + - Copy amount - نسخ الكمية + + Zapping all transactions from wallet... + - Copy fee - نسخ الرسوم + + ZeroMQ notification options: + - Copy after fee - نسخ بعد الرسوم + + Password for JSON-RPC connections + - Copy bytes - نسخ البايتات + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - Copy change - نسخ التعديل + + Allow DNS lookups for -addnode, -seednode and -connect + - %1 to %2 - %1 الى %2 + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - or - أو + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Confirm send coins - تأكيد الإرسال Coins + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - The amount to pay must be larger than 0. - المبلغ المدفوع يجب ان يكون اكبر من 0 + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - The amount exceeds your balance. - القيمة تتجاوز رصيدك + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - The total exceeds your balance when the %1 transaction fee is included. - المجموع يتجاوز رصيدك عندما يتم اضافة %1 رسوم العملية + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - (no label) - (لا وصف) + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - - - SendCoinsEntry - A&mount: - &القيمة + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Pay &To: - ادفع &الى : + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - &Label: - &وصف : + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Choose previously used address - اختر عنوانا مستخدم سابقا + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - This is a normal payment. - هذا دفع اعتيادي + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - The Raven address to send the payment to - عنوان البت كوين المرسل اليه الدفع + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Alt+A - Alt+A + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Paste address from clipboard - انسخ العنوان من لوحة المفاتيح + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Alt+P - Alt+P + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Remove this entry - ازل هذه المداخله + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Message: - الرسائل + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Pay To: - ادفع &الى : + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Enter a label for this address to add it to your address book - إدخال تسمية لهذا العنوان لإضافته إلى دفتر العناوين الخاص بك + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - - - SendConfirmationDialog - Yes - نعم + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - - - ShutdownWindow - Do not shut down the computer until this window disappears. - لا توقف عمل الكمبيوتر حتى تختفي هذه النافذة + + Output debugging information (default: %u, supplying <category> is optional) + - - - SignVerifyMessageDialog - &Sign Message - &توقيع الرسالة + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Choose previously used address - اختر عنوانا مستخدم سابقا + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Alt+A - Alt+A + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Paste address from clipboard - انسخ العنوان من لوحة المفاتيح + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Alt+P - Alt+P + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Enter the message you want to sign here - ادخل الرسالة التي تريد توقيعها هنا + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Signature - التوقيع + + The default height that is required before rewards are allowed to be sent out + - Sign the message to prove you own this Raven address - وقع الرسالة لتثبت انك تمتلك عنوان البت كوين هذا + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Sign &Message - توقيع $الرسالة + + This address doesn't contain the correct tags to pass the verifier string check: + - Clear &All - مسح الكل + + This is the transaction fee you may pay when fee estimates are not available. + - &Verify Message - &تحقق رسالة + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Verify &Message - تحقق &الرسالة + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Click "Sign Message" to generate signature - اضغط "توقيع الرسالة" لتوليد التوقيع + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - The entered address is invalid. - العنوان المدخل غير صالح + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Please check the address and try again. - الرجاء التأكد من العنوان والمحاولة مرة اخرى + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - The entered address does not refer to a key. - العنوان المدخل لا يشير الى مفتاح + + Unable to reissue asset: unit must be larger than current unit selection + - Wallet unlock was cancelled. - تم الغاء عملية فتح المحفظة + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Private key for the entered address is not available. - المفتاح الخاص للعنوان المدخل غير موجود. + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Message signing failed. - فشل توقيع الرسالة. + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Message signed. - الرسالة موقعة. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Please check the signature and try again. - فضلا تاكد من التوقيع وحاول مرة اخرى + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Message verification failed. - فشلت عملية التأكد من الرسالة. + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Message verified. - تم تأكيد الرسالة. + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - - - SplashScreen - [testnet] - [testnet] + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - - - TrafficGraphWidget - - - TransactionDesc - Open until %1 - مفتوح حتى %1 + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - %1/offline - %1 غير متواجد + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - %1/unconfirmed - غير مؤكدة/%1 + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - %1 confirmations - تأكيد %1 + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Status - الحالة. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - , has not been successfully broadcast yet - , لم يتم حتى الآن البث بنجاح + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Date - تاريخ + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Source - المصدر + + %s is set very high! + - Generated - تم اصداره. + + ' doesn't exist in the database + - From - من + + ' has already been used + - unknown - غير معروف + + ' is not a valid character in the expression: + - To - الى + + ' the amount trying to reissue is to large + - own address - عنوانه + + (default: %s) + - label - علامة + + A space separated list of 12-words used to import a bip44 wallet + - not accepted - غير مقبولة + + Always query for peer addresses via DNS lookup (default: %u) + - Debit - دين + + Asset Transfer amounts must be greater than 0 + - Transaction fee - رسوم المعاملة + + Asset doesn't exist: + - Message - رسالة + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Comment - تعليق + + Asset name is not valid + - Transaction ID - رقم المعاملة + + Asset with this name is already in the mempool + - Merchant - تاجر + + Done Loading + - Transaction - معاملة + + Enable publish raw asset messages in <address> + - Amount - مبلغ + + Error creating %s: You can't create non-HD wallets with this version. + - true - صحيح + + Error loading wallet %s. -wallet filename must be a regular file. + - false - خاطئ + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - يبين هذا الجزء وصفا مفصلا لهده المعاملة + + Error loading wallet %s. Invalid characters in -wallet filename. + - - - TransactionTableModel - Date - تاريخ + + Error not set + - Type - النوع + + Error writing bip 39 passphrase to database + - Label - وصف + + Error writing bip 39 vchseed to database + - Open until %1 - مفتوح حتى %1 + + Error writing bip 39 words to database + - Offline - غير متصل + + Every '(' must have a corresponding ')' in the expression: + - Conflicted - يتعارض + + Failed to extract destination from change script + - This block was not received by any other nodes and will probably not be accepted! - لم يتم تلقى هذه الكتلة (Block) من قبل أي العقد الأخرى وربما لن تكون مقبولة! + + Failed to find restricted asset change address from inputs + - Generated but not accepted - ولدت ولكن لم تقبل + + Failed to get asset data from script + - Received with - استقبل مع + + Failed to get verifier string from output: + - Received from - استقبل من + + Failed to load Assets Database + - Sent to - أرسل إلى + + Flag must be 1 or 0 + - Payment to yourself - دفع لنفسك + + How many blocks to check at startup (default: %u, 0 = all) + - Mined - Mined + + Include IP addresses in debug output (default: %u) + - (n/a) - غير متوفر + + Init Message Channels - Scanning Asset Transactions + - (no label) - (لا وصف) + + Insufficient asset funds + - Transaction status. Hover over this field to show number of confirmations. - حالة المعاملة. تحوم حول هذا الحقل لعرض عدد التأكيدات. + + Invalid Qualifier Name: + - Date and time that the transaction was received. - التاريخ والوقت الذي تم فيه تلقي المعاملة. + + Invalid expressions in verifier string: + - Type of transaction. - نوع المعاملات + + Invalid parameter: amount must be + - Amount removed from or added to balance. - المبلغ الذي أزيل أو أضيف الى الرصيد + + Invalid parameter: amount must be between + - - - TransactionView - All - الكل + + Invalid parameter: asset amount can't be equal to or less than zero. + - Today - اليوم + + Invalid parameter: asset amount greater than max money: + - This week - هدا الاسبوع + + Invalid parameter: asset_name ' + - This month - هدا الشهر + + Invalid parameter: has_ipfs must be 0 or 1. + - Last month - الشهر الماضي + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - This year - هدا العام + + Invalid parameter: reissuable must be 0 or 1 + - Range... - المدى... + + Invalid parameter: reissuable must be 0 + - Received with - استقبل مع + + Invalid parameter: units must be + - Sent to - أرسل إلى + + Invalid parameter: units must be between 0-8. + - To yourself - إليك + + Invalid syntax: + - Mined - Mined + + Keypool ran out, please call keypoolrefill first + - Other - اخرى + + Length is to large. Please use a smaller length + - Enter address or label to search - ادخل عنوان أووصف للبحث + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Min amount - الحد الأدنى + + Listen for connections on <port> (default: %u or testnet: %u) + - Copy address - انسخ عنوان + + Maintain at most <n> connections to peers (default: %u) + - Copy label - انسخ التسمية + + Make the wallet broadcast transactions + إنتاج معاملات بث المحفظة - Copy amount - نسخ الكمية + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Copy transaction ID - نسخ رقم العملية + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Edit label - عدل الوصف + + Mempool cleared + - Show transaction details - عرض تفاصيل المعاملة + + Multiple verifier strings found in transaction + - Comma separated file (*.csv) - ملف مفصول بفواصل (*.csv) + + Passphrase securing your 12-word mnemonic word-list + - Confirmed - تأكيد + + Prepend debug output with timestamp (default: %u) + - Date - تاريخ + + Relay and mine data carrier transactions (default: %u) + - Type - النوع + + Relay non-P2SH multisig (default: %u) + - Label - وصف + + Restricted asset transfer from address that has been frozen + - Address - عنوان + + Send transactions with full-RBF opt-in enabled (default: %u) + - ID - العنوان + + Set key pool size to <n> (default: %u) + - Exporting Failed - فشل التصدير + + Set maximum BIP141 block weight (default: %d) + - Exporting Successful - نجح التصدير + + Set the Maximum reorg depth (default: %u) + - Range: - المدى: + + Set the number of threads to service RPC calls (default: %d) + - to - الى + + Signing asset transaction failed + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - إرسال Coins + + Specify configuration file (default: %s) + - - - WalletView - &Export - &تصدير + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Export the data in the current tab to a file - تحميل البيانات في علامة التبويب الحالية إلى ملف. + + Specify pid file (default: %s) + - Backup Wallet - نسخ احتياط للمحفظة + + Spend unconfirmed change when sending transactions (default: %u) + - Backup Failed - فشل النسخ الاحتياطي + + Starting network threads... + - Backup Successful - نجاح النسخ الاحتياطي + + The symbol: ' + - - - raven-core - Options: - خيارات: + + The verifier string has two operators without a tag between them + - Specify data directory - حدد مجلد المعلومات + + The wallet will avoid paying less than the minimum relay fee. + - Raven Core - جوهر البيت كوين + + This is the minimum transaction fee you pay on every transaction. + - The %s developers - %s المبرمجون + + This is the transaction fee you will pay if you send a transaction. + - Error: Disk space is low! - تحذير: مساحة القرص منخفضة + + Threshold for disconnecting misbehaving peers (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - فشل في الاستماع على أي منفذ. استخدام الاستماع = 0 إذا كنت تريد هذا. + + Transaction amounts must not be negative + - Invalid -onion address: '%s' - عنوان اونيون غير صحيح : '%s' + + Transaction has too long of a mempool chain + - Verifying wallet... - التحقق من المحفظة ... + + Transaction must have at least one recipient + - Wallet options: - خيارات المحفظة : + + Turn off the databasing the messages sent with assets (default: %u) + - Information - معلومات + + Unable to generate initial keys + - Signing transaction failed - فشل توقيع المعاملة + + Unable to get coin to verify restricted asset transfer from address + - Transaction amount too small - قيمة العملية صغيره جدا + + Unable to reissue asset: amount must be 0 or larger + - Transaction too large - المعاملة طويلة جدا + + Unable to reissue asset: asset_name ' + - Warning - تحذير + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - تحميل العنوان + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - عنوان البروكسي غير صحيح : '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Make the wallet broadcast transactions - إنتاج معاملات بث المحفظة + + Unknown network specified in -onlynet: '%s' + + Insufficient funds اموال غير كافية + Loading block index... تحميل مؤشر الكتلة + Loading wallet... تحميل المحفظه + Cannot downgrade wallet لا يمكن تخفيض قيمة المحفظة - Cannot write default address - لايمكن كتابة العنوان الافتراضي - - + Rescanning... إعادة مسح - Done loading - انتهاء التحميل - - + Error خطأ diff --git a/src/qt/locale/raven_be_BY.ts b/src/qt/locale/raven_be_BY.ts index a399c61c52..8d172d1a7a 100644 --- a/src/qt/locale/raven_be_BY.ts +++ b/src/qt/locale/raven_be_BY.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Правы клік, каб рэдагаваць адрас ці метку + Create a new address Стварыць новы адрас + &New Новы + Copy the currently selected address to the system clipboard Капіяваць пазначаны адрас у сістэмны буфер абмену + &Copy Капіяваць + C&lose Зачыніць + Delete the currently selected address from the list Выдаліць абраны адрас са спісу + Export the data in the current tab to a file Экспартаваць гэтыя звесткі у файл + &Export Экспарт + &Delete Выдаліць + Choose the address to send coins to Выбраць адрас, куды выслаць сродкі + Choose the address to receive coins with Выбраць адрас, на які атрымаць сродкі + C&hoose Выбраць + Sending addresses адрасы Адпраўкі + Receiving addresses адрасы Прымання + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Тут знаходзяцца Біткойн-адрасы для высылання плацяжоў. Заўсёды спраўджвайце колькасць і адрас прызначэння перад здзяйсненнем транзакцыі. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Тут знаходзяцца Біткойн-адрасы для прымання плацяжоў. Пажадана выкарыстоўваць новы адрас для кожнай транзакцыі. + &Copy Address Капіяваць адрас + Copy &Label Капіяваць Метку + &Edit Рэдагаваць + Export Address List Экспартаваць Спіс Адрасоў + Comma separated file (*.csv) Коскамі падзелены файл (*.csv) + Exporting Failed Экспартаванне няўдалае + There was an error trying to save the address list to %1. Please try again. Адбылася памылка падчас спробы захаваць адрас у %1. Паспрабуйце зноў. @@ -103,14 +125,17 @@ AddressTableModel + Label Метка + Address Адрас + (no label) непазначаны @@ -118,1272 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Дыялог сакрэтнай фразы + Enter passphrase Увядзіце кодавую фразу + New passphrase Новая кодавая фраза + Repeat new passphrase Паўтарыце новую кодавую фразу + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Увядзіце новы пароль для гаманца.<br/>Парольная фраза павинна складацца<b> не меньш чым з дзесяці сімвалаў</b>, ці <b>больш чым з васьмі слоў</b>. + Encrypt wallet Зашыфраваць гаманец. + This operation needs your wallet passphrase to unlock the wallet. Гэтая аперацыя патрабуе кодавую фразу, каб рзблакаваць гаманец. + Unlock wallet Разблакаваць гаманец + This operation needs your wallet passphrase to decrypt the wallet. Гэтая аперацыя патрабуе пароль каб расшыфраваць гаманец. + Decrypt wallet Рачшыфраваць гаманец + Change passphrase Змяніць пароль + Enter the old passphrase and new passphrase to the wallet. Увядзіце стары пароль і новы пароль для гаманца. + Confirm wallet encryption Пацвердзіце шыфраванне гаманца + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Увага: калі вы зашыфруеце свой гаманец і страціце парольную фразу, то <b>СТРАЦІЦЕ ЎСЕ СВАЕ БІТКОЙНЫ</b>! + Are you sure you wish to encrypt your wallet? Ці ўпэўненыя вы, што жадаеце зашыфраваць свой гаманец? + + Wallet encrypted Гаманец зашыфраваны + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖНА: Усе папярэднія копіі гаманца варта замяніць новым зашыфраваным файлам. У мэтах бяспекі папярэднія копіі незашыфраванага файла-гаманца стануць неўжывальнымі, калі вы станеце карыстацца новым зашыфраваным гаманцом. + + + + Wallet encryption failed Шыфраванне гаманца няўдалае + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шыфраванне гаманца не адбылося з-за ўнутранай памылкі. Гаманец незашыфраваны. + + The supplied passphrases do not match. Уведдзеныя паролі не супадаюць + Wallet unlock failed Разблакаванне гаманца няўдалае + + + The passphrase entered for the wallet decryption was incorrect. Уведзены пароль для расшыфравання гаманца памылковы + Wallet decryption failed Расшыфраванне гаманца няўдалае + Wallet passphrase was successfully changed. Парольная фраза гаманца паспяхова зменена. + + Warning: The Caps Lock key is on! Увага: Caps Lock уключаны! - BanTableModel - - - RavenGUI + AssetControlDialog - Sign &message... - Падпісаць паведамленне... + + Asset Selection + - Synchronizing with network... - Сінхранізацыя з сецівам... + + Quantity: + - &Overview - Агляд + + Bytes: + - Node - Вузел + + Amount: + - Show general overview of wallet - Паказвае агульныя звесткі аб гаманцы + + Dust: + - &Transactions - Транзакцыі + + Fee: + - Browse transaction history - Праглядзець гісторыю транзакцый + + After Fee: + - E&xit - Выйсці + + Change: + - Quit application - Выйсці з праграмы + + (un)select all + - About &Qt - Аб Qt + + Tree mode + - Show information about Qt - Паказаць інфармацыю аб Qt + + List mode + - &Options... - Опцыі... + + View assets that you have the ownership asset for + - &Encrypt Wallet... - Зашыфраваць Гаманец... + + View Administrator Assets + - &Backup Wallet... - Стварыць копію гаманца... + + Asset + - &Change Passphrase... - &Change Passphrase... + + Amount + - &Sending addresses... - Адрасы дасылання... + + Received with label + - &Receiving addresses... - Адрасы прымання... + + Received with address + - Open &URI... - Адчыниць &URI... + + Date + - Reindexing blocks on disk... - Пераіндэксацыя блокаў на дыску... + + Confirmations + - Send coins to a Raven address - Даслаць манеты на Біткойн-адрас + + Confirmed + - Backup wallet to another location - Зрабіце копію гаманца ў іншае месца + + Copy address + - Change the passphrase used for wallet encryption - Змяніць пароль шыфравання гаманца + + Copy label + - &Debug window - Вакно адладкі + + + Copy amount + - Open debugging and diagnostic console - Адкрыць кансоль дыягностыкі і адладкі + + Copy transaction ID + - &Verify message... - Праверыць паведамленне... + + Lock unspent + - Raven - Біткойн + + Unlock unspent + - Wallet - Гаманец + + Copy quantity + - &Send - Даслаць + + Copy fee + - &Receive - Атрымаць + + Copy after fee + - &Show / Hide - &Паказаць / Схаваць + + Copy bytes + - Show or hide the main Window - Паказаць альбо схаваць галоўнае вакно + + Copy dust + - Encrypt the private keys that belong to your wallet - Зашыфраваць прыватныя ключы, якия належаць вашаму гаманцу + + Copy change + - Sign messages with your Raven addresses to prove you own them - Падпісаць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам + + (%1 locked) + - Verify messages to ensure they were signed with specified Raven addresses - Спраўдзіць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам + + yes + - &File - Ф&айл + + no + - &Settings - Наладкі + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Help - Дапамога + + Can vary +/- %1 satoshi(s) per input. + - Request payments (generates QR codes and raven: URIs) - Запатрабаваць плацёж (генеруецца QR-код для біткойн URI) + + + (no label) + - Show the list of used sending addresses and labels - Паказаць спіс адрасоў і метак для дасылання + + change from %1 (%2) + - Show the list of used receiving addresses and labels - Паказаць спіс адрасоў і метак для прымання + + (change) + + + + AssetTableModel - Open a raven: URI or payment request - Адкрыць біткойн: URI ці запыт плацяжу + + Name + - &Command-line options - Опцыі каманднага радка + + Quantity + + + + AssetsDialog - %1 behind - %1 таму + + + Send Coins + - Last received block was generated %1 ago. - Апошні прыняты блок генераваны %1 таму. + + Asset Control Features + - Transactions after this will not yet be visible. - Транзакцыи пасля гэтай не будуць бачныя. + + Inputs... + - Error - Памылка + + automatically selected + - Warning - Увага + + Insufficient funds! + - Information - Інфармацыя + + Quantity: + - Up to date - Сінхранізавана + + Bytes: + - Catching up... - Наганяем... + + Amount: + - Date: %1 - - Дата: %1 - + + Dust: + - Amount: %1 - - Колькасць: %1 - + + Fee: + - Type: %1 - - Тып: %1 - + + After Fee: + - Label: %1 - - Метка: %1 - + + Change: + - Address: %1 - - Адрас: %1 - + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Sent transaction - Дасланыя транзакцыі + + Custom change address + - Incoming transaction - Прынятыя транзакцыі + + Transaction Fee: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> + + Choose... + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - - CoinControlDialog - Quantity: - Колькасць: + + Warning: Fee estimation is currently not possible. + - Bytes: - Байтаў: + + collapse fee-settings + - Amount: - Колькасць: + + Hide + - Fee: - Камісія: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Dust: - Пыл: + + per kilobyte + - After Fee: - Пасля камісіі: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - (un)select all - (не)выбраць ўсё + + (read the tooltip) + - Tree mode - Рэжым дрэва + + Recommended: + - List mode - Рэжым спіса + + Custom: + - Amount - Колькасць + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Received with label - Прыняць праз метку + + Confirmation time target: + - Received with address - Прыняць праз адрас + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Date - Дата + + Request Replace-By-Fee + - Confirmations - Пацверджанняў + + Confirm the send action + - Confirmed - Пацверджана + + S&end + - Copy address - Капіяваць адрас + + Clear all fields of the form. + - Copy label - Капіяваць пазнаку + + Clear &All + - Copy amount - Капіяваць колькасць + + Transfer to multiple recipients at once + - Copy transaction ID - Капіяваць ID транзакцыі + + Add &Recipient + - Lock unspent - Замкнуць непатрачанае + + Balance: + - Unlock unspent - Адамкнуць непатрачанае + + Copy quantity + - Copy quantity - Капіяваць колькасць + + Copy amount + + Copy fee - Капіяваць камісію + + Copy after fee - Капіяваць з выняткам камісіі + + Copy bytes - Капіяваць байты + + Copy dust - Капіяваць пыл + - yes - так + + Copy change + - no - не + + %1 (%2 blocks) + - (no label) - непазначаны + + + + + %1 to %2 + - - - EditAddressDialog - Edit Address - Рэдагаваць Адрас + + Are you sure you want to send? + - &Label - Метка + + added as transaction fee + - &Address - Адрас + + Confirm send assets + - New receiving address - Новы адрас для атрымання + + The recipient address is not valid. Please recheck. + - New sending address - Новы адрас для дасылання + + The amount to pay must be larger than 0. + - Edit receiving address - Рэдагаваць адрас прымання + + The amount exceeds your balance. + - Edit sending address - Рэдагаваць адрас дасылання + + The total exceeds your balance when the %1 transaction fee is included. + - The entered address "%1" is already in the address book. - Уведзены адрас "%1" ужо ў кніге адрасоў + + Duplicate address found: addresses should only be used once each. + - Could not unlock wallet. - Немагчыма разблакаваць гаманец + + Transaction creation failed! + - New key generation failed. - Генерацыя новага ключа няўдалая + + The transaction was rejected with the following reason: %1 + - - - FreespaceChecker - A new data directory will be created. - Будзе створаны новы каталог з данымі. + + A fee higher than %1 is considered an absurdly high fee. + - name - імя + + Payment request expired. + - Directory already exists. Add %1 if you intend to create a new directory here. - Каталог ужо існуе. Дадайце %1 калі вы збіраецеся стварыць тут новы каталог. + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - - - HelpMessageDialog - (%1-bit) - (%1-біт) + + Warning: Invalid Raven address + - Command-line options - Опцыі каманднага радка + + Warning: Unknown change address + - Usage: - Ужыванне: + + Confirm custom change address + - command-line options - опцыі каманднага радка + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Start minimized - Стартаваць ммінімізаванай + + (no label) + - + - Intro + AssignQualifier - Welcome - Вітаем + + Frame + - Error - Памылка + + Select Type: + - - - ModalOverlay - Form - Форма + + Select Qualifier: + - - - OpenURIDialog - Open URI - Адкрыць URI + + Address: + - - - OptionsDialog - Options - Опцыі + + IPFS / Hash: + - MB - Мб + + Custom Change Address + - W&allet - Гаманец + + Check + - - - OverviewPage - Form - Форма + + Clear + - - - PaymentServer - + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - PeerTableModel - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - QObject + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Колькасць: + + + + Bytes: + Байтаў: + + + + Amount: + Колькасць: + + + + Fee: + Камісія: + + + + Dust: + Пыл: + + + + After Fee: + Пасля камісіі: + + + + Change: + + + + + (un)select all + (не)выбраць ўсё + + + + Tree mode + Рэжым дрэва + + + + List mode + Рэжым спіса + + Amount Колькасць - %1 and %2 - %1 і %2 + + Received with label + Прыняць праз метку - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Інфармацыя + + Received with address + Прыняць праз адрас - Debug window - Вакно адладкі + + Date + Дата - - - ReceiveCoinsDialog - &Amount: - &Колькасць: + + Confirmations + Пацверджанняў - &Label: - Метка: + + Confirmed + Пацверджана + + + + Copy address + Капіяваць адрас + Copy label Капіяваць пазнаку + + Copy amount Капіяваць колькасць - - - ReceiveRequestDialog - Copy &Address - Капіяваць адрас + + Copy transaction ID + Капіяваць ID транзакцыі - Address - Адрас + + Lock unspent + Замкнуць непатрачанае - Amount - Колькасць + + Unlock unspent + Адамкнуць непатрачанае - Label - Метка + + Copy quantity + Капіяваць колькасць - Message - Паведамленне + + Copy fee + Капіяваць камісію - - - RecentRequestsTableModel - Date - Дата + + Copy after fee + Капіяваць з выняткам камісіі - Label - Метка + + Copy bytes + Капіяваць байты - Message - Паведамленне + + Copy dust + Капіяваць пыл + + + + Copy change + + + + + (%1 locked) + + + + + yes + так + + + + no + не + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + Can vary +/- %1 satoshi(s) per input. + + + + + (no label) непазначаны - + + + change from %1 (%2) + + + + + (change) + + + - SendCoinsDialog + CreateAssetDialog - Send Coins - Даслаць Манеты + + Coin Control Features + + + + + Inputs... + + + automatically selected + + + + Insufficient funds! - Недастаткова сродкаў + + + Quantity: - Колькасць: + + Bytes: - Байтаў: + + Amount: - Колькасць: + + + + + Dust: + + Fee: - Камісія: + + After Fee: - Пасля камісіі: + - Send to multiple recipients at once - Даслаць адразу некалькім атрымальнікам + + Change: + - Dust: - Пыл: + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Balance: - Баланс: + + Custom change address + - Confirm the send action - Пацвердзіць дасыланне + + Name: + - Copy quantity - Капіяваць колькасць + + A-Z 0-9 and . or _ as the second character + - Copy amount - Капіяваць колькасць + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Рэдагаваць Адрас + + + + &Label + Метка + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Адрас + + + + New receiving address + Новы адрас для атрымання + + + + New sending address + Новы адрас для дасылання + + + + Edit receiving address + Рэдагаваць адрас прымання + + + + Edit sending address + Рэдагаваць адрас дасылання + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + Уведзены адрас "%1" ужо ў кніге адрасоў + + + + Could not unlock wallet. + Немагчыма разблакаваць гаманец + + + + New key generation failed. + Генерацыя новага ключа няўдалая + + + + FreespaceChecker + + + A new data directory will be created. + Будзе створаны новы каталог з данымі. + + + + name + імя + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Каталог ужо існуе. Дадайце %1 калі вы збіраецеся стварыць тут новы каталог. + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + (%1-біт) + + + + About %1 + + + + + Command-line options + Опцыі каманднага радка + + + + Usage: + Ужыванне: + + + + command-line options + опцыі каманднага радка + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Стартаваць ммінімізаванай + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Вітаем + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Памылка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Форма + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Адкрыць URI + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Опцыі + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + Мб + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Гаманец + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Форма + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Колькасць + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 і %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Інфармацыя + + + + Debug window + Вакно адладкі + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Падпісаць паведамленне... + + + + Synchronizing with network... + Сінхранізацыя з сецівам... + + + + &Overview + Агляд + + + + Node + Вузел + + + + Show general overview of wallet + Паказвае агульныя звесткі аб гаманцы + + + + &Transactions + Транзакцыі + + + + Browse transaction history + Праглядзець гісторыю транзакцый + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Выйсці + + + + Quit application + Выйсці з праграмы + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Аб Qt + + + + Show information about Qt + Паказаць інфармацыю аб Qt + + + + &Options... + Опцыі... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Зашыфраваць Гаманец... + + + + &Backup Wallet... + Стварыць копію гаманца... + + + + &Change Passphrase... + &Change Passphrase... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Адрасы дасылання... + + + + &Receiving addresses... + Адрасы прымання... + + + + Open &URI... + Адчыниць &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Пераіндэксацыя блокаў на дыску... + + + + Send coins to a Raven address + Даслаць манеты на Біткойн-адрас + + + + Backup wallet to another location + Зрабіце копію гаманца ў іншае месца + + + + Change the passphrase used for wallet encryption + Змяніць пароль шыфравання гаманца + + + + Open debugging and diagnostic console + Адкрыць кансоль дыягностыкі і адладкі + + + + &Verify message... + Праверыць паведамленне... + + + + Raven + Біткойн + + + + Wallet + Гаманец + + + + &Send + Даслаць + + + + &Receive + Атрымаць + + + + &Show / Hide + &Паказаць / Схаваць + + + + Show or hide the main Window + Паказаць альбо схаваць галоўнае вакно + + + + Encrypt the private keys that belong to your wallet + Зашыфраваць прыватныя ключы, якия належаць вашаму гаманцу + + + + Sign messages with your Raven addresses to prove you own them + Падпісаць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам + + + + Verify messages to ensure they were signed with specified Raven addresses + Спраўдзіць паведамленне з дапамогай Біткойн-адраса каб даказаць, што яно належыць вам + + + + &File + Ф&айл + + + + &Help + Дапамога + + + + Request payments (generates QR codes and raven: URIs) + Запатрабаваць плацёж (генеруецца QR-код для біткойн URI) + + + + Show the list of used sending addresses and labels + Паказаць спіс адрасоў і метак для дасылання + + + + Show the list of used receiving addresses and labels + Паказаць спіс адрасоў і метак для прымання + + + + Open a raven: URI or payment request + Адкрыць біткойн: URI ці запыт плацяжу + + + + &Command-line options + Опцыі каманднага радка + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 таму + + + + Last received block was generated %1 ago. + Апошні прыняты блок генераваны %1 таму. + + + + Transactions after this will not yet be visible. + Транзакцыи пасля гэтай не будуць бачныя. + + + + Error + Памылка + + + + Warning + Увага + + + + Information + Інфармацыя + + + + Up to date + Сінхранізавана + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Наганяем... + + + + Date: %1 + + Дата: %1 + + + + + + Amount: %1 + + Колькасць: %1 + + + + + Type: %1 + + Тып: %1 + + + + + Label: %1 + + Метка: %1 + + + + + Address: %1 + + Адрас: %1 + + + + + Sent transaction + Дасланыя транзакцыі + + + + Incoming transaction + Прынятыя транзакцыі + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Гаманец <b>зашыфраваны</b> і зараз <b>разблакаваны</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Гаманец <b>зашыфраваны</b> і зараз <b>заблакаваны</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Колькасць: + + + + &Label: + Метка: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + Капіяваць пазнаку + + + + Copy message + + + + + Copy amount + Капіяваць колькасць + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + Капіяваць адрас + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Адрас + + + + Amount + Колькасць + + + + Label + Метка + + + + Message + Паведамленне + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Дата + + + + Label + Метка + + + + Message + Паведамленне + + + + (no label) + непазначаны + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Даслаць Манеты + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Недастаткова сродкаў + + + + Quantity: + Колькасць: + + + + Bytes: + Байтаў: + + + + Amount: + Колькасць: + + + + Fee: + Камісія: + + + + After Fee: + Пасля камісіі: + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Даслаць адразу некалькім атрымальнікам + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + Пыл: + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Баланс: + + + + Confirm the send action + Пацвердзіць дасыланне + + + + S&end + + + + + Copy quantity + Капіяваць колькасць + + + + Copy amount + Капіяваць колькасць + + + + Copy fee + Капіяваць камісію + + + + Copy after fee + Капіяваць з выняткам камісіі + + + + Copy bytes + Капіяваць байты + + + + Copy dust + Капіяваць пыл + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + Пацвердзіць дасыланне манет + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + Велічыня плацяжу мае быць больш за 0. + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + непазначаны + + + + SendCoinsEntry + + + + + A&mount: + Колькасць: + + + + &Label: + Метка: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Уставіць адрас з буферу абмена + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Паведамленне: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Памятка: + + + + Enter a label for this address to add it to your address book + Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Уставіць адрас з буферу абмена + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + Кб/с + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/offline + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/непацверджана + + + + %1 confirmations + %1 пацверджанняў + + + + + Status + Статус + + + + + , has not been successfully broadcast yet + , пакуль не было паспяхова транслявана + + + + + , broadcast through %n node(s) + + + + + + Date + Дата + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + невядома + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Паведамленне + + + + + Comment + Каментар + + + + + Transaction ID + ID + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Колькасць + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Гэтая панэль паказвае дэтальнае апісанне транзакцыі + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Дата + + + + Type + Тып + + + + Label + Метка + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + Пацверджана (%1 пацверджанняў) + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + Гэты блок не быў прыняты іншымі вузламі і магчыма не будзе ўхвалены! + + + + Generated but not accepted + Згенеравана, але не прынята + + + + Received with + Прынята з + + + + Received from + Прынята ад + + + + Sent to + Даслана да + + + + Payment to yourself + Плацёж самому сабе + + + + Mined + Здабыта + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + (n/a) + + + + (no label) + непазначаны + + + + Transaction status. Hover over this field to show number of confirmations. + Статус транзакцыі. Навядзіце курсар на гэтае поле, каб паказаць колькасць пацверджанняў. + + + + Date and time that the transaction was received. + Дата і час, калі транзакцыя была прынята. + + + + Type of transaction. + Тып транзакцыі + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + Колькасць аднятая ці даданая да балансу. + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Усё + + + + Today + Сёння + + + + This week + Гэты тыдзень + + + + This month + Гэты месяц + + + + Last month + Мінулы месяц + + + + This year + Гэты год + + + + Range... + Прамежак... + + + + Received with + Прынята з + + + + Sent to + Даслана да + + + + To yourself + Да сябе + + + + Mined + Здабыта + + + + Other + Іншыя + + + + Enter address or label to search + Увядзіце адрас ці пазнаку для пошуку + + + + Min amount + Мін. колькасць + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Капіяваць адрас + + + + Copy label + Капіяваць пазнаку + + + + Copy amount + Капіяваць колькасць + + + + Copy transaction ID + Капіяваць ID транзакцыі + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + Рэдагаваць пазнаку + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Коскамі падзелены файл (*.csv) + + + + Confirmed + Пацверджана + + + + Watch-only + + + + + Date + Дата + + + + Type + Тып + + + + Label + Метка + + + + Address + Адрас + + + + Asset + + + + + ID + ID + + + + Exporting Failed + Экспартаванне няўдалае + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + Прамежак: + + + + to + да + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Даслаць Манеты + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + Экспарт + + + + Export the data in the current tab to a file + Экспартаваць гэтыя звесткі у файл + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Опцыі: + + + + Specify data directory + Вызначыць каталог даных + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + Прымаць камандны радок і JSON-RPC каманды + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Запусціць у фоне як дэман і прымаць каманды + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + Ці жадаеце вы перабудаваць зараз базу звестак блокаў? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Памылка ініцыялізацыі базвы звестак блокаў + + + + Error initializing wallet database environment %s! + Памалка ініцыялізацыі асяроддзя базы звестак гаманца %s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Памылка загрузкі базвы звестак блокаў + + + + Error opening block database + Памылка адчынення базы звестак блокаў + + + + Error: Disk space is low! + Памылка: Замала вольнага месца на дыску! + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + Імпартаванне... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + Не хапае файлавых дэскрыптараў. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + Use UPnP to map the listening port (default: %u) + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Праверка блокаў... + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + Опцыі гаманца: + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Інфармацыя + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + Опцыі RPC сервера: + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Слаць trace/debug звесткі ў кансоль замест файла debug.log + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + Памылка подпісу транзакцыі + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + Гэта эксперыментальная праграма. + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + Транзакцыя занадта малая + + + + Transaction too large for fee policy + + + + + Transaction too large + Транзакцыя занадта вялікая + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Імя карыстальника для JSON-RPC злучэнняў + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Увага + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Пароль для JSON-RPC злучэнняў + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Copy fee - Капіяваць камісію + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Copy after fee - Капіяваць з выняткам камісіі + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Copy bytes - Капіяваць байты + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Copy dust - Капіяваць пыл + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Confirm send coins - Пацвердзіць дасыланне манет + + Unable to reissue asset: unit must be larger than current unit selection + - The amount to pay must be larger than 0. - Велічыня плацяжу мае быць больш за 0. + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - (no label) - непазначаны + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - - - SendCoinsEntry - A&mount: - Колькасць: + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Pay &To: - Заплаціць да: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - &Label: - Метка: + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Alt+A - Alt+A + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Paste address from clipboard - Уставіць адрас з буферу абмена + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Alt+P - Alt+P + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Message: - Паведамленне: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Pay To: - Заплаціць да: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Memo: - Памятка: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Enter a label for this address to add it to your address book - Увядзіце пазнаку гэтаму адрасу, каб дадаць яго ў адрасную кнігу + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Paste address from clipboard - Уставіць адрас з буферу абмена + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Alt+P - Alt+P + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - SplashScreen - [testnet] - [testnet] + + %s is set very high! + - - - TrafficGraphWidget - KB/s - Кб/с + + ' doesn't exist in the database + - - - TransactionDesc - %1/offline - %1/offline + + ' has already been used + - %1/unconfirmed - %1/непацверджана + + ' is not a valid character in the expression: + - %1 confirmations - %1 пацверджанняў + + ' the amount trying to reissue is to large + - Status - Статус + + (default: %s) + - , has not been successfully broadcast yet - , пакуль не было паспяхова транслявана + + A space separated list of 12-words used to import a bip44 wallet + - Date - Дата + + Always query for peer addresses via DNS lookup (default: %u) + - unknown - невядома + + Asset Transfer amounts must be greater than 0 + - Message - Паведамленне + + Asset doesn't exist: + - Comment - Каментар + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Transaction ID - ID + + Asset name is not valid + - Amount - Колькасць + + Asset with this name is already in the mempool + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Гэтая панэль паказвае дэтальнае апісанне транзакцыі + + Done Loading + - - - TransactionTableModel - Date - Дата + + Enable publish raw asset messages in <address> + - Type - Тып + + Error creating %s: You can't create non-HD wallets with this version. + - Label - Метка + + Error loading wallet %s. -wallet filename must be a regular file. + - Confirmed (%1 confirmations) - Пацверджана (%1 пацверджанняў) + + Error loading wallet %s. Duplicate -wallet filename specified. + - This block was not received by any other nodes and will probably not be accepted! - Гэты блок не быў прыняты іншымі вузламі і магчыма не будзе ўхвалены! + + Error loading wallet %s. Invalid characters in -wallet filename. + - Generated but not accepted - Згенеравана, але не прынята + + Error not set + - Received with - Прынята з + + Error writing bip 39 passphrase to database + - Received from - Прынята ад + + Error writing bip 39 vchseed to database + - Sent to - Даслана да + + Error writing bip 39 words to database + - Payment to yourself - Плацёж самому сабе + + Every '(' must have a corresponding ')' in the expression: + - Mined - Здабыта + + Failed to extract destination from change script + - (n/a) - (n/a) + + Failed to find restricted asset change address from inputs + - (no label) - непазначаны + + Failed to get asset data from script + - Transaction status. Hover over this field to show number of confirmations. - Статус транзакцыі. Навядзіце курсар на гэтае поле, каб паказаць колькасць пацверджанняў. + + Failed to get verifier string from output: + - Date and time that the transaction was received. - Дата і час, калі транзакцыя была прынята. + + Failed to load Assets Database + - Type of transaction. - Тып транзакцыі + + Flag must be 1 or 0 + - Amount removed from or added to balance. - Колькасць аднятая ці даданая да балансу. + + How many blocks to check at startup (default: %u, 0 = all) + - - - TransactionView - All - Усё + + Include IP addresses in debug output (default: %u) + - Today - Сёння + + Init Message Channels - Scanning Asset Transactions + - This week - Гэты тыдзень + + Insufficient asset funds + - This month - Гэты месяц + + Invalid Qualifier Name: + - Last month - Мінулы месяц + + Invalid expressions in verifier string: + - This year - Гэты год + + Invalid parameter: amount must be + - Range... - Прамежак... + + Invalid parameter: amount must be between + - Received with - Прынята з + + Invalid parameter: asset amount can't be equal to or less than zero. + - Sent to - Даслана да + + Invalid parameter: asset amount greater than max money: + - To yourself - Да сябе + + Invalid parameter: asset_name ' + - Mined - Здабыта + + Invalid parameter: has_ipfs must be 0 or 1. + - Other - Іншыя + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Enter address or label to search - Увядзіце адрас ці пазнаку для пошуку + + Invalid parameter: reissuable must be 0 or 1 + - Min amount - Мін. колькасць + + Invalid parameter: reissuable must be 0 + - Copy address - Капіяваць адрас + + Invalid parameter: units must be + - Copy label - Капіяваць пазнаку + + Invalid parameter: units must be between 0-8. + - Copy amount - Капіяваць колькасць + + Invalid syntax: + - Copy transaction ID - Капіяваць ID транзакцыі + + Keypool ran out, please call keypoolrefill first + - Edit label - Рэдагаваць пазнаку + + Length is to large. Please use a smaller length + - Comma separated file (*.csv) - Коскамі падзелены файл (*.csv) + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Confirmed - Пацверджана + + Listen for connections on <port> (default: %u or testnet: %u) + - Date - Дата + + Maintain at most <n> connections to peers (default: %u) + - Type - Тып + + Make the wallet broadcast transactions + - Label - Метка + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Address - Адрас + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - ID - ID + + Mempool cleared + - Exporting Failed - Экспартаванне няўдалае + + Multiple verifier strings found in transaction + - Range: - Прамежак: + + Passphrase securing your 12-word mnemonic word-list + - to - да + + Prepend debug output with timestamp (default: %u) + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Даслаць Манеты + + Relay and mine data carrier transactions (default: %u) + - - - WalletView - &Export - Экспарт + + Relay non-P2SH multisig (default: %u) + - Export the data in the current tab to a file - Экспартаваць гэтыя звесткі у файл + + Restricted asset transfer from address that has been frozen + - - - raven-core - Options: - Опцыі: + + Send transactions with full-RBF opt-in enabled (default: %u) + - Specify data directory - Вызначыць каталог даных + + Set key pool size to <n> (default: %u) + - Accept command line and JSON-RPC commands - Прымаць камандны радок і JSON-RPC каманды + + Set maximum BIP141 block weight (default: %d) + - Run in the background as a daemon and accept commands - Запусціць у фоне як дэман і прымаць каманды + + Set the Maximum reorg depth (default: %u) + - Raven Core - Raven Core + + Set the number of threads to service RPC calls (default: %d) + - Do you want to rebuild the block database now? - Ці жадаеце вы перабудаваць зараз базу звестак блокаў? + + Signing asset transaction failed + - Error initializing block database - Памылка ініцыялізацыі базвы звестак блокаў + + Specify configuration file (default: %s) + - Error initializing wallet database environment %s! - Памалка ініцыялізацыі асяроддзя базы звестак гаманца %s! + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Error loading block database - Памылка загрузкі базвы звестак блокаў + + Specify pid file (default: %s) + - Error opening block database - Памылка адчынення базы звестак блокаў + + Spend unconfirmed change when sending transactions (default: %u) + - Error: Disk space is low! - Памылка: Замала вольнага месца на дыску! + + Starting network threads... + - Importing... - Імпартаванне... + + The symbol: ' + - Not enough file descriptors available. - Не хапае файлавых дэскрыптараў. + + The verifier string has two operators without a tag between them + - Use UPnP to map the listening port (default: %u) - Use UPnP to map the listening port (default: %u) + + The wallet will avoid paying less than the minimum relay fee. + - Verifying blocks... - Праверка блокаў... + + This is the minimum transaction fee you pay on every transaction. + - Verifying wallet... - Праверка гаманца... + + This is the transaction fee you will pay if you send a transaction. + - Wallet options: - Опцыі гаманца: + + Threshold for disconnecting misbehaving peers (default: %u) + - Information - Інфармацыя + + Transaction amounts must not be negative + - RPC server options: - Опцыі RPC сервера: + + Transaction has too long of a mempool chain + - Send trace/debug info to console instead of debug.log file - Слаць trace/debug звесткі ў кансоль замест файла debug.log + + Transaction must have at least one recipient + - Signing transaction failed - Памылка подпісу транзакцыі + + Turn off the databasing the messages sent with assets (default: %u) + - This is experimental software. - Гэта эксперыментальная праграма. + + Unable to generate initial keys + - Transaction amount too small - Транзакцыя занадта малая + + Unable to get coin to verify restricted asset transfer from address + - Transaction too large - Транзакцыя занадта вялікая + + Unable to reissue asset: amount must be 0 or larger + - Username for JSON-RPC connections - Імя карыстальника для JSON-RPC злучэнняў + + Unable to reissue asset: asset_name ' + - Warning - Увага + + Unable to reissue asset: reissuable is set to false + - Password for JSON-RPC connections - Пароль для JSON-RPC злучэнняў + + Unable to reissue asset: reissuable must be 0 or 1 + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Выканаць каманду калі лепшы блок зменіцца (%s замяняецца на хэш блока) + + Unable to reissue asset: unit must be between 8 and -1 + - Loading addresses... - Загружаем адрасы... + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Недастаткова сродкаў + Loading block index... Загружаем індэкс блокаў... + Loading wallet... Загружаем гаманец... + Cannot downgrade wallet Немагчыма рэгрэсаваць гаманец + Rescanning... Перасканаванне... - Done loading - Загрузка выканана - - + Error Памылка diff --git a/src/qt/locale/raven_bg.ts b/src/qt/locale/raven_bg.ts index 8be18cb956..936edc4f54 100644 --- a/src/qt/locale/raven_bg.ts +++ b/src/qt/locale/raven_bg.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label - Десен клик за промяна на адреса или името + Десен клик за промяна на адрес или име + Create a new address Създаване на нов адрес + &New Нов + Copy the currently selected address to the system clipboard Копиране на избрания адрес към клипборда + &Copy Копирай + C&lose Затвори + Delete the currently selected address from the list Изтрий избрания адрес от списъка + Export the data in the current tab to a file Запишете данните от текущия раздел във файл + &Export Изнеси + &Delete &Изтриване + Choose the address to send coins to Изберете адрес, на който да се изпращат монети + Choose the address to receive coins with Изберете адрес, на който ще получавате монети + C&hoose Избери + Sending addresses Адреси за изпращане + Receiving addresses Адреси за получаване + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Това са адресите на получателите на плащания. Винаги проверявайте размера на сумата и адреса на получателя, преди да изпратите монети. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Това са Вашите Биткойн адреси,благодарение на които ще получавате плащания.Препоръчително е да използвате нови адреси за получаване на всяка транзакция. + &Copy Address &Копирай адрес + Copy &Label Копирай &име + &Edit &Редактирай + Export Address List Изнасяне на списъка с адреси + Comma separated file (*.csv) CSV файл (*.csv) + Exporting Failed Грешка при изнасянето + There was an error trying to save the address list to %1. Please try again. Възникна грешка при опита за запазване на списъка с адреси в %1.Моля опитайте отново. @@ -103,14 +125,17 @@ AddressTableModel + Label Име + Address Адрес + (no label) (без име) @@ -118,2380 +143,8152 @@ AskPassphraseDialog + Passphrase Dialog Диалог за паролите + Enter passphrase Въведете текущата парола + New passphrase Нова парола + Repeat new passphrase Въведете новата парола повторно + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Въведете новата парола към портфейла.<br/>Моля ползвайте парола съставена от <b>десет или повече произволни символа</b>, или <b>осем или повече думи</b>. + Encrypt wallet Шифриране на портфейла + This operation needs your wallet passphrase to unlock the wallet. Тази операция изисква Вашата парола за отключване на портфейла. + Unlock wallet Отключване на портфейла + This operation needs your wallet passphrase to decrypt the wallet. Тази операция изисква Вашата парола за дешифриране на портфейла. + Decrypt wallet Дешифриране на портфейла + Change passphrase Смяна на паролата + Enter the old passphrase and new passphrase to the wallet. Въведете старата парола и новата прола към портфейла. + Confirm wallet encryption Потвърдете на шифрирането на портфейла + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! ВНИМАНИЕ: Ако шифрирате вашият портфейл и изгубите паролата си, <b>ЩЕ ИЗГУБИТЕ ВСИЧКИТЕ СИ БИТКОИНИ</b>! + Are you sure you wish to encrypt your wallet? Наистина ли желаете да шифрирате портфейла си? + + Wallet encrypted Портфейлът е шифриран + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖНО: Всички стари запазвания, които сте направили на Вашият портфейл трябва да замените с запазване на новополучения, шифриран портфейл. От съображения за сигурност, предишните запазвания на нешифрирани портфейли ще станат неизползваеми веднага, щом започнете да използвате новият, шифриран портфейл. + + + + Wallet encryption failed Шифрирането беше неуспешно + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрирането на портфейла беше неуспешно, поради софтуерен проблем. Портфейлът не е шифриран. + + The supplied passphrases do not match. Паролите не съвпадат + Wallet unlock failed Неуспешно отключване на портфейла + + + The passphrase entered for the wallet decryption was incorrect. Паролата въведена за дешифриране на портфейла е грешна. + Wallet decryption failed Дешифрирането на портфейла беше неуспешно + Wallet passphrase was successfully changed. Паролата на портфейла беше променена успешно. + + Warning: The Caps Lock key is on! Внимание: Caps Lock (главни букви) е включен. - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmask + + Asset Selection + Избор на актив - Banned Until - Със забранен достъп до + + Quantity: + количество: - - - RavenGUI - Sign &message... - Подписване на &съобщение... + + Bytes: + байта: - Synchronizing with network... - Синхронизиране с мрежата... + + Amount: + сума - &Overview - &Баланс + + Dust: + прах - Node - Сървър + + Fee: + такса: - Show general overview of wallet - Обобщена информация за портфейла + + After Fee: + След таксата: - &Transactions - &Транзакции + + Change: + смени: - Browse transaction history - История на транзакциите + + (un)select all + премахни маркировката - E&xit - Из&ход + + Tree mode + режим тип дърво - Quit application - Изход от приложението + + List mode + режим списък - &About %1 - Относно %1 + + View assets that you have the ownership asset for + - Show information about %1 - Покажи информация относно %1 + + View Administrator Assets + покажи администраторски активи - About &Qt - За &Qt + + Asset + активи - Show information about Qt - Покажи информация за Qt + + Amount + сума - &Options... - &Опции... + + Received with label + Получени с име - Modify configuration options for %1 - Промени настройки за %1 + + Received with address + Получени с адрес - &Encrypt Wallet... - &Шифриране на портфейла... + + Date + дата - &Backup Wallet... - &Запазване на портфейла... + + Confirmations + Потвърждения - &Change Passphrase... - &Смяна на паролата... + + Confirmed + Потвърдено - &Sending addresses... - &Изпращане на адресите... + + Copy address + Копирай адрес - &Receiving addresses... - &Получаване на адресите... + + Copy label + Копирай етикет - Open &URI... - Отвори &URI... + + + Copy amount + Копирай сума - Click to disable network activity. - Натиснете за деактивиране на мрежата + + Copy transaction ID + Копирай ID на трансакцията - Network activity disabled. - Мрежата деактивирана + + Lock unspent + Заключване на неизхарченото - Click to enable network activity again. - Натиснете за повторно активиране на мрежата + + Unlock unspent + Отключване на неизхарченото - Reindexing blocks on disk... - Повторно индексиране на блоковете на диска... + + Copy quantity + Копирай количество - Send coins to a Raven address - Изпращане към Биткоин адрес + + Copy fee + Копирай такса - Backup wallet to another location - Запазване на портфейла на друго място + + Copy after fee + - Change the passphrase used for wallet encryption - Променя паролата за портфейла + + Copy bytes + Копиране на байтовете - &Debug window - &Прозорец за отстраняване на грешки + + Copy dust + Копирай прахта: - Open debugging and diagnostic console - Отворете конзолата за диагностика и отстраняване на грешки + + Copy change + Копирай ресто - &Verify message... - &Проверка на съобщение... + + (%1 locked) + (%1 заключен) - Raven - Биткоин + + yes + да - Wallet - Портфейл + + no + не - &Send - &Изпращане + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Receive - &Получаване + + Can vary +/- %1 satoshi(s) per input. + Може да вариира +/- %1 сатоши на input - &Show / Hide - &Показване / Скриване + + + (no label) + (без име) - Show or hide the main Window - Показване и скриване на основния прозорец + + change from %1 (%2) + ресто от %1 (%2) - Encrypt the private keys that belong to your wallet - Шифроване на личните ключове,които принадлежат на портфейла Ви. + + (change) + (промяна) + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - Пишете съобщения със своя Биткойн адрес за да докажете,че е ваш. + + Name + Име - Verify messages to ensure they were signed with specified Raven addresses - Потвърждаване на съобщения за да се знае,че са написани с дадените Биткойн адреси. + + Quantity + Количество + + + AssetsDialog - &File - &Файл + + + Send Coins + Изпращане - &Settings - &Настройки + + Asset Control Features + - &Help - &Помощ + + Inputs... + - Tabs toolbar - Раздели + + automatically selected + - Request payments (generates QR codes and raven: URIs) - Изискване на плащания(генерира QR кодове и биткойн: URIs) + + Insufficient funds! + - Show the list of used sending addresses and labels - Показване на списъка с използвани адреси и имена + + Quantity: + - Show the list of used receiving addresses and labels - Покажи списък с използваните адреси и имена. + + Bytes: + - Open a raven: URI or payment request - Отворете биткойн: URI или заявка за плащане + + Amount: + - &Command-line options - &Налични команди + + Dust: + - Indexing blocks on disk... - Индексиране на блокове на диска... + + Fee: + такса: - Processing blocks on disk... - Обработване на блокове на диска... + + After Fee: + - %1 behind - %1 зад + + Change: + ресто: - Last received block was generated %1 ago. - Последния получен блок е генериран преди %1. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Transactions after this will not yet be visible. - Транзакции след това няма все още да бъдат видими. + + Custom change address + Промени персонализирания адрес - Error - Грешка + + Transaction Fee: + Такса за транзакцията: - Warning - Предупреждение + + Choose... + Избери... - Information - Информация + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Up to date - Синхронизиран + + Warning: Fee estimation is currently not possible. + - Show the %1 help message to get a list with possible Raven command-line options - Покажи %1 помощно съобщение за да получиш лист с възможни Биткойн команди + + collapse fee-settings + - %1 client - %1 клиент + + Hide + - Connecting to peers... - Свързване с пиъри + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Catching up... - Зарежда блокове... + + per kilobyte + - Date: %1 - - Дата: %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Плащане на минимална такса би било достатъчно при слаб трафик и обем на транзакциите по-малък от големината на блока. Бъдете внимателни, транзакцията може да не бъде потвърдена и изпълнена ако заявените Рейвън транзакции са повече от възможността на мрежата да обработи - Amount: %1 - - Сума: %1 - + + (read the tooltip) + - Type: %1 - - Тип: %1 - + + Recommended: + - Label: %1 - - Етикет: %1 - + + Custom: + - Address: %1 - - Адрес: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Sent transaction - Изходяща транзакция + + Confirmation time target: + - Incoming transaction - Входяща транзакция + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Портфейлът е <b>криптиран</b> и <b>отключен</b> + + Request Replace-By-Fee + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Портфейлът е <b>криптиран</b> и <b>заключен</b> + + Confirm the send action + - - - CoinControlDialog - Coin Selection - Избор на монета + + S&end + - Quantity: - Количество: + + Clear all fields of the form. + - Bytes: - Байтове: + + Clear &All + - Amount: - Сума: + + Transfer to multiple recipients at once + - Fee: - Такса: + + Add &Recipient + - Dust: - Прах: + + Balance: + - After Fee: - След прилагане на ДДС + + Copy quantity + - Change: - Ресто + + Copy amount + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + Копиране на байтовете + + + + Copy dust + + + + + Copy change + Копирай ресто + + + + %1 (%2 blocks) + %1 (%2 блока) + + + + + + + %1 to %2 + %1 към %2 + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + Заплати само изискуемата такса от %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Внимание! Невалиден Рейвън адрес + + + + Warning: Unknown change address + Внимание, неизвестна промяна на адрес. + + + + Confirm custom change address + Потвърдете промяната на адреса + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Адреса, който сте избрали за промяна не е част от този портфейл. Част или цялата наличност от вашия портфейл може да бъде изпратена на този адрес. Сигурен ли сте? + + + + (no label) + (без име) + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + Промени персонализирания адрес + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Със забранен достъп до + + + + CoinControlDialog + + + Coin Selection + Избор на монета + + + + Quantity: + Количество: + + + + Bytes: + Байтове: + + + + Amount: + Сума: + + + + Fee: + Такса: + + + + Dust: + Прах: + + + + After Fee: + След прилагане на ДДС + + + + Change: + Ресто + + + (un)select all (Пре)махни всички + Tree mode Дървовиден режим + List mode Списъчен режим + Amount Сума + Received with label Получени с име + Received with address Получени с адрес + Date Дата + Confirmations Потвърждения + Confirmed Потвърдени + Copy address Копирай адрес + Copy label Копирай име + + Copy amount Копирай сума + Copy transaction ID Копирай транзакция с ID + Lock unspent Заключване на неизхарченото + Unlock unspent Отключване на неизхарченото + Copy quantity Копиране на количеството + Copy fee Копиране на данък добавена стойност + Copy after fee Копиране след прилагане на данък добавена стойност + Copy bytes Копиране на байтовете + Copy dust Копирай прахта: + Copy change Копирай рестото + (%1 locked) (%1 заключен) + yes да + no не + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Етикетът се оцветява в червено, ако потребителят получи сума, която е по-ниска от актуалният праг на прахта. + + + + Can vary +/- %1 satoshi(s) per input. + + + + + (no label) (без име) + change from %1 (%2) ресто от %1 (%2) + (change) (промени) - EditAddressDialog + CreateAssetDialog - Edit Address - Редактиране на адрес + + Coin Control Features + - &Label - &Име + + Inputs... + - The label associated with this address list entry - Етикетът свързан с това въведение в листа с адреси + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Адресът свързан с това въведение в листа с адреси. Това може да бъде променено само за адреси за изпращане. + + Insufficient funds! + - &Address - &Адрес + + + Quantity: + - New receiving address - Нов адрес за получаване + + Bytes: + - New sending address - Нов адрес за изпращане + + Amount: + - Edit receiving address - Редактиране на адрес за получаване + + Dust: + - Edit sending address - Редактиране на адрес за изпращане + + Fee: + - The entered address "%1" is not a valid Raven address. - "%1" не е валиден Биткоин адрес. + + After Fee: + - The entered address "%1" is already in the address book. - Вече има адрес "%1" в списъка с адреси. + + Change: + - Could not unlock wallet. - Отключването на портфейла беше неуспешно. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Създаването на ключ беше неуспешно. + + Custom change address + Промени персонализирания адрес - - - FreespaceChecker - A new data directory will be created. - Ще се създаде нова папка за данни. + + Name: + - name - име + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Директорията вече съществува.Добавете %1 ако желаете да добавите нова директория тук. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Пътят вече съществува и не е папка. + + Check Availabilty + - Cannot create data directory here. - Не може да се създаде директория тук. + + Address: + - - - HelpMessageDialog - version - версия + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-битов) + + Verifier String: + - About %1 - Относно %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Списък с команди + + Warning: + - Usage: - Използване: + + The number of assets that will be created + - command-line options - Списък с налични команди + + Units: + - UI Options: - Опции на интерфейс: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Избери директория за данни при стартирване (по подразбиране: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Избери език, примерно "de_DE" (по подразбиране: system locale) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Стартирай минимизиран + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Задай SSL root сертификат за молба за изплащане (по подразбиране: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Покажи splash екран при стартирване (по подразбиране %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Нулиране на всички настройки променени в GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Добре дошли + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Добре дошли в %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Програмата се стартира за първи път вие може да изберете къде %1 ще се запаметят данните. + + Transaction Fee: + - Use the default data directory - Използване на директория по подразбиране + + Choose... + - Use a custom data directory: - Използване на директория ръчно + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Грешка + + Warning: Fee estimation is currently not possible. + - - - ModalOverlay - Form - Формуляр + + collapse fee-settings + - Last block time - Време на последния блок + + Hide + Скрий - calculating... - Изчисляване... + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Hide - Скрий + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Препоръчано: + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + Време за потвърждение: + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Потвърдете промяната на адреса + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Редактиране на адрес + + + + &Label + &Име + + + + The label associated with this address list entry + Етикетът свързан с това въведение в листа с адреси + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Адресът свързан с това въведение в листа с адреси. Това може да бъде променено само за адреси за изпращане. + + + + &Address + &Адрес + + + + New receiving address + Нов адрес за получаване + + + + New sending address + Нов адрес за изпращане + + + + Edit receiving address + Редактиране на адрес за получаване + + + + Edit sending address + Редактиране на адрес за изпращане + + + + The entered address "%1" is not a valid Raven address. + "%1" не е валиден Биткоин адрес. + + + + The entered address "%1" is already in the address book. + Вече има адрес "%1" в списъка с адреси. + + + + Could not unlock wallet. + Отключването на портфейла беше неуспешно. + + + + New key generation failed. + Създаването на ключ беше неуспешно. + + + + FreespaceChecker + + + A new data directory will be created. + Ще се създаде нова папка за данни. + + + + name + име + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Директорията вече съществува.Добавете %1 ако желаете да добавите нова директория тук. + + + + Path already exists, and is not a directory. + Пътят вече съществува и не е папка. + + + + Cannot create data directory here. + Не може да се създаде директория тук. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + ограничен актив: + + + + Address: + адрес: + + + + Custom Change Address + Промени персонализирания адрес + + + + IPFS / Hash: + IPFS / Hash: + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + Опитвате се да изпратите транзакция докато портфейлът не е синхронизиран. Това действие не се препоръчва, тъй като транзакцията може да заседне в портфейла. Сигурен ли сте, че искате да продължите? + +Препоръчано действие: синхронизирайте напълно портфейла преди да извършите транзакцията + + + + + HelpMessageDialog + + + version + версия + + + + + (%1-bit) + (%1-битов) + + + + About %1 + Относно %1 + + + + Command-line options + Списък с команди + + + + Usage: + Използване: + + + + command-line options + Списък с налични команди + + + + UI Options: + Опции на интерфейс: + + + + Choose data directory on startup (default: %u) + Избери директория за данни при стартирване (по подразбиране: %u) + + + + Set language, for example "de_DE" (default: system locale) + Избери език, примерно "de_DE" (по подразбиране: system locale) + + + + Start minimized + Стартирай минимизиран + + + + Set SSL root certificates for payment request (default: -system-) + Задай SSL root сертификат за молба за изплащане (по подразбиране: -system-) + + + + Show splash screen on startup (default: %u) + Покажи splash екран при стартирване (по подразбиране %u) + + + + Reset all settings changed in the GUI + Нулиране на всички настройки променени в GUI + + + + Intro + + + Welcome + Добре дошли + + + + Welcome to %1. + Добре дошли в %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Програмата се стартира за първи път вие може да изберете къде %1 ще се запаметят данните. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + Ако сте избрали да ограничите съхранението на block chain (pruning), данните от историята трябва да се даунлоуднат и процесират, след което ще бъдат изтрити с цел ниска използваемост на диска. + + + + Use the default data directory + Използване на директория по подразбиране + + + + Use a custom data directory: + Използване на директория ръчно + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Грешка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + Върни назад + + + + Words are not valid, please generate new words and try again + Невалидни думи, моля създайте нови и опитайте отново + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Формуляр + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + Останали брой блокове + + + + + + Unknown... + незвестно + + + + Last block time + Време на последния блок + + + + Progress + Напредък + + + + Progress increase per hour + + + + + + calculating... + Изчисляване... + + + + Estimated time left until synced + Очаквано време до синхронизацията + + + + Hide + Скрий + + + + Unknown. Syncing Headers (%1)... + Непознато. Синхронизиране на заглавията + + + + MyRestrictedAssetsTableModel + + + Date + Дата + + + + Type + Тип + + + + Address + Адрес + + + + Asset Name + име на актив + + + + Tagged + маркиран + + + + Untagged + немаркиран + + + + Frozen + Замразено + + + + Unfrozen + Размрази + + + + Other + Други + + + + watch-only + само гледане + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Отваряне на URI + + + + Open payment request from URI or file + Отвори молба за изплащане от URI или файл + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Опции + + + + &Main + &Основни + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Размер на кеша в &базата данни + + + + MB + Мегабайта + + + + Number of script &verification threads + Брой на скриптове и &нишки за потвърждение + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP адрес на прокси (напр. за IPv4: 127.0.0.1 / за IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Възстановете всички настройки по подразбиране. + + + + &Reset Options + &Нулирай настройките + + + + &Network + &Мрежа + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + По&ртфейл + + + + Expert + Експерт + + + + Enable coin &control features + Позволяване на монетите и &техните възможности + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + &Похарчете непотвърденото ресто + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматично отваряне на входящия Raven порт. Работи само с рутери поддържащи UPnP. + + + + Map port using &UPnP + Отваряне на входящия порт чрез &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Свързване с Биткойн мрежата чрез SOCKS5 прокси. + + + + &Connect through SOCKS5 proxy (default proxy): + &Свързване чрез SOCKS5 прокси (прокси по подразбиране): + + + + + Proxy &IP: + Прокси & АйПи: + + + + + &Port: + &Порт: + + + + + Port of the proxy (e.g. 9050) + Порт на прокси сървъра (пр. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Прозорец + + + + Show only a tray icon after minimizing the window. + След минимизиране ще е видима само иконата в системния трей. + + + + &Minimize to the tray instead of the taskbar + &Минимизиране в системния трей + + + + M&inimize on close + М&инимизиране при затваряне + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Интерфейс + + + + User Interface &language: + Език: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + Мерна единица за показваните суми: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Изберете единиците, показвани по подразбиране в интерфейса. + + + + Whether to show coin control features or not. + Дали да покаже възможностите за контрол на монетите или не. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + ОК + + + + &Cancel + Отказ + + + + default + подразбиране + + + + none + нищо + + + + Confirm options reset + Потвърдете отмяната на настройките. + + + + + Client restart required to activate changes. + Изисква се рестартиране на клиента за активиране на извършените промени. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + Опции за настройки + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + Грешка + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Тази промяна изисква рестартиране на клиента Ви. + + + + The supplied proxy address is invalid. + Текущият прокси адрес е невалиден. + + + + OverviewPage + + + Form + Формуляр + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Текущата информация на екрана може да не е актуална. Вашият портфейл ще се синхронизира автоматично с мрежата на Биткоин, щом поне една връзката с нея се установи; този процес все още не е приключил. + + + + Watch-only: + В наблюдателен режим: + + + + Available: + Налично: + + + + Your current spendable balance + Вашата текуща сметка за изразходване + + + + Pending: + Изчакващо: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Неразвит: + + + + Mined balance that has not yet matured + Миниран баланс,който все още не се е развил + + + + Total: + Общо: + + + + Your current total balance + Текущият ви общ баланс + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + За харчене: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Скорошни транзакции + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Възникна грешка по време назаявката за плащане + + + + Cannot start raven: click-to-pay handler + Биткойн не можe да се стартира: click-to-pay handler + + + + + + URI handling + Справяне с URI + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + Невалиден адрес на плащане %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + Файл за справяне със заявки + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + Заявката за плащане беше отхвърлена + + + + Payment request network doesn't match client network. + Мрежата от която се извършва заявката за плащане не съвпада с мрежата на клиента. + + + + Payment request expired. + Заявката за плащане е изтекла. + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + Невалидна заявка за плащане. + + + + Requested payment amount of %1 is too small (considered dust). + Заявената сума за плащане: %1 е твърде малка (счита се за отпадък) + + + + Refund from %1 + Възстановяване на сума от %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Заявката за плащане %1 е твърде голям (%2 байта, позволени %3 байта). + + + + Error communicating with %1: %2 + Грешка при комуникацията с %1: %2 + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + Възникна проблем при свързването със сървър %1 + + + + Network request error + Грешка в мрежата по време на заявката + + + + Payment acknowledged + Плащането е прието + + + + PeerTableModel + + + User Agent + Клиент на потребителя + + + + Node/Service + node/услуги + + + + NodeId + + + + + Ping + ping + + + + Sent + Изпратени + + + + Received + Получени + + + + QObject + + + Amount + Сума + + + + Enter a Raven address (e.g. %1) + Въведете Биткойн адрес (например: %1) + + + + %1 d + %1 ден + + + + %1 h + %1 час + + + + %1 m + %1 минута + + + + + %1 s + %1 секунда + + + + None + Неналичен + + + + N/A + Несъществуващ + + + + %1 ms + %1 милисекунда + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 и %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &Запиши изображение... + + + + &Copy Image + &Копирай изображение + + + + Save QR Code + Запази QR Код + + + + PNG Image (*.png) + PNG Изображение (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Несъществуващ + + + + Client version + Версия на клиента + + + + &Information + Данни + + + + Debug window + Прозорец с грешки + + + + General + Основни + + + + Using BerkeleyDB version + Използване на база данни BerkeleyDB + + + + Datadir + + + + + Startup time + Време за стартиране + + + + Network + Мрежа + + + + Name + Име + + + + Number of connections + Брой връзки + + + + Block chain + + + + + Current number of blocks + Текущ брой блокове + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Получени + + + + + Sent + Изпратени + + + + &Peers + &Пиъри + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Избери пиър за детайлна информация. + + + + Whitelisted + + + + + Direction + Посока + + + + Version + Версия + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + Пътека към портфейла + + + + Rescan blockchain files + + + + + Recover transactions + Възстанови транзакции + + + + Rebuild index + Изгради индекс отново + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Клиент на потребителя + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Услуги + + + + Ban Score + + + + + Connection Time + Продължителност на връзката + + + + Last Send + Изпратени за последно + + + + Last Receive + Получени за последно + + + + Ping Time + Време за отговор + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Време на последния блок + + + + &Open + &Отвори + + + + &Console + &Конзола + + + + &Network Traffic + &Мрежов Трафик + + + + Totals + Общо: + + + + In: + Входящи: + + + + Out: + Изходящи + + + + Debug log file + Лог файл,съдържащ грешките + + + + Clear console + Изчисти конзолата + + + + 1 &hour + 1 &час + + + + 1 &day + 1 &ден + + + + 1 &week + 1 &седмица + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Въведeте </b>помощ</b> за да видите наличните команди. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (node id: %1) + + + + via %1 + посредством %1 + + + + + never + Никога + + + + Inbound + Входящи + + + + Outbound + Изходящи + + + + Yes + Да + + + + No + Не + + + + + Unknown + Неизвестен + + + + RavenGUI + + + Sign &message... + Подписване на &съобщение... + + + + Synchronizing with network... + Синхронизиране с мрежата... + + + + &Overview + &Баланс + + + + Node + Сървър + + + + Show general overview of wallet + Обобщена информация за портфейла + + + + &Transactions + &Транзакции + + + + Browse transaction history + История на транзакциите + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Из&ход + + + + Quit application + Изход от приложението + + + + &About %1 + Относно %1 + + + + Show information about %1 + Покажи информация относно %1 + + + + About &Qt + За &Qt + + + + Show information about Qt + Покажи информация за Qt + + + + &Options... + &Опции... + + + + Modify configuration options for %1 + Промени настройки за %1 + + + + &Encrypt Wallet... + &Шифриране на портфейла... + + + + &Backup Wallet... + &Запазване на портфейла... + + + + &Change Passphrase... + &Смяна на паролата... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + Отвори опциите за поправяне на портфейла + + + + &Sending addresses... + &Изпращане на адресите... + + + + &Receiving addresses... + &Получаване на адресите... + + + + Open &URI... + Отвори &URI... + + + + &Wallet + &Wallet + + + + Ravencoin Market Price + Пазарна цена на Ravencoin + + + + Brought to you by binance.com + Допринесено от binance.com + + + + Click to disable network activity. + Натиснете за деактивиране на мрежата + + + + Network activity disabled. + Мрежата деактивирана + + + + Click to enable network activity again. + Натиснете за повторно активиране на мрежата + + + + Syncing Headers (%1%)... + Синхронизирай Headers (%1%)... + + + + Reindexing blocks on disk... + Повторно индексиране на блоковете на диска... + + + + Send coins to a Raven address + Изпращане към Биткоин адрес + + + + Backup wallet to another location + Запазване на портфейла на друго място + + + + Change the passphrase used for wallet encryption + Променя паролата за портфейла + + + + Open debugging and diagnostic console + Отворете конзолата за диагностика и отстраняване на грешки + + + + &Verify message... + &Проверка на съобщение... + + + + Raven + Биткоин + + + + Wallet + Портфейл + + + + &Send + &Изпращане + + + + &Receive + &Получаване + + + + &Show / Hide + &Показване / Скриване + + + + Show or hide the main Window + Показване и скриване на основния прозорец + + + + Encrypt the private keys that belong to your wallet + Шифроване на личните ключове,които принадлежат на портфейла Ви. + + + + Sign messages with your Raven addresses to prove you own them + Пишете съобщения със своя Биткойн адрес за да докажете,че е ваш. + + + + Verify messages to ensure they were signed with specified Raven addresses + Потвърждаване на съобщения за да се знае,че са написани с дадените Биткойн адреси. + + + + &File + &Файл + + + + &Help + &Помощ + + + + Request payments (generates QR codes and raven: URIs) + Изискване на плащания(генерира QR кодове и биткойн: URIs) + + + + Show the list of used sending addresses and labels + Показване на списъка с използвани адреси и имена + + + + Show the list of used receiving addresses and labels + Покажи списък с използваните адреси и имена. + + + + Open a raven: URI or payment request + Отворете биткойн: URI или заявка за плащане + + + + &Command-line options + &Налични команди + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Индексиране на блокове на диска... + + + + Processing blocks on disk... + Обработване на блокове на диска... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 зад + + + + Last received block was generated %1 ago. + Последния получен блок е генериран преди %1. + + + + Transactions after this will not yet be visible. + Транзакции след това няма все още да бъдат видими. + + + + Error + Грешка + + + + Warning + Предупреждение + + + + Information + Информация + + + + Up to date + Синхронизиран + + + + Show the %1 help message to get a list with possible Raven command-line options + Покажи %1 помощно съобщение за да получиш лист с възможни Биткойн команди + + + + %1 client + %1 клиент + + + + Connecting to peers... + Свързване с пиъри + + + + Catching up... + Зарежда блокове... + + + + Date: %1 + + Дата: %1 + + + + + + Amount: %1 + + Сума: %1 + + + + + Type: %1 + + Тип: %1 + + + + + Label: %1 + + Етикет: %1 + + + + + Address: %1 + + Адрес: %1 + + + + + Sent transaction + Изходяща транзакция + + + + Incoming transaction + Входяща транзакция + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Портфейлът е <b>криптиран</b> и <b>отключен</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Портфейлът е <b>криптиран</b> и <b>заключен</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Сума + + + + &Label: + &Име: + + + + &Message: + &Съобщение: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + Използвате този формуляр за заявяване на плащания. Всички полета са <b>незадължителни</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Незадължително заявяване на сума. Оставете полето празно или нулево, за да не заявите конкретна сума. + + + + Clear all fields of the form. + Изчисти всички полета от формуляра. + + + + Clear + Изчистване + + + + Requested payments history + Изискана история на плащанията + + + + &Request payment + &Изискване на плащане + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Показване + + + + Remove the selected entries from the list + Премахни избраните полета от списъка + + + + Remove + Премахване + + + + Copy URI + Копирай URI + + + + Copy label + Копирай име + + + + Copy message + Копиране на съобщението + + + + Copy amount + Копирай сума + + + + ReceiveRequestDialog + + + QR Code + QR код + + + + Copy &URI + Копиране на &URI + + + + Copy &Address + &Копирай адрес + + + + &Save Image... + &Запиши изображение... + + + + Request payment to %1 + Изискване на плащане от %1 + + + + Payment information + Данни за плащането + + + + URI + URI + + + + Address + Адрес + + + + Amount + Сума + + + + Label + Име + + + + Message + Съобщение + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + Грешка при създаването на QR Code от URI. + + + + RecentRequestsTableModel + + + Date + Дата + + + + Label + Име + + + + Message + Съобщение + + + + (no label) + (без име) + + + + (no message) + (без съобщение) + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + Промени персонализирания адрес + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + Verifier String: + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + Предупреждение + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + напр. 1.00000000 + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + Смени IPFS/Txid Hash + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + Време за потвърждение: + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + Изчистване + + + + Balance: + Салдо + + + + 123.456 RVN + 123.456 RVN + + + + Copy quantity + Копирай брой + + + + Copy amount + Копирай сума + + + + Copy fee + Копиране на такса + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Потвърдете промяната на адреса + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + Транзакцията не беше генерирана. Моля опитайте отново + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + Сума %1 + + + + + or + или + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + Потвърди добавянето на параметъра + + + + Confirm removing qualifier + Потвърди отстраняването на параметъра + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + Message: + Съобщение: + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + Прехвърли към: + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + Избери актив за прехвърляне + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Изпращане + + + + Coin Control Features + Настройки за контрол на монетите + + + + Inputs... + + + + + automatically selected + астоматично избран + + + + Insufficient funds! + Нямате достатъчно налични пари! + + + + Quantity: + Количество: + + + + Bytes: + Байтове: + + + + Amount: + Сума: + + + + Fee: + Такса: + + + + After Fee: + След прилагане на ДДС + + + + Change: + Ресто + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Ако тази опция е активирана,но адресът на промяна е празен или невалиден,промяната ще бъде изпратена на новосъздаден адрес. + + + + Custom change address + Промени персонализирания адрес + + + + Transaction Fee: + Такса за транзакцията: + + + + Choose... + Избери... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + за килобайт + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Скрий + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Препоръчителна: + + + + Custom: + По избор: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Изпращане към повече от един получател + + + + Add &Recipient + Добави &получател + + + + Clear all fields of the form. + Изчисти всички полета от формуляра. + + + + Dust: + Прах: + + + + Confirmation time target: + + + + + Clear &All + &Изчисти + + + + Balance: + Баланс: + + + + Confirm the send action + Потвърдете изпращането + + + + S&end + И&зпрати + + + + Copy quantity + Копиране на количеството + + + + Copy amount + Копирай сума + + + + Copy fee + Копиране на данък добавена стойност + + + + Copy after fee + Копиране след прилагане на данък добавена стойност + + + + Copy bytes + Копиране на байтовете + + + + Copy dust + Копирай прахта: + + + + Copy change + Копирай рестото + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + Наистина ли искате да изпратите? + + + + added as transaction fee + добавено като такса за транзакция + + + + Total Amount %1 + + + + + or + или + + + + Confirm send coins + Потвърждаване + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + Сумата трябва да е по-голяма от 0. + + + + The amount exceeds your balance. + Сумата надвишава текущия баланс + + + + The total exceeds your balance when the %1 transaction fee is included. + Сумата при добавяне на данък добавена стойност по %1 транзакцията надвишава сумата по вашата сметка. + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + Грешка при създаването на транзакция! + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + Заявката за плащане е изтекла. + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Внимание: Невалиден Биткойн адрес + + + + Warning: Unknown change address + Внимание:Неизвестен адрес за промяна + + + + Confirm custom change address + Потвърдете промяната на адреса + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (без име) + + + + SendCoinsEntry + + + + + A&mount: + С&ума: + + + + &Label: + &Име: + + + + Choose previously used address + Изберете използван преди адрес + + + + This is a normal payment. + Това е нормално плащане. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вмъкни от клипборда + + + + Alt+P + Alt+P + + + + + + Remove this entry + Премахване на този запис + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Съобщение: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Бележка: + + + + Enter a label for this address to add it to your address book + Въведете име за този адрес, за да го добавите в списъка с адреси + + + + SendConfirmationDialog + + + + Yes + Да + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Не изключвайте компютъра докато този прозорец не изчезне. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Подпиши / Провери съобщение + + + + &Sign Message + &Подпиши + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Изберете използван преди адрес + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Вмъкни от клипборда + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Въведете съобщението тук + + + + Signature + Подпис + + + + Copy the current signature to the system clipboard + Копиране на текущия подпис + + + + Sign the message to prove you own this Raven address + Подпишете съобщение като доказателство, че притежавате определен адрес + + + + Sign &Message + Подпиши &съобщение + + + + Reset all sign message fields + + + + + + Clear &All + &Изчисти + + + + &Verify Message + &Провери + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Проверете съобщение, за да сте сигурни че е подписано с определен Биткоин адрес + + + + Verify &Message + Потвърди &съобщението + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + Натиснете "Подписване на съобщение" за да създадете подпис + + + + + The entered address is invalid. + Въведеният адрес е невалиден. + + + + + + + Please check the address and try again. + Моля проверете адреса и опитайте отново. + + + + + The entered address does not refer to a key. + Въведеният адрес не може да се съпостави с валиден ключ. + + + + Wallet unlock was cancelled. + Отключването на портфейла беше отменено. + + + + Private key for the entered address is not available. + Не е наличен частен ключ за въведеният адрес. + + + + Message signing failed. + Подписването на съобщение беше неуспешно. + + + + Message signed. + Съобщението е подписано. + + + + The signature could not be decoded. + Подписът не може да бъде декодиран. + + + + + Please check the signature and try again. + Проверете подписа и опитайте отново. + + + + The signature did not match the message digest. + Подписът не отговаря на комбинацията от съобщение и адрес. + + + + Message verification failed. + Проверката на съобщението беше неуспешна. + + + + Message verified. + Съобщението е потвърдено. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + Килобайта в секунда + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Подлежи на промяна до %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/офлайн + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/непотвърдени + + + + %1 confirmations + включена в %1 блока + + + + + Status + Статус + + + + + , has not been successfully broadcast yet + , все още не е изпратено + + + + + , broadcast through %n node(s) + + + + + + Date + Дата + + + + Source + Източник + + + + Generated + Издадени + + + + + + + + From + От + + + + + unknown + неизвестен + + + + + + + + To + За + + + + + own address + собствен адрес + + + + + + watch-only + само гледане + + + + + label + име + + + + + + + + + + Credit + Кредит + + + + matures in %n more block(s) + + + + + not accepted + не е приет + + + + + + + + Debit + Дебит + + + + Total debit + Общ дълг + + + + Total credit + Общ дълг + + + + Transaction fee + Такса + + + + Net amount + Нетна сума + + + + + + + Message + Съобщение + + + + + Comment + Коментар + + + + + Transaction ID + ID + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + Търговец + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Генерираните монети трябва да отлежат %1 блока преди да могат да бъдат похарчени. Когато генерираш блока, той се разпространява в мрежата, за да се добави в блок-веригата. Ако не успее да се добави във веригата, неговия статус ще се стане "неприет" и няма да може да се похарчи. Това е възможно да се случи случайно, ако друг възел генерира блок няколко секунди след твоя. + + + + Net RVN amount + + + + + Debug information + Информация за грешките + + + + Transaction + Транзакция + + + + Inputs + + + + + Amount + Сума + + + + + true + true + + + + + false + false + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Описание на транзакцията + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Дата + + + + Type + Тип + + + + Label + Име + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Подлежи на промяна до %1 + + + + Offline + Извън линия + + + + Unconfirmed + Непотвърдено + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + Потвърждаване (%1 от %2 препоръчвани потвърждения) + + + + Confirmed (%1 confirmations) + Потвърдени (%1 потвърждения) + + + + Conflicted + Конфликтно + + + + Immature (%1 confirmations, will be available after %2) + Неплатим (%1 потвърждения, ще бъде платим след %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Блокът не е получен от останалите участници и най-вероятно няма да бъде одобрен. + + + + Generated but not accepted + Генерирана, но отхвърлена от мрежата + + + + Received with + Получени + + + + Received from + Получен от + + + + Sent to + Изпратени на + + + + Payment to yourself + Плащане към себе си + + + + Mined + Емитирани - - - OpenURIDialog - Open URI - Отваряне на URI + + Asset Issued + - Open payment request from URI or file - Отвори молба за изплащане от URI или файл + + Asset Reissued + - URI: - URI: + + Assets Received + + + + + Assets Sent + Изпратен актив + + + + watch-only + само гледане + + + + (n/a) + (n/a) + + + + (no label) + (без име) + + + + Transaction status. Hover over this field to show number of confirmations. + Състояние на транзакцията. Задръжте върху това поле за брой потвърждения. + + + + Date and time that the transaction was received. + Дата и час на получаване на транзакцията. + + + + Type of transaction. + Вид транзакция. + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + Сума извадена или добавена към баланса. + + + + The asset (or RVN) removed or added to balance. + - + - OptionsDialog + TransactionView - Options - Опции + + + All + Всички - &Main - &Основни + + Today + Днес - Size of &database cache - Размер на кеша в &базата данни + + This week + Тази седмица - MB - Мегабайта + + This month + Този месец - Number of script &verification threads - Брой на скриптове и &нишки за потвърждение + + Last month + Предния месец - Accept connections from outside - Приемай връзки отвън + + This year + Тази година - Allow incoming connections - Позволи входящите връзки + + Range... + От - до... - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP адрес на прокси (напр. за IPv4: 127.0.0.1 / за IPv6: ::1) + + Received with + Получени - Third party transaction URLs - URL адреси на трети страни + + Sent to + Изпратени на - Reset all client options to default. - Възстановете всички настройки по подразбиране. + + To yourself + Собствени - &Reset Options - &Нулирай настройките + + Mined + Емитирани - &Network - &Мрежа + + Other + Други - W&allet - По&ртфейл + + Enter address or label to search + Търсене по адрес или име - Expert - Експерт + + Min amount + Минимална сума - Enable coin &control features - Позволяване на монетите и &техните възможности + + Asset name + име на актив - &Spend unconfirmed change - &Похарчете непотвърденото ресто + + Abandon transaction + Излез от транзакцията - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматично отваряне на входящия Raven порт. Работи само с рутери поддържащи UPnP. + + Copy address + Копирай адрес - Map port using &UPnP - Отваряне на входящия порт чрез &UPnP + + Copy label + Копирай име - Connect to the Raven network through a SOCKS5 proxy. - Свързване с Биткойн мрежата чрез SOCKS5 прокси. + + Copy amount + Копирай сума - &Connect through SOCKS5 proxy (default proxy): - &Свързване чрез SOCKS5 прокси (прокси по подразбиране): + + Copy transaction ID + Копирай транзакция с ID - Proxy &IP: - Прокси & АйПи: + + Copy raw transaction + - &Port: - &Порт: + + Copy full transaction details + - Port of the proxy (e.g. 9050) - Порт на прокси сървъра (пр. 9050) + + Edit label + Редактирай име - &Window - &Прозорец + + Show transaction details + Подробности за транзакцията - Show only a tray icon after minimizing the window. - След минимизиране ще е видима само иконата в системния трей. + + Browse with: + Разглеждай с: - &Minimize to the tray instead of the taskbar - &Минимизиране в системния трей + + Export Transaction History + Изнасяне историята на транзакциите - M&inimize on close - М&инимизиране при затваряне + + Comma separated file (*.csv) + CSV файл (*.csv) - &Display - &Интерфейс + + Confirmed + Потвърдени - User Interface &language: - Език: + + Watch-only + само гледане - &Unit to show amounts in: - Мерна единица за показваните суми: + + Date + Дата - Choose the default subdivision unit to show in the interface and when sending coins. - Изберете единиците, показвани по подразбиране в интерфейса. + + Type + Тип - Whether to show coin control features or not. - Дали да покаже възможностите за контрол на монетите или не. + + Label + Име - &OK - ОК + + Address + Адрес - &Cancel - Отказ + + Asset + актив - default - подразбиране + + ID + ИД - none - нищо + + Exporting Failed + Грешка при изнасянето - Confirm options reset - Потвърдете отмяната на настройките. + + There was an error trying to save the transaction history to %1. + - Client restart required to activate changes. - Изисква се рестартиране на клиента за активиране на извършените промени. + + Exporting Successful + Изнасянето е успешна - This change would require a client restart. - Тази промяна изисква рестартиране на клиента Ви. + + The transaction history was successfully saved to %1. + Историята с транзакциите беше успешно запазена в %1. - The supplied proxy address is invalid. - Текущият прокси адрес е невалиден. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + Изпратен актив + + + + Copy asset name + Копирай име на актива + + + + Range: + От: + + + + to + до - OverviewPage + UnitDisplayStatusBarControl - Form - Формуляр + + Unit to show amounts in. Click to select another unit. + + + + WalletFrame - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Текущата информация на екрана може да не е актуална. Вашият портфейл ще се синхронизира автоматично с мрежата на Биткоин, щом поне една връзката с нея се установи; този процес все още не е приключил. + + No wallet has been loaded. + Няма зареден портфейл. + + + WalletModel - Watch-only: - В наблюдателен режим: + + Send Coins + Изпращане - Available: - Налично: + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - Your current spendable balance - Вашата текуща сметка за изразходване + + Error: Wallet locked + - Pending: - Изчакващо: + + Words: + - Immature: - Неразвит: + + Passphrase: + + + + WalletView - Mined balance that has not yet matured - Миниран баланс,който все още не се е развил + + &Export + Изнеси + + + + Export the data in the current tab to a file + Запишете данните от текущия раздел във файл + + + + Backup Wallet + Запазване на портфейла + + + + Wallet Data (*.dat) + Информация за портфейла (*.dat) + + + + Backup Failed + Неуспешно запазване на портфейла + + + + There was an error trying to save the wallet data to %1. + Възникна грешка при запазването на информацията за портфейла в %1. - Balances - Баланс + + Backup Successful + Успешно запазване на портфейла - Total: - Общо: + + The wallet data was successfully saved to %1. + Информацията за портфейла беше успешно запазена в %1. - Your current total balance - Текущият ви общ баланс + + Recovery information + - Spendable: - За харчене: + + No words available. + - Recent transactions - Скорошни транзакции + + This wallet is not a HD wallet, words not supported. + - + - PaymentServer - - Payment request error - Възникна грешка по време назаявката за плащане - + raven-core - Cannot start raven: click-to-pay handler - Биткойн не можe да се стартира: click-to-pay handler + + Options: + Опции: - URI handling - Справяне с URI + + Specify data directory + Определете директория за данните - Invalid payment address %1 - Невалиден адрес на плащане %1 + + Connect to a node to retrieve peer addresses, and disconnect + Свържете се към сървър за да можете да извлечете адресите на пиърите след което се разкачете. - Payment request file handling - Файл за справяне със заявки + + Specify your own public address + Въведете Ваш публичен адрес - Payment request rejected - Заявката за плащане беше отхвърлена + + Accept command line and JSON-RPC commands + - Payment request network doesn't match client network. - Мрежата от която се извършва заявката за плащане не съвпада с мрежата на клиента. + + Distributed under the MIT software license, see the accompanying file %s or %s + - Payment request expired. - Заявката за плащане е изтекла. + + If <category> is not supplied or if <category> = 1, output all debugging information. + - Invalid payment request. - Невалидна заявка за плащане. + + Prune configured below the minimum of %d MiB. Please use a higher number. + - Requested payment amount of %1 is too small (considered dust). - Заявената сума за плащане: %1 е твърде малка (счита се за отпадък) + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - Refund from %1 - Възстановяване на сума от %1 + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Заявката за плащане %1 е твърде голям (%2 байта, позволени %3 байта). + + Error: A fatal internal error occurred, see debug.log for details + - Error communicating with %1: %2 - Грешка при комуникацията с %1: %2 + + Fee (in %s/kB) to add to transactions you send (default: %s) + - Bad response from server %1 - Възникна проблем при свързването със сървър %1 + + Pruning blockstore... + Pruning blockstore... - Network request error - Грешка в мрежата по време на заявката + + Run in the background as a daemon and accept commands + - Payment acknowledged - Плащането е прието + + Unable to start HTTP server. See debug log for details. + - - - PeerTableModel - User Agent - Клиент на потребителя + + Raven Core + Биткойн ядро - - - QObject - Amount - Сума + + The %s developers + %s програмисти - Enter a Raven address (e.g. %1) - Въведете Биткойн адрес (например: %1) + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - %1 d - %1 ден + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - %1 h - %1 час + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - %1 m - %1 минута + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + - %1 s - %1 секунда + + Cannot obtain a lock on data directory %s. %s is probably already running. + - None - Неналичен + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - N/A - Несъществуващ + + Change address can not be sent to because it doesn't have the correct qualifier tags + - %1 ms - %1 милисекунда + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - %1 and %2 - %1 и %2 + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - - - QObject::QObject - - - QRImageWidget - &Save Image... - &Запиши изображение... + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - &Copy Image - &Копирай изображение + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Save QR Code - Запази QR Код + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + - PNG Image (*.png) - PNG Изображение (*.png) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - - - RPCConsole - N/A - Несъществуващ + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Client version - Версия на клиента + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - &Information - Данни + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Debug window - Прозорец с грешки + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - General - Основни + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Using BerkeleyDB version - Използване на база данни BerkeleyDB + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Startup time - Време за стартиране + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Network - Мрежа + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - Name - Име + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + - Number of connections - Брой връзки + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - Current number of blocks - Текущ брой блокове + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Received - Получени + + This is the transaction fee you may discard if change is smaller than dust at this level + - Sent - Изпратени + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - &Peers - &Пиъри + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Select a peer to view detailed information. - Избери пиър за детайлна информация. + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Direction - Посока + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Version - Версия + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - User Agent - Клиент на потребителя + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Services - Услуги + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Connection Time - Продължителност на връзката + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Last Send - Изпратени за последно + + %d of last 100 blocks have unexpected version + - Last Receive - Получени за последно + + %s corrupt, salvage failed + - Ping Time - Време за отговор + + -maxmempool must be at least %d MB + - Last block time - Време на последния блок + + <category> can be: + <category> може да бъде: - &Open - &Отвори + + Accept connections from outside (default: 1 if no -proxy or -connect) + - &Console - &Конзола + + Append comment to the user agent string + - &Network Traffic - &Мрежов Трафик + + Attempt to recover private keys from a corrupt wallet on startup + - &Clear - &Изчисти + + Block creation options: + - Totals - Общо: + + Cannot resolve -%s address: '%s' + - In: - Входящи: + + Chain selection options: + - Out: - Изходящи + + Change index out of range + - Debug log file - Лог файл,съдържащ грешките + + Connection options: + Настройки на връзката: - Clear console - Изчисти конзолата + + Copyright (C) %i-%i + Copyright (C) %i-%i - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Използвайте стрелки надолу и нагореза разглеждане на историятаот команди и <b>Ctrl-L</b> за изчистване на конзолата. + + Corrupted block database detected + - Type <b>help</b> for an overview of available commands. - Въведeте </b>помощ</b> за да видите наличните команди. + + Debugging/Testing options: + - %1 B - %1 Байт + + Do not load the wallet and disable wallet RPC calls + - %1 KB - %1 Килобайт + + Do you want to rebuild the block database now? + Желаете ли да пресъздадете базата данни с блокове сега? - %1 MB - %1 Мегабайт + + Enable publish hash block in <address> + - %1 GB - %1 Гигабайт + + Enable publish hash transaction in <address> + - via %1 - посредством %1 + + Enable publish raw block in <address> + - never - Никога + + Enable publish raw transaction in <address> + - Inbound - Входящи + + Enable transaction replacement in the memory pool (default: %u) + - Outbound - Изходящи + + Error initializing block database + Грешка в пускането на базата данни с блокове - Yes - Да + + Error initializing wallet database environment %s! + - No - Не + + Error loading %s + Грешка при зареждането %s - Unknown - Неизвестен + + Error loading %s: Wallet corrupted + Грешка при зареждането %s: повреден портфейл - - - ReceiveCoinsDialog - &Amount: - &Сума + + Error loading %s: Wallet requires newer version of %s + Грешка при зареждането %s: портфейла изисква нова версия на %s - &Label: - &Име: + + Error loading block database + Грешка в зареждането на базата данни с блокове - &Message: - &Съобщение: + + Error opening block database + Грешка в отварянето на базата данни с блокове - Use this form to request payments. All fields are <b>optional</b>. - Използвате този формуляр за заявяване на плащания. Всички полета са <b>незадължителни</b>. + + Error: Disk space is low! + Грешка: мястото на диска е малко! - An optional amount to request. Leave this empty or zero to not request a specific amount. - Незадължително заявяване на сума. Оставете полето празно или нулево, за да не заявите конкретна сума. + + Failed to listen on any port. Use -listen=0 if you want this. + Провалено "слушане" на всеки порт. Използвайте -listen=0 ако искате това. - Clear all fields of the form. - Изчисти всички полета от формуляра. + + Importing... + Внасяне... - Clear - Изчистване + + Incorrect or no genesis block found. Wrong datadir for network? + - Requested payments history - Изискана история на плащанията + + Initialization sanity check failed. %s is shutting down. + - &Request payment - &Изискване на плащане + + Invalid amount for -%s=<amount>: '%s' + Невалидна сума за -%s=1: '%s' - Show - Показване + + Invalid amount for -discardfee=<amount>: '%s' + Невалидна сума за-discardfee=1: '%s'  - Remove - Премахване + + Invalid amount for -fallbackfee=<amount>: '%s' + Невалидна сума -fallbackfee=1: '%s'  - Copy label - Копирай име + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Copy message - Копиране на съобщението + + Loading P2P addresses... + - Copy amount - Копирай сума + + Loading banlist... + - - - ReceiveRequestDialog - QR Code - QR код + + Location of the auth cookie (default: data dir) + - Copy &URI - Копиране на &URI + + Not enough file descriptors available. + - Copy &Address - &Копирай адрес + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + - &Save Image... - &Запиши изображение... + + Print this help message and exit + Принтирай съобщението за помощ и излез - Request payment to %1 - Изискване на плащане от %1 + + Print version and exit + Принтирай версията и излез - Payment information - Данни за плащането + + Prune cannot be configured with a negative value. + - Address - Адрес + + Prune mode is incompatible with -txindex. + Модус Prune е несъвместим с -txindex. - Amount - Сума + + Rebuild chain state and block index from the blk*.dat files on disk + - Label - Име + + Rebuild chain state from the currently indexed blocks + - Message - Съобщение + + Replaying blocks... + - Error encoding URI into QR Code. - Грешка при създаването на QR Code от URI. + + Rewinding blocks... + - - - RecentRequestsTableModel - Date - Дата + + Set database cache size in megabytes (%d to %d, default: %d) + - Label - Име + + Specify wallet file (within data directory) + - Message - Съобщение + + The source code is available from %s. + - (no label) - (без име) + + Transaction fee and change calculation failed + - (no message) - (без съобщение) + + Unable to bind to %s on this computer. %s is probably already running. + - - - SendCoinsDialog - Send Coins - Изпращане + + Unsupported argument -benchmark ignored, use -debug=bench. + - Coin Control Features - Настройки за контрол на монетите + + Unsupported argument -debugnet ignored, use -debug=net. + - automatically selected - астоматично избран + + Unsupported argument -tor found, use -onion. + - Insufficient funds! - Нямате достатъчно налични пари! + + Unsupported logging category %s=%s. + - Quantity: - Количество: + + Upgrading UTXO database + - Bytes: - Байтове: + + Use UPnP to map the listening port (default: %u) + - Amount: - Сума: + + Use the test chain + - Fee: - Такса: + + User Agent comment (%s) contains unsafe characters. + - After Fee: - След прилагане на ДДС + + Verifying blocks... + Проверка на блоковете... - Change: - Ресто + + Wallet %s resides outside data directory %s + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Ако тази опция е активирана,но адресът на промяна е празен или невалиден,промяната ще бъде изпратена на новосъздаден адрес. + + Wallet debugging/testing options: + - Transaction Fee: - Такса за транзакцията: + + Wallet needed to be rewritten: restart %s to complete + - Choose... - Избери... + + Wallet options: + Настройки на портфейла: - per kilobyte - за килобайт + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Hide - Скрий + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - total at least - Крайна сума поне + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Recommended: - Препоръчителна: + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Custom: - По избор: + + Error: Listening for incoming connections failed (listen returned error %s) + - normal - нормален + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - fast - бърз + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Send to multiple recipients at once - Изпращане към повече от един получател + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Add &Recipient - Добави &получател + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Clear all fields of the form. - Изчисти всички полета от формуляра. + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Dust: - Прах: + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Clear &All - &Изчисти + + The transaction amount is too small to send after the fee has been deducted + - Balance: - Баланс: + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Confirm the send action - Потвърдете изпращането + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - S&end - И&зпрати + + (default: %u) + - Copy quantity - Копиране на количеството + + Accept public REST requests (default: %u) + - Copy amount - Копирай сума + + Automatically create Tor hidden service (default: %d) + - Copy fee - Копиране на данък добавена стойност + + Connect through SOCKS5 proxy + Свързване чрез SOCKS5 прокси - Copy after fee - Копиране след прилагане на данък добавена стойност + + Error loading %s: You can't disable HD on an already existing HD wallet + - Copy bytes - Копиране на байтовете + + Error reading from database, shutting down. + - Copy dust - Копирай прахта: + + Error upgrading chainstate database + - Copy change - Копирай рестото + + Imports blocks from external blk000??.dat file on startup + - Are you sure you want to send? - Наистина ли искате да изпратите? + + Information + Информация - added as transaction fee - добавено като такса за транзакция + + Invalid -onion address or hostname: '%s' + Невалиден -onion адрес или hostname: '%s' - or - или + + Invalid -proxy address or hostname: '%s' + Невалиден -proxy адрес или hostname: '%s' - Confirm send coins - Потвърждаване + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Невалидна сума за -paytxfee=1: '%s' (трябва да е най-малко %s) - The amount to pay must be larger than 0. - Сумата трябва да е по-голяма от 0. + + Invalid netmask specified in -whitelist: '%s' + - The amount exceeds your balance. - Сумата надвишава текущия баланс + + Keep at most <n> unconnectable transactions in memory (default: %u) + - The total exceeds your balance when the %1 transaction fee is included. - Сумата при добавяне на данък добавена стойност по %1 транзакцията надвишава сумата по вашата сметка. + + Need to specify a port with -whitebind: '%s' + - Transaction creation failed! - Грешка при създаването на транзакция! + + Node relay options: + - Payment request expired. - Заявката за плащане е изтекла. + + RPC server options: + - Warning: Invalid Raven address - Внимание: Невалиден Биткойн адрес + + Reducing -maxconnections from %d to %d, because of system limitations. + - Warning: Unknown change address - Внимание:Неизвестен адрес за промяна + + Rescan the block chain for missing wallet transactions on startup + - (no label) - (без име) + + Send trace/debug info to console instead of debug.log file + Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log - - - SendCoinsEntry - A&mount: - С&ума: + + Show all debugging options (usage: --help -help-debug) + - Pay &To: - Плати &На: + + Shrink debug.log file on client startup (default: 1 when no -debug) + - &Label: - &Име: + + Signing transaction failed + - Choose previously used address - Изберете използван преди адрес + + The transaction amount is too small to pay the fee + - This is a normal payment. - Това е нормално плащане. + + This is experimental software. + Това е експериментален софтуер. - Alt+A - Alt+A + + Tor control port password (default: empty) + - Paste address from clipboard - Вмъкни от клипборда + + Tor control port to use if onion listening enabled (default: %s) + - Alt+P - Alt+P + + Transaction amount too small + Сумата на транзакцията е твърде малка - Remove this entry - Премахване на този запис + + Transaction too large for fee policy + - Message: - Съобщение: + + Transaction too large + Транзакцията е твърде голяма - Pay To: - Плащане на: + + Unable to bind to %s on this computer (bind returned error %s) + - Memo: - Бележка: + + Upgrade wallet to latest format on startup + - Enter a label for this address to add it to your address book - Въведете име за този адрес, за да го добавите в списъка с адреси + + Username for JSON-RPC connections + Потребителско име за JSON-RPC връзките - - - SendConfirmationDialog - Yes - Да + + Valid Verifier + - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Не изключвайте компютъра докато този прозорец не изчезне. + + Variable is not allow in the expression: ' + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Подпиши / Провери съобщение + + Verifier String doesn't exist for asset: + - &Sign Message - &Подпиши + + Verifier String for asset trasnfer, not found + - Choose previously used address - Изберете използван преди адрес + + Verifier not found for asset: + - Alt+A - Alt+A + + Verifier string can not be empty. To default to true, use "true" + - Paste address from clipboard - Вмъкни от клипборда + + Verifier string is empty + - Alt+P - Alt+P + + Verifier string not found + - Enter the message you want to sign here - Въведете съобщението тук + + Verifying wallet(s)... + - Signature - Подпис + + Warning + Предупреждение - Copy the current signature to the system clipboard - Копиране на текущия подпис + + Warning: unknown new rules activated (versionbit %i) + - Sign the message to prove you own this Raven address - Подпишете съобщение като доказателство, че притежавате определен адрес + + Whether to operate in a blocks only mode (default: %u) + - Sign &Message - Подпиши &съобщение + + You need to rebuild the database using -reindex to change -txindex + - Clear &All - &Изчисти + + Zapping all transactions from wallet... + - &Verify Message - &Провери + + ZeroMQ notification options: + - Verify the message to ensure it was signed with the specified Raven address - Проверете съобщение, за да сте сигурни че е подписано с определен Биткоин адрес + + Password for JSON-RPC connections + Парола за JSON-RPC връзките - Verify &Message - Потвърди &съобщението + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - Click "Sign Message" to generate signature - Натиснете "Подписване на съобщение" за да създадете подпис + + Allow DNS lookups for -addnode, -seednode and -connect + - The entered address is invalid. - Въведеният адрес е невалиден. + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Please check the address and try again. - Моля проверете адреса и опитайте отново. + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - The entered address does not refer to a key. - Въведеният адрес не може да се съпостави с валиден ключ. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Wallet unlock was cancelled. - Отключването на портфейла беше отменено. + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Private key for the entered address is not available. - Не е наличен частен ключ за въведеният адрес. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Message signing failed. - Подписването на съобщение беше неуспешно. + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Message signed. - Съобщението е подписано. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - The signature could not be decoded. - Подписът не може да бъде декодиран. + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Please check the signature and try again. - Проверете подписа и опитайте отново. + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - The signature did not match the message digest. - Подписът не отговаря на комбинацията от съобщение и адрес. + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Message verification failed. - Проверката на съобщението беше неуспешна. + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Message verified. - Съобщението е потвърдено. + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - - - SplashScreen - [testnet] - [testnet] + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - - - TrafficGraphWidget - KB/s - Килобайта в секунда + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - - - TransactionDesc - Open until %1 - Подлежи на промяна до %1 + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - %1/offline - %1/офлайн + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - %1/unconfirmed - %1/непотвърдени + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - %1 confirmations - включена в %1 блока + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Status - Статус + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - , has not been successfully broadcast yet - , все още не е изпратено + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Date - Дата + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Source - Източник + + Output debugging information (default: %u, supplying <category> is optional) + - Generated - Издадени + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - From - От + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - unknown - неизвестен + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - To - За + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - own address - собствен адрес + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - watch-only - само гледане + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + - label - име + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Credit - Кредит + + This address doesn't contain the correct tags to pass the verifier string check: + - not accepted - не е приет + + This is the transaction fee you may pay when fee estimates are not available. + - Debit - Дебит + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Total debit - Общ дълг + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Total credit - Общ дълг + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Transaction fee - Такса + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Net amount - Нетна сума + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Message - Съобщение + + Unable to reissue asset: unit must be larger than current unit selection + - Comment - Коментар + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Transaction ID - ID + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Merchant - Търговец + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Генерираните монети трябва да отлежат %1 блока преди да могат да бъдат похарчени. Когато генерираш блока, той се разпространява в мрежата, за да се добави в блок-веригата. Ако не успее да се добави във веригата, неговия статус ще се стане "неприет" и няма да може да се похарчи. Това е възможно да се случи случайно, ако друг възел генерира блок няколко секунди след твоя. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Използвай отделно SOCKS5 proxy за да се свържеш с peers чрез Tor hidden services (default: %s) - Debug information - Информация за грешките + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Transaction - Транзакция + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Amount - Сума + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + Внимание: повреден файл в портфейла, данните са в безопастност! Оригиналният %s е запазен като %s в %s; ако салдото или транзакциите не са коректни, възстановете ги от backup-а - true - true + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - false - false + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Описание на транзакцията + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - - - TransactionTableModel - Date - Дата + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Type - Тип + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Label - Име + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Open until %1 - Подлежи на промяна до %1 + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Offline - Извън линия + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Unconfirmed - Непотвърдено + + %s is set very high! + - Confirming (%1 of %2 recommended confirmations) - Потвърждаване (%1 от %2 препоръчвани потвърждения) + + ' doesn't exist in the database + - Confirmed (%1 confirmations) - Потвърдени (%1 потвърждения) + + ' has already been used + - Conflicted - Конфликтно + + ' is not a valid character in the expression: + - Immature (%1 confirmations, will be available after %2) - Неплатим (%1 потвърждения, ще бъде платим след %2) + + ' the amount trying to reissue is to large + - This block was not received by any other nodes and will probably not be accepted! - Блокът не е получен от останалите участници и най-вероятно няма да бъде одобрен. + + (default: %s) + (default: %s) - Generated but not accepted - Генерирана, но отхвърлена от мрежата + + A space separated list of 12-words used to import a bip44 wallet + - Received with - Получени + + Always query for peer addresses via DNS lookup (default: %u) + - Received from - Получен от + + Asset Transfer amounts must be greater than 0 + - Sent to - Изпратени на + + Asset doesn't exist: + - Payment to yourself - Плащане към себе си + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Mined - Емитирани + + Asset name is not valid + - watch-only - само гледане + + Asset with this name is already in the mempool + - (n/a) - (n/a) + + Done Loading + - (no label) - (без име) + + Enable publish raw asset messages in <address> + - Transaction status. Hover over this field to show number of confirmations. - Състояние на транзакцията. Задръжте върху това поле за брой потвърждения. + + Error creating %s: You can't create non-HD wallets with this version. + - Date and time that the transaction was received. - Дата и час на получаване на транзакцията. + + Error loading wallet %s. -wallet filename must be a regular file. + Грешка при зареждането на портфейл %s. -името на файла на портфейла трябва да е коректен файл. - Type of transaction. - Вид транзакция. + + Error loading wallet %s. Duplicate -wallet filename specified. + - Amount removed from or added to balance. - Сума извадена или добавена към баланса. + + Error loading wallet %s. Invalid characters in -wallet filename. + - - - TransactionView - All - Всички + + Error not set + - Today - Днес + + Error writing bip 39 passphrase to database + - This week - Тази седмица + + Error writing bip 39 vchseed to database + - This month - Този месец + + Error writing bip 39 words to database + - Last month - Предния месец + + Every '(' must have a corresponding ')' in the expression: + - This year - Тази година + + Failed to extract destination from change script + - Range... - От - до... + + Failed to find restricted asset change address from inputs + - Received with - Получени + + Failed to get asset data from script + - Sent to - Изпратени на + + Failed to get verifier string from output: + - To yourself - Собствени + + Failed to load Assets Database + - Mined - Емитирани + + Flag must be 1 or 0 + - Other - Други + + How many blocks to check at startup (default: %u, 0 = all) + - Enter address or label to search - Търсене по адрес или име + + Include IP addresses in debug output (default: %u) + - Min amount - Минимална сума + + Init Message Channels - Scanning Asset Transactions + - Copy address - Копирай адрес + + Insufficient asset funds + - Copy label - Копирай име + + Invalid Qualifier Name: + - Copy amount - Копирай сума + + Invalid expressions in verifier string: + - Copy transaction ID - Копирай транзакция с ID + + Invalid parameter: amount must be + - Edit label - Редактирай име + + Invalid parameter: amount must be between + - Show transaction details - Подробности за транзакцията + + Invalid parameter: asset amount can't be equal to or less than zero. + - Export Transaction History - Изнасяне историята на транзакциите + + Invalid parameter: asset amount greater than max money: + - Comma separated file (*.csv) - CSV файл (*.csv) + + Invalid parameter: asset_name ' + - Confirmed - Потвърдени + + Invalid parameter: has_ipfs must be 0 or 1. + - Watch-only - само гледане + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Date - Дата + + Invalid parameter: reissuable must be 0 or 1 + - Type - Тип + + Invalid parameter: reissuable must be 0 + - Label - Име + + Invalid parameter: units must be + - Address - Адрес + + Invalid parameter: units must be between 0-8. + - ID - ИД + + Invalid syntax: + - Exporting Failed - Грешка при изнасянето + + Keypool ran out, please call keypoolrefill first + - Exporting Successful - Изнасянето е успешна + + Length is to large. Please use a smaller length + - The transaction history was successfully saved to %1. - Историята с транзакциите беше успешно запазена в %1. + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Range: - От: + + Listen for connections on <port> (default: %u or testnet: %u) + - to - до + + Maintain at most <n> connections to peers (default: %u) + - - - UnitDisplayStatusBarControl - - - WalletFrame - No wallet has been loaded. - Няма зареден портфейл. + + Make the wallet broadcast transactions + - - - WalletModel - Send Coins - Изпращане + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - - - WalletView - &Export - Изнеси + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Export the data in the current tab to a file - Запишете данните от текущия раздел във файл + + Mempool cleared + - Backup Wallet - Запазване на портфейла + + Multiple verifier strings found in transaction + - Wallet Data (*.dat) - Информация за портфейла (*.dat) + + Passphrase securing your 12-word mnemonic word-list + - Backup Failed - Неуспешно запазване на портфейла + + Prepend debug output with timestamp (default: %u) + - There was an error trying to save the wallet data to %1. - Възникна грешка при запазването на информацията за портфейла в %1. + + Relay and mine data carrier transactions (default: %u) + - Backup Successful - Успешно запазване на портфейла + + Relay non-P2SH multisig (default: %u) + - The wallet data was successfully saved to %1. - Информацията за портфейла беше успешно запазена в %1. + + Restricted asset transfer from address that has been frozen + - - - raven-core - Options: - Опции: + + Send transactions with full-RBF opt-in enabled (default: %u) + - Specify data directory - Определете директория за данните + + Set key pool size to <n> (default: %u) + - Connect to a node to retrieve peer addresses, and disconnect - Свържете се към сървър за да можете да извлечете адресите на пиърите след което се разкачете. + + Set maximum BIP141 block weight (default: %d) + - Specify your own public address - Въведете Ваш публичен адрес + + Set the Maximum reorg depth (default: %u) + - Raven Core - Биткойн ядро + + Set the number of threads to service RPC calls (default: %d) + - <category> can be: - <category> може да бъде: + + Signing asset transaction failed + - Connection options: - Настройки на връзката: + + Specify configuration file (default: %s) + Назовете конфигурационен файл(по подразбиране %s) - Do you want to rebuild the block database now? - Желаете ли да пресъздадете базата данни с блокове сега? + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Задайте време на изключване при проблеми със свързването в милисекунди(минимум:1, по подразбиране %d) - Error initializing block database - Грешка в пускането на базата данни с блокове + + Specify pid file (default: %s) + Задайте pid файл(по подразбиране: %s) - Error: Disk space is low! - Грешка: мястото на диска е малко! + + Spend unconfirmed change when sending transactions (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - Провалено "слушане" на всеки порт. Използвайте -listen=0 ако искате това. + + Starting network threads... + - Importing... - Внасяне... + + The symbol: ' + - Verifying blocks... - Проверка на блоковете... + + The verifier string has two operators without a tag between them + - Verifying wallet... - Проверка на портфейла... + + The wallet will avoid paying less than the minimum relay fee. + - Wallet options: - Настройки на портфейла: + + This is the minimum transaction fee you pay on every transaction. + - Connect through SOCKS5 proxy - Свързване чрез SOCKS5 прокси + + This is the transaction fee you will pay if you send a transaction. + - Information - Информация + + Threshold for disconnecting misbehaving peers (default: %u) + - Send trace/debug info to console instead of debug.log file - Изпрати локализиращата или дебъг информацията към конзолата, вместо файлът debug.log + + Transaction amounts must not be negative + - This is experimental software. - Това е експериментален софтуер. + + Transaction has too long of a mempool chain + - Transaction amount too small - Сумата на транзакцията е твърде малка + + Transaction must have at least one recipient + - Transaction too large - Транзакцията е твърде голяма + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - Потребителско име за JSON-RPC връзките + + Unable to generate initial keys + - Warning - Предупреждение + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Парола за JSON-RPC връзките + + Unable to reissue asset: amount must be 0 or larger + - Loading addresses... - Зареждане на адреси... + + Unable to reissue asset: asset_name ' + - Invalid -proxy address: '%s' - Невалиден -proxy address: '%s' + + Unable to reissue asset: reissuable is set to false + - Specify configuration file (default: %s) - Назовете конфигурационен файл(по подразбиране %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Specify connection timeout in milliseconds (minimum: 1, default: %d) - Задайте време на изключване при проблеми със свързването в милисекунди(минимум:1, по подразбиране %d) + + Unable to reissue asset: unit must be between 8 and -1 + - Specify pid file (default: %s) - Задайте pid файл(по подразбиране: %s) + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Недостатъчно средства + Loading block index... Зареждане на блок индекса... + Loading wallet... Зареждане на портфейла... - Rescanning... - Преразглеждане на последовтелността от блокове... + + Cannot downgrade wallet + Не може да понижи портфейла - Done loading - Зареждането е завършено + + Rescanning... + Преразглеждане на последовтелността от блокове... + Error Грешка diff --git a/src/qt/locale/raven_bg_BG.ts b/src/qt/locale/raven_bg_BG.ts index 3e182a08ae..dd928ba4e9 100644 --- a/src/qt/locale/raven_bg_BG.ts +++ b/src/qt/locale/raven_bg_BG.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Клик с десен бутон на мишката за промяна на адрес или етикет + Create a new address Създай нов адрес + &New Нов + Copy the currently selected address to the system clipboard Копирай текущо избрания адрес към клипборда + &Copy Копирай + C&lose Затвори + Delete the currently selected address from the list Изтрий текущо избрания адрес от листа + Export the data in the current tab to a file Изнеси данните в избрания раздел към файл + &Export Изнеси + &Delete Изтрий + Choose the address to send coins to Избери адреса на който да пратиш монети + Choose the address to receive coins with Избери адреса на който да получиш монети + C&hoose Избери + Sending addresses Адрес за пращане + Receiving addresses Адрес за получаване + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Тези са вашите Биткойн адреси за изпращане на монети. Винаги проверявайте количеството и получаващия адрес преди изпращане. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Това са вашите Биткойн адреси за получаване на монети. Препоръчително е да ползвате нов адрес на всяка транзакция. + &Copy Address Копирай адрес + Copy &Label Копирай етикет + &Edit Редактирай + Export Address List Изнеси лист с адреси + Comma separated file (*.csv) Comma separated file (*.csv) + Exporting Failed Изнасянето се провали + There was an error trying to save the address list to %1. Please try again. Получи се грешка при запазването на листа с адреси към %1. Моля опитайте пак. @@ -103,14 +125,17 @@ AddressTableModel + Label Етикет + Address Адрес + (no label) (без етикет) @@ -118,312 +143,8146 @@ AskPassphraseDialog + Passphrase Dialog Диалог за пропуск + Enter passphrase Въведи парола + New passphrase Нова парола + Repeat new passphrase Повтори парола + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Криптирай портфейл + This operation needs your wallet passphrase to unlock the wallet. Тази операция изисква вашата парола на портфейла за отключването на портфейла. + Unlock wallet Отключи портфейла + This operation needs your wallet passphrase to decrypt the wallet. Тази операция изисква вашата парола на портфейла за декриптирането на портфейла. + Decrypt wallet Декриптирай портфейл + Change passphrase Промени парола + + Enter the old passphrase and new passphrase to the wallet. + + + + Confirm wallet encryption Потвърди криптирането на порфейла - - - BanTableModel - IP/Netmask - IP/Мрежова маска + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Banned Until - Блокиран до + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + - RavenGUI + AssetControlDialog - Sign &message... - Подпиши съобщение... + + Asset Selection + - Synchronizing with network... - Синхронизиране с мрежата... + + Quantity: + - &Overview - Преглед + + Bytes: + - Node - Възел + + Amount: + - Show general overview of wallet - Покажи общ преглед на портфейла + + Dust: + - &Transactions - Транзакции + + Fee: + - Browse transaction history - Разгледай история на транзакциите + + After Fee: + - E&xit - Изход + + Change: + - Quit application - Излез от приложението + + (un)select all + - &About %1 - За %1 + + Tree mode + - Show information about %1 - Покажи информация за %1 + + List mode + - About &Qt - Относно Qt + + View assets that you have the ownership asset for + - Show information about Qt - Покажи информация отностно Qt + + View Administrator Assets + - &Options... - Настройки... + + Asset + - Modify configuration options for %1 - Промени конфигурации за %1 + + Amount + - &Encrypt Wallet... - Криптирай портфейл + + Received with label + - &Backup Wallet... - Направи резервно копие на портфейла... + + Received with address + - &Change Passphrase... - Промени паролата... + + Date + - &Sending addresses... - Адреси за пращане... + + Confirmations + - &Receiving addresses... - Адреси за получаване... + + Confirmed + - Open &URI... - Отвори URI + + Copy address + - Reindexing blocks on disk... - Повторно индексиране на блоковете на диска... + + Copy label + - - - CoinControlDialog - (no label) - (без етикет) + + + Copy amount + - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Address - Адрес + + Copy transaction ID + - Label - Етикет + + Lock unspent + - - - RecentRequestsTableModel - Label - Етикет + + Unlock unspent + - (no label) - (без етикет) + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + - - - SendCoinsDialog + + (no label) - (без етикет) + + + + + change from %1 (%2) + + + + + (change) + - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel + AssetTableModel - Label - Етикет + + Name + - (no label) - (без етикет) + + Quantity + - + - TransactionView + AssetsDialog - Comma separated file (*.csv) - Comma separated file (*.csv) + + + Send Coins + - Label - Етикет + + Asset Control Features + - Address - Адрес + + Inputs... + - Exporting Failed - Изнасянето се провали + + automatically selected + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - &Export - Изнеси + + Insufficient funds! + - Export the data in the current tab to a file - Изнеси данните в избрания раздел към файл + + Quantity: + - - - raven-core - Raven Core - Биткойн ядро + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + - + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Мрежова маска + + + + Banned Until + Блокиран до + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (без етикет) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Подпиши съобщение... + + + + Synchronizing with network... + Синхронизиране с мрежата... + + + + &Overview + Преглед + + + + Node + Възел + + + + Show general overview of wallet + Покажи общ преглед на портфейла + + + + &Transactions + Транзакции + + + + Browse transaction history + Разгледай история на транзакциите + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Изход + + + + Quit application + Излез от приложението + + + + &About %1 + За %1 + + + + Show information about %1 + Покажи информация за %1 + + + + About &Qt + Относно Qt + + + + Show information about Qt + Покажи информация отностно Qt + + + + &Options... + Настройки... + + + + Modify configuration options for %1 + Промени конфигурации за %1 + + + + &Encrypt Wallet... + Криптирай портфейл + + + + &Backup Wallet... + Направи резервно копие на портфейла... + + + + &Change Passphrase... + Промени паролата... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Адреси за пращане... + + + + &Receiving addresses... + Адреси за получаване... + + + + Open &URI... + Отвори URI + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Повторно индексиране на блоковете на диска... + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Адрес + + + + Amount + + + + + Label + Етикет + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Етикет + + + + Message + + + + + (no label) + (без етикет) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (без етикет) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Етикет + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (без етикет) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Comma separated file (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Етикет + + + + Address + Адрес + + + + Asset + + + + + ID + + + + + Exporting Failed + Изнасянето се провали + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + Изнеси + + + + Export the data in the current tab to a file + Изнеси данните в избрания раздел към файл + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Биткойн ядро + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_ca.ts b/src/qt/locale/raven_ca.ts index c8f09b8380..1f5a888182 100644 --- a/src/qt/locale/raven_ca.ts +++ b/src/qt/locale/raven_ca.ts @@ -1,116 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Feu clic dret per a editar l'adreça o l'etiqueta + Feu clic dret per a editar l'adreça o l'etiqueta + Create a new address Crea una nova adreça + &New &Nova + Copy the currently selected address to the system clipboard - Copia l'adreça seleccionada al porta-retalls del sistema + Copia l'adreça seleccionada al porta-retalls del sistema + &Copy &Copia + C&lose &Tanca + Delete the currently selected address from the list - Elimina l'adreça sel·leccionada actualment de la llista + Elimina l'adreça sel·leccionada actualment de la llista + Export the data in the current tab to a file Exporta les dades de la pestanya actual a un fitxer + &Export &Exporta + &Delete &Elimina + Choose the address to send coins to - Trieu l'adreça on enviar les monedes + Trieu l'adreça on enviar les monedes + Choose the address to receive coins with - Trieu l'adreça on rebre les monedes + Trieu l'adreça on rebre les monedes + C&hoose &Tria + Sending addresses - Adreces d'enviament + Adreces d'enviament + Receiving addresses Adreces de recepció + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - Aquestes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + Aquestes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Aquestes són les vostres adreces Raven per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + &Copy Address - &Copia l'adreça + &Copia l'adreça + Copy &Label - Copia l'eti&queta + Copia l'eti&queta + &Edit &Edita + Export Address List - Exporta la llista d'adreces + Exporta la llista d'adreces + Comma separated file (*.csv) Fitxer separat per comes (*.csv) + Exporting Failed - L'exportació ha fallat + L'exportació ha fallat + There was an error trying to save the address list to %1. Please try again. - S'ha produït un error en desar la llista d'adreces a %1. Torneu-ho a provar. + S'ha produït un error en desar la llista d'adreces a %1. Torneu-ho a provar. AddressTableModel + Label Etiqueta + Address Adreça + (no label) (sense etiqueta) @@ -118,3208 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Diàleg de contrasenya + Enter passphrase Introduïu una contrasenya + New passphrase Nova contrasenya + Repeat new passphrase Repetiu la nova contrasenya + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. + Encrypt wallet Encripta el moneder + This operation needs your wallet passphrase to unlock the wallet. Aquesta operació requereix la contrasenya del moneder per a desbloquejar-lo. + Unlock wallet Desbloqueja el moneder + This operation needs your wallet passphrase to decrypt the wallet. Aquesta operació requereix la contrasenya del moneder per desencriptar-lo. + Decrypt wallet Desencripta el moneder + Change passphrase Canvia la contrasenya + Enter the old passphrase and new passphrase to the wallet. Introduïu la contrasenya antiga i la contrasenya nova al moneder. + Confirm wallet encryption - Confirma l'encriptació del moneder + Confirma l'encriptació del moneder + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES RAVENS</b>! + Are you sure you wish to encrypt your wallet? Esteu segur que voleu encriptar el vostre moneder? + + Wallet encrypted Moneder encriptat + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. - Ara es tancarà el %1 per finalitzar el procés d'encriptació. Recordeu que encriptar el vostre moneder no garanteix que les vostres ravens no puguin ser robades per programari maliciós que infecti l'ordinador. + Ara es tancarà el %1 per finalitzar el procés d'encriptació. Recordeu que encriptar el vostre moneder no garanteix que les vostres ravens no puguin ser robades per programari maliciós que infecti l'ordinador. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT: Tota copia de seguretat que hàgiu realitzat hauria de ser reemplaçada pel, recentment generat, fitxer encriptat del moneder. Per motius de seguretat, les còpies de seguretat anteriors del fitxer de moneder no encriptat esdevindran inusables tan aviat com començar a utilitzar el nou moneder encriptat. + + + + Wallet encryption failed - L'encriptació del moneder ha fallat + L'encriptació del moneder ha fallat + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + + The supplied passphrases do not match. Les contrasenyes introduïdes no coincideixen. + Wallet unlock failed El desbloqueig del moneder ha fallat + + + The passphrase entered for the wallet decryption was incorrect. La contrasenya introduïda per a desencriptar el moneder és incorrecta. + Wallet decryption failed La desencriptació del moneder ha fallat + Wallet passphrase was successfully changed. La contrasenya del moneder ha estat modificada correctament. + + Warning: The Caps Lock key is on! Avís: Les lletres majúscules estan activades! - BanTableModel + AssetControlDialog - IP/Netmask - IP / Màscara de xarxa + + Asset Selection + - Banned Until - Bandejat fins + + Quantity: + - - - RavenGUI - Sign &message... - Signa el &missatge... + + Bytes: + - Synchronizing with network... - S'està sincronitzant amb la xarxa ... + + Amount: + - &Overview - &Panorama general + + Dust: + - Node - Node + + Fee: + - Show general overview of wallet - Mostra el panorama general del moneder + + After Fee: + - &Transactions - &Transaccions + + Change: + - Browse transaction history - Cerca a l'historial de transaccions + + (un)select all + - E&xit - S&urt + + Tree mode + - Quit application - Surt de l'aplicació + + List mode + - &About %1 - Qu&ant al %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mosta informació sobre el %1 + + View Administrator Assets + - About &Qt - Quant a &Qt + + Asset + - Show information about Qt - Mostra informació sobre Qt + + Amount + - &Options... - &Opcions... + + Received with label + - Modify configuration options for %1 - Modifica les opcions de configuració de %1 + + Received with address + - &Encrypt Wallet... - &Encripta el moneder... + + Date + - &Backup Wallet... - &Realitza una còpia de seguretat del moneder... + + Confirmations + - &Change Passphrase... - &Canvia la contrasenya... + + Confirmed + - &Sending addresses... - Adreces d'e&nviament... + + Copy address + - &Receiving addresses... - Adreces de &recepció... + + Copy label + - Open &URI... - Obre un &URI... + + + Copy amount + - Click to disable network activity. - Feu clic per inhabilitar l'activitat de la xarxa. + + Copy transaction ID + - Network activity disabled. - S'ha inhabilitat l'activitat de la xarxa. + + Lock unspent + - Click to enable network activity again. - Feu clic per tornar a habilitar l'activitat de la xarxa. + + Unlock unspent + - Reindexing blocks on disk... - S'estan reindexant els blocs al disc... + + Copy quantity + - Send coins to a Raven address - Envia monedes a una adreça Raven + + Copy fee + - Backup wallet to another location - Realitza una còpia de seguretat del moneder a una altra ubicació + + Copy after fee + - Change the passphrase used for wallet encryption - Canvia la contrasenya d'encriptació del moneder + + Copy bytes + - &Debug window - &Finestra de depuració + + Copy dust + - Open debugging and diagnostic console - Obre la consola de diagnòstic i depuració + + Copy change + - &Verify message... - &Verifica el missatge... + + (%1 locked) + - Raven - Raven + + yes + - Wallet - Moneder + + no + - &Send - &Envia + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Receive - &Rep + + Can vary +/- %1 satoshi(s) per input. + - &Show / Hide - &Mostra / Amaga + + + (no label) + - Show or hide the main Window - Mostra o amaga la finestra principal + + change from %1 (%2) + - Encrypt the private keys that belong to your wallet - Encripta les claus privades pertanyents al moneder + + (change) + + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - Signa el missatges amb la seva adreça de Raven per provar que les poseeixes + + Name + - Verify messages to ensure they were signed with specified Raven addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + Quantity + + + + AssetsDialog - &File - &Fitxer + + + Send Coins + - &Settings - &Configuració + + Asset Control Features + - &Help - &Ajuda + + Inputs... + - Tabs toolbar - Barra d'eines de les pestanyes + + automatically selected + - Request payments (generates QR codes and raven: URIs) - Sol·licita pagaments (genera codis QR i raven: URI) + + Insufficient funds! + - Show the list of used sending addresses and labels - Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + Quantity: + - Show the list of used receiving addresses and labels - Mostra la llista d'adreces de recepció i etiquetes utilitzades + + Bytes: + - Open a raven: URI or payment request - Obre una raven: sol·licitud d'URI o pagament + + Amount: + - &Command-line options - Opcions de la &línia d'ordres - - - %n active connection(s) to Raven network - %n connexió activa a la xarxa Raven%n connexions actives a la xarxa Raven + + Dust: + - Indexing blocks on disk... - S'estan indexant els blocs al disc... + + Fee: + - Processing blocks on disk... - S'estan processant els blocs al disc... + + After Fee: + - - Processed %n block(s) of transaction history. - S'ha processat %n bloc de l'historial de transacció.S'han processat %n blocs de l'historial de transacció. + + + Change: + - %1 behind - %1 darrere + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - El darrer bloc rebut ha estat generat fa %1. + + Custom change address + - Transactions after this will not yet be visible. - Les transaccions a partir d'això no seran visibles. + + Transaction Fee: + - Error - Error + + Choose... + - Warning - Avís + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - Informació + + Warning: Fee estimation is currently not possible. + - Up to date - Al dia + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Raven + + Hide + - %1 client - Client de %1 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Catching up... - S'està posant al dia ... + + per kilobyte + - Date: %1 - - Data: %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Amount: %1 - - Import: %1 - + + (read the tooltip) + - Type: %1 - - Tipus: %1 - + + Recommended: + - Label: %1 - - Etiqueta: %1 - + + Custom: + - Address: %1 - - Adreça: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Sent transaction - Transacció enviada + + Confirmation time target: + - Incoming transaction - Transacció entrant + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - HD key generation is <b>enabled</b> - La generació de la clau HD és <b>habilitada</b> + + Request Replace-By-Fee + - HD key generation is <b>disabled</b> - La generació de la clau HD és <b>inhabilitada</b> + + Confirm the send action + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + S&end + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + Clear all fields of the form. + - A fatal error occurred. Raven can no longer continue safely and will quit. - S'ha produït un error fatal. Raven no pot continuar amb seguretat i finalitzarà. + + Clear &All + - - - CoinControlDialog - Coin Selection - Selecció de moneda + + Transfer to multiple recipients at once + - Quantity: - Quantitat: + + Add &Recipient + - Bytes: - Bytes: + + Balance: + - Amount: - Import: + + Copy quantity + - Fee: - Comissió: + + Copy amount + - Dust: - Polsim: + + Copy fee + - After Fee: - Comissió posterior: + + Copy after fee + - Change: - Canvi: + + Copy bytes + - (un)select all - (des)selecciona-ho tot + + Copy dust + - Tree mode - Mode arbre + + Copy change + - List mode - Mode llista + + %1 (%2 blocks) + - Amount - Import + + + + + %1 to %2 + - Received with label - Rebut amb l'etiqueta + + Are you sure you want to send? + - Received with address - Rebut amb l'adreça + + added as transaction fee + - Date - Data + + Confirm send assets + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP / Màscara de xarxa + + + + Banned Until + Bandejat fins + + + + CoinControlDialog + + + Coin Selection + Selecció de moneda + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Import: + + + + Fee: + Comissió: + + + + Dust: + Polsim: + + + + After Fee: + Comissió posterior: + + + + Change: + Canvi: + + + + (un)select all + (des)selecciona-ho tot + + + + Tree mode + Mode arbre + + + + List mode + Mode llista + + + + Amount + Import + + + + Received with label + Rebut amb l'etiqueta + + + + Received with address + Rebut amb l'adreça + + + + Date + Data + + + Confirmations Confirmacions + Confirmed Confirmat + Copy address - Copia l'adreça + Copia l'adreça + Copy label - Copia l'etiqueta + Copia l'etiqueta + + Copy amount - Copia l'import + Copia l'import + Copy transaction ID - Copia l'ID de transacció + Copia l'ID de transacció + Lock unspent Bloqueja sense gastar + Unlock unspent Desbloqueja sense gastar + Copy quantity Copia la quantitat + Copy fee Copia la comissió + Copy after fee Copia la comissió posterior + Copy bytes Copia els bytes + Copy dust Copia el polsim + Copy change Copia el canvi + (%1 locked) (%1 bloquejada) + yes + no no + This label turns red if any recipient receives an amount smaller than the current dust threshold. Aquesta etiqueta es torna vermella si cap recipient rep un import inferior al llindar de polsim actual. + Can vary +/- %1 satoshi(s) per input. Pot variar en +/- %1 satoshi(s) per entrada. + + (no label) (sense etiqueta) + change from %1 (%2) canvia de %1 (%2) + (change) (canvia) - EditAddressDialog + CreateAssetDialog - Edit Address - Edita l'adreça + + Coin Control Features + - &Label - &Etiqueta + + Inputs... + - The label associated with this address list entry - L'etiqueta associada amb aquesta entrada de llista d'adreces + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - L'adreça associada amb aquesta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. + + Insufficient funds! + - &Address - &Adreça + + + Quantity: + - New receiving address - Nova adreça de recepció + + Bytes: + - New sending address - Nova adreça d'enviament + + Amount: + - Edit receiving address - Edita l'adreça de recepció + + Dust: + - Edit sending address - Edita l'adreça d'enviament + + Fee: + - The entered address "%1" is not a valid Raven address. - L'adreça introduïda «%1» no és una adreça de Raven vàlida. + + After Fee: + - The entered address "%1" is already in the address book. - L'adreça introduïda «%1» ja és present a la llibreta d'adreces. + + Change: + - Could not unlock wallet. - No s'ha pogut desbloquejar el moneder. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Ha fallat la generació d'una clau nova. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Es crearà un nou directori de dades. + + Name: + - name - nom + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - El directori ja existeix. Afegeix %1 si vols crear un nou directori en aquesta ubicació. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - El camí ja existeix i no és cap directori. + + Check Availabilty + - Cannot create data directory here. - No es pot crear el directori de dades aquí. + + Address: + - - - HelpMessageDialog - version - versió + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Quant al %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opcions de línia d'ordres + + Warning: + - Usage: - Ús: + + The number of assets that will be created + - command-line options - Opcions de la línia d'ordres + + Units: + - UI Options: - Opcions d'interfície d'usuari: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Trieu el directori de dades a l'inici (per defecte: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Defineix la llengua, per exemple «de_DE» (per defecte: la definida pel sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Inicia minimitzat + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Defineix els certificats arrel SSL per a la sol·licitud de pagament (per defecte: els del sistema) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostra la pantalla de benvinguda a l'inici (per defecte: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reinicialitza tots els canvis de configuració fets des de la interfície gràfica + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Us donem la benvinguda + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Us donem la benvinguda a %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Com és la primera vegada que s'executa el programa, podeu triar on %1 emmagatzemarà les dades. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 baixarà i emmagatzemarà una còpia de la cadena de blocs de Raven. Com a mínim %2GB de dades s'emmagatzemaran en aquest directori, i augmentarà al llarg del temps. El moneder també s'emmagatzemarà en aquest directori. + + Choose... + - Use the default data directory - Utilitza el directori de dades per defecte + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Utilitza un directori de dades personalitzat: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Error: el directori de dades «%1» especificat no pot ser creat. + + collapse fee-settings + - Error - Error - - - %n GB of free space available - %n GB d'espai lliure disponible%n GB d'espai lliure disponible + + Hide + - - (of %n GB needed) - (de %n GB necessari)(de %n GB necessaris) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Formulari + + per kilobyte + - Last block time - Últim temps de bloc + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Progress - Progrés + + (read the tooltip) + - calculating... - s'està calculant... + + Recommended: + - Estimated time left until synced - Temps estimat restant fins sincronitzat + + C&ustom: + - Hide - Amaga + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Unknown. Syncing Headers (%1)... - Desconegut. Sincronització de les capçaleres (%1)... + + Confirmation time target: + - - - OpenURIDialog - Open URI - Obre un URI + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Open payment request from URI or file - Obre una sol·licitud de pagament des d'un URI o un fitxer + + Request Replace-By-Fee + - URI: - URI: + + Create Asset + - Select payment request file - Selecciona un fitxer de sol·licitud de pagament + + Clear + - Select payment request file to open - Seleccioneu el fitxer de sol·licitud de pagament per obrir + + Balance: + - - - OptionsDialog - Options - Opcions + + 123.456 RVN + - &Main - &Principal + + Copy quantity + - Automatically start %1 after logging in to the system. - Inicieu %1 automàticament després d'entrar en el sistema. + + Copy amount + - &Start %1 on system login - &Inicia %1 en l'entrada al sistema + + Copy fee + - Size of &database cache - Mida de la memòria cau de la base de &dades + + Copy after fee + - MB - MB + + Copy bytes + - Number of script &verification threads - Nombre de fils de &verificació d'scripts + + Copy dust + - Accept connections from outside - Accepta connexions de fora + + Copy change + - Allow incoming connections - Permet connexions entrants + + %1 (%2 blocks) + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Main Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimitza en comptes de sortir de l'aplicació quan la finestra es tanca. Quan s'habilita aquesta opció l'aplicació es tancara només quan se selecciona Surt del menú. + + Sub Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + Unique Asset + - Third party transaction URLs - URL de transaccions de terceres parts + + Messaging Channel Asset + - Active command-line options that override above options: - Opcions de línies d'ordre active que sobreescriuen les opcions de dalt: + + Qualifier Asset + - Reset all client options to default. - Reestableix totes les opcions del client. + + Sub Qualifier Asset + - &Reset Options - &Reestableix les opcions + + Restricted Asset + - &Network - &Xarxa + + Asset Type + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = deixa tants nuclis lliures) + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - W&allet - &Moneder + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Expert - Expert + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Enable coin &control features - Activa les funcions de &control de les monedes + + + + Warning: Invalid Raven address + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tingui com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + Warning: Restricted Assets Reissuance requires an address + - &Spend unconfirmed change - &Gasta el canvi sense confirmar + + Valid Asset + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Obre el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + Invalid: Asset name already in use + - Map port using &UPnP - Port obert amb &UPnP + + Error: Asset Database not in sync + - Connect to the Raven network through a SOCKS5 proxy. - Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + + %1 to %2 + - &Connect through SOCKS5 proxy (default proxy): - &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + Are you sure you want to send? + - Proxy &IP: - &IP del proxy: + + added as transaction fee + - &Port: - &Port: + + Total Amount %1 + - Port of the proxy (e.g. 9050) - Port del proxy (per exemple 9050) + + or + - Used for reaching peers via: - Utilitzat per arribar als iguals mitjançant: + + Confirm send assets + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Mostra si el proxy SOCKS5 per defecte proporcionat s'utilitza per arribar als iguals mitjançant aquest tipus de xarxa. + + Invalid: + - IPv4 - IPv4 + + Copy + - IPv6 - IPv6 + + Transaction ID Copied + - Tor - Tor + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Conectar a la red de Raven a través de un proxy SOCKS5 per als serveis ocults de Tor + + Warning: Unknown change address + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor: + + Confirm custom change address + - &Window - &Finestra + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - &Hide the icon from the system tray. - Ama&ga la icona de la safata del sistema. + + (no label) + - Hide tray icon - Amaga la icona de la safata + + Pay only the required fee of %1 + + + + EditAddressDialog - Show only a tray icon after minimizing the window. - Mostra només la icona de la barra en minimitzar la finestra. + + Edit Address + Edita l'adreça - &Minimize to the tray instead of the taskbar - &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + &Label + &Etiqueta - M&inimize on close - M&inimitza en tancar + + The label associated with this address list entry + L'etiqueta associada amb aquesta entrada de llista d'adreces - &Display - &Pantalla + + The address associated with this address list entry. This can only be modified for sending addresses. + L'adreça associada amb aquesta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. - User Interface &language: - &Llengua de la interfície d'usuari: + + &Address + &Adreça - The user interface language can be set here. This setting will take effect after restarting %1. - Aquí es pot definir la llengua de la interfície d'usuari. Aquest paràmetre tindrà efecte en reiniciar el %1. + + New receiving address + Nova adreça de recepció - &Unit to show amounts in: - &Unitats per mostrar els imports en: + + New sending address + Nova adreça d'enviament - Choose the default subdivision unit to show in the interface and when sending coins. - Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + Edit receiving address + Edita l'adreça de recepció - Whether to show coin control features or not. - Si voleu mostrar les funcions de control de monedes o no. + + Edit sending address + Edita l'adreça d'enviament - &OK - &D'acord + + The entered address "%1" is not a valid Raven address. + L'adreça introduïda «%1» no és una adreça de Raven vàlida. - &Cancel - &Cancel·la + + The entered address "%1" is already in the address book. + L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - default - Per defecte + + Could not unlock wallet. + No s'ha pogut desbloquejar el moneder. - none - cap + + New key generation failed. + Ha fallat la generació d'una clau nova. + + + FreespaceChecker - Confirm options reset - Confirmeu el reestabliment de les opcions + + A new data directory will be created. + Es crearà un nou directori de dades. - Client restart required to activate changes. - Cal reiniciar el client per activar els canvis. + + name + nom - Client will be shut down. Do you want to proceed? - S'aturarà el client. Voleu procedir? + + Directory already exists. Add %1 if you intend to create a new directory here. + El directori ja existeix. Afegeix %1 si vols crear un nou directori en aquesta ubicació. - This change would require a client restart. - Amb aquest canvi cal un reinici del client. + + Path already exists, and is not a directory. + El camí ja existeix i no és cap directori. - The supplied proxy address is invalid. - L'adreça proxy introduïda és invalida. + + Cannot create data directory here. + No es pot crear el directori de dades aquí. - OverviewPage + FreezeAddress - Form - Formulari + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + + Restricted Asset: + - Watch-only: - Només lectura: + + Address: + - Available: - Disponible: + + Custom Change Address + - Your current spendable balance - El balanç que podeu gastar actualment + + IPFS / Hash: + - Pending: - Pendent: + + Single Address Options + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + Global Options + - Immature: - Immadur: + + Free&ze trading on this address + - Mined balance that has not yet matured - Balanç minat que encara no ha madurat + + Unfreeze tradin&g on this address + - Balances - Balances + + Freeze all &trading for the selected restricted asset + - Total: - Total: + + &Unfreeze all trading for the selected restricted asset + - Your current total balance - El balanç total actual + + Check + - Your current balance in watch-only addresses - El vostre balanç actual en adreces de només lectura + + Clear + - Spendable: - Que es pot gastar: + + Submit + - Recent transactions - Transaccions recents + + Data has been validated, You can now submit the restriction transaction + - Unconfirmed transactions to watch-only addresses - Transaccions sense confirmar a adreces de només lectura + + Must have a restricted asset selected + - Mined balance in watch-only addresses that has not yet matured - Balanç minat en adreces de només lectura que encara no ha madurat + + Address is already frozen + - Current total balance in watch-only addresses - Balanç total actual en adreces de només lectura + + Address is not frozen + - - - PaymentServer - Payment request error - Error de la sol·licitud de pagament + + Restricted asset is already frozen globally + - Cannot start raven: click-to-pay handler - No es pot iniciar raven: controlador click-to-pay + + Restricted asset is not frozen globally + - URI handling - Gestió d'URI + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Payment request fetch URL is invalid: %1 - L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + Warning: transaction while syncing wallet! + - Invalid payment address %1 - Adreça de pagament no vàlida %1 + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + version + versió - Payment request file handling - Gestió de fitxers de les sol·licituds de pagament + + + (%1-bit) + (%1-bit) - Payment request file cannot be read! This can be caused by an invalid payment request file. - No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + About %1 + Quant al %1 - Payment request rejected - La sol·licitud de pagament s'ha rebutjat + + Command-line options + Opcions de línia d'ordres - Payment request network doesn't match client network. - La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + Usage: + Ús: - Payment request expired. - La sol·licitud de pagament ha vençut. + + command-line options + Opcions de la línia d'ordres - Payment request is not initialized. - La sol·licitud de pagament no està inicialitzada. + + UI Options: + Opcions d'interfície d'usuari: - Unverified payment requests to custom payment scripts are unsupported. - No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + Choose data directory on startup (default: %u) + Trieu el directori de dades a l'inici (per defecte: %u) - Invalid payment request. - Sol·licitud de pagament no vàlida. + + Set language, for example "de_DE" (default: system locale) + Defineix la llengua, per exemple «de_DE» (per defecte: la definida pel sistema) - Requested payment amount of %1 is too small (considered dust). - L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + Start minimized + Inicia minimitzat - Refund from %1 - Reemborsament de %1 + + Set SSL root certificates for payment request (default: -system-) + Defineix els certificats arrel SSL per a la sol·licitud de pagament (per defecte: els del sistema) - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + Show splash screen on startup (default: %u) + Mostra la pantalla de benvinguda a l'inici (per defecte: %u) - Error communicating with %1: %2 - Error en comunicar amb %1: %2 + + Reset all settings changed in the GUI + Reinicialitza tots els canvis de configuració fets des de la interfície gràfica + + + Intro - Payment request cannot be parsed! - No es pot analitzar la sol·licitud de pagament! + + Welcome + Us donem la benvinguda - Bad response from server %1 - Mala resposta del servidor %1 - - - Network request error - Error en la sol·licitud de xarxa - - - Payment acknowledged - Pagament reconegut + + Welcome to %1. + Us donem la benvinguda a %1. - - - PeerTableModel - User Agent - Agent d'usuari + + As this is the first time the program is launched, you can choose where %1 will store its data. + Com és la primera vegada que s'executa el programa, podeu triar on %1 emmagatzemarà les dades. - Node/Service - Node/Servei + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - - - QObject - Amount - Import + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - Enter a Raven address (e.g. %1) - Introduïu una adreça de Raven (p. ex. %1) + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + - %1 d - %1 d + + Use the default data directory + Utilitza el directori de dades per defecte - %1 h - %1 h + + Use a custom data directory: + Utilitza un directori de dades personalitzat: - %1 m - %1 m + + Raven + - %1 s - %1 s + + At least %1 GB of data will be stored in this directory, and it will grow over time. + - None - Cap + + Approximately %1 GB of data will be stored in this directory. + - N/A - N/A + + %1 will download and store a copy of the Raven block chain. + - %1 ms - %1 ms + + The wallet will also be stored in this directory. + - %1 and %2 - %1 i %2 + + Error: Specified data directory "%1" cannot be created. + Error: el directori de dades «%1» especificat no pot ser creat. - - - QObject::QObject - - - QRImageWidget - &Save Image... - De&sa la imatge... + + Error + Error - - &Copy Image - &Copia la imatge + + + %n GB of free space available + - - Save QR Code - Desa el codi QR + + + (of %n GB needed) + + + + MnemonicDialog - PNG Image (*.png) - Imatge PNG (*.png) + + HD Wallet Setup + - RPCConsole + MnemonicDialog1 - N/A - N/A + + HD Wallet Setup + - Client version - Versió del client + + Select the type of wallet to create. + - &Information - &Informació + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Debug window - Finestra de depuració + + Please choose what you would like to do: + - General - General + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Using BerkeleyDB version - Utilitzant BerkeleyDB versió + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Datadir - Datadir + + Accept + - Startup time - &Temps d'inici + + You are choosing to create a new wallet using new seed words. + - Network - Xarxa + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - Name - Nom + + New HD Wallet Creation + - Number of connections - Nombre de connexions + + BIP39 Compliant Seed Words: + - Block chain - Cadena de blocs + + Generate New Seed Words + - Current number of blocks - Nombre de blocs actuals + + These 12 generated seed words will be used. + - Memory Pool - Reserva de memòria + + Passphrase: + - Current number of transactions - Nombre actual de transaccions + + Enter a Passphrase to protect your seed words (optional). + - Memory usage - Us de memoria + + You may enter an optional Passphrase to protect your seed words. + - Received - Rebut + + Warning: + - Sent - Enviat + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - &Peers - &Iguals + + Accept + - Banned peers - Iguals bandejats + + Go Back + - Select a peer to view detailed information. - Seleccioneu un igual per mostrar informació detallada. + + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 - Whitelisted - A la llista blanca + + Previous HD Wallet Re-creation + - Direction - Direcció + + BIP39 Compliant Seed Words: + - Version - Versió + + Enter the 12 seed words from your previous wallet here. + - Starting Block - Bloc d'inici + + Passphrase: + - Synced Headers - Capçaleres sincronitzades + + You will need the Passphrase if your previous wallet used one. + - Synced Blocks - Blocs sincronitzats + + Enter the Passphrase from your previous wallet if it used one. + - User Agent - Agent d'usuari + + Warning: + - Services - Serveis + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Ban Score - Puntuació de bandeig + + Accept + - Connection Time - Temps de connexió + + Go Back + - Last Send - Darrer enviament + + Words are not valid, please check the words and try again + + + + ModalOverlay - Last Receive - Darrera recepció + + Form + Formulari - Ping Time - Temps de ping + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - The duration of a currently outstanding ping. - La duració d'un ping més destacat actualment. + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - Ping Wait - Espera de ping + + Number of blocks left + - Time Offset - Diferència horària + + + + Unknown... + + Last block time Últim temps de bloc - &Open - &Obre - - - &Console - &Consola + + Progress + Progrés - &Network Traffic - Trà&nsit de la xarxa + + Progress increase per hour + - &Clear - Nete&ja + + + calculating... + s'està calculant... - Totals - Totals + + Estimated time left until synced + Temps estimat restant fins sincronitzat - In: - Dins: + + Hide + Amaga - Out: - Fora: + + Unknown. Syncing Headers (%1)... + Desconegut. Sincronització de les capçaleres (%1)... + + + MyRestrictedAssetsTableModel - Debug log file - Fitxer de registre de depuració + + Date + - Clear console - Neteja la consola + + Type + - 1 &hour - 1 &hora + + Address + - 1 &day - 1 &dia + + Asset Name + - 1 &week - 1 &setmana + + Tagged + - 1 &year - 1 &any + + Untagged + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Utilitza les fletxes d'amunt i avall per navegar per l'historial, i <b>Ctrl-L<\b> per netejar la pantalla. + + Frozen + - Type <b>help</b> for an overview of available commands. - Escriviu <b>help<\b> per a obtenir un llistat de les ordres disponibles. + + Unfrozen + - %1 B - %1 B + + Other + - %1 KB - %1 KB + + watch-only + - %1 MB - %1 MB + + (no label) + - %1 GB - %1 GB + + Date and time that the transaction was received. + - (node id: %1) - (id del node: %1) + + Type of transaction. + - via %1 - a través de %1 + + User-defined intent/purpose of the transaction. + - never - mai + + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog - Inbound - Entrant + + Open URI + Obre un URI - Outbound - Sortint + + Open payment request from URI or file + Obre una sol·licitud de pagament des d'un URI o un fitxer - Yes - + + URI: + URI: - No - No + + Select payment request file + Selecciona un fitxer de sol·licitud de pagament - Unknown - Desconegut + + Select payment request file to open + Seleccioneu el fitxer de sol·licitud de pagament per obrir - ReceiveCoinsDialog + OptionsDialog - &Amount: - Im&port: + + Options + Opcions - &Label: - &Etiqueta: + + &Main + &Principal - &Message: - &Missatge: + + Automatically start %1 after logging in to the system. + Inicieu %1 automàticament després d'entrar en el sistema. - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + &Start %1 on system login + &Inicia %1 en l'entrada al sistema - R&euse an existing receiving address (not recommended) - R&eutilitza una adreça de recepció anterior (no recomanat) + + Size of &database cache + Mida de la memòria cau de la base de &dades - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. + + MB + MB - An optional label to associate with the new receiving address. - Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + Number of script &verification threads + Nombre de fils de &verificació d'scripts - Use this form to request payments. All fields are <b>optional</b>. - Utilitzeu aquest formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimitza en comptes de sortir de l'aplicació quan la finestra es tanca. Quan s'habilita aquesta opció l'aplicació es tancara només quan se selecciona Surt del menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + + + Active command-line options that override above options: + Opcions de línies d'ordre active que sobreescriuen les opcions de dalt: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reestableix totes les opcions del client. + + + + &Reset Options + &Reestableix les opcions + + + + &Network + &Xarxa + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = deixa tants nuclis lliures) + + + + W&allet + &Moneder + + + + Expert + Expert + + + + Enable coin &control features + Activa les funcions de &control de les monedes + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tingui com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + + + &Spend unconfirmed change + &Gasta el canvi sense confirmar + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Obre el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + + + Map port using &UPnP + Port obert amb &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + + + + Proxy &IP: + &IP del proxy: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port del proxy (per exemple 9050) + + + + Used for reaching peers via: + Utilitzat per arribar als iguals mitjançant: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Conectar a la red de Raven a través de un proxy SOCKS5 per als serveis ocults de Tor + + + + &Window + &Finestra + + + + Show only a tray icon after minimizing the window. + Mostra només la icona de la barra en minimitzar la finestra. + + + + &Minimize to the tray instead of the taskbar + &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + + + M&inimize on close + M&inimitza en tancar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Pantalla + + + + User Interface &language: + &Llengua de la interfície d'usuari: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Aquí es pot definir la llengua de la interfície d'usuari. Aquest paràmetre tindrà efecte en reiniciar el %1. + + + + &Unit to show amounts in: + &Unitats per mostrar els imports en: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + + + Whether to show coin control features or not. + Si voleu mostrar les funcions de control de monedes o no. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &D'acord + + + + &Cancel + &Cancel·la + + + + default + Per defecte + + + + none + cap + + + + Confirm options reset + Confirmeu el reestabliment de les opcions + + + + + Client restart required to activate changes. + Cal reiniciar el client per activar els canvis. + + + + Client will be shut down. Do you want to proceed? + S'aturarà el client. Voleu procedir? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Amb aquest canvi cal un reinici del client. + + + + The supplied proxy address is invalid. + L'adreça proxy introduïda és invalida. + + + + OverviewPage + + + Form + Formulari + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + + + + Watch-only: + Només lectura: + + + + Available: + Disponible: + + + + Your current spendable balance + El balanç que podeu gastar actualment + + + + Pending: + Pendent: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + + + Immature: + Immadur: + + + + Mined balance that has not yet matured + Balanç minat que encara no ha madurat + + + + Total: + Total: + + + + Your current total balance + El balanç total actual + + + + RVN Balances + + + + + Your current balance in watch-only addresses + El vostre balanç actual en adreces de només lectura + + + + Spendable: + Que es pot gastar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transaccions recents + + + + Unconfirmed transactions to watch-only addresses + Transaccions sense confirmar a adreces de només lectura + + + + Mined balance in watch-only addresses that has not yet matured + Balanç minat en adreces de només lectura que encara no ha madurat + + + + Current total balance in watch-only addresses + Balanç total actual en adreces de només lectura + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Error de la sol·licitud de pagament + + + + Cannot start raven: click-to-pay handler + No es pot iniciar raven: controlador click-to-pay + + + + + + URI handling + Gestió d'URI + + + + Payment request fetch URL is invalid: %1 + L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + + + Invalid payment address %1 + Adreça de pagament no vàlida %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + + + Payment request file handling + Gestió de fitxers de les sol·licituds de pagament + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + + + + + + + + Payment request rejected + La sol·licitud de pagament s'ha rebutjat + + + + Payment request network doesn't match client network. + La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Payment request is not initialized. + La sol·licitud de pagament no està inicialitzada. + + + + Unverified payment requests to custom payment scripts are unsupported. + No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + + + + Invalid payment request. + Sol·licitud de pagament no vàlida. + + + + Requested payment amount of %1 is too small (considered dust). + L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + + + Refund from %1 + Reemborsament de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + + + Error communicating with %1: %2 + Error en comunicar amb %1: %2 + + + + Payment request cannot be parsed! + No es pot analitzar la sol·licitud de pagament! + + + + Bad response from server %1 + Mala resposta del servidor %1 + + + + Network request error + Error en la sol·licitud de xarxa + + + + Payment acknowledged + Pagament reconegut + + + + PeerTableModel + + + User Agent + Agent d'usuari + + + + Node/Service + Node/Servei + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Import + + + + Enter a Raven address (e.g. %1) + Introduïu una adreça de Raven (p. ex. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Cap + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + De&sa la imatge... + + + + &Copy Image + &Copia la imatge + + + + Save QR Code + Desa el codi QR + + + + PNG Image (*.png) + Imatge PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versió del client + + + + &Information + &Informació + + + + Debug window + Finestra de depuració + + + + General + General + + + + Using BerkeleyDB version + Utilitzant BerkeleyDB versió + + + + Datadir + Datadir + + + + Startup time + &Temps d'inici + + + + Network + Xarxa + + + + Name + Nom + + + + Number of connections + Nombre de connexions + + + + Block chain + Cadena de blocs + + + + Current number of blocks + Nombre de blocs actuals + + + + Memory Pool + Reserva de memòria + + + + Current number of transactions + Nombre actual de transaccions + + + + Memory usage + Us de memoria + + + + &Reset + + + + + + Received + Rebut + + + + + Sent + Enviat + + + + &Peers + &Iguals + + + + Banned peers + Iguals bandejats + + + + + + Select a peer to view detailed information. + Seleccioneu un igual per mostrar informació detallada. + + + + Whitelisted + A la llista blanca + + + + Direction + Direcció + + + + Version + Versió + + + + Starting Block + Bloc d'inici + + + + Synced Headers + Capçaleres sincronitzades + + + + Synced Blocks + Blocs sincronitzats + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent d'usuari + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Serveis + + + + Ban Score + Puntuació de bandeig + + + + Connection Time + Temps de connexió + + + + Last Send + Darrer enviament + + + + Last Receive + Darrera recepció + + + + Ping Time + Temps de ping + + + + The duration of a currently outstanding ping. + La duració d'un ping més destacat actualment. + + + + Ping Wait + Espera de ping + + + + Min Ping + + + + + Time Offset + Diferència horària + + + + Last block time + Últim temps de bloc + + + + &Open + &Obre + + + + &Console + &Consola + + + + &Network Traffic + Trà&nsit de la xarxa + + + + Totals + Totals + + + + In: + Dins: + + + + Out: + Fora: + + + + Debug log file + Fitxer de registre de depuració + + + + Clear console + Neteja la consola + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &dia + + + + 1 &week + 1 &setmana + + + + 1 &year + 1 &any + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Escriviu <b>help<\b> per a obtenir un llistat de les ordres disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (id del node: %1) + + + + via %1 + a través de %1 + + + + + never + mai + + + + Inbound + Entrant + + + + Outbound + Sortint + + + + Yes + + + + + No + No + + + + + Unknown + Desconegut + + + + RavenGUI + + + Sign &message... + Signa el &missatge... + + + + Synchronizing with network... + S'està sincronitzant amb la xarxa ... + + + + &Overview + &Panorama general + + + + Node + Node + + + + Show general overview of wallet + Mostra el panorama general del moneder + + + + &Transactions + &Transaccions + + + + Browse transaction history + Cerca a l'historial de transaccions + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&urt + + + + Quit application + Surt de l'aplicació + + + + &About %1 + Qu&ant al %1 + + + + Show information about %1 + Mosta informació sobre el %1 + + + + About &Qt + Quant a &Qt + + + + Show information about Qt + Mostra informació sobre Qt + + + + &Options... + &Opcions... + + + + Modify configuration options for %1 + Modifica les opcions de configuració de %1 + + + + &Encrypt Wallet... + &Encripta el moneder... + + + + &Backup Wallet... + &Realitza una còpia de seguretat del moneder... + + + + &Change Passphrase... + &Canvia la contrasenya... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adreces d'e&nviament... + + + + &Receiving addresses... + Adreces de &recepció... + + + + Open &URI... + Obre un &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Feu clic per inhabilitar l'activitat de la xarxa. + + + + Network activity disabled. + S'ha inhabilitat l'activitat de la xarxa. + + + + Click to enable network activity again. + Feu clic per tornar a habilitar l'activitat de la xarxa. + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + S'estan reindexant els blocs al disc... + + + + Send coins to a Raven address + Envia monedes a una adreça Raven + + + + Backup wallet to another location + Realitza una còpia de seguretat del moneder a una altra ubicació + + + + Change the passphrase used for wallet encryption + Canvia la contrasenya d'encriptació del moneder + + + + Open debugging and diagnostic console + Obre la consola de diagnòstic i depuració + + + + &Verify message... + &Verifica el missatge... + + + + Raven + Raven + + + + Wallet + Moneder + + + + &Send + &Envia + + + + &Receive + &Rep + + + + &Show / Hide + &Mostra / Amaga + + + + Show or hide the main Window + Mostra o amaga la finestra principal + + + + Encrypt the private keys that belong to your wallet + Encripta les claus privades pertanyents al moneder + + + + Sign messages with your Raven addresses to prove you own them + Signa el missatges amb la seva adreça de Raven per provar que les poseeixes + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + + + &File + &Fitxer + + + + &Help + &Ajuda + + + + Request payments (generates QR codes and raven: URIs) + Sol·licita pagaments (genera codis QR i raven: URI) + + + + Show the list of used sending addresses and labels + Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + + + Show the list of used receiving addresses and labels + Mostra la llista d'adreces de recepció i etiquetes utilitzades + + + + Open a raven: URI or payment request + Obre una raven: sol·licitud d'URI o pagament + + + + &Command-line options + Opcions de la &línia d'ordres + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + S'estan indexant els blocs al disc... + + + + Processing blocks on disk... + S'estan processant els blocs al disc... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 darrere + + + + Last received block was generated %1 ago. + El darrer bloc rebut ha estat generat fa %1. + + + + Transactions after this will not yet be visible. + Les transaccions a partir d'això no seran visibles. + + + + Error + Error + + + + Warning + Avís + + + + Information + Informació + + + + Up to date + Al dia + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Raven + + + + %1 client + Client de %1 + + + + Connecting to peers... + + + + + Catching up... + S'està posant al dia ... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Import: %1 + + + + + Type: %1 + + Tipus: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Adreça: %1 + + + + + Sent transaction + Transacció enviada + + + + Incoming transaction + Transacció entrant + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + La generació de la clau HD és <b>habilitada</b> + + + + HD key generation is <b>disabled</b> + La generació de la clau HD és <b>inhabilitada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + S'ha produït un error fatal. Raven no pot continuar amb seguretat i finalitzarà. + + + + ReceiveCoinsDialog + + + &Amount: + Im&port: + + + + &Label: + &Etiqueta: + + + + &Message: + &Missatge: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + + + R&euse an existing receiving address (not recommended) + R&eutilitza una adreça de recepció anterior (no recomanat) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. + + + + + An optional label to associate with the new receiving address. + Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilitzeu aquest formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. Un import opcional per sol·licitar. Deixeu-ho en blanc o zero per no sol·licitar cap import específic. - Clear all fields of the form. - Esborra tots els camps del formuari. + + Clear all fields of the form. + Esborra tots els camps del formuari. + + + + Clear + Neteja + + + + Requested payments history + Historial de pagaments sol·licitats + + + + &Request payment + &Sol·licitud de pagament + + + + Show the selected request (does the same as double clicking an entry) + Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + + + Show + Mostra + + + + Remove the selected entries from the list + Esborra les entrades seleccionades de la llista + + + + Remove + Esborra + + + + Copy URI + + + + + Copy label + Copia l'etiqueta + + + + Copy message + Copia el missatge + + + + Copy amount + Copia l'import + + + + ReceiveRequestDialog + + + QR Code + Codi QR + + + + Copy &URI + Copia l'&URI + + + + Copy &Address + Copia l'&adreça + + + + &Save Image... + De&sa la imatge... + + + + Request payment to %1 + Sol·licita un pagament a %1 + + + + Payment information + Informació de pagament + + + + URI + URI + + + + Address + Adreça + + + + Amount + Import + + + + Label + Etiqueta + + + + Message + Missatge + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + + + Error encoding URI into QR Code. + Error en codificar l'URI en un codi QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etiqueta + + + + Message + Missatge + + + + (no label) + (sense etiqueta) + + + + (no message) + (sense missatge) + + + + (no amount requested) + (no s'ha sol·licitat import) + + + + Requested + Sol·licitat + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Envia monedes + + + + Coin Control Features + Característiques de control de les monedes + + + + Inputs... + Entrades... + + + + automatically selected + seleccionat automàticament + + + + Insufficient funds! + Fons insuficients! + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Import: + + + + Fee: + Comissió: + + + + After Fee: + Comissió posterior: + + + + Change: + Canvi: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + + + Custom change address + Personalitza l'adreça de canvi + + + + Transaction Fee: + Comissió de transacció + + + + Choose... + Tria... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + redueix els paràmetres de comissió + + + + per kilobyte + per kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + + Hide + Amaga + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de ravens que la xarxa pugui processar. + + + + (read the tooltip) + (llegiu l'indicador de funció) + + + + Recommended: + Recomanada: + + + + Custom: + Personalitzada: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Envia a múltiples destinataris al mateix temps + + + + Add &Recipient + Afegeix &destinatari + + + + Clear all fields of the form. + Esborra tots els camps del formuari. + + + + Dust: + Polsim: + + + + Confirmation time target: + + + + + Clear &All + Neteja-ho &tot + + + + Balance: + Balanç: + + + + Confirm the send action + Confirma l'acció d'enviament + + + + S&end + E&nvia + + + + Copy quantity + Copia la quantitat + + + + Copy amount + Copia l'import + + + + Copy fee + Copia la comissió + + + + Copy after fee + Copia la comissió posterior + + + + Copy bytes + Copia els bytes + + + + Copy dust + Copia el polsim + + + + Copy change + Copia el canvi + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 a %2 + + + + Are you sure you want to send? + Esteu segur que ho voleu enviar? + + + + added as transaction fee + S'ha afegit una taxa de transacció + + + + Total Amount %1 + Import total %1 + + + + or + o + + + + Confirm send coins + Confirma l'enviament de monedes + + + + The recipient address is not valid. Please recheck. + L'adreça del destinatari no és vàlida. Torneu-la a comprovar. + + + + The amount to pay must be larger than 0. + L'import a pagar ha de ser major que 0. + + + + The amount exceeds your balance. + L'import supera el vostre balanç. + + + + The total exceeds your balance when the %1 transaction fee is included. + El total excedeix el vostre balanç quan s'afegeix la comissió a la transacció %1. + + + + Duplicate address found: addresses should only be used once each. + S'ha trobat una adreça duplicada: les adreces només s'haurien d'utilitzar una vegada cada una. + + + + Transaction creation failed! + La creació de la transacció ha fallat! + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + Una comissió superior a %1 es considera una comissió absurdament alta. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Pay only the required fee of %1 + Paga només la comissió necessària de %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Avís: adreça Raven no vàlida + + + + Warning: Unknown change address + Avís: adreça de canvi desconeguda + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (sense etiqueta) + + + + SendCoinsEntry + + + + + A&mount: + Q&uantitat: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + Tria les adreces fetes servir amb anterioritat + + + + This is a normal payment. + Això és un pagament normal. + + + + The Raven address to send the payment to + L'adreça Raven on enviar el pagament + + + + Alt+A + Alta+A + + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + + Alt+P + Alt+P + + + + + + Remove this entry + Elimina aquesta entrada + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + + + S&ubtract fee from amount + S&ubstreu la comissió de l'import + + + + Message: + Missatge: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Aquesta és una sol·licitud de pagament no autenticada. + + + + + Send to: + + + + + This is an authenticated payment request. + Aquesta és una sol·licitud de pagament autenticada. + + + + Enter a label for this address to add it to the list of used addresses + Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + Introduïu una etiqueta per a aquesta adreça per afegir-la a la llibreta d'adreces + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + No apagueu l'ordinador fins que no desaparegui aquesta finestra. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatures - Signa / verifica un missatge + + + + &Sign Message + &Signa el missatge + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que sigui vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + + + The Raven address to sign the message with + L'adreça Raven amb què signar el missatge + + + + + Choose previously used address + Tria les adreces fetes servir amb anterioritat + + + + + Alt+A + Alta+A + + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduïu aquí el missatge que voleu signar + + + + Signature + Signatura + + + + Copy the current signature to the system clipboard + Copia la signatura actual al porta-retalls del sistema + + + + Sign the message to prove you own this Raven address + Signa el missatge per provar que ets propietari d'aquesta adreça Raven + + + + Sign &Message + Signa el &missatge + + + + Reset all sign message fields + Neteja tots els camps de clau + + + + + Clear &All + Neteja-ho &tot + + + + &Verify Message + &Verifica el missatge + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + + + The Raven address the message was signed with + L'adreça Raven amb què va ser signat el missatge + + + + Verify the message to ensure it was signed with the specified Raven address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + + + Verify &Message + Verifica el &missatge + + + + Reset all verify message fields + Neteja tots els camps de verificació de missatge + + + + Click "Sign Message" to generate signature + Feu clic a «Signa el missatge» per a generar una signatura + + + + + The entered address is invalid. + L'adreça introduïda no és vàlida. + + + + + + + Please check the address and try again. + Comproveu l'adreça i torneu-ho a provar. + + + + + The entered address does not refer to a key. + L'adreça introduïda no referencia a cap clau. + + + + Wallet unlock was cancelled. + El desbloqueig del moneder ha estat cancelat. + + + + Private key for the entered address is not available. + La clau privada per a la adreça introduïda no està disponible. + + + + Message signing failed. + La signatura del missatge ha fallat. + + + + Message signed. + Missatge signat. + + + + The signature could not be decoded. + La signatura no s'ha pogut descodificar. + + + + + Please check the signature and try again. + Comproveu la signatura i torneu-ho a provar. + + + + The signature did not match the message digest. + La signatura no coincideix amb el resum del missatge. + + + + Message verification failed. + Ha fallat la verificació del missatge. + + + + Message verified. + Missatge verificat. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/fora de línia + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/sense confirmar + + + + %1 confirmations + %1 confirmacions + + + + + Status + Estat + + + + + , has not been successfully broadcast yet + , encara no ha estat emès correctement + + + + + , broadcast through %n node(s) + + + + + + Date + Data + + + + Source + Font + + + + Generated + Generada + + + + + + + + From + De + + + + + unknown + desconegut + + + + + + + + To + A + + + + + own address + adreça pròpia + + + + + + watch-only + només lectura + + + + + label + etiqueta + + + + + + + + + + Credit + Crèdit + + + + matures in %n more block(s) + + + + + not accepted + no acceptat + + + + + + + + Debit + Dèbit + + + + Total debit + Dèbit total + + + + Total credit + Crèdit total + + + + Transaction fee + Comissió de transacció + + + + Net amount + Import net + + + + + + + Message + Missatge + + + + + Comment + Comentari + + + + + Transaction ID + ID de la transacció + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + Mercader + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu aquest bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + + + Net RVN amount + + + + + Debug information + Informació de depuració + + + + Transaction + Transacció + + + + Inputs + Entrades + + + + Amount + Import + + + + + true + cert + + + + + false + fals + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Aquest panell mostra una descripció detallada de la transacció + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipus + + + + Label + Etiqueta + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + Offline + Fora de línia + + + + Unconfirmed + Sense confirmar + + + + Abandoned + Abandonada + + + + Confirming (%1 of %2 recommended confirmations) + Confirmant (%1 de %2 confirmacions recomanades) + + + + Confirmed (%1 confirmations) + Confirmat (%1 confirmacions) + + + + Conflicted + En conflicte + + + + Immature (%1 confirmations, will be available after %2) + Immadur (%1 confirmacions, serà disponible després de %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Aquest bloc no ha estat rebut per cap altre node i probablement no serà acceptat! - Clear - Neteja + + Generated but not accepted + Generat però no acceptat - Requested payments history - Historial de pagaments sol·licitats + + Received with + Rebuda amb - &Request payment - &Sol·licitud de pagament + + Received from + Rebuda de - Show the selected request (does the same as double clicking an entry) - Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + Sent to + Enviada a - Show - Mostra + + Payment to yourself + Pagament a un mateix - Remove the selected entries from the list - Esborra les entrades seleccionades de la llista + + Mined + Minada - Remove - Esborra + + Asset Issued + - Copy label - Copia l'etiqueta + + Asset Reissued + - Copy message - Copia el missatge + + Assets Received + - Copy amount - Copia l'import + + Assets Sent + - - - ReceiveRequestDialog - QR Code - Codi QR + + watch-only + només lectura - Copy &URI - Copia l'&URI + + (n/a) + (n/a) - Copy &Address - Copia l'&adreça + + (no label) + (sense etiqueta) - &Save Image... - De&sa la imatge... + + Transaction status. Hover over this field to show number of confirmations. + Estat de la transacció. Desplaceu-vos sobre aquest camp per mostrar el nombre de confirmacions. - Request payment to %1 - Sol·licita un pagament a %1 + + Date and time that the transaction was received. + Data i hora en que la transacció va ser rebuda. - Payment information - Informació de pagament + + Type of transaction. + Tipus de transacció. - URI - URI + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. - Address - Adreça + + User-defined intent/purpose of the transaction. + Intenció/propòsit de la transacció definida per l'usuari. - Amount - Import + + Amount removed from or added to balance. + Import extret o afegit del balanç. - Label - Etiqueta + + The asset (or RVN) removed or added to balance. + + + + TransactionView - Message - Missatge + + + All + Tot - Resulting URI too long, try to reduce the text for label / message. - URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + Today + Avui - Error encoding URI into QR Code. - Error en codificar l'URI en un codi QR. + + This week + Aquesta setmana - - - RecentRequestsTableModel - Date - Data + + This month + Aquest mes - Label - Etiqueta + + Last month + El mes passat - Message - Missatge + + This year + Enguany - (no label) - (sense etiqueta) + + Range... + Rang... - (no message) - (sense missatge) + + Received with + Rebuda amb - (no amount requested) - (no s'ha sol·licitat import) + + Sent to + Enviada a - Requested - Sol·licitat + + To yourself + A un mateix - - - SendCoinsDialog - Send Coins - Envia monedes + + Mined + Minada - Coin Control Features - Característiques de control de les monedes + + Other + Altres - Inputs... - Entrades... + + Enter address or label to search + Introduïu una adreça o una etiqueta per cercar - automatically selected - seleccionat automàticament + + Min amount + Import mínim - Insufficient funds! - Fons insuficients! + + Asset name + - Quantity: - Quantitat: + + Abandon transaction + - Bytes: - Bytes: + + Copy address + Copia l'adreça - Amount: - Import: + + Copy label + Copia l'etiqueta - Fee: - Comissió: + + Copy amount + Copia l'import - After Fee: - Comissió posterior: + + Copy transaction ID + Copia l'ID de transacció - Change: - Canvi: + + Copy raw transaction + Copia la transacció crua - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + Copy full transaction details + - Custom change address - Personalitza l'adreça de canvi + + Edit label + Editar etiqueta - Transaction Fee: - Comissió de transacció + + Show transaction details + Mostra detalls de la transacció - Choose... - Tria... + + Browse with: + - collapse fee-settings - redueix els paràmetres de comissió + + Export Transaction History + Exporta l'historial de transacció - per kilobyte - per kilobyte + + Comma separated file (*.csv) + Fitxer separat per comes (*.csv) - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + Confirmed + Confirmat - Hide - Amaga + + Watch-only + Només de lectura - total at least - total com a mínim + + Date + Data - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de ravens que la xarxa pugui processar. + + Type + Tipus - (read the tooltip) - (llegiu l'indicador de funció) + + Label + Etiqueta - Recommended: - Recomanada: + + Address + Adreça - Custom: - Personalitzada: + + Asset + - (Smart fee not initialized yet. This usually takes a few blocks...) - (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + ID + ID - normal - normal + + Exporting Failed + L'exportació ha fallat - fast - ràpid + + There was an error trying to save the transaction history to %1. + S'ha produït un error en provar de desar l'historial de transacció a %1. - Send to multiple recipients at once - Envia a múltiples destinataris al mateix temps + + Exporting Successful + Exportació amb èxit - Add &Recipient - Afegeix &destinatari + + The transaction history was successfully saved to %1. + L'historial de transaccions s'ha desat correctament a %1. - Clear all fields of the form. - Esborra tots els camps del formuari. + + Asset Issued + - Dust: - Polsim: + + Asset Reissued + - Clear &All - Neteja-ho &tot + + Asset Received + - Balance: - Balanç: + + Asset Sent + - Confirm the send action - Confirma l'acció d'enviament + + Copy asset name + + + + + Range: + Rang: + + + + to + a + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + + + WalletFrame + + + No wallet has been loaded. + No s'ha carregat cap moneder. + + + + WalletModel + + + Send Coins + Envia monedes + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - S&end - E&nvia + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &Exporta - Copy quantity - Copia la quantitat + + Export the data in the current tab to a file + Exporta les dades de la pestanya actual a un fitxer - Copy amount - Copia l'import + + Backup Wallet + Còpia de seguretat del moneder - Copy fee - Copia la comissió + + Wallet Data (*.dat) + Dades del moneder (*.dat) - Copy after fee - Copia la comissió posterior + + Backup Failed + Ha fallat la còpia de seguretat - Copy bytes - Copia els bytes + + There was an error trying to save the wallet data to %1. + S'ha produït un error en provar de desar les dades del moneder a %1. - Copy dust - Copia el polsim + + Backup Successful + La còpia de seguretat s'ha realitzat correctament - Copy change - Copia el canvi + + The wallet data was successfully saved to %1. + S'han desat les dades del moneder correctament a %1. - %1 to %2 - %1 a %2 + + Recovery information + - Are you sure you want to send? - Esteu segur que ho voleu enviar? + + No words available. + - added as transaction fee - S'ha afegit una taxa de transacció + + This wallet is not a HD wallet, words not supported. + + + + raven-core - Total Amount %1 - Import total %1 + + Options: + Opcions: - or - o + + Specify data directory + Especifica el directori de dades - Confirm send coins - Confirma l'enviament de monedes + + Connect to a node to retrieve peer addresses, and disconnect + Connecta al node per obtenir les adreces de les connexions, i desconnecta - The recipient address is not valid. Please recheck. - L'adreça del destinatari no és vàlida. Torneu-la a comprovar. + + Specify your own public address + Especifiqueu la vostra adreça pública - The amount to pay must be larger than 0. - L'import a pagar ha de ser major que 0. + + Accept command line and JSON-RPC commands + Accepta la línia d'ordres i ordres JSON-RPC - The amount exceeds your balance. - L'import supera el vostre balanç. + + Distributed under the MIT software license, see the accompanying file %s or %s + - The total exceeds your balance when the %1 transaction fee is included. - El total excedeix el vostre balanç quan s'afegeix la comissió a la transacció %1. + + If <category> is not supplied or if <category> = 1, output all debugging information. + Si no es proporciona <category> o si <category> = 1, treu a la sortida tota la informació de depuració. - Duplicate address found: addresses should only be used once each. - S'ha trobat una adreça duplicada: les adreces només s'haurien d'utilitzar una vegada cada una. + + Prune configured below the minimum of %d MiB. Please use a higher number. + Poda configurada per sota el mínim de %d MiB. Utilitzeu un nombre superior. - Transaction creation failed! - La creació de la transacció ha fallat! + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + Poda: la darrera sincronització del moneder va més enllà de les dades podades. Cal que activeu -reindex (baixeu tota la cadena de blocs de nou en cas de node podat) - A fee higher than %1 is considered an absurdly high fee. - Una comissió superior a %1 es considera una comissió absurdament alta. + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + Els rescanejos no són possible en el mode de poda. Caldrà que utilitzeu -reindex, que tornarà a baixar la cadena de blocs sencera. - Payment request expired. - La sol·licitud de pagament ha vençut. + + Error: A fatal internal error occurred, see debug.log for details + Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls - Pay only the required fee of %1 - Paga només la comissió necessària de %1 + + Fee (in %s/kB) to add to transactions you send (default: %s) + Comissió (en %s/kB) per afegir a les transaccions que envieu (per defecte: %s) - Warning: Invalid Raven address - Avís: adreça Raven no vàlida + + Pruning blockstore... + S'està podant la cadena de blocs... - Warning: Unknown change address - Avís: adreça de canvi desconeguda + + Run in the background as a daemon and accept commands + Executa en segon pla com a programa dimoni i accepta ordres - (no label) - (sense etiqueta) + + Unable to start HTTP server. See debug log for details. + No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls. - - - SendCoinsEntry - A&mount: - Q&uantitat: + + Raven Core + Raven Core - Pay &To: - Paga &a: + + The %s developers + - &Label: - &Etiqueta: + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - Choose previously used address - Tria les adreces fetes servir amb anterioritat + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - This is a normal payment. - Això és un pagament normal. + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - The Raven address to send the payment to - L'adreça Raven on enviar el pagament + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 - Alt+A - Alta+A + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Paste address from clipboard - Enganxar adreça del porta-retalls + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Alt+P - Alt+P + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Remove this entry - Elimina aquesta entrada + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - S&ubtract fee from amount - S&ubstreu la comissió de l'import + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Message: - Missatge: + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - This is an unauthenticated payment request. - Aquesta és una sol·licitud de pagament no autenticada. + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Executa una ordre quan una transacció del moneder canviï (%s en cmd es canvia per TxID) - This is an authenticated payment request. - Aquesta és una sol·licitud de pagament autenticada. + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Enter a label for this address to add it to the list of used addresses - Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - Pay To: - Paga a: + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Memo: - Memo: + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - Enter a label for this address to add it to your address book - Introduïu una etiqueta per a aquesta adreça per afegir-la a la llibreta d'adreces + + Please contribute if you find %s useful. Visit %s for further information about the software. + - - - SendConfirmationDialog - Yes - + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - - - ShutdownWindow - Do not shut down the computer until this window disappears. - No apagueu l'ordinador fins que no desaparegui aquesta finestra. + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signatures - Signa / verifica un missatge + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - &Sign Message - &Signa el missatge + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que sigui vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - The Raven address to sign the message with - L'adreça Raven amb què signar el missatge + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Choose previously used address - Tria les adreces fetes servir amb anterioritat + + This is the transaction fee you may discard if change is smaller than dust at this level + - Alt+A - Alta+A + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - Paste address from clipboard - Enganxar adreça del porta-retalls + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Alt+P - Alt+P + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Enter the message you want to sign here - Introduïu aquí el missatge que voleu signar + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Signature - Signatura + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Copy the current signature to the system clipboard - Copia la signatura actual al porta-retalls del sistema + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Sign the message to prove you own this Raven address - Signa el missatge per provar que ets propietari d'aquesta adreça Raven + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Sign &Message - Signa el &missatge + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Reset all sign message fields - Neteja tots els camps de clau + + %d of last 100 blocks have unexpected version + - Clear &All - Neteja-ho &tot + + %s corrupt, salvage failed + - &Verify Message - &Verifica el missatge + + -maxmempool must be at least %d MB + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + <category> can be: + <category> pot ser: - The Raven address the message was signed with - L'adreça Raven amb què va ser signat el missatge + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Verify the message to ensure it was signed with the specified Raven address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + Append comment to the user agent string + - Verify &Message - Verifica el &missatge + + Attempt to recover private keys from a corrupt wallet on startup + - Reset all verify message fields - Neteja tots els camps de verificació de missatge + + Block creation options: + Opcions de la creació de blocs: - Click "Sign Message" to generate signature - Feu clic a «Signa el missatge» per a generar una signatura + + Cannot resolve -%s address: '%s' + - The entered address is invalid. - L'adreça introduïda no és vàlida. + + Chain selection options: + - Please check the address and try again. - Comproveu l'adreça i torneu-ho a provar. + + Change index out of range + - The entered address does not refer to a key. - L'adreça introduïda no referencia a cap clau. + + Connection options: + Opcions de connexió: - Wallet unlock was cancelled. - El desbloqueig del moneder ha estat cancelat. + + Copyright (C) %i-%i + - Private key for the entered address is not available. - La clau privada per a la adreça introduïda no està disponible. + + Corrupted block database detected + S'ha detectat una base de dades de blocs corrupta - Message signing failed. - La signatura del missatge ha fallat. + + Debugging/Testing options: + Opcions de depuració/proves: - Message signed. - Missatge signat. + + Do not load the wallet and disable wallet RPC calls + No carreguis el moneder i inhabilita les crides RPC del moneder - The signature could not be decoded. - La signatura no s'ha pogut descodificar. + + Do you want to rebuild the block database now? + Voleu reconstruir la base de dades de blocs ara? - Please check the signature and try again. - Comproveu la signatura i torneu-ho a provar. + + Enable publish hash block in <address> + - The signature did not match the message digest. - La signatura no coincideix amb el resum del missatge. + + Enable publish hash transaction in <address> + - Message verification failed. - Ha fallat la verificació del missatge. + + Enable publish raw block in <address> + - Message verified. - Missatge verificat. + + Enable publish raw transaction in <address> + - - - SplashScreen - [testnet] - [testnet] + + Enable transaction replacement in the memory pool (default: %u) + - - - TrafficGraphWidget - KB/s - KB/s + + Error initializing block database + Error carregant la base de dades de blocs - - - TransactionDesc - Open until %1 - Obert fins %1 + + Error initializing wallet database environment %s! + Error inicialitzant l'entorn de la base de dades del moneder %s! - %1/offline - %1/fora de línia + + Error loading %s + - %1/unconfirmed - %1/sense confirmar + + Error loading %s: Wallet corrupted + - %1 confirmations - %1 confirmacions + + Error loading %s: Wallet requires newer version of %s + - Status - Estat + + Error loading block database + Error carregant la base de dades del bloc - , has not been successfully broadcast yet - , encara no ha estat emès correctement + + Error opening block database + Error en obrir la base de dades de blocs - Date - Data + + Error: Disk space is low! + Error: Espai al disc baix! - Source - Font + + Failed to listen on any port. Use -listen=0 if you want this. + Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. - Generated - Generada + + Importing... + S'està important... - From - De + + Incorrect or no genesis block found. Wrong datadir for network? + No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? - unknown - desconegut + + Initialization sanity check failed. %s is shutting down. + - To - A + + Invalid amount for -%s=<amount>: '%s' + - own address - adreça pròpia + + Invalid amount for -discardfee=<amount>: '%s' + - watch-only - només lectura + + Invalid amount for -fallbackfee=<amount>: '%s' + - label - etiqueta + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Credit - Crèdit + + Loading P2P addresses... + - not accepted - no acceptat + + Loading banlist... + - Debit - Dèbit + + Location of the auth cookie (default: data dir) + - Total debit - Dèbit total + + Not enough file descriptors available. + No hi ha suficient descriptors de fitxers disponibles. - Total credit - Crèdit total + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) - Transaction fee - Comissió de transacció + + Print this help message and exit + - Net amount - Import net + + Print version and exit + - Message - Missatge + + Prune cannot be configured with a negative value. + La poda no es pot configurar amb un valor negatiu. - Comment - Comentari + + Prune mode is incompatible with -txindex. + El mode de poda és incompatible amb -txindex. - Transaction ID - ID de la transacció + + Rebuild chain state and block index from the blk*.dat files on disk + - Merchant - Mercader + + Rebuild chain state from the currently indexed blocks + - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu aquest bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + Replaying blocks... + - Debug information - Informació de depuració + + Rewinding blocks... + - Transaction - Transacció + + Set database cache size in megabytes (%d to %d, default: %d) + Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) - Inputs - Entrades + + Specify wallet file (within data directory) + Especifica un fitxer de moneder (dins del directori de dades) - Amount - Import + + The source code is available from %s. + - true - cert + + Transaction fee and change calculation failed + - false - fals + + Unable to bind to %s on this computer. %s is probably already running. + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Aquest panell mostra una descripció detallada de la transacció + + Unsupported argument -benchmark ignored, use -debug=bench. + - - - TransactionTableModel - Date - Data + + Unsupported argument -debugnet ignored, use -debug=net. + - Type - Tipus + + Unsupported argument -tor found, use -onion. + - Label - Etiqueta + + Unsupported logging category %s=%s. + - Open until %1 - Obert fins %1 + + Upgrading UTXO database + - Offline - Fora de línia + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) - Unconfirmed - Sense confirmar + + Use the test chain + Utilitza la cadena de proves - Abandoned - Abandonada + + User Agent comment (%s) contains unsafe characters. + - Confirming (%1 of %2 recommended confirmations) - Confirmant (%1 de %2 confirmacions recomanades) + + Verifying blocks... + S'estan verificant els blocs... - Confirmed (%1 confirmations) - Confirmat (%1 confirmacions) + + Wallet %s resides outside data directory %s + El moneder %s resideix fora del directori de dades %s - Conflicted - En conflicte + + Wallet debugging/testing options: + Opcions de depuració/proves del moneder: - Immature (%1 confirmations, will be available after %2) - Immadur (%1 confirmacions, serà disponible després de %2) + + Wallet needed to be rewritten: restart %s to complete + Cal reescriure el moneder: reinicieu %s per a completar-ho - This block was not received by any other nodes and will probably not be accepted! - Aquest bloc no ha estat rebut per cap altre node i probablement no serà acceptat! + + Wallet options: + Opcions de moneder: - Generated but not accepted - Generat però no acceptat + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar aquesta opció moltes vegades - Received with - Rebuda amb + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connectin. Feu servir la notació [host]:port per a IPv6 - Received from - Rebuda de + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) - Sent to - Enviada a + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) - Payment to yourself - Pagament a un mateix + + Error: Listening for incoming connections failed (listen returned error %s) + Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) - Mined - Minada + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - watch-only - només lectura + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - (n/a) - (n/a) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) - (no label) - (sense etiqueta) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) - Transaction status. Hover over this field to show number of confirmations. - Estat de la transacció. Desplaceu-vos sobre aquest camp per mostrar el nombre de confirmacions. + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) - Date and time that the transaction was received. - Data i hora en que la transacció va ser rebuda. + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) - Type of transaction. - Tipus de transacció. + + The transaction amount is too small to send after the fee has been deducted + L'import de la transacció és massa petit per enviar-la després que se'n dedueixi la comissió - Whether or not a watch-only address is involved in this transaction. - Si està implicada o no una adreça només de lectura en la transacció. + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la - User-defined intent/purpose of the transaction. - Intenció/propòsit de la transacció definida per l'usuari. + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera - Amount removed from or added to balance. - Import extret o afegit del balanç. + + (default: %u) + (per defecte: %u) - - - TransactionView - All - Tot + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) - Today - Avui + + Automatically create Tor hidden service (default: %d) + - This week - Aquesta setmana + + Connect through SOCKS5 proxy + Connecta a través del proxy SOCKS5 - This month - Aquest mes + + Error loading %s: You can't disable HD on an already existing HD wallet + - Last month - El mes passat + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. - This year - Enguany + + Error upgrading chainstate database + - Range... - Rang... + + Imports blocks from external blk000??.dat file on startup + - Received with - Rebuda amb + + Information + Informació - Sent to - Enviada a + + Invalid -onion address or hostname: '%s' + - To yourself - A un mateix + + Invalid -proxy address or hostname: '%s' + - Mined - Minada + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) - Other - Altres + + Invalid netmask specified in -whitelist: '%s' + S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Enter address or label to search - Introduïu una adreça o una etiqueta per cercar + + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) - Min amount - Import mínim + + Need to specify a port with -whitebind: '%s' + Cal especificar un port amb -whitebind: «%s» - Copy address - Copia l'adreça + + Node relay options: + Opcions de transmissió del node: - Copy label - Copia l'etiqueta + + RPC server options: + Opcions del servidor RPC: - Copy amount - Copia l'import + + Reducing -maxconnections from %d to %d, because of system limitations. + - Copy transaction ID - Copia l'ID de transacció + + Rescan the block chain for missing wallet transactions on startup + - Copy raw transaction - Copia la transacció crua + + Send trace/debug info to console instead of debug.log file + Envia informació de traça/depuració a la consola en comptes del fitxer debug.log - Edit label - Editar etiqueta + + Show all debugging options (usage: --help -help-debug) + Mostra totes les opcions de depuració (ús: --help --help-debug) - Show transaction details - Mostra detalls de la transacció + + Shrink debug.log file on client startup (default: 1 when no -debug) + Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) - Export Transaction History - Exporta l'historial de transacció + + Signing transaction failed + Ha fallat la signatura de la transacció - Comma separated file (*.csv) - Fitxer separat per comes (*.csv) + + The transaction amount is too small to pay the fee + L'import de la transacció és massa petit per pagar-ne una comissió - Confirmed - Confirmat + + This is experimental software. + Això és programari experimental. - Watch-only - Només de lectura + + Tor control port password (default: empty) + - Date - Data + + Tor control port to use if onion listening enabled (default: %s) + - Type - Tipus + + Transaction amount too small + Import de la transacció massa petit - Label - Etiqueta + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions - Address - Adreça + + Transaction too large + La transacció és massa gran - ID - ID + + Unable to bind to %s on this computer (bind returned error %s) + No s'ha pogut vincular a %s en aquest ordinador (la vinculació ha retornat l'error %s) - Exporting Failed - L'exportació ha fallat + + Upgrade wallet to latest format on startup + - There was an error trying to save the transaction history to %1. - S'ha produït un error en provar de desar l'historial de transacció a %1. + + Username for JSON-RPC connections + Nom d'usuari per a connexions JSON-RPC - Exporting Successful - Exportació amb èxit + + Valid Verifier + - The transaction history was successfully saved to %1. - L'historial de transaccions s'ha desat correctament a %1. + + Variable is not allow in the expression: ' + - Range: - Rang: + + Verifier String doesn't exist for asset: + - to - a + + Verifier String for asset trasnfer, not found + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + Verifier not found for asset: + - - - WalletFrame - No wallet has been loaded. - No s'ha carregat cap moneder. + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + - - - WalletModel - Send Coins - Envia monedes + + Verifier string not found + - - - WalletView - &Export - &Exporta + + Verifying wallet(s)... + - Export the data in the current tab to a file - Exporta les dades de la pestanya actual a un fitxer + + Warning + Avís - Backup Wallet - Còpia de seguretat del moneder + + Warning: unknown new rules activated (versionbit %i) + - Wallet Data (*.dat) - Dades del moneder (*.dat) + + Whether to operate in a blocks only mode (default: %u) + - Backup Failed - Ha fallat la còpia de seguretat + + You need to rebuild the database using -reindex to change -txindex + - There was an error trying to save the wallet data to %1. - S'ha produït un error en provar de desar les dades del moneder a %1. + + Zapping all transactions from wallet... + Se suprimeixen totes les transaccions del moneder... - Backup Successful - La còpia de seguretat s'ha realitzat correctament + + ZeroMQ notification options: + - The wallet data was successfully saved to %1. - S'han desat les dades del moneder correctament a %1. + + Password for JSON-RPC connections + Contrasenya per a connexions JSON-RPC - - - raven-core - Options: - Opcions: + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Executa l'ordre quan el millor bloc canviï (%s en cmd es reemplaça per un resum de bloc) - Specify data directory - Especifica el directori de dades + + Allow DNS lookups for -addnode, -seednode and -connect + Permet consultes DNS per a -addnode, -seednode i -connect - Connect to a node to retrieve peer addresses, and disconnect - Connecta al node per obtenir les adreces de les connexions, i desconnecta + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) - Specify your own public address - Especifiqueu la vostra adreça pública + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Accept command line and JSON-RPC commands - Accepta la línia d'ordres i ordres JSON-RPC + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - If <category> is not supplied or if <category> = 1, output all debugging information. - Si no es proporciona <category> o si <category> = 1, treu a la sortida tota la informació de depuració. + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Prune configured below the minimum of %d MiB. Please use a higher number. - Poda configurada per sota el mínim de %d MiB. Utilitzeu un nombre superior. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - Poda: la darrera sincronització del moneder va més enllà de les dades podades. Cal que activeu -reindex (baixeu tota la cadena de blocs de nou en cas de node podat) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. - Els rescanejos no són possible en el mode de poda. Caldrà que utilitzeu -reindex, que tornarà a baixar la cadena de blocs sencera. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Error: A fatal internal error occurred, see debug.log for details - Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Fee (in %s/kB) to add to transactions you send (default: %s) - Comissió (en %s/kB) per afegir a les transaccions que envieu (per defecte: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Pruning blockstore... - S'està podant la cadena de blocs... + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) - Run in the background as a daemon and accept commands - Executa en segon pla com a programa dimoni i accepta ordres + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Unable to start HTTP server. See debug log for details. - No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls. + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Raven Core - Raven Core + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Executa una ordre quan una transacció del moneder canviï (%s en cmd es canvia per TxID) + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - <category> can be: - <category> pot ser: + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Block creation options: - Opcions de la creació de blocs: + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) - Connection options: - Opcions de connexió: + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Corrupted block database detected - S'ha detectat una base de dades de blocs corrupta + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) - Debugging/Testing options: - Opcions de depuració/proves: + + Output debugging information (default: %u, supplying <category> is optional) + Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) - Do not load the wallet and disable wallet RPC calls - No carreguis el moneder i inhabilita les crides RPC del moneder + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Do you want to rebuild the block database now? - Voleu reconstruir la base de dades de blocs ara? + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Error initializing block database - Error carregant la base de dades de blocs + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Error initializing wallet database environment %s! - Error inicialitzant l'entorn de la base de dades del moneder %s! + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Error loading block database - Error carregant la base de dades del bloc + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Error opening block database - Error en obrir la base de dades de blocs + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Error: Disk space is low! - Error: Espai al disc baix! + + The default height that is required before rewards are allowed to be sent out + - Failed to listen on any port. Use -listen=0 if you want this. - Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Importing... - S'està important... + + This address doesn't contain the correct tags to pass the verifier string check: + - Incorrect or no genesis block found. Wrong datadir for network? - No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? + + This is the transaction fee you may pay when fee estimates are not available. + - Invalid -onion address: '%s' - Adreça -onion no vàlida: '%s' + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Not enough file descriptors available. - No hi ha suficient descriptors de fitxers disponibles. + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Prune cannot be configured with a negative value. - La poda no es pot configurar amb un valor negatiu. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Prune mode is incompatible with -txindex. - El mode de poda és incompatible amb -txindex. + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Set database cache size in megabytes (%d to %d, default: %d) - Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) + + Unable to reissue asset: unit must be larger than current unit selection + - Set maximum block size in bytes (default: %d) - Defineix la mida màxim del bloc en bytes (per defecte: %d) + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Specify wallet file (within data directory) - Especifica un fitxer de moneder (dins del directori de dades) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Use UPnP to map the listening port (default: %u) - Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Use the test chain - Utilitza la cadena de proves + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) - Verifying blocks... - S'estan verificant els blocs... + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Verifying wallet... - S'està verificant el moneder... + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Wallet %s resides outside data directory %s - El moneder %s resideix fora del directori de dades %s + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Wallet debugging/testing options: - Opcions de depuració/proves del moneder: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Wallet needed to be rewritten: restart %s to complete - Cal reescriure el moneder: reinicieu %s per a completar-ho + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Wallet options: - Opcions de moneder: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar aquesta opció moltes vegades + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connectin. Feu servir la notació [host]:port per a IPv6 + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Aquesta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Error: Listening for incoming connections failed (listen returned error %s) - Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) + + %s is set very high! + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) + + ' doesn't exist in the database + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) + + ' has already been used + - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + ' is not a valid character in the expression: + - Maximum size of data in data carrier transactions we relay and mine (default: %u) - Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) + + ' the amount trying to reissue is to large + - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) + + (default: %s) + (per defecte: %s) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + A space separated list of 12-words used to import a bip44 wallet + - The transaction amount is too small to send after the fee has been deducted - L'import de la transacció és massa petit per enviar-la després que se'n dedueixi la comissió + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + Asset Transfer amounts must be greater than 0 + - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera + + Asset doesn't exist: + - (default: %u) - (per defecte: %u) + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Accept public REST requests (default: %u) - Accepta sol·licituds REST públiques (per defecte: %u) + + Asset name is not valid + - Connect through SOCKS5 proxy - Connecta a través del proxy SOCKS5 + + Asset with this name is already in the mempool + - Error reading from database, shutting down. - Error en llegir la base de dades, tancant. + + Done Loading + - Information - Informació + + Enable publish raw asset messages in <address> + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) + + Error creating %s: You can't create non-HD wallets with this version. + - Invalid netmask specified in -whitelist: '%s' - S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» + + Error loading wallet %s. -wallet filename must be a regular file. + - Keep at most <n> unconnectable transactions in memory (default: %u) - Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) + + Error loading wallet %s. Duplicate -wallet filename specified. + - Need to specify a port with -whitebind: '%s' - Cal especificar un port amb -whitebind: «%s» + + Error loading wallet %s. Invalid characters in -wallet filename. + - Node relay options: - Opcions de transmissió del node: + + Error not set + - RPC server options: - Opcions del servidor RPC: + + Error writing bip 39 passphrase to database + - Send trace/debug info to console instead of debug.log file - Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Error writing bip 39 vchseed to database + - Send transactions as zero-fee transactions if possible (default: %u) - Envia les transaccions com a transaccions de comissió zero sempre que sigui possible (per defecte: %u) + + Error writing bip 39 words to database + - Show all debugging options (usage: --help -help-debug) - Mostra totes les opcions de depuració (ús: --help --help-debug) + + Every '(' must have a corresponding ')' in the expression: + - Shrink debug.log file on client startup (default: 1 when no -debug) - Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) + + Failed to extract destination from change script + - Signing transaction failed - Ha fallat la signatura de la transacció + + Failed to find restricted asset change address from inputs + - The transaction amount is too small to pay the fee - L'import de la transacció és massa petit per pagar-ne una comissió + + Failed to get asset data from script + - This is experimental software. - Això és programari experimental. + + Failed to get verifier string from output: + - Transaction amount too small - Import de la transacció massa petit + + Failed to load Assets Database + - Transaction too large for fee policy - Transacció massa gran per a la política de comissions + + Flag must be 1 or 0 + - Transaction too large - La transacció és massa gran + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) - Unable to bind to %s on this computer (bind returned error %s) - No s'ha pogut vincular a %s en aquest ordinador (la vinculació ha retornat l'error %s) + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a la sortida de depuració (per defecte: %u) - Username for JSON-RPC connections - Nom d'usuari per a connexions JSON-RPC + + Init Message Channels - Scanning Asset Transactions + - Warning - Avís + + Insufficient asset funds + - Zapping all transactions from wallet... - Se suprimeixen totes les transaccions del moneder... + + Invalid Qualifier Name: + - Password for JSON-RPC connections - Contrasenya per a connexions JSON-RPC + + Invalid expressions in verifier string: + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Executa l'ordre quan el millor bloc canviï (%s en cmd es reemplaça per un resum de bloc) + + Invalid parameter: amount must be + - Allow DNS lookups for -addnode, -seednode and -connect - Permet consultes DNS per a -addnode, -seednode i -connect + + Invalid parameter: amount must be between + - Loading addresses... - S'estan carregant les adreces... + + Invalid parameter: asset amount can't be equal to or less than zero. + - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + Invalid parameter: asset amount greater than max money: + - How thorough the block verification of -checkblocks is (0-4, default: %u) - Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + Invalid parameter: asset_name ' + - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + Invalid parameter: has_ipfs must be 0 or 1. + - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Output debugging information (default: %u, supplying <category> is optional) - Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + Invalid parameter: reissuable must be 0 or 1 + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + Invalid parameter: reissuable must be 0 + - (default: %s) - (per defecte: %s) + + Invalid parameter: units must be + - Always query for peer addresses via DNS lookup (default: %u) - Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + + Invalid parameter: units must be between 0-8. + - How many blocks to check at startup (default: %u, 0 = all) - Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + Invalid syntax: + - Include IP addresses in debug output (default: %u) - Inclou l'adreça IP a la sortida de depuració (per defecte: %u) + + Keypool ran out, please call keypoolrefill first + - Invalid -proxy address: '%s' - Adreça -proxy invalida: '%s' + + Length is to large. Please use a smaller length + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escolta les connexions en <port> (per defecte: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Manté com a màxim <n> connexions a iguals (per defecte: %u) + Make the wallet broadcast transactions Fes que el moneder faci difusió de les transaccions + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + + + Mempool cleared + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Posa davant de la sortida de depuració una marca horària (per defecte: %u) + Relay and mine data carrier transactions (default: %u) - Retransmet i mina les transaccions de l'operador (per defecte: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + Relay non-P2SH multisig (default: %u) Retransmet multisig no P2SH (per defecte: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Defineix la mida clau disponible a <n> (per defecte: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especifica el fitxer de configuració (per defecte: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) - Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Specify pid file (default: %s) Especifica el fitxer pid (per defecte: %s) + Spend unconfirmed change when sending transactions (default: %u) Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + Starting network threads... - S'estan iniciant els fils de la xarxa... + S'estan iniciant els fils de la xarxa... + + + + The symbol: ' + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) + Transaction amounts must not be negative Els imports de la transacció no han de ser negatius + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient La transacció ha de tenir com a mínim un destinatari - Unknown network specified in -onlynet: '%s' - Xarxa desconeguda especificada a -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Xarxa desconeguda especificada a -onlynet: '%s' + + + Insufficient funds Balanç insuficient + Loading block index... - S'està carregant l'índex de blocs... - - - Add a node to connect to and attempt to keep the connection open - Afegeix un node per a connectar-s'hi i intenta mantenir-hi la connexió oberta + S'està carregant l'índex de blocs... + Loading wallet... - S'està carregant el moneder... + S'està carregant el moneder... + Cannot downgrade wallet No es pot reduir la versió del moneder - Cannot write default address - No es pot escriure l'adreça per defecte - - + Rescanning... - S'està reescanejant... - - - Done loading - Ha acabat la càrrega + S'està reescanejant... + Error Error diff --git a/src/qt/locale/raven_ca@valencia.ts b/src/qt/locale/raven_ca@valencia.ts index 43219f678f..d590f17ba9 100644 --- a/src/qt/locale/raven_ca@valencia.ts +++ b/src/qt/locale/raven_ca@valencia.ts @@ -1,116 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Feu clic dret per a editar l'adreça o l'etiqueta + Feu clic dret per a editar l'adreça o l'etiqueta + Create a new address Crea una nova adreça + &New &Nova + Copy the currently selected address to the system clipboard - Copia l'adreça seleccionada al porta-retalls del sistema + Copia l'adreça seleccionada al porta-retalls del sistema + &Copy &Copia + C&lose &Tanca + Delete the currently selected address from the list - Elimina l'adreça sel·leccionada actualment de la llista + Elimina l'adreça sel·leccionada actualment de la llista + Export the data in the current tab to a file Exporta les dades de la pestanya actual a un fitxer + &Export &Exporta + &Delete &Elimina + Choose the address to send coins to Trieu una adreça on voleu enviar monedes + Choose the address to receive coins with - Trieu l'adreça on voleu rebre monedes + Trieu l'adreça on voleu rebre monedes + C&hoose T&ria + Sending addresses - S'estan enviant les adreces + S'estan enviant les adreces + Receiving addresses - S'estan rebent les adreces + S'estan rebent les adreces + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - Estes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + Estes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estes són les vostres adreces Raven per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + &Copy Address - &Copia l'adreça + &Copia l'adreça + Copy &Label - Copia l'&etiqueta + Copia l'&etiqueta + &Edit &Edita + Export Address List - Exporta la llista d'adreces + Exporta la llista d'adreces + Comma separated file (*.csv) Fitxer de separació amb comes (*.csv) + Exporting Failed - L'exportació ha fallat + L'exportació ha fallat + There was an error trying to save the address list to %1. Please try again. - S'ha produït un error en guardar la llista d'adreces a %1. Torneu-ho a provar. + S'ha produït un error en guardar la llista d'adreces a %1. Torneu-ho a provar. AddressTableModel + Label Etiqueta + Address Adreça + (no label) (sense etiqueta) @@ -118,2900 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Diàleg de contrasenya + Enter passphrase Introduïu una contrasenya + New passphrase Nova contrasenya + Repeat new passphrase Repetiu la nova contrasenya + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. + Encrypt wallet Encripta el moneder + This operation needs your wallet passphrase to unlock the wallet. Esta operació requereix la contrasenya del moneder per a desbloquejar-lo. + Unlock wallet Desbloqueja el moneder + This operation needs your wallet passphrase to decrypt the wallet. Esta operació requereix la contrasenya del moneder per desencriptar-lo. + Decrypt wallet Desencripta el moneder + Change passphrase Canvia la contrasenya + Enter the old passphrase and new passphrase to the wallet. Introduïu la contrasenya antiga i la contrasenya nova al moneder. + Confirm wallet encryption - Confirma l'encriptació del moneder + Confirma l'encriptació del moneder + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES RAVENS</b>! + Are you sure you wish to encrypt your wallet? Esteu segur que voleu encriptar el vostre moneder? + + Wallet encrypted Moneder encriptat + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT: Tota copia de seguretat que hàgeu realitzat hauria de ser reemplaçada pel, recentment generat, fitxer encriptat del moneder. + + + + Wallet encryption failed - L'encriptació del moneder ha fallat + L'encriptació del moneder ha fallat + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + + The supplied passphrases do not match. La contrasenya introduïda no coincideix. + Wallet unlock failed El desbloqueig del moneder ha fallat + + + The passphrase entered for the wallet decryption was incorrect. La contrasenya introduïda per a desencriptar el moneder és incorrecta. + Wallet decryption failed La desencriptació del moneder ha fallat + Wallet passphrase was successfully changed. La contrasenya del moneder ha estat modificada correctament. + + Warning: The Caps Lock key is on! Avís: Les lletres majúscules estan activades! - BanTableModel - - - RavenGUI - - Sign &message... - Signa el &missatge... - - - Synchronizing with network... - S'està sincronitzant amb la xarxa ... - - - &Overview - &Panorama general - + AssetControlDialog - Node - Node + + Asset Selection + - Show general overview of wallet - Mostra el panorama general del moneder + + Quantity: + - &Transactions - &Transaccions + + Bytes: + - Browse transaction history - Cerca a l'historial de transaccions + + Amount: + - E&xit - I&x + + Dust: + - Quit application - Ix de l'aplicació + + Fee: + - About &Qt - Quant a &Qt + + After Fee: + - Show information about Qt - Mostra informació sobre Qt + + Change: + - &Options... - &Opcions... + + (un)select all + - &Encrypt Wallet... - &Encripta el moneder... + + Tree mode + - &Backup Wallet... - &Realitza una còpia de seguretat del moneder... + + List mode + - &Change Passphrase... - &Canvia la contrasenya... + + View assets that you have the ownership asset for + - &Sending addresses... - Adreces d'e&nviament... + + View Administrator Assets + - &Receiving addresses... - Adreces de &recepció + + Asset + - Open &URI... - Obri un &URI... + + Amount + - Reindexing blocks on disk... - S'estan reindexant els blocs al disc... + + Received with label + - Send coins to a Raven address - Envia monedes a una adreça Raven + + Received with address + - Backup wallet to another location - Realitza una còpia de seguretat del moneder a una altra ubicació + + Date + - Change the passphrase used for wallet encryption - Canvia la contrasenya d'encriptació del moneder + + Confirmations + - &Debug window - &Finestra de depuració + + Confirmed + - Open debugging and diagnostic console - Obri la consola de diagnòstic i depuració + + Copy address + - &Verify message... - &Verifica el missatge... + + Copy label + - Raven - Raven + + + Copy amount + - Wallet - Moneder + + Copy transaction ID + - &Send - &Envia + + Lock unspent + - &Receive - &Rep + + Unlock unspent + - &Show / Hide - &Mostra / Amaga + + Copy quantity + - Show or hide the main Window - Mostra o amaga la finestra principal + + Copy fee + - Encrypt the private keys that belong to your wallet - Encripta les claus privades pertanyents al moneder + + Copy after fee + - Sign messages with your Raven addresses to prove you own them - Signa el missatges amb la seua adreça de Raven per provar que les poseeixes + + Copy bytes + - Verify messages to ensure they were signed with specified Raven addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + Copy dust + - &File - &Fitxer + + Copy change + - &Settings - &Configuració + + (%1 locked) + - &Help - &Ajuda + + yes + - Tabs toolbar - Barra d'eines de les pestanyes + + no + - Request payments (generates QR codes and raven: URIs) - Sol·licita pagaments (genera codis QR i raven: URI) + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Show the list of used sending addresses and labels - Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + Can vary +/- %1 satoshi(s) per input. + - Show the list of used receiving addresses and labels - Mostra la llista d'adreces de recepció i etiquetes utilitzades + + + (no label) + - Open a raven: URI or payment request - Obri una raven: sol·licitud d'URI o pagament + + change from %1 (%2) + - &Command-line options - Opcions de la &línia d'ordes + + (change) + + + + AssetTableModel - %1 behind - %1 darrere + + Name + - Last received block was generated %1 ago. - El darrer bloc rebut ha estat generat fa %1. + + Quantity + + + + AssetsDialog - Transactions after this will not yet be visible. - Les transaccions a partir d'això no seran visibles. + + + Send Coins + - Error - Error + + Asset Control Features + - Warning - Avís + + Inputs... + - Information - Informació + + automatically selected + - Up to date - Al dia + + Insufficient funds! + - Catching up... - S'està posant al dia ... + + Quantity: + - Date: %1 - - Data: %1 - + + Bytes: + - Amount: %1 - - Import: %1 - + + Amount: + - Type: %1 - - Tipus: %1 - + + Dust: + - Label: %1 - - Etiqueta: %1 - + + Fee: + - Address: %1 - - Adreça: %1 - + + After Fee: + - Sent transaction - Transacció enviada + + Change: + - Incoming transaction - Transacció entrant + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + Custom change address + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + Transaction Fee: + - - - CoinControlDialog - Coin Selection - Selecció de moneda + + Choose... + - Quantity: - Quantitat: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Bytes: - Bytes: + + Warning: Fee estimation is currently not possible. + - Amount: - Import: + + collapse fee-settings + - Fee: - Comissió + + Hide + - Dust: - Polsim: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - After Fee: - Comissió posterior: + + per kilobyte + - Change: - Canvi: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - (un)select all - (des)selecciona-ho tot + + (read the tooltip) + - Tree mode - Mode arbre + + Recommended: + - List mode - Mode llista + + Custom: + - Amount - Import + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Received with label - Rebut amb l'etiqueta + + Confirmation time target: + - Received with address - Rebut amb l'adreça + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Date - Data + + Request Replace-By-Fee + - Confirmations - Confirmacions + + Confirm the send action + - Confirmed - Confirmat + + S&end + - Copy address - Copiar adreça + + Clear all fields of the form. + - Copy label - Copiar etiqueta + + Clear &All + - Copy amount - Copia l'import + + Transfer to multiple recipients at once + - Copy transaction ID - Copiar ID de transacció + + Add &Recipient + - Lock unspent - Bloqueja sense gastar + + Balance: + - Unlock unspent - Desbloqueja sense gastar + + Copy quantity + - Copy quantity - Copia la quantitat + + Copy amount + + Copy fee - Copia la comissió + + Copy after fee - Copia la comissió posterior + + Copy bytes - Copia els bytes + + Copy dust - Copia el polsim + + Copy change - Copia el canvi + - (%1 locked) - (%1 bloquejada) + + %1 (%2 blocks) + - yes - + + + + + %1 to %2 + - no - no + + Are you sure you want to send? + - Can vary +/- %1 satoshi(s) per input. - Pot variar +/- %1 satoshi(s) per entrada. + + added as transaction fee + - (no label) - (sense etiqueta) + + Confirm send assets + - change from %1 (%2) - canvia de %1 (%2) + + The recipient address is not valid. Please recheck. + - (change) - (canvia) + + The amount to pay must be larger than 0. + - - - EditAddressDialog - Edit Address - Edita l'adreça + + The amount exceeds your balance. + - &Label - &Etiqueta + + The total exceeds your balance when the %1 transaction fee is included. + - The label associated with this address list entry - L'etiqueta associada amb esta entrada de llista d'adreces + + Duplicate address found: addresses should only be used once each. + - The address associated with this address list entry. This can only be modified for sending addresses. - L'adreça associada amb esta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. + + Transaction creation failed! + - &Address - &Adreça + + The transaction was rejected with the following reason: %1 + - New receiving address - Nova adreça de recepció. + + A fee higher than %1 is considered an absurdly high fee. + - New sending address - Nova adreça d'enviament + + Payment request expired. + - Edit receiving address - Edita les adreces de recepció + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - Edit sending address - Edita les adreces d'enviament + + Warning: Invalid Raven address + - The entered address "%1" is not a valid Raven address. - L'adreça introduïda «%1» no és una adreça de Raven vàlida. + + Warning: Unknown change address + - The entered address "%1" is already in the address book. - L'adreça introduïda «%1» ja és present a la llibreta d'adreces. + + Confirm custom change address + - Could not unlock wallet. - No s'ha pogut desbloquejar el moneder. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - New key generation failed. - Ha fallat la generació d'una nova clau. + + (no label) + - FreespaceChecker + AssignQualifier - A new data directory will be created. - Es crearà un nou directori de dades. + + Frame + - name - nom + + Select Type: + - Directory already exists. Add %1 if you intend to create a new directory here. - El directori ja existeix. Afig %1 si vols crear un nou directori en esta ubicació. + + Select Qualifier: + - Path already exists, and is not a directory. - El camí ja existeix i no és cap directori. + + Address: + - Cannot create data directory here. - No es pot crear el directori de dades ací. + + IPFS / Hash: + - - - HelpMessageDialog - version - versió + + Custom Change Address + - (%1-bit) - (%1-bit) + + Check + - Command-line options - Opcions de línia d'ordes + + Clear + - Usage: - Ús: + + Submit + - command-line options - Opcions de la línia d'ordes + + Assign Qualifier + - UI Options: - Opcions d'interfície: + + Remove Qualifier + - Set language, for example "de_DE" (default: system locale) - Defineix un idioma, per exemple «de_DE» (per defecte: preferències locals de sistema) + + Data has been validated, You can now submit the qualifier request + - Start minimized - Inicia minimitzat + + Must have a qualifier asset selected + - Set SSL root certificates for payment request (default: -system-) - Defineix certificats arrel SSL per a la sol·licitud de pagament (per defecte: -sistema-) + + Address already has the qualifier assigned to it + - - - Intro - Welcome - Vos donem la benviguda + + Address doesn't have the qualifier, so we can't remove it + - Use the default data directory - Utilitza el directori de dades per defecte + + Unable to preform action at this time + + + + BanTableModel - Use a custom data directory: - Utilitza un directori de dades personalitzat: + + IP/Netmask + - Error: Specified data directory "%1" cannot be created. - Error: el directori de dades «%1» especificat no pot ser creat. + + Banned Until + + + + CoinControlDialog - Error - Error + + Coin Selection + Selecció de moneda - - - ModalOverlay - Form - Formulari + + Quantity: + Quantitat: - Last block time - Últim temps de bloc + + Bytes: + Bytes: - Hide - Amaga + + Amount: + Import: - - - OpenURIDialog - Open URI - Obri un URI + + Fee: + Comissió - Open payment request from URI or file - Obri una sol·licitud de pagament des d'un URI o un fitxer + + Dust: + Polsim: - URI: - URI: + + After Fee: + Comissió posterior: - Select payment request file - Selecciona un fitxer de sol·licitud de pagament + + Change: + Canvi: - Select payment request file to open - Selecciona el fitxer de sol·licitud de pagament per obrir + + (un)select all + (des)selecciona-ho tot - - - OptionsDialog - Options - Opcions + + Tree mode + Mode arbre - &Main - &Principal + + List mode + Mode llista - Size of &database cache - Mida de la memòria cau de la base de &dades + + Amount + Import - MB - MB + + Received with label + Rebut amb l'etiqueta - Number of script &verification threads - Nombre de fils de &verificació d'scripts + + Received with address + Rebut amb l'adreça - Accept connections from outside - Accepta connexions de fora + + Date + Data - Allow incoming connections - Permet connexions entrants + + Confirmations + Confirmacions - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Confirmed + Confirmat - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimitza en comptes d'eixir de l'aplicació quan la finestra es tanca. Quan s'habilita esta opció l'aplicació es tancara només quan se selecciona Ix del menú. + + Copy address + Copiar adreça - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + Copy label + Copiar etiqueta - Third party transaction URLs - URL de transaccions de terceres parts + + + Copy amount + Copia l'import - Active command-line options that override above options: - Opcions de línies d'orde active que sobreescriuen les opcions de dalt: + + Copy transaction ID + Copiar ID de transacció - Reset all client options to default. - Reestableix totes les opcions del client. + + Lock unspent + Bloqueja sense gastar - &Reset Options - &Reestableix les opcions + + Unlock unspent + Desbloqueja sense gastar - &Network - &Xarxa + + Copy quantity + Copia la quantitat - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = deixa tants nuclis lliures) + + Copy fee + Copia la comissió - W&allet - &Moneder + + Copy after fee + Copia la comissió posterior - Expert - Expert + + Copy bytes + Copia els bytes - Enable coin &control features - Activa les funcions de &control de les monedes + + Copy dust + Copia el polsim - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tinga com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + Copy change + Copia el canvi - &Spend unconfirmed change - &Gasta el canvi sense confirmar + + (%1 locked) + (%1 bloquejada) - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Obri el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + yes + - Map port using &UPnP - Port obert amb &UPnP + + no + no - Connect to the Raven network through a SOCKS5 proxy. - Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Connect through SOCKS5 proxy (default proxy): - &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + Can vary +/- %1 satoshi(s) per input. + Pot variar +/- %1 satoshi(s) per entrada. - Proxy &IP: - &IP del proxy: + + + (no label) + (sense etiqueta) - &Port: - &Port: + + change from %1 (%2) + canvia de %1 (%2) - Port of the proxy (e.g. 9050) - Port del proxy (per exemple 9050) + + (change) + (canvia) + + + CreateAssetDialog - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor: + + Coin Control Features + - &Window - &Finestra + + Inputs... + - Show only a tray icon after minimizing the window. - Mostra només la icona de la barra en minimitzar la finestra. + + automatically selected + - &Minimize to the tray instead of the taskbar - &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + Insufficient funds! + - M&inimize on close - M&inimitza en tancar + + + Quantity: + - &Display - &Pantalla + + Bytes: + - User Interface &language: - &Llengua de la interfície d'usuari: + + Amount: + - &Unit to show amounts in: - &Unitats per mostrar els imports en: + + Dust: + - Choose the default subdivision unit to show in the interface and when sending coins. - Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + Fee: + - Whether to show coin control features or not. - Si voleu mostrar les funcions de control de monedes o no. + + After Fee: + - &OK - &D'acord + + Change: + - &Cancel - &Cancel·la + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - default - Per defecte + + Custom change address + - none - cap + + Name: + - Confirm options reset - Confirmeu el reestabliment de les opcions + + A-Z 0-9 and . or _ as the second character + - Client restart required to activate changes. - Cal reiniciar el client per activar els canvis. + + The name of the asset you would like to create + - Client will be shut down. Do you want to proceed? - Es pararà el client. Voleu procedir? + + Check Availabilty + - This change would require a client restart. - Amb este canvi cal un reinici del client. + + Address: + - The supplied proxy address is invalid. - L'adreça proxy introduïda és invalida. + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - - - OverviewPage - Form - Formulari + + Verifier String: + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establit connexió, però este proces no s'ha completat encara. + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Watch-only: - Només lectura: + + Warning: + - Available: - Disponible: + + The number of assets that will be created + - Your current spendable balance - El balanç que podeu gastar actualment + + Units: + - Pending: - Pendent: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + e.g. 1 + - Immature: - Immadur: + + If the owner of this asset will be able to issue more assets in the future + - Mined balance that has not yet matured - Balanç minat que encara no ha madurat + + Reissuable + - Balances - Balances + + Does this asset have an ipfs hash to go with it + - Total: - Total: + + Add IPFS/Txid Hash + - Your current total balance - El balanç total actual + + The ipfs/txid hash that contains information about the asset + - Your current balance in watch-only addresses - El vostre balanç actual en adreces de només lectura + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Spendable: - Que es pot gastar: + + ERROR TEXT + - Recent transactions - Transaccions recents + + Transaction Fee: + - Unconfirmed transactions to watch-only addresses - Transaccions sense confirmar a adreces de només lectura + + Choose... + - Mined balance in watch-only addresses that has not yet matured - Balanç minat en adreces de només lectura que encara no ha madurat + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Current total balance in watch-only addresses - Balanç total actual en adreces de només lectura + + Warning: Fee estimation is currently not possible. + - - - PaymentServer - Payment request error - Error en la sol·licitud de pagament + + collapse fee-settings + - Cannot start raven: click-to-pay handler - No es pot iniciar raven: gestor clica-per-pagar + + Hide + - URI handling - Gestió d'URI + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Payment request fetch URL is invalid: %1 - L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + per kilobyte + - Invalid payment address %1 - Adreça de pagament no vàlida %1 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + (read the tooltip) + - Payment request file handling - Gestió de fitxers de les sol·licituds de pagament + + Recommended: + - Payment request file cannot be read! This can be caused by an invalid payment request file. - No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + C&ustom: + - Payment request rejected - La sol·licitud de pagament s'ha rebutjat + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Payment request network doesn't match client network. - La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + Confirmation time target: + - Payment request expired. - La sol·licitud de pagament ha vençut. + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Payment request is not initialized. - La sol·licitud de pagament no està inicialitzada. + + Request Replace-By-Fee + - Unverified payment requests to custom payment scripts are unsupported. - No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + Create Asset + - Invalid payment request. - Sol·licitud de pagament no vàlida. + + Clear + - Requested payment amount of %1 is too small (considered dust). - L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + Balance: + - Refund from %1 - Reemborsament de %1 + + 123.456 RVN + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - La sol·licitud de pagament %1 és massa gran (%2 bytes, permés %3 bytes). + + Copy quantity + - Error communicating with %1: %2 - Error en comunicar amb %1: %2 + + Copy amount + - Payment request cannot be parsed! - No es pot analitzar la sol·licitud de pagament! + + Copy fee + - Bad response from server %1 - Mala resposta del servidor %1 + + Copy after fee + - Network request error - Error en la sol·licitud de xarxa + + Copy bytes + - Payment acknowledged - Pagament reconegut + + Copy dust + - - - PeerTableModel - User Agent - Agent d'usuari + + Copy change + - Node/Service - Node/Servei + + %1 (%2 blocks) + - - - QObject - Amount - Import + + Main Asset + - Enter a Raven address (e.g. %1) - Introduïu una adreça de Raven (p. ex. %1) + + Sub Asset + - %1 d - %1 d + + Unique Asset + - %1 h - %1 h + + Messaging Channel Asset + - %1 m - %1 m + + Qualifier Asset + - %1 s - %1 s + + Sub Qualifier Asset + - None - Cap + + Restricted Asset + - N/A - N/A + + Asset Type + - %1 ms - %1 ms + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - %1 and %2 - %1 i %2 + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - - - QObject::QObject - - - QRImageWidget - &Save Image... - &Guarda la imatge... + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Copy Image - &Copia la imatge + + + + Warning: Invalid Raven address + - Save QR Code - Guarda el codi QR + + Warning: Restricted Assets Reissuance requires an address + - PNG Image (*.png) - Imatge PNG (*.png) + + Valid Asset + - - - RPCConsole - N/A - N/A + + Invalid: Asset name already in use + - Client version - Versió del client + + Error: Asset Database not in sync + - &Information - &Informació + + + %1 to %2 + - Debug window - Finestra de depuració + + Are you sure you want to send? + - General - General + + added as transaction fee + - Using BerkeleyDB version - Utilitzant BerkeleyDB versió + + Total Amount %1 + - Startup time - &Temps d'inici + + or + - Network - Xarxa + + Confirm send assets + - Name - Nom + + Invalid: + - Number of connections - Nombre de connexions + + Copy + - Block chain - Cadena de blocs + + Transaction ID Copied + - Current number of blocks - Nombre de blocs actuals + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Received - Rebut + + Warning: Unknown change address + - Sent - Enviat + + Confirm custom change address + - &Peers - &Iguals + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Select a peer to view detailed information. - Seleccioneu un igual per mostrar informació detallada. + + (no label) + - Direction - Direcció + + Pay only the required fee of %1 + + + + EditAddressDialog - Version - Versió + + Edit Address + Edita l'adreça - User Agent - Agent d'usuari + + &Label + &Etiqueta - Services - Serveis + + The label associated with this address list entry + L'etiqueta associada amb esta entrada de llista d'adreces - Ban Score - Puntuació de bandeig + + The address associated with this address list entry. This can only be modified for sending addresses. + L'adreça associada amb esta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. - Connection Time - Temps de connexió + + &Address + &Adreça - Last Send - Darrer enviament + + New receiving address + Nova adreça de recepció. - Last Receive - Darrera recepció + + New sending address + Nova adreça d'enviament - Ping Time - Temps de ping + + Edit receiving address + Edita les adreces de recepció - Time Offset - Diferència horària + + Edit sending address + Edita les adreces d'enviament - Last block time - Últim temps de bloc + + The entered address "%1" is not a valid Raven address. + L'adreça introduïda «%1» no és una adreça de Raven vàlida. - &Open - &Obri + + The entered address "%1" is already in the address book. + L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - &Console - &Consola + + Could not unlock wallet. + No s'ha pogut desbloquejar el moneder. - &Network Traffic - Trà&nsit de la xarxa + + New key generation failed. + Ha fallat la generació d'una nova clau. + + + FreespaceChecker - &Clear - Nete&ja + + A new data directory will be created. + Es crearà un nou directori de dades. - Totals - Totals + + name + nom - In: - Dins: + + Directory already exists. Add %1 if you intend to create a new directory here. + El directori ja existeix. Afig %1 si vols crear un nou directori en esta ubicació. - Out: - Fora: + + Path already exists, and is not a directory. + El camí ja existeix i no és cap directori. - Debug log file - Fitxer de registre de depuració + + Cannot create data directory here. + No es pot crear el directori de dades ací. + + + FreezeAddress - Clear console - Neteja la consola + + Frame + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Utilitza les fletxes d'amunt i avall per navegar per l'historial, i <b>Ctrl-L<\b> per netejar la pantalla. + + Restricted Asset: + - Type <b>help</b> for an overview of available commands. - Escriviu <b>help<\b> per a obtindre un llistat de les ordes disponibles. + + Address: + - %1 B - %1 B + + Custom Change Address + - %1 KB - %1 KB + + IPFS / Hash: + - %1 MB - %1 MB + + Single Address Options + - %1 GB - %1 GB + + Global Options + - via %1 - a través de %1 + + Free&ze trading on this address + - never - mai + + Unfreeze tradin&g on this address + - Inbound - Entrant + + Freeze all &trading for the selected restricted asset + - Outbound - Eixint + + &Unfreeze all trading for the selected restricted asset + - Yes - + + Check + - No - No + + Clear + - Unknown - Desconegut + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + - ReceiveCoinsDialog + GUIUtil::SyncWarningMessage - &Amount: - Im&port: + + Warning: transaction while syncing wallet! + - &Label: - &Etiqueta: + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - &Message: - &Missatge: + + version + versió - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + + (%1-bit) + (%1-bit) - R&euse an existing receiving address (not recommended) - R&eutilitza una adreça de recepció anterior (no recomanat) + + About %1 + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. + + Command-line options + Opcions de línia d'ordes - An optional label to associate with the new receiving address. - Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + Usage: + Ús: - Use this form to request payments. All fields are <b>optional</b>. - Utilitzeu este formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + command-line options + Opcions de la línia d'ordes - An optional amount to request. Leave this empty or zero to not request a specific amount. - Un import opcional per sol·licitar. Deixeu-ho en blanc o zero per no sol·licitar cap import específic. + + UI Options: + Opcions d'interfície: - Clear all fields of the form. - Netejar tots els camps del formulari. + + Choose data directory on startup (default: %u) + - Clear - Neteja + + Set language, for example "de_DE" (default: system locale) + Defineix un idioma, per exemple «de_DE» (per defecte: preferències locals de sistema) - Requested payments history - Historial de pagaments sol·licitats + + Start minimized + Inicia minimitzat - &Request payment - &Sol·licitud de pagament + + Set SSL root certificates for payment request (default: -system-) + Defineix certificats arrel SSL per a la sol·licitud de pagament (per defecte: -sistema-) - Show the selected request (does the same as double clicking an entry) - Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + Show splash screen on startup (default: %u) + - Show - Mostra + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Vos donem la benviguda - Remove the selected entries from the list - Esborra les entrades seleccionades de la llista + + Welcome to %1. + - Remove - Esborra + + As this is the first time the program is launched, you can choose where %1 will store its data. + - Copy label - Copiar etiqueta + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - Copy message - Copia el missatge + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - Copy amount - Copia l'import + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utilitza el directori de dades per defecte + + + + Use a custom data directory: + Utilitza un directori de dades personalitzat: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Error: el directori de dades «%1» especificat no pot ser creat. + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + - ReceiveRequestDialog + MnemonicDialog - QR Code - Codi QR + + HD Wallet Setup + + + + MnemonicDialog1 - Copy &URI - Copia l'&URI + + HD Wallet Setup + - Copy &Address - Copia l'&adreça + + Select the type of wallet to create. + - &Save Image... - &Guarda la imatge... + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Request payment to %1 - Sol·licita un pagament a %1 + + Please choose what you would like to do: + - Payment information - Informació de pagament + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - URI - URI + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Address - Adreça + + Accept + - Amount - Import + + You are choosing to create a new wallet using new seed words. + - Label - Etiqueta + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + - Message - Missatge + + BIP39 Compliant Seed Words: + - Resulting URI too long, try to reduce the text for label / message. - URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + Generate New Seed Words + - Error encoding URI into QR Code. - Error en codificar l'URI en un codi QR. + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + - RecentRequestsTableModel + MnemonicDialog3 - Date - Data + + Previous HD Wallet Re-creation + - Label - Etiqueta + + BIP39 Compliant Seed Words: + - Message - Missatge + + Enter the 12 seed words from your previous wallet here. + - (no label) - (sense etiqueta) + + Passphrase: + - (no message) - (sense missatge) + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + - SendCoinsDialog + ModalOverlay - Send Coins - Envia monedes + + Form + Formulari - Coin Control Features - Característiques de control de les monedes + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - Inputs... - Entrades... + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - automatically selected - seleccionat automàticament + + Number of blocks left + - Insufficient funds! - Fons insuficients! + + + + Unknown... + - Quantity: - Quantitat: + + Last block time + Últim temps de bloc - Bytes: - Bytes: + + Progress + - Amount: - Import: + + Progress increase per hour + - Fee: - Comissió + + + calculating... + - After Fee: - Comissió posterior: + + Estimated time left until synced + - Change: - Canvi: + + Hide + Amaga - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + - Custom change address - Personalitza l'adreça de canvi + + Type + - Transaction Fee: - Comissió de transacció + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + - Choose... - Tria... + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Obri un URI + + + + Open payment request from URI or file + Obri una sol·licitud de pagament des d'un URI o un fitxer + + + + URI: + URI: + + + + Select payment request file + Selecciona un fitxer de sol·licitud de pagament + + + + Select payment request file to open + Selecciona el fitxer de sol·licitud de pagament per obrir + + + + OptionsDialog + + + Options + Opcions + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Mida de la memòria cau de la base de &dades + + + + MB + MB + + + + Number of script &verification threads + Nombre de fils de &verificació d'scripts + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimitza en comptes d'eixir de l'aplicació quan la finestra es tanca. Quan s'habilita esta opció l'aplicació es tancara només quan se selecciona Ix del menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + + + Active command-line options that override above options: + Opcions de línies d'orde active que sobreescriuen les opcions de dalt: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reestableix totes les opcions del client. + + + + &Reset Options + &Reestableix les opcions + + + + &Network + &Xarxa + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = deixa tants nuclis lliures) + + + + W&allet + &Moneder + + + + Expert + Expert + + + + Enable coin &control features + Activa les funcions de &control de les monedes + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tinga com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + + + &Spend unconfirmed change + &Gasta el canvi sense confirmar + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Obri el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + + + Map port using &UPnP + Port obert amb &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + + + + Proxy &IP: + &IP del proxy: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port del proxy (per exemple 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Finestra + + + + Show only a tray icon after minimizing the window. + Mostra només la icona de la barra en minimitzar la finestra. + + + + &Minimize to the tray instead of the taskbar + &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + + + M&inimize on close + M&inimitza en tancar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Pantalla + + + + User Interface &language: + &Llengua de la interfície d'usuari: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unitats per mostrar els imports en: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + + + Whether to show coin control features or not. + Si voleu mostrar les funcions de control de monedes o no. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &D'acord + + + + &Cancel + &Cancel·la + + + + default + Per defecte + + + + none + cap + + + + Confirm options reset + Confirmeu el reestabliment de les opcions + + + + + Client restart required to activate changes. + Cal reiniciar el client per activar els canvis. + + + + Client will be shut down. Do you want to proceed? + Es pararà el client. Voleu procedir? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Amb este canvi cal un reinici del client. + + + + The supplied proxy address is invalid. + L'adreça proxy introduïda és invalida. + + + + OverviewPage + + + Form + Formulari + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establit connexió, però este proces no s'ha completat encara. + + + + Watch-only: + Només lectura: + + + + Available: + Disponible: + + + + Your current spendable balance + El balanç que podeu gastar actualment + + + + Pending: + Pendent: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + + + Immature: + Immadur: + + + + Mined balance that has not yet matured + Balanç minat que encara no ha madurat + + + + Total: + Total: + + + + Your current total balance + El balanç total actual + + + + RVN Balances + + + + + Your current balance in watch-only addresses + El vostre balanç actual en adreces de només lectura + + + + Spendable: + Que es pot gastar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transaccions recents + + + + Unconfirmed transactions to watch-only addresses + Transaccions sense confirmar a adreces de només lectura + + + + Mined balance in watch-only addresses that has not yet matured + Balanç minat en adreces de només lectura que encara no ha madurat + + + + Current total balance in watch-only addresses + Balanç total actual en adreces de només lectura + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Error en la sol·licitud de pagament + + + + Cannot start raven: click-to-pay handler + No es pot iniciar raven: gestor clica-per-pagar + + + + + + URI handling + Gestió d'URI + + + + Payment request fetch URL is invalid: %1 + L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + + + Invalid payment address %1 + Adreça de pagament no vàlida %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + + + Payment request file handling + Gestió de fitxers de les sol·licituds de pagament + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + + + + + + + + Payment request rejected + La sol·licitud de pagament s'ha rebutjat + + + + Payment request network doesn't match client network. + La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Payment request is not initialized. + La sol·licitud de pagament no està inicialitzada. + + + + Unverified payment requests to custom payment scripts are unsupported. + No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + + + + Invalid payment request. + Sol·licitud de pagament no vàlida. + + + + Requested payment amount of %1 is too small (considered dust). + L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + + + Refund from %1 + Reemborsament de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permés %3 bytes). + + + + Error communicating with %1: %2 + Error en comunicar amb %1: %2 + + + + Payment request cannot be parsed! + No es pot analitzar la sol·licitud de pagament! + + + + Bad response from server %1 + Mala resposta del servidor %1 + + + + Network request error + Error en la sol·licitud de xarxa + + + + Payment acknowledged + Pagament reconegut + + + + PeerTableModel + + + User Agent + Agent d'usuari + + + + Node/Service + Node/Servei + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Import + + + + Enter a Raven address (e.g. %1) + Introduïu una adreça de Raven (p. ex. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Cap + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &Guarda la imatge... + + + + &Copy Image + &Copia la imatge + + + + Save QR Code + Guarda el codi QR + + + + PNG Image (*.png) + Imatge PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versió del client + + + + &Information + &Informació + + + + Debug window + Finestra de depuració + + + + General + General + + + + Using BerkeleyDB version + Utilitzant BerkeleyDB versió + + + + Datadir + + + + + Startup time + &Temps d'inici + + + + Network + Xarxa + + + + Name + Nom + + + + Number of connections + Nombre de connexions + + + + Block chain + Cadena de blocs + + + + Current number of blocks + Nombre de blocs actuals + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Rebut + + + + + Sent + Enviat + + + + &Peers + &Iguals + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Seleccioneu un igual per mostrar informació detallada. + + + + Whitelisted + + + + + Direction + Direcció + + + + Version + Versió + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent d'usuari + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Serveis + + + + Ban Score + Puntuació de bandeig + + + + Connection Time + Temps de connexió + + + + Last Send + Darrer enviament + + + + Last Receive + Darrera recepció + + + + Ping Time + Temps de ping + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + Diferència horària + + + + Last block time + Últim temps de bloc + + + + &Open + &Obri + + + + &Console + &Consola + + + + &Network Traffic + Trà&nsit de la xarxa + + + + Totals + Totals + + + + In: + Dins: + + + + Out: + Fora: + + + + Debug log file + Fitxer de registre de depuració + + + + Clear console + Neteja la consola + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Escriviu <b>help<\b> per a obtindre un llistat de les ordes disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + a través de %1 + + + + + never + mai + + + + Inbound + Entrant + + + + Outbound + Eixint + + + + Yes + + + + + No + No + + + + + Unknown + Desconegut + + + + RavenGUI + + + Sign &message... + Signa el &missatge... + + + + Synchronizing with network... + S'està sincronitzant amb la xarxa ... + + + + &Overview + &Panorama general + + + + Node + Node + + + + Show general overview of wallet + Mostra el panorama general del moneder + + + + &Transactions + &Transaccions + + + + Browse transaction history + Cerca a l'historial de transaccions + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + I&x + + + + Quit application + Ix de l'aplicació + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Quant a &Qt + + + + Show information about Qt + Mostra informació sobre Qt + + + + &Options... + &Opcions... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Encripta el moneder... + + + + &Backup Wallet... + &Realitza una còpia de seguretat del moneder... + + + + &Change Passphrase... + &Canvia la contrasenya... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adreces d'e&nviament... + + + + &Receiving addresses... + Adreces de &recepció + + + + Open &URI... + Obri un &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + S'estan reindexant els blocs al disc... + + + + Send coins to a Raven address + Envia monedes a una adreça Raven + + + + Backup wallet to another location + Realitza una còpia de seguretat del moneder a una altra ubicació + + + + Change the passphrase used for wallet encryption + Canvia la contrasenya d'encriptació del moneder + + + + Open debugging and diagnostic console + Obri la consola de diagnòstic i depuració + + + + &Verify message... + &Verifica el missatge... + + + + Raven + Raven + + + + Wallet + Moneder + + + + &Send + &Envia + + + + &Receive + &Rep + + + + &Show / Hide + &Mostra / Amaga + + + + Show or hide the main Window + Mostra o amaga la finestra principal + + + + Encrypt the private keys that belong to your wallet + Encripta les claus privades pertanyents al moneder + + + + Sign messages with your Raven addresses to prove you own them + Signa el missatges amb la seua adreça de Raven per provar que les poseeixes + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + + + &File + &Fitxer + + + + &Help + &Ajuda + + + + Request payments (generates QR codes and raven: URIs) + Sol·licita pagaments (genera codis QR i raven: URI) + + + + Show the list of used sending addresses and labels + Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + + + Show the list of used receiving addresses and labels + Mostra la llista d'adreces de recepció i etiquetes utilitzades + + + + Open a raven: URI or payment request + Obri una raven: sol·licitud d'URI o pagament + + + + &Command-line options + Opcions de la &línia d'ordes + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 darrere + + + + Last received block was generated %1 ago. + El darrer bloc rebut ha estat generat fa %1. + + + + Transactions after this will not yet be visible. + Les transaccions a partir d'això no seran visibles. + + + + Error + Error + + + + Warning + Avís + + + + Information + Informació + + + + Up to date + Al dia + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + S'està posant al dia ... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Import: %1 + + + + + Type: %1 + + Tipus: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Adreça: %1 + + + + + Sent transaction + Transacció enviada + + + + Incoming transaction + Transacció entrant + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Im&port: + + + + &Label: + &Etiqueta: + + + + &Message: + &Missatge: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + + + R&euse an existing receiving address (not recommended) + R&eutilitza una adreça de recepció anterior (no recomanat) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'òbriga la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. + + + + + An optional label to associate with the new receiving address. + Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilitzeu este formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Un import opcional per sol·licitar. Deixeu-ho en blanc o zero per no sol·licitar cap import específic. + + + + Clear all fields of the form. + Netejar tots els camps del formulari. + + + + Clear + Neteja + + + + Requested payments history + Historial de pagaments sol·licitats + + + + &Request payment + &Sol·licitud de pagament + + + + Show the selected request (does the same as double clicking an entry) + Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + + + Show + Mostra + + + + Remove the selected entries from the list + Esborra les entrades seleccionades de la llista + + + + Remove + Esborra + + + + Copy URI + + + + + Copy label + Copiar etiqueta + + + + Copy message + Copia el missatge + + + + Copy amount + Copia l'import + + + + ReceiveRequestDialog + + + QR Code + Codi QR + + + + Copy &URI + Copia l'&URI + + + + Copy &Address + Copia l'&adreça + + + + &Save Image... + &Guarda la imatge... + + + + Request payment to %1 + Sol·licita un pagament a %1 + + + + Payment information + Informació de pagament + + + + URI + URI + + + + Address + Adreça + + + + Amount + Import + + + + Label + Etiqueta + + + + Message + Missatge + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + + + Error encoding URI into QR Code. + Error en codificar l'URI en un codi QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etiqueta + + + + Message + Missatge + + + + (no label) + (sense etiqueta) + + + + (no message) + (sense missatge) + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Envia monedes + + + + Coin Control Features + Característiques de control de les monedes + + + + Inputs... + Entrades... + + + + automatically selected + seleccionat automàticament + + + + Insufficient funds! + Fons insuficients! + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Import: + + + + Fee: + Comissió + + + + After Fee: + Comissió posterior: + + + + Change: + Canvi: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + + + Custom change address + Personalitza l'adreça de canvi + + + + Transaction Fee: + Comissió de transacció + + + + Choose... + Tria... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + redueix els paràmetres de comissió + + + + per kilobyte + per kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + + Hide + Amaga + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi haja menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirme una vegada hi haja més demanda de transaccions de ravens que la xarxa puga processar. + + + + (read the tooltip) + (llegiu l'indicador de funció) + + + + Recommended: + Recomanada: + + + + Custom: + Personalitzada: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Envia a múltiples destinataris al mateix temps + + + + Add &Recipient + Afig &destinatari + + + + Clear all fields of the form. + Netejar tots els camps del formulari. + + + + Dust: + Polsim: + + + + Confirmation time target: + + + + + Clear &All + Neteja-ho &tot + + + + Balance: + Balanç: + + + + Confirm the send action + Confirma l'acció d'enviament + + + + S&end + E&nvia + + + + Copy quantity + Copia la quantitat + + + + Copy amount + Copia l'import + + + + Copy fee + Copia la comissió + + + + Copy after fee + Copia la comissió posterior + + + + Copy bytes + Copia els bytes + + + + Copy dust + Copia el polsim + + + + Copy change + Copia el canvi + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 a %2 + + + + Are you sure you want to send? + Esteu segur que ho voleu enviar? + + + + added as transaction fee + S'ha afegit una taxa de transacció + + + + Total Amount %1 + + + + + or + o + + + + Confirm send coins + Confirma l'enviament de monedes + + + + The recipient address is not valid. Please recheck. + L'adreça de destinatari no és vàlida. Torneu-la a comprovar. + + + + The amount to pay must be larger than 0. + L'import a pagar ha de ser major que 0. + + + + The amount exceeds your balance. + L'import supera el vostre balanç. + + + + The total exceeds your balance when the %1 transaction fee is included. + El total excedeix el teu balanç quan s'afig la comissió a la transacció %1. + + + + Duplicate address found: addresses should only be used once each. + S'ha trobat una adreça duplicada: cal utilitzar les adreces només un cop cada vegada. + + + + Transaction creation failed! + Ha fallat la creació de la transacció! + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + Una comissió superior a %1 es considera una comissió absurdament alta. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Avís: adreça Raven no vàlida + + + + Warning: Unknown change address + Avís: adreça de canvi desconeguda + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (sense etiqueta) + + + + SendCoinsEntry + + + + + A&mount: + Q&uantitat: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + Tria les adreces fetes servir amb anterioritat + + + + This is a normal payment. + Això és un pagament normal. + + + + The Raven address to send the payment to + L'adreça Raven on enviar el pagament + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Apega l'adreça del porta-retalls + + + + Alt+P + Alt+P + + + + + + Remove this entry + Elimina esta entrada + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + + + S&ubtract fee from amount + S&ubstreu la comissió de l'import + + + + Message: + Missatge: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Esta és una sol·licitud de pagament no autenticada. + + + + + Send to: + + + + + This is an authenticated payment request. + Esta és una sol·licitud de pagament autenticada. + + + + Enter a label for this address to add it to the list of used addresses + Introduïu una etiqueta per a esta adreça per afegir-la a la llista d'adreces utilitzades + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + Introduïu una etiqueta per a esta adreça per afegir-la a la llibreta d'adreces + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + No apagueu l'ordinador fins que no desaparegui esta finestra. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatures - Signa / verifica un missatge + + + + &Sign Message + &Signa el missatge + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que siga vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + + + The Raven address to sign the message with + L'adreça Raven amb què signar el missatge + + + + + Choose previously used address + Tria les adreces fetes servir amb anterioritat + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Apega l'adreça del porta-retalls + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduïu ací el missatge que voleu signar + + + + Signature + Signatura + + + + Copy the current signature to the system clipboard + Copia la signatura actual al porta-retalls del sistema + + + + Sign the message to prove you own this Raven address + Signa el missatge per provar que ets propietari d'esta adreça Raven + + + + Sign &Message + Signa el &missatge + + + + Reset all sign message fields + Neteja tots els camps de clau + + + + + Clear &All + Neteja-ho &tot + + + + &Verify Message + &Verifica el missatge + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + + + The Raven address the message was signed with + L'adreça Raven amb què va ser signat el missatge + + + + Verify the message to ensure it was signed with the specified Raven address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + + + Verify &Message + Verifica el &missatge + + + + Reset all verify message fields + Neteja tots els camps de verificació de missatge + + + + Click "Sign Message" to generate signature + Feu clic a «Signa el missatge» per a generar una signatura + + + + + The entered address is invalid. + L'adreça introduïda no és vàlida. + + + + + + + Please check the address and try again. + Comproveu l'adreça i torneu-ho a provar. + + + + + The entered address does not refer to a key. + L'adreça introduïda no referencia a cap clau. + + + + Wallet unlock was cancelled. + El desbloqueig del moneder ha estat cancelat. + + + + Private key for the entered address is not available. + La clau privada per a la adreça introduïda no està disponible. + + + + Message signing failed. + La signatura del missatge ha fallat. + + + + Message signed. + Missatge signat. + + + + The signature could not be decoded. + La signatura no s'ha pogut descodificar. + + + + + Please check the signature and try again. + Comproveu la signatura i torneu-ho a provar. + + + + The signature did not match the message digest. + La signatura no coincideix amb el resum del missatge. + + + + Message verification failed. + Ha fallat la verificació del missatge. + + + + Message verified. + Missatge verificat. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/fora de línia + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/sense confirmar + + + + %1 confirmations + %1 confirmacions + + + + + Status + Estat + + + + + , has not been successfully broadcast yet + , encara no ha estat emés correctement + + + + + , broadcast through %n node(s) + + + + + + Date + Data + + + + Source + Font + + + + Generated + Generat + + + + + + + + From + Des de + + + + + unknown + desconegut + + + + + + + + To + A + + + + + own address + Adreça pròpia + + + + + + watch-only + només lectura + + + + + label + etiqueta + + + + + + + + + + Credit + Crèdit + + + + matures in %n more block(s) + + + + + not accepted + no acceptat + + + + + + + + Debit + Dèbit + + + + Total debit + Dèbit total + + + + Total credit + Crèdit total + + + + Transaction fee + Comissió de transacció + + + + Net amount + Import net + + + + + + + Message + Missatge + + + + + Comment + Comentar + + + + + Transaction ID + ID de transacció + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + Mercader + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu este bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + + + Net RVN amount + + + + + Debug information + Informació de depuració + + + + Transaction + Transacció + + + + Inputs + Entrades + + + + Amount + Import + + + + + true + cert + + + + + false + fals + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Este panell mostra una descripció detallada de la transacció + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipus + + + + Label + Etiqueta + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + Offline + Fora de línia + + + + Unconfirmed + Sense confirmar + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + Confirmant (%1 de %2 confirmacions recomanades) + + + + Confirmed (%1 confirmations) + Confirmat (%1 confirmacions) + + + + Conflicted + En conflicte + + + + Immature (%1 confirmations, will be available after %2) + Immadur (%1 confirmacions, serà disponible després de %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Este bloc no ha estat rebut per cap altre node i probablement no serà acceptat! + + + + Generated but not accepted + Generat però no acceptat + + + + Received with + Rebut amb + + + + Received from + Rebut de + + + + Sent to + Enviat a + + + + Payment to yourself + Pagament a un mateix + + + + Mined + Minat + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + només lectura + + + + (n/a) + (n/a) + + + + (no label) + (sense etiqueta) + + + + Transaction status. Hover over this field to show number of confirmations. + Estat de la transacció. Desplaceu-vos sobre este camp per mostrar el nombre de confirmacions. + + + + Date and time that the transaction was received. + Data i hora en que la transacció va ser rebuda. + + + + Type of transaction. + Tipus de transacció. + + + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. + + + + User-defined intent/purpose of the transaction. + Intenció/propòsit de la transacció definida per l'usuari. + + + + Amount removed from or added to balance. + Import extret o afegit del balanç. + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Tot + + + + Today + Hui + + + + This week + Esta setmana + + + + This month + Este mes + + + + Last month + El mes passat + + + + This year + Enguany + + + + Range... + Rang... + + + + Received with + Rebut amb + + + + Sent to + Enviat a + + + + To yourself + A un mateix + + + + Mined + Minat + + + + Other + Altres + + + + Enter address or label to search + Introduïu una adreça o una etiqueta per cercar + + + + Min amount + Import mínim + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Copiar adreça + + + + Copy label + Copiar etiqueta + + + + Copy amount + Copia l'import + + + + Copy transaction ID + Copiar ID de transacció + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + Editar etiqueta + + + + Show transaction details + Mostra detalls de la transacció + + + + Browse with: + + + + + Export Transaction History + Exporta l'historial de transacció + + + + Comma separated file (*.csv) + Fitxer de separació amb comes (*.csv) + + + + Confirmed + Confirmat + + + + Watch-only + Només de lectura + + + + Date + Data + + + + Type + Tipus + + + + Label + Etiqueta + + + + Address + Adreça + + + + Asset + + + + + ID + ID + + + + Exporting Failed + L'exportació ha fallat + + + + There was an error trying to save the transaction history to %1. + S'ha produït un error en provar de guardar l'historial de transacció a %1. + + + + Exporting Successful + Exportació amb èxit + + + + The transaction history was successfully saved to %1. + L'historial de transaccions s'ha guardat correctament a %1. + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + Rang: + + + + to + a + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + + + WalletFrame + + + No wallet has been loaded. + No s'ha carregat cap moneder. + + + WalletModel - collapse fee-settings - redueix els paràmetres de comissió + + Send Coins + Envia monedes - per kilobyte - per kilobyte + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + Error: Wallet locked + - Hide - Amaga + + Words: + - total at least - total com a mínim + + Passphrase: + + + + WalletView - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - No hi ha cap problema en pagar només la comissió mínima sempre que hi haja menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirme una vegada hi haja més demanda de transaccions de ravens que la xarxa puga processar. + + &Export + &Exporta - (read the tooltip) - (llegiu l'indicador de funció) + + Export the data in the current tab to a file + Exporta les dades de la pestanya actual a un fitxer - Recommended: - Recomanada: + + Backup Wallet + Còpia de seguretat del moneder - Custom: - Personalitzada: + + Wallet Data (*.dat) + Dades del moneder (*.dat) - (Smart fee not initialized yet. This usually takes a few blocks...) - (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + Backup Failed + Ha fallat la còpia de seguretat - normal - normal + + There was an error trying to save the wallet data to %1. + S'ha produït un error en provar de guardar les dades del moneder a %1. - fast - ràpid + + Backup Successful + La còpia de seguretat s'ha realitzat correctament - Send to multiple recipients at once - Envia a múltiples destinataris al mateix temps + + The wallet data was successfully saved to %1. + S'han guardat les dades del moneder correctament a %1. - Add &Recipient - Afig &destinatari + + Recovery information + - Clear all fields of the form. - Netejar tots els camps del formulari. + + No words available. + - Dust: - Polsim: + + This wallet is not a HD wallet, words not supported. + + + + raven-core - Clear &All - Neteja-ho &tot + + Options: + Opcions: - Balance: - Balanç: + + Specify data directory + Especifica el directori de dades - Confirm the send action - Confirma l'acció d'enviament + + Connect to a node to retrieve peer addresses, and disconnect + Connecta al node per obtindre les adreces de les connexions, i desconnecta - S&end - E&nvia + + Specify your own public address + Especifiqueu la vostra adreça pública - Copy quantity - Copia la quantitat + + Accept command line and JSON-RPC commands + Accepta la línia d'ordes i ordes JSON-RPC - Copy amount - Copia l'import + + Distributed under the MIT software license, see the accompanying file %s or %s + - Copy fee - Copia la comissió + + If <category> is not supplied or if <category> = 1, output all debugging information. + - Copy after fee - Copia la comissió posterior + + Prune configured below the minimum of %d MiB. Please use a higher number. + - Copy bytes - Copia els bytes + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - Copy dust - Copia el polsim + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - Copy change - Copia el canvi + + Error: A fatal internal error occurred, see debug.log for details + Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls - %1 to %2 - %1 a %2 + + Fee (in %s/kB) to add to transactions you send (default: %s) + - Are you sure you want to send? - Esteu segur que ho voleu enviar? + + Pruning blockstore... + S'està podant l'emmagatzemament de blocs... - added as transaction fee - S'ha afegit una taxa de transacció + + Run in the background as a daemon and accept commands + Executa en segon pla com a programa dimoni i accepta ordes - or - o + + Unable to start HTTP server. See debug log for details. + - Confirm send coins - Confirma l'enviament de monedes + + Raven Core + Raven Core - The recipient address is not valid. Please recheck. - L'adreça de destinatari no és vàlida. Torneu-la a comprovar. + + The %s developers + - The amount to pay must be larger than 0. - L'import a pagar ha de ser major que 0. + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - The amount exceeds your balance. - L'import supera el vostre balanç. + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - The total exceeds your balance when the %1 transaction fee is included. - El total excedeix el teu balanç quan s'afig la comissió a la transacció %1. + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - Duplicate address found: addresses should only be used once each. - S'ha trobat una adreça duplicada: cal utilitzar les adreces només un cop cada vegada. + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 - Transaction creation failed! - Ha fallat la creació de la transacció! + + Cannot obtain a lock on data directory %s. %s is probably already running. + - A fee higher than %1 is considered an absurdly high fee. - Una comissió superior a %1 es considera una comissió absurdament alta. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Payment request expired. - La sol·licitud de pagament ha vençut. + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Warning: Invalid Raven address - Avís: adreça Raven no vàlida + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Warning: Unknown change address - Avís: adreça de canvi desconeguda + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - (no label) - (sense etiqueta) + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - - SendCoinsEntry - A&mount: - Q&uantitat: + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Pay &To: - Paga &a: + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Executa una orde quan una transacció del moneder canvie (%s en cmd es canvia per TxID) - &Label: - &Etiqueta: + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Choose previously used address - Tria les adreces fetes servir amb anterioritat + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - This is a normal payment. - Això és un pagament normal. + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - The Raven address to send the payment to - L'adreça Raven on enviar el pagament + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Alt+A - Alt+A + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - Paste address from clipboard - Apega l'adreça del porta-retalls + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Alt+P - Alt+P + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Remove this entry - Elimina esta entrada + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - S&ubtract fee from amount - S&ubstreu la comissió de l'import + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) - Message: - Missatge: + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - This is an unauthenticated payment request. - Esta és una sol·licitud de pagament no autenticada. + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - This is an authenticated payment request. - Esta és una sol·licitud de pagament autenticada. + + This is the transaction fee you may discard if change is smaller than dust at this level + - Enter a label for this address to add it to the list of used addresses - Introduïu una etiqueta per a esta adreça per afegir-la a la llista d'adreces utilitzades + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Pay To: - Paga a: + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Memo: - Memo: + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Enter a label for this address to add it to your address book - Introduïu una etiqueta per a esta adreça per afegir-la a la llibreta d'adreces + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - - - SendConfirmationDialog - Yes - + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - - - ShutdownWindow - Do not shut down the computer until this window disappears. - No apagueu l'ordinador fins que no desaparegui esta finestra. + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signatures - Signa / verifica un missatge + + Whether to save the mempool on shutdown and load on restart (default: %u) + - &Sign Message - &Signa el missatge + + %d of last 100 blocks have unexpected version + - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que siga vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + %s corrupt, salvage failed + - The Raven address to sign the message with - L'adreça Raven amb què signar el missatge + + -maxmempool must be at least %d MB + - Choose previously used address - Tria les adreces fetes servir amb anterioritat + + <category> can be: + <category> pot ser: - Alt+A - Alt+A + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Paste address from clipboard - Apega l'adreça del porta-retalls + + Append comment to the user agent string + - Alt+P - Alt+P + + Attempt to recover private keys from a corrupt wallet on startup + - Enter the message you want to sign here - Introduïu ací el missatge que voleu signar + + Block creation options: + Opcions de la creació de blocs: - Signature - Signatura + + Cannot resolve -%s address: '%s' + - Copy the current signature to the system clipboard - Copia la signatura actual al porta-retalls del sistema + + Chain selection options: + - Sign the message to prove you own this Raven address - Signa el missatge per provar que ets propietari d'esta adreça Raven + + Change index out of range + - Sign &Message - Signa el &missatge + + Connection options: + Opcions de connexió: - Reset all sign message fields - Neteja tots els camps de clau + + Copyright (C) %i-%i + - Clear &All - Neteja-ho &tot + + Corrupted block database detected + S'ha detectat una base de dades de blocs corrupta - &Verify Message - &Verifica el missatge + + Debugging/Testing options: + Opcions de depuració/proves: - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + Do not load the wallet and disable wallet RPC calls + No carreguis el moneder i inhabilita les crides RPC del moneder - The Raven address the message was signed with - L'adreça Raven amb què va ser signat el missatge + + Do you want to rebuild the block database now? + Voleu reconstruir la base de dades de blocs ara? - Verify the message to ensure it was signed with the specified Raven address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + Enable publish hash block in <address> + - Verify &Message - Verifica el &missatge + + Enable publish hash transaction in <address> + - Reset all verify message fields - Neteja tots els camps de verificació de missatge + + Enable publish raw block in <address> + - Click "Sign Message" to generate signature - Feu clic a «Signa el missatge» per a generar una signatura + + Enable publish raw transaction in <address> + - The entered address is invalid. - L'adreça introduïda no és vàlida. + + Enable transaction replacement in the memory pool (default: %u) + - Please check the address and try again. - Comproveu l'adreça i torneu-ho a provar. + + Error initializing block database + Error carregant la base de dades de blocs - The entered address does not refer to a key. - L'adreça introduïda no referencia a cap clau. + + Error initializing wallet database environment %s! + Error inicialitzant l'entorn de la base de dades del moneder %s! - Wallet unlock was cancelled. - El desbloqueig del moneder ha estat cancelat. + + Error loading %s + - Private key for the entered address is not available. - La clau privada per a la adreça introduïda no està disponible. + + Error loading %s: Wallet corrupted + - Message signing failed. - La signatura del missatge ha fallat. + + Error loading %s: Wallet requires newer version of %s + - Message signed. - Missatge signat. + + Error loading block database + Error carregant la base de dades del bloc - The signature could not be decoded. - La signatura no s'ha pogut descodificar. + + Error opening block database + Error en obrir la base de dades de blocs - Please check the signature and try again. - Comproveu la signatura i torneu-ho a provar. + + Error: Disk space is low! + Error: Espai al disc baix! - The signature did not match the message digest. - La signatura no coincideix amb el resum del missatge. + + Failed to listen on any port. Use -listen=0 if you want this. + Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. - Message verification failed. - Ha fallat la verificació del missatge. + + Importing... + S'està important... - Message verified. - Missatge verificat. + + Incorrect or no genesis block found. Wrong datadir for network? + No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? - - - SplashScreen - [testnet] - [testnet] + + Initialization sanity check failed. %s is shutting down. + - - - TrafficGraphWidget - KB/s - KB/s + + Invalid amount for -%s=<amount>: '%s' + - - - TransactionDesc - Open until %1 - Obert fins %1 + + Invalid amount for -discardfee=<amount>: '%s' + - %1/offline - %1/fora de línia + + Invalid amount for -fallbackfee=<amount>: '%s' + - %1/unconfirmed - %1/sense confirmar + + Keep the transaction memory pool below <n> megabytes (default: %u) + - %1 confirmations - %1 confirmacions + + Loading P2P addresses... + - Status - Estat + + Loading banlist... + - , has not been successfully broadcast yet - , encara no ha estat emés correctement + + Location of the auth cookie (default: data dir) + - Date - Data + + Not enough file descriptors available. + No hi ha suficient descriptors de fitxers disponibles. - Source - Font + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) - Generated - Generat + + Print this help message and exit + - From - Des de + + Print version and exit + - unknown - desconegut + + Prune cannot be configured with a negative value. + La poda no es pot configurar amb un valor negatiu. - To - A + + Prune mode is incompatible with -txindex. + El mode de poda és incompatible amb -txindex. - own address - Adreça pròpia + + Rebuild chain state and block index from the blk*.dat files on disk + - watch-only - només lectura + + Rebuild chain state from the currently indexed blocks + - label - etiqueta + + Replaying blocks... + - Credit - Crèdit + + Rewinding blocks... + - not accepted - no acceptat + + Set database cache size in megabytes (%d to %d, default: %d) + Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) - Debit - Dèbit + + Specify wallet file (within data directory) + Especifica un fitxer de moneder (dins del directori de dades) - Total debit - Dèbit total + + The source code is available from %s. + - Total credit - Crèdit total + + Transaction fee and change calculation failed + - Transaction fee - Comissió de transacció + + Unable to bind to %s on this computer. %s is probably already running. + - Net amount - Import net + + Unsupported argument -benchmark ignored, use -debug=bench. + - Message - Missatge + + Unsupported argument -debugnet ignored, use -debug=net. + - Comment - Comentar + + Unsupported argument -tor found, use -onion. + - Transaction ID - ID de transacció + + Unsupported logging category %s=%s. + - Merchant - Mercader + + Upgrading UTXO database + - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu este bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) - Debug information - Informació de depuració + + Use the test chain + - Transaction - Transacció + + User Agent comment (%s) contains unsafe characters. + - Inputs - Entrades + + Verifying blocks... + S'estan verificant els blocs... - Amount - Import + + Wallet %s resides outside data directory %s + El moneder %s resideix fora del directori de dades %s - true - cert + + Wallet debugging/testing options: + - false - fals + + Wallet needed to be rewritten: restart %s to complete + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Este panell mostra una descripció detallada de la transacció + + Wallet options: + Opcions de moneder: - - - TransactionTableModel - Date - Data + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar esta opció moltes vegades - Type - Tipus + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connecten. Feu servir la notació [host]:port per a IPv6 - Label - Etiqueta + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) - Open until %1 - Obert fins %1 + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) - Offline - Fora de línia + + Error: Listening for incoming connections failed (listen returned error %s) + Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) - Unconfirmed - Sense confirmar + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Executa l'orde quan es reba un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - Confirming (%1 of %2 recommended confirmations) - Confirmant (%1 de %2 confirmacions recomanades) + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Confirmed (%1 confirmations) - Confirmat (%1 confirmacions) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencen a confirmar-se en una mitja de n blocs (per defecte: %u) - Conflicted - En conflicte + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que siga com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) - Immature (%1 confirmations, will be available after %2) - Immadur (%1 confirmacions, serà disponible després de %2) + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meues (per defecte: %u) - This block was not received by any other nodes and will probably not be accepted! - Este bloc no ha estat rebut per cap altre node i probablement no serà acceptat! + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) - Generated but not accepted - Generat però no acceptat + + The transaction amount is too small to send after the fee has been deducted + L'import de la transacció és massa petit per enviar-la després que se'n deduïsca la comissió - Received with - Rebut amb + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la - Received from - Rebut de + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera - Sent to - Enviat a + + (default: %u) + (per defecte: %u) - Payment to yourself - Pagament a un mateix + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) - Mined - Minat + + Automatically create Tor hidden service (default: %d) + - watch-only - només lectura + + Connect through SOCKS5 proxy + Connecta a través del proxy SOCKS5 - (n/a) - (n/a) + + Error loading %s: You can't disable HD on an already existing HD wallet + - (no label) - (sense etiqueta) + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. - Transaction status. Hover over this field to show number of confirmations. - Estat de la transacció. Desplaceu-vos sobre este camp per mostrar el nombre de confirmacions. + + Error upgrading chainstate database + - Date and time that the transaction was received. - Data i hora en que la transacció va ser rebuda. + + Imports blocks from external blk000??.dat file on startup + - Type of transaction. - Tipus de transacció. + + Information + Informació - Whether or not a watch-only address is involved in this transaction. - Si està implicada o no una adreça només de lectura en la transacció. + + Invalid -onion address or hostname: '%s' + - User-defined intent/purpose of the transaction. - Intenció/propòsit de la transacció definida per l'usuari. + + Invalid -proxy address or hostname: '%s' + - Amount removed from or added to balance. - Import extret o afegit del balanç. + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) - - - TransactionView - All - Tot + + Invalid netmask specified in -whitelist: '%s' + S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Today - Hui + + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) - This week - Esta setmana + + Need to specify a port with -whitebind: '%s' + Cal especificar un port amb -whitebind: «%s» - This month - Este mes + + Node relay options: + Opcions de transmissió del node: - Last month - El mes passat + + RPC server options: + Opcions del servidor RPC: - This year - Enguany + + Reducing -maxconnections from %d to %d, because of system limitations. + - Range... - Rang... + + Rescan the block chain for missing wallet transactions on startup + - Received with - Rebut amb + + Send trace/debug info to console instead of debug.log file + Envia informació de traça/depuració a la consola en comptes del fitxer debug.log - Sent to - Enviat a + + Show all debugging options (usage: --help -help-debug) + Mostra totes les opcions de depuració (ús: --help --help-debug) - To yourself - A un mateix + + Shrink debug.log file on client startup (default: 1 when no -debug) + Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) - Mined - Minat + + Signing transaction failed + Ha fallat la signatura de la transacció - Other - Altres + + The transaction amount is too small to pay the fee + L'import de la transacció és massa petit per pagar-ne una comissió - Enter address or label to search - Introduïu una adreça o una etiqueta per cercar + + This is experimental software. + Això és programari experimental. - Min amount - Import mínim + + Tor control port password (default: empty) + - Copy address - Copiar adreça + + Tor control port to use if onion listening enabled (default: %s) + - Copy label - Copiar etiqueta + + Transaction amount too small + Import de la transacció massa petit - Copy amount - Copia l'import + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions - Copy transaction ID - Copiar ID de transacció + + Transaction too large + La transacció és massa gran - Edit label - Editar etiqueta + + Unable to bind to %s on this computer (bind returned error %s) + No s'ha pogut vincular a %s en este ordinador (la vinculació ha retornat l'error %s) - Show transaction details - Mostra detalls de la transacció + + Upgrade wallet to latest format on startup + - Export Transaction History - Exporta l'historial de transacció + + Username for JSON-RPC connections + Nom d'usuari per a connexions JSON-RPC - Comma separated file (*.csv) - Fitxer de separació amb comes (*.csv) + + Valid Verifier + - Confirmed - Confirmat + + Variable is not allow in the expression: ' + - Watch-only - Només de lectura + + Verifier String doesn't exist for asset: + - Date - Data + + Verifier String for asset trasnfer, not found + - Type - Tipus + + Verifier not found for asset: + - Label - Etiqueta + + Verifier string can not be empty. To default to true, use "true" + - Address - Adreça + + Verifier string is empty + - ID - ID + + Verifier string not found + - Exporting Failed - L'exportació ha fallat + + Verifying wallet(s)... + - There was an error trying to save the transaction history to %1. - S'ha produït un error en provar de guardar l'historial de transacció a %1. + + Warning + Avís - Exporting Successful - Exportació amb èxit + + Warning: unknown new rules activated (versionbit %i) + - The transaction history was successfully saved to %1. - L'historial de transaccions s'ha guardat correctament a %1. + + Whether to operate in a blocks only mode (default: %u) + - Range: - Rang: + + You need to rebuild the database using -reindex to change -txindex + - to - a + + Zapping all transactions from wallet... + Se suprimeixen totes les transaccions del moneder... - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + ZeroMQ notification options: + - - - WalletFrame - No wallet has been loaded. - No s'ha carregat cap moneder. + + Password for JSON-RPC connections + Contrasenya per a connexions JSON-RPC - - - WalletModel - Send Coins - Envia monedes + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Executa l'orde quan el millor bloc canvie (%s en cmd es reemplaça per un resum de bloc) - - - WalletView - &Export - &Exporta + + Allow DNS lookups for -addnode, -seednode and -connect + Permet consultes DNS per a -addnode, -seednode i -connect - Export the data in the current tab to a file - Exporta les dades de la pestanya actual a un fitxer + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) - Backup Wallet - Còpia de seguretat del moneder + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Wallet Data (*.dat) - Dades del moneder (*.dat) + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Backup Failed - Ha fallat la còpia de seguretat + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - There was an error trying to save the wallet data to %1. - S'ha produït un error en provar de guardar les dades del moneder a %1. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Backup Successful - La còpia de seguretat s'ha realitzat correctament + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - The wallet data was successfully saved to %1. - S'han guardat les dades del moneder correctament a %1. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - - - raven-core - Options: - Opcions: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Specify data directory - Especifica el directori de dades + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Connect to a node to retrieve peer addresses, and disconnect - Connecta al node per obtindre les adreces de les connexions, i desconnecta + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) - Specify your own public address - Especifiqueu la vostra adreça pública + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Accept command line and JSON-RPC commands - Accepta la línia d'ordes i ordes JSON-RPC + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Error: A fatal internal error occurred, see debug.log for details - Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Pruning blockstore... - S'està podant l'emmagatzemament de blocs... + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Run in the background as a daemon and accept commands - Executa en segon pla com a programa dimoni i accepta ordes + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Raven Core - Raven Core + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Executa una orde quan una transacció del moneder canvie (%s en cmd es canvia per TxID) + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - <category> can be: - <category> pot ser: + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguen tornar a connectar-se (per defecte: %u) - Block creation options: - Opcions de la creació de blocs: + + Output debugging information (default: %u, supplying <category> is optional) + Informació d'eixida de la depuració (per defecte: %u, proporcionar <category> és opcional) - Connection options: - Opcions de connexió: + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Corrupted block database detected - S'ha detectat una base de dades de blocs corrupta + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Debugging/Testing options: - Opcions de depuració/proves: + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Do not load the wallet and disable wallet RPC calls - No carreguis el moneder i inhabilita les crides RPC del moneder + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Do you want to rebuild the block database now? - Voleu reconstruir la base de dades de blocs ara? + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Error initializing block database - Error carregant la base de dades de blocs + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Error initializing wallet database environment %s! - Error inicialitzant l'entorn de la base de dades del moneder %s! + + The default height that is required before rewards are allowed to be sent out + - Error loading block database - Error carregant la base de dades del bloc + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Error opening block database - Error en obrir la base de dades de blocs + + This address doesn't contain the correct tags to pass the verifier string check: + - Error: Disk space is low! - Error: Espai al disc baix! + + This is the transaction fee you may pay when fee estimates are not available. + - Failed to listen on any port. Use -listen=0 if you want this. - Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Importing... - S'està important... + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Incorrect or no genesis block found. Wrong datadir for network? - No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Invalid -onion address: '%s' - Adreça -onion no vàlida: '%s' + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Not enough file descriptors available. - No hi ha suficient descriptors de fitxers disponibles. + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + + Unable to reissue asset: unit must be larger than current unit selection + - Prune cannot be configured with a negative value. - La poda no es pot configurar amb un valor negatiu. + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Prune mode is incompatible with -txindex. - El mode de poda és incompatible amb -txindex. + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Set database cache size in megabytes (%d to %d, default: %d) - Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Set maximum block size in bytes (default: %d) - Defineix la mida màxim del bloc en bytes (per defecte: %d) + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) - Specify wallet file (within data directory) - Especifica un fitxer de moneder (dins del directori de dades) + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Use UPnP to map the listening port (default: %u) - Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Verifying blocks... - S'estan verificant els blocs... + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Verifying wallet... - S'està verificant el moneder... + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Wallet %s resides outside data directory %s - El moneder %s resideix fora del directori de dades %s + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Wallet options: - Opcions de moneder: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar esta opció moltes vegades + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connecten. Feu servir la notació [host]:port per a IPv6 + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Esta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Error: Listening for incoming connections failed (listen returned error %s) - Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) + + %s is set very high! + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Executa l'orde quan es reba un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) + + ' doesn't exist in the database + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencen a confirmar-se en una mitja de n blocs (per defecte: %u) + + ' has already been used + - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que siga com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + ' is not a valid character in the expression: + - Maximum size of data in data carrier transactions we relay and mine (default: %u) - Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meues (per defecte: %u) + + ' the amount trying to reissue is to large + - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) + + (default: %s) + (per defecte: %s) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + A space separated list of 12-words used to import a bip44 wallet + - The transaction amount is too small to send after the fee has been deducted - L'import de la transacció és massa petit per enviar-la després que se'n deduïsca la comissió + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + Asset Transfer amounts must be greater than 0 + - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera + + Asset doesn't exist: + - (default: %u) - (per defecte: %u) + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Accept public REST requests (default: %u) - Accepta sol·licituds REST públiques (per defecte: %u) + + Asset name is not valid + - Connect through SOCKS5 proxy - Connecta a través del proxy SOCKS5 + + Asset with this name is already in the mempool + - Error reading from database, shutting down. - Error en llegir la base de dades, tancant. + + Done Loading + - Information - Informació + + Enable publish raw asset messages in <address> + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) + + Error creating %s: You can't create non-HD wallets with this version. + - Invalid netmask specified in -whitelist: '%s' - S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» + + Error loading wallet %s. -wallet filename must be a regular file. + - Keep at most <n> unconnectable transactions in memory (default: %u) - Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) + + Error loading wallet %s. Duplicate -wallet filename specified. + - Need to specify a port with -whitebind: '%s' - Cal especificar un port amb -whitebind: «%s» + + Error loading wallet %s. Invalid characters in -wallet filename. + - Node relay options: - Opcions de transmissió del node: + + Error not set + - RPC server options: - Opcions del servidor RPC: + + Error writing bip 39 passphrase to database + - Send trace/debug info to console instead of debug.log file - Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Error writing bip 39 vchseed to database + - Send transactions as zero-fee transactions if possible (default: %u) - Envia les transaccions com a transaccions de comissió zero sempre que siga possible (per defecte: %u) + + Error writing bip 39 words to database + - Show all debugging options (usage: --help -help-debug) - Mostra totes les opcions de depuració (ús: --help --help-debug) + + Every '(' must have a corresponding ')' in the expression: + - Shrink debug.log file on client startup (default: 1 when no -debug) - Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) + + Failed to extract destination from change script + - Signing transaction failed - Ha fallat la signatura de la transacció + + Failed to find restricted asset change address from inputs + - The transaction amount is too small to pay the fee - L'import de la transacció és massa petit per pagar-ne una comissió + + Failed to get asset data from script + - This is experimental software. - Això és programari experimental. + + Failed to get verifier string from output: + - Transaction amount too small - Import de la transacció massa petit + + Failed to load Assets Database + - Transaction too large for fee policy - Transacció massa gran per a la política de comissions + + Flag must be 1 or 0 + - Transaction too large - La transacció és massa gran + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) - Unable to bind to %s on this computer (bind returned error %s) - No s'ha pogut vincular a %s en este ordinador (la vinculació ha retornat l'error %s) + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a l'eixida de depuració (per defecte: %u) - Username for JSON-RPC connections - Nom d'usuari per a connexions JSON-RPC + + Init Message Channels - Scanning Asset Transactions + - Warning - Avís + + Insufficient asset funds + - Zapping all transactions from wallet... - Se suprimeixen totes les transaccions del moneder... + + Invalid Qualifier Name: + - Password for JSON-RPC connections - Contrasenya per a connexions JSON-RPC + + Invalid expressions in verifier string: + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Executa l'orde quan el millor bloc canvie (%s en cmd es reemplaça per un resum de bloc) + + Invalid parameter: amount must be + - Allow DNS lookups for -addnode, -seednode and -connect - Permet consultes DNS per a -addnode, -seednode i -connect + + Invalid parameter: amount must be between + - Loading addresses... - S'estan carregant les adreces... + + Invalid parameter: asset amount can't be equal to or less than zero. + - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + Invalid parameter: asset amount greater than max money: + - How thorough the block verification of -checkblocks is (0-4, default: %u) - Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + Invalid parameter: asset_name ' + - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + Invalid parameter: has_ipfs must be 0 or 1. + - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Nombre de segons necessaris perquè els iguals de comportament qüestionable puguen tornar a connectar-se (per defecte: %u) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Output debugging information (default: %u, supplying <category> is optional) - Informació d'eixida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + Invalid parameter: reissuable must be 0 or 1 + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + Invalid parameter: reissuable must be 0 + - (default: %s) - (per defecte: %s) + + Invalid parameter: units must be + - Always query for peer addresses via DNS lookup (default: %u) - Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + + Invalid parameter: units must be between 0-8. + - How many blocks to check at startup (default: %u, 0 = all) - Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + Invalid syntax: + - Include IP addresses in debug output (default: %u) - Inclou l'adreça IP a l'eixida de depuració (per defecte: %u) + + Keypool ran out, please call keypoolrefill first + - Invalid -proxy address: '%s' - Adreça -proxy invalida: '%s' + + Length is to large. Please use a smaller length + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escolta les connexions en <port> (per defecte: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Manté com a màxim <n> connexions a iguals (per defecte: %u) + Make the wallet broadcast transactions Fes que el moneder faça difusió de les transaccions + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) - Posa davant de l'eixida de depuració una marca horària (per defecte: %u) + Posa davant de l'eixida de depuració una marca horària (per defecte: %u) + Relay and mine data carrier transactions (default: %u) - Retransmet i mina les transaccions de l'operador (per defecte: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + Relay non-P2SH multisig (default: %u) Retransmet multisig no P2SH (per defecte: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Defineix la mida clau disponible a <n> (per defecte: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especifica el fitxer de configuració (per defecte: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) - Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Specify pid file (default: %s) Especifica el fitxer pid (per defecte: %s) + Spend unconfirmed change when sending transactions (default: %u) Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) - Unknown network specified in -onlynet: '%s' - Xarxa desconeguda especificada a -onlynet: '%s' + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Xarxa desconeguda especificada a -onlynet: '%s' + + + Insufficient funds Balanç insuficient + Loading block index... - S'està carregant l'índex de blocs... - - - Add a node to connect to and attempt to keep the connection open - Afig un node per a connectar-s'hi i intenta mantindre-hi la connexió oberta + S'està carregant l'índex de blocs... + Loading wallet... - S'està carregant el moneder... + S'està carregant el moneder... + Cannot downgrade wallet No es pot reduir la versió del moneder - Cannot write default address - No es pot escriure l'adreça per defecte - - + Rescanning... - S'està reescanejant... - - - Done loading - Ha acabat la càrrega + S'està reescanejant... + Error Error diff --git a/src/qt/locale/raven_ca_ES.ts b/src/qt/locale/raven_ca_ES.ts index ecdf1a9132..c1cc075bc4 100644 --- a/src/qt/locale/raven_ca_ES.ts +++ b/src/qt/locale/raven_ca_ES.ts @@ -1,116 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Feu clic dret per a editar l'adreça o l'etiquetaccn + Feu clic dret per a editar l'adreça o l'etiquetaccn + Create a new address Crea una nova adreça + &New &Nova + Copy the currently selected address to the system clipboard - Copia l'adreça seleccionada al porta-retalls del sistema + Copia l'adreça seleccionada al porta-retalls del sistema + &Copy &Copia + C&lose &Tanca + Delete the currently selected address from the list - Elimina l'adreça sel·leccionada actualment de la llista + Elimina l'adreça sel·leccionada actualment de la llista + Export the data in the current tab to a file Exporta les dades de la pestanya actual a un fitxer + &Export &Exporta + &Delete &Elimina + Choose the address to send coins to - Trieu l'adreça on enviar les monedes + Trieu l'adreça on enviar les monedes + Choose the address to receive coins with - Trieu l'adreça on rebre les monedes + Trieu l'adreça on rebre les monedes + C&hoose &Tria + Sending addresses - Adreces d'enviament + Adreces d'enviament + Receiving addresses Adreces de recepció + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - Aquestes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + Aquestes són les vostres adreces de Raven per enviar els pagaments. Sempre reviseu l'import i l'adreça del destinatari abans de transferir monedes. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Aquestes són les vostres adreces Raven per rebre pagaments. Es recomana utilitzar una adreça nova de recepció per a cada transacció. + &Copy Address - &Copia l'adreça + &Copia l'adreça + Copy &Label - Copia l'eti&queta + Copia l'eti&queta + &Edit &Edita + Export Address List - Exporta la llista d'adreces + Exporta la llista d'adreces + Comma separated file (*.csv) Fitxer separat per comes (*.csv) + Exporting Failed - L'exportació ha fallat + L'exportació ha fallat + There was an error trying to save the address list to %1. Please try again. - S'ha produït un error en desar la llista d'adreces a %1. Torneu-ho a provar. + S'ha produït un error en desar la llista d'adreces a %1. Torneu-ho a provar. AddressTableModel + Label Etiqueta + Address Adreça + (no label) (sense etiqueta) @@ -118,3232 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Diàleg de contrasenya + Enter passphrase Introduïu una contrasenya + New passphrase Nova contrasenya + Repeat new passphrase Repetiu la nova contrasenya + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Introduïu la contrasenya nova al moneder.<br/>Utilitzeu una contrasenya de <b>deu o més caràcters aleatoris</b>, o <b>vuit o més paraules</b>. + Encrypt wallet Encripta el moneder + This operation needs your wallet passphrase to unlock the wallet. Aquesta operació requereix la contrasenya del moneder per a desbloquejar-lo. + Unlock wallet Desbloqueja el moneder + This operation needs your wallet passphrase to decrypt the wallet. Aquesta operació requereix la contrasenya del moneder per desencriptar-lo. + Decrypt wallet Desencripta el moneder + Change passphrase Canvia la contrasenya + Enter the old passphrase and new passphrase to the wallet. Introduïu la contrasenya antiga i la contrasenya nova al moneder. + Confirm wallet encryption - Confirma l'encriptació del moneder + Confirma l'encriptació del moneder + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Avís: si encripteu el vostre moneder i perdeu la contrasenya, <b>PERDREU TOTS ELS VOSTRES RAVENS</b>! + Are you sure you wish to encrypt your wallet? Esteu segur que voleu encriptar el vostre moneder? + + Wallet encrypted Moneder encriptat + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. - Ara es tancarà el %1 per finalitzar el procés d'encriptació. Recordeu que encriptar el vostre moneder no garanteix que les vostres ravens no puguin ser robades per programari maliciós que infecti l'ordinador. + Ara es tancarà el %1 per finalitzar el procés d'encriptació. Recordeu que encriptar el vostre moneder no garanteix que les vostres ravens no puguin ser robades per programari maliciós que infecti l'ordinador. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT: Tota copia de seguretat que hàgiu realitzat hauria de ser reemplaçada pel, recentment generat, fitxer encriptat del moneder. Per motius de seguretat, les còpies de seguretat anteriors del fitxer de moneder no encriptat esdevindran inusables tan aviat com començar a utilitzar el nou moneder encriptat. + + + + Wallet encryption failed - L'encriptació del moneder ha fallat + L'encriptació del moneder ha fallat + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + L'encriptació del moneder ha fallat per un error intern. El moneder no ha estat encriptat. + + The supplied passphrases do not match. Les contrasenyes introduïdes no coincideixen. + Wallet unlock failed El desbloqueig del moneder ha fallat + + + The passphrase entered for the wallet decryption was incorrect. La contrasenya introduïda per a desencriptar el moneder és incorrecta. + Wallet decryption failed La desencriptació del moneder ha fallat + Wallet passphrase was successfully changed. La contrasenya del moneder ha estat modificada correctament. + + Warning: The Caps Lock key is on! Avís: Les lletres majúscules estan activades! - BanTableModel + AssetControlDialog - IP/Netmask - IP / Màscara de xarxa + + Asset Selection + - Banned Until - Bandejat fins + + Quantity: + - - - RavenGUI - Sign &message... - Signa el &missatge... + + Bytes: + - Synchronizing with network... - S'està sincronitzant amb la xarxa ... + + Amount: + - &Overview - &Panorama general + + Dust: + - Node - Node + + Fee: + - Show general overview of wallet - Mostra el panorama general del moneder + + After Fee: + - &Transactions - &Transaccions + + Change: + - Browse transaction history - Cerca a l'historial de transaccions + + (un)select all + - E&xit - S&urt + + Tree mode + - Quit application - Surt de l'aplicació + + List mode + - &About %1 - Qu&ant al %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mosta informació sobre el %1 + + View Administrator Assets + - About &Qt - Quant a &Qt + + Asset + - Show information about Qt - Mostra informació sobre Qt + + Amount + - &Options... - &Opcions... + + Received with label + - Modify configuration options for %1 - Modifica les opcions de configuració de %1 + + Received with address + - &Encrypt Wallet... - &Encripta el moneder... + + Date + - &Backup Wallet... - &Realitza una còpia de seguretat del moneder... + + Confirmations + - &Change Passphrase... - &Canvia la contrasenya... + + Confirmed + - &Sending addresses... - Adreces d'e&nviament... + + Copy address + - &Receiving addresses... - Adreces de &recepció... + + Copy label + - Open &URI... - Obre un &URI... + + + Copy amount + - Click to disable network activity. - Feu clic per inhabilitar l'activitat de la xarxa. + + Copy transaction ID + - Network activity disabled. - S'ha inhabilitat l'activitat de la xarxa. + + Lock unspent + - Click to enable network activity again. - Feu clic per tornar a habilitar l'activitat de la xarxa. + + Unlock unspent + - Reindexing blocks on disk... - S'estan reindexant els blocs al disc... + + Copy quantity + - Send coins to a Raven address - Envia monedes a una adreça Raven + + Copy fee + - Backup wallet to another location - Realitza una còpia de seguretat del moneder a una altra ubicació + + Copy after fee + - Change the passphrase used for wallet encryption - Canvia la contrasenya d'encriptació del moneder + + Copy bytes + - &Debug window - &Finestra de depuració + + Copy dust + - Open debugging and diagnostic console - Obre la consola de diagnòstic i depuració + + Copy change + - &Verify message... - &Verifica el missatge... + + (%1 locked) + - Raven - Raven + + yes + - Wallet - Moneder + + no + - &Send - &Envia + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Receive - &Rep + + Can vary +/- %1 satoshi(s) per input. + - &Show / Hide - &Mostra / Amaga + + + (no label) + - Show or hide the main Window - Mostra o amaga la finestra principal + + change from %1 (%2) + - Encrypt the private keys that belong to your wallet - Encripta les claus privades pertanyents al moneder + + (change) + + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - Signa el missatges amb la seva adreça de Raven per provar que les poseeixes + + Name + - Verify messages to ensure they were signed with specified Raven addresses - Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + Quantity + + + + AssetsDialog - &File - &Fitxer + + + Send Coins + - &Settings - &Configuració + + Asset Control Features + - &Help - &Ajuda + + Inputs... + - Tabs toolbar - Barra d'eines de les pestanyes + + automatically selected + - Request payments (generates QR codes and raven: URIs) - Sol·licita pagaments (genera codis QR i raven: URI) + + Insufficient funds! + - Show the list of used sending addresses and labels - Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + Quantity: + - Show the list of used receiving addresses and labels - Mostra la llista d'adreces de recepció i etiquetes utilitzades + + Bytes: + - Open a raven: URI or payment request - Obre una raven: sol·licitud d'URI o pagament + + Amount: + - &Command-line options - Opcions de la &línia d'ordres - - - %n active connection(s) to Raven network - %n connexió activa a la xarxa Raven%n connexions actives a la xarxa Raven + + Dust: + - Indexing blocks on disk... - S'estan indexant els blocs al disc... + + Fee: + - Processing blocks on disk... - S'estan processant els blocs al disc... + + After Fee: + - - Processed %n block(s) of transaction history. - S'ha processat %n bloc de l'historial de transacció.S'han processat %n blocs de l'historial de transacció. + + + Change: + - %1 behind - %1 darrere + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - El darrer bloc rebut ha estat generat fa %1. + + Custom change address + - Transactions after this will not yet be visible. - Les transaccions a partir d'això no seran visibles. + + Transaction Fee: + - Error - Error + + Choose... + - Warning - Avís + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - &Informació + + Warning: Fee estimation is currently not possible. + - Up to date - Al dia + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Raven + + Hide + - %1 client - Client de %1 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Catching up... - S'està posant al dia ... + + per kilobyte + - Date: %1 - - Data: %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Amount: %1 - - Import: %1 - + + (read the tooltip) + - Type: %1 - - Tipus: %1 - + + Recommended: + - Label: %1 - - Etiqueta: %1 - + + Custom: + - Address: %1 - - Adreça: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Sent transaction - Transacció enviada + + Confirmation time target: + - Incoming transaction - Transacció entrant + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - HD key generation is <b>enabled</b> - La generació de la clau HD és <b>habilitada</b> + + Request Replace-By-Fee + - HD key generation is <b>disabled</b> - La generació de la clau HD és <b>inhabilitada</b> + + Confirm the send action + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + S&end + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + Clear all fields of the form. + - A fatal error occurred. Raven can no longer continue safely and will quit. - S'ha produït un error fatal. Raven no pot continuar amb seguretat i finalitzarà. + + Clear &All + - - - CoinControlDialog - Coin Selection - Selecció de moneda + + Transfer to multiple recipients at once + - Quantity: - Quantitat: + + Add &Recipient + - Bytes: - Bytes: + + Balance: + - Amount: - Import: + + Copy quantity + - Fee: - Comissió: + + Copy amount + - Dust: - Polsim: + + Copy fee + - After Fee: - Comissió posterior: + + Copy after fee + - Change: - Canvi: + + Copy bytes + - (un)select all - (des)selecciona-ho tot + + Copy dust + - Tree mode - Mode arbre + + Copy change + - List mode - Mode llista + + %1 (%2 blocks) + - Amount - Import + + + + + %1 to %2 + - Received with label - Rebut amb l'etiqueta + + Are you sure you want to send? + - Received with address - Rebut amb l'adreça + + added as transaction fee + - Date - Data + + Confirm send assets + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP / Màscara de xarxa + + + + Banned Until + Bandejat fins + + + + CoinControlDialog + + + Coin Selection + Selecció de moneda + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Import: + + + + Fee: + Comissió: + + + + Dust: + Polsim: + + + + After Fee: + Comissió posterior: + + + + Change: + Canvi: + + + + (un)select all + (des)selecciona-ho tot + + + + Tree mode + Mode arbre + + + + List mode + Mode llista + + + + Amount + Import + + + + Received with label + Rebut amb l'etiqueta + + + + Received with address + Rebut amb l'adreça + + + + Date + Data + + + Confirmations Confirmacions + Confirmed Confirmat + Copy address - Copia l'adreça + Copia l'adreça + Copy label - Copia l'etiqueta + Copia l'etiqueta + + Copy amount - Copia l'import + Copia l'import + Copy transaction ID - Copia l'ID de transacció + Copia l'ID de transacció + Lock unspent Bloqueja sense gastar + Unlock unspent Desbloqueja sense gastar + Copy quantity Copia la quantitat + Copy fee Copia la comissió + Copy after fee Copia la comissió posterior + Copy bytes Copia els bytes + Copy dust Copia el polsim + Copy change Copia el canvi + (%1 locked) (%1 bloquejada) + yes + no no + This label turns red if any recipient receives an amount smaller than the current dust threshold. Aquesta etiqueta es torna vermella si cap recipient rep un import inferior al llindar de polsim actual. + Can vary +/- %1 satoshi(s) per input. Pot variar en +/- %1 satoshi(s) per entrada. + + (no label) (sense etiqueta) + change from %1 (%2) canvia de %1 (%2) + (change) (canvia) - EditAddressDialog + CreateAssetDialog - Edit Address - Edita l'adreça + + Coin Control Features + - &Label - &Etiqueta + + Inputs... + - The label associated with this address list entry - L'etiqueta associada amb aquesta entrada de llista d'adreces + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - L'adreça associada amb aquesta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. + + Insufficient funds! + - &Address - &Adreça + + + Quantity: + - New receiving address - Nova adreça de recepció + + Bytes: + - New sending address - Nova adreça d'enviament + + Amount: + - Edit receiving address - Edita l'adreça de recepció + + Dust: + - Edit sending address - Edita l'adreça d'enviament + + Fee: + - The entered address "%1" is not a valid Raven address. - L'adreça introduïda «%1» no és una adreça de Raven vàlida. + + After Fee: + - The entered address "%1" is already in the address book. - L'adreça introduïda «%1» ja és present a la llibreta d'adreces. + + Change: + - Could not unlock wallet. - No s'ha pogut desbloquejar el moneder. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Ha fallat la generació d'una clau nova. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Es crearà un nou directori de dades. + + Name: + - name - nom + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - El directori ja existeix. Afegeix %1 si vols crear un nou directori en aquesta ubicació. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - El camí ja existeix i no és cap directori. + + Check Availabilty + - Cannot create data directory here. - No es pot crear el directori de dades aquí. + + Address: + - - - HelpMessageDialog - version - versió + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Quant al %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opcions de línia d'ordres + + Warning: + - Usage: - Ús: + + The number of assets that will be created + - command-line options - Opcions de la línia d'ordres + + Units: + - UI Options: - Opcions d'interfície d'usuari: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Trieu el directori de dades a l'inici (per defecte: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Defineix la llengua, per exemple «de_DE» (per defecte: la definida pel sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Inicia minimitzat + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Defineix els certificats arrel SSL per a la sol·licitud de pagament (per defecte: els del sistema) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostra la pantalla de benvinguda a l'inici (per defecte: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reinicialitza tots els canvis de configuració fets des de la interfície gràfica + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Us donem la benvinguda + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Us donem la benvinguda a %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Com és la primera vegada que s'executa el programa, podeu triar on %1 emmagatzemarà les dades. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 baixarà i emmagatzemarà una còpia de la cadena de blocs de Raven. Com a mínim %2GB de dades s'emmagatzemaran en aquest directori, i augmentarà al llarg del temps. El moneder també s'emmagatzemarà en aquest directori. + + Choose... + - Use the default data directory - Utilitza el directori de dades per defecte + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Utilitza un directori de dades personalitzat: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Error: el directori de dades «%1» especificat no pot ser creat. + + collapse fee-settings + - Error - Error - - - %n GB of free space available - %n GB d'espai lliure disponible%n GB d'espai lliure disponible + + Hide + - - (of %n GB needed) - (de %n GB necessari)(de %n GB necessaris) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Formulari + + per kilobyte + - Unknown... - Desconegut... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Last block time - Últim temps de bloc + + (read the tooltip) + - Progress - Progrés + + Recommended: + - calculating... - s'està calculant... + + C&ustom: + - Estimated time left until synced - Temps estimat restant fins sincronitzat + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Hide - Amaga + + Confirmation time target: + - Unknown. Syncing Headers (%1)... - Desconegut. Sincronització de les capçaleres (%1)... + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - - - OpenURIDialog - Open URI - Obre un URI + + Request Replace-By-Fee + - Open payment request from URI or file - Obre una sol·licitud de pagament des d'un URI o un fitxer + + Create Asset + - URI: - URI: + + Clear + - Select payment request file - Selecciona un fitxer de sol·licitud de pagament + + Balance: + - Select payment request file to open - Seleccioneu el fitxer de sol·licitud de pagament per obrir + + 123.456 RVN + - - - OptionsDialog - Options - Opcions + + Copy quantity + - &Main - &Principal + + Copy amount + - Automatically start %1 after logging in to the system. - Inicieu %1 automàticament després d'entrar en el sistema. + + Copy fee + - &Start %1 on system login - &Inicia %1 en l'entrada al sistema + + Copy after fee + - Size of &database cache - Mida de la memòria cau de la base de &dades + + Copy bytes + - MB - MB + + Copy dust + - Number of script &verification threads - Nombre de fils de &verificació d'scripts + + Copy change + - Accept connections from outside - Accepta connexions de fora + + %1 (%2 blocks) + - Allow incoming connections - Permet connexions entrants + + Main Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimitza en comptes de sortir de l'aplicació quan la finestra es tanca. Quan s'habilita aquesta opció l'aplicació es tancara només quan se selecciona Surt del menú. + + Unique Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + Messaging Channel Asset + - Third party transaction URLs - URL de transaccions de terceres parts + + Qualifier Asset + - Active command-line options that override above options: - Opcions de línies d'ordre active que sobreescriuen les opcions de dalt: + + Sub Qualifier Asset + - Reset all client options to default. - Reestableix totes les opcions del client. + + Restricted Asset + - &Reset Options - &Reestableix les opcions + + Asset Type + - &Network - &Xarxa + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = deixa tants nuclis lliures) + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - W&allet - &Moneder + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Expert - Expert + + + + Warning: Invalid Raven address + - Enable coin &control features - Activa les funcions de &control de les monedes + + Warning: Restricted Assets Reissuance requires an address + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tingui com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + Valid Asset + - &Spend unconfirmed change - &Gasta el canvi sense confirmar + + Invalid: Asset name already in use + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Obre el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + Error: Asset Database not in sync + - Map port using &UPnP - Port obert amb &UPnP + + + %1 to %2 + - Connect to the Raven network through a SOCKS5 proxy. - Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + Are you sure you want to send? + - &Connect through SOCKS5 proxy (default proxy): - &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + added as transaction fee + - Proxy &IP: - &IP del proxy: + + Total Amount %1 + - &Port: - &Port: + + or + - Port of the proxy (e.g. 9050) - Port del proxy (per exemple 9050) + + Confirm send assets + - Used for reaching peers via: - Utilitzat per arribar als iguals mitjançant: + + Invalid: + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Mostra si el proxy SOCKS5 per defecte proporcionat s'utilitza per arribar als iguals mitjançant aquest tipus de xarxa. + + Copy + - IPv4 - IPv4 + + Transaction ID Copied + - IPv6 - IPv6 + + Asset transaction sent to network: + - - Tor - Tor + + + Estimated to begin confirmation within %n block(s). + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Conectar a la red de Raven a través de un proxy SOCKS5 per als serveis ocults de Tor + + Warning: Unknown change address + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor: + + Confirm custom change address + - &Window - &Finestra + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - &Hide the icon from the system tray. - Ama&ga la icona de la safata del sistema. + + (no label) + - Hide tray icon - Amaga la icona de la safata + + Pay only the required fee of %1 + + + + EditAddressDialog - Show only a tray icon after minimizing the window. - Mostra només la icona de la barra en minimitzar la finestra. + + Edit Address + Edita l'adreça - &Minimize to the tray instead of the taskbar - &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + &Label + &Etiqueta - M&inimize on close - M&inimitza en tancar + + The label associated with this address list entry + L'etiqueta associada amb aquesta entrada de llista d'adreces - &Display - &Pantalla + + The address associated with this address list entry. This can only be modified for sending addresses. + L'adreça associada amb aquesta entrada de llista d'adreces. Només es pot modificar per a les adreces d'enviament. - User Interface &language: - &Llengua de la interfície d'usuari: + + &Address + &Adreça - The user interface language can be set here. This setting will take effect after restarting %1. - Aquí es pot definir la llengua de la interfície d'usuari. Aquest paràmetre tindrà efecte en reiniciar el %1. + + New receiving address + Nova adreça de recepció - &Unit to show amounts in: - &Unitats per mostrar els imports en: + + New sending address + Nova adreça d'enviament - Choose the default subdivision unit to show in the interface and when sending coins. - Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + Edit receiving address + Edita l'adreça de recepció - Whether to show coin control features or not. - Si voleu mostrar les funcions de control de monedes o no. + + Edit sending address + Edita l'adreça d'enviament - &OK - &D'acord + + The entered address "%1" is not a valid Raven address. + L'adreça introduïda «%1» no és una adreça de Raven vàlida. - &Cancel - &Cancel·la + + The entered address "%1" is already in the address book. + L'adreça introduïda «%1» ja és present a la llibreta d'adreces. - default - Per defecte + + Could not unlock wallet. + No s'ha pogut desbloquejar el moneder. - none - cap + + New key generation failed. + Ha fallat la generació d'una clau nova. + + + FreespaceChecker - Confirm options reset - Confirmeu el reestabliment de les opcions + + A new data directory will be created. + Es crearà un nou directori de dades. - Client restart required to activate changes. - Cal reiniciar el client per activar els canvis. + + name + nom - Client will be shut down. Do you want to proceed? - S'aturarà el client. Voleu procedir? + + Directory already exists. Add %1 if you intend to create a new directory here. + El directori ja existeix. Afegeix %1 si vols crear un nou directori en aquesta ubicació. - This change would require a client restart. - Amb aquest canvi cal un reinici del client. + + Path already exists, and is not a directory. + El camí ja existeix i no és cap directori. - The supplied proxy address is invalid. - L'adreça proxy introduïda és invalida. + + Cannot create data directory here. + No es pot crear el directori de dades aquí. - OverviewPage + FreezeAddress - Form - Formulari + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + + Restricted Asset: + - Watch-only: - Només lectura: + + Address: + - Available: - Disponible: + + Custom Change Address + - Your current spendable balance - El balanç que podeu gastar actualment + + IPFS / Hash: + - Pending: - Pendent: + + Single Address Options + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + Global Options + - Immature: - Immadur: + + Free&ze trading on this address + - Mined balance that has not yet matured - Balanç minat que encara no ha madurat + + Unfreeze tradin&g on this address + - Balances - Balances + + Freeze all &trading for the selected restricted asset + - Total: - Total: + + &Unfreeze all trading for the selected restricted asset + - Your current total balance - El balanç total actual + + Check + - Your current balance in watch-only addresses - El vostre balanç actual en adreces de només lectura + + Clear + - Spendable: - Que es pot gastar: + + Submit + - Recent transactions - Transaccions recents + + Data has been validated, You can now submit the restriction transaction + - Unconfirmed transactions to watch-only addresses - Transaccions sense confirmar a adreces de només lectura + + Must have a restricted asset selected + - Mined balance in watch-only addresses that has not yet matured - Balanç minat en adreces de només lectura que encara no ha madurat + + Address is already frozen + - Current total balance in watch-only addresses - Balanç total actual en adreces de només lectura + + Address is not frozen + - - - PaymentServer - Payment request error - Error de la sol·licitud de pagament + + Restricted asset is already frozen globally + - Cannot start raven: click-to-pay handler - No es pot iniciar raven: controlador click-to-pay + + Restricted asset is not frozen globally + - URI handling - Gestió d'URI + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Payment request fetch URL is invalid: %1 - L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + Warning: transaction while syncing wallet! + - Invalid payment address %1 - Adreça de pagament no vàlida %1 + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + version + versió - Payment request file handling - Gestió de fitxers de les sol·licituds de pagament + + + (%1-bit) + (%1-bit) - Payment request file cannot be read! This can be caused by an invalid payment request file. - No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + About %1 + Quant al %1 - Payment request rejected - La sol·licitud de pagament s'ha rebutjat + + Command-line options + Opcions de línia d'ordres - Payment request network doesn't match client network. - La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + Usage: + Ús: - Payment request expired. - La sol·licitud de pagament ha vençut. + + command-line options + Opcions de la línia d'ordres - Payment request is not initialized. - La sol·licitud de pagament no està inicialitzada. + + UI Options: + Opcions d'interfície d'usuari: - Unverified payment requests to custom payment scripts are unsupported. - No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + Choose data directory on startup (default: %u) + Trieu el directori de dades a l'inici (per defecte: %u) - Invalid payment request. - Sol·licitud de pagament no vàlida. + + Set language, for example "de_DE" (default: system locale) + Defineix la llengua, per exemple «de_DE» (per defecte: la definida pel sistema) - Requested payment amount of %1 is too small (considered dust). - L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + Start minimized + Inicia minimitzat - Refund from %1 - Reemborsament de %1 + + Set SSL root certificates for payment request (default: -system-) + Defineix els certificats arrel SSL per a la sol·licitud de pagament (per defecte: els del sistema) - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + Show splash screen on startup (default: %u) + Mostra la pantalla de benvinguda a l'inici (per defecte: %u) - Error communicating with %1: %2 - Error en comunicar amb %1: %2 + + Reset all settings changed in the GUI + Reinicialitza tots els canvis de configuració fets des de la interfície gràfica + + + Intro - Payment request cannot be parsed! - No es pot analitzar la sol·licitud de pagament! - - - Bad response from server %1 - Mala resposta del servidor %1 + + Welcome + Us donem la benvinguda - Network request error - Error en la sol·licitud de xarxa + + Welcome to %1. + Us donem la benvinguda a %1. - Payment acknowledged - Pagament reconegut + + As this is the first time the program is launched, you can choose where %1 will store its data. + Com és la primera vegada que s'executa el programa, podeu triar on %1 emmagatzemarà les dades. - - - PeerTableModel - User Agent - Agent d'usuari + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - Node/Service - Node/Servei + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - - - QObject - Amount - Import + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + - Enter a Raven address (e.g. %1) - Introduïu una adreça de Raven (p. ex. %1) + + Use the default data directory + Utilitza el directori de dades per defecte - %1 d - %1 d + + Use a custom data directory: + Utilitza un directori de dades personalitzat: - %1 h - %1 h + + Raven + - %1 m - %1 m + + At least %1 GB of data will be stored in this directory, and it will grow over time. + - %1 s - %1 s + + Approximately %1 GB of data will be stored in this directory. + - None - Cap + + %1 will download and store a copy of the Raven block chain. + - N/A - N/A + + The wallet will also be stored in this directory. + - %1 ms - %1 ms + + Error: Specified data directory "%1" cannot be created. + Error: el directori de dades «%1» especificat no pot ser creat. - %1 and %2 - %1 i %2 + + Error + Error - - - QObject::QObject - - Error: %1 - Avís: %1 + + + %n GB of free space available + + + + + (of %n GB needed) + - QRImageWidget - - &Save Image... - De&sa la imatge... - - - &Copy Image - &Copia la imatge - - - Save QR Code - Desa el codi QR - + MnemonicDialog - PNG Image (*.png) - Imatge PNG (*.png) + + HD Wallet Setup + - RPCConsole + MnemonicDialog1 - N/A - N/A + + HD Wallet Setup + - Client version - Versió del client + + Select the type of wallet to create. + - &Information - &Informació + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Debug window - Finestra de depuració + + Please choose what you would like to do: + - General - General + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Using BerkeleyDB version - Utilitzant BerkeleyDB versió + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Datadir - Datadir + + Accept + - Startup time - &Temps d'inici + + You are choosing to create a new wallet using new seed words. + - Network - Xarxa + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - Name - Nom + + New HD Wallet Creation + - Number of connections - Nombre de connexions + + BIP39 Compliant Seed Words: + - Block chain - Cadena de blocs + + Generate New Seed Words + - Current number of blocks - Nombre de blocs actuals + + These 12 generated seed words will be used. + - Memory Pool - Reserva de memòria + + Passphrase: + - Current number of transactions - Nombre actual de transaccions + + Enter a Passphrase to protect your seed words (optional). + - Memory usage - Us de memoria + + You may enter an optional Passphrase to protect your seed words. + - Received - Rebut + + Warning: + - Sent - Enviat + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - &Peers - &Iguals + + Accept + - Banned peers - Iguals bandejats + + Go Back + - Select a peer to view detailed information. - Seleccioneu un igual per mostrar informació detallada. + + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 - Whitelisted - A la llista blanca + + Previous HD Wallet Re-creation + - Direction - Direcció + + BIP39 Compliant Seed Words: + - Version - Versió + + Enter the 12 seed words from your previous wallet here. + - Starting Block - Bloc d'inici + + Passphrase: + - Synced Headers - Capçaleres sincronitzades + + You will need the Passphrase if your previous wallet used one. + - Synced Blocks - Blocs sincronitzats + + Enter the Passphrase from your previous wallet if it used one. + - User Agent - Agent d'usuari + + Warning: + - Services - Serveis + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Ban Score - Puntuació de bandeig + + Accept + - Connection Time - Temps de connexió + + Go Back + - Last Send - Darrer enviament + + Words are not valid, please check the words and try again + + + + ModalOverlay - Last Receive - Darrera recepció + + Form + Formulari - Ping Time - Temps de ping + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - The duration of a currently outstanding ping. - La duració d'un ping més destacat actualment. + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - Ping Wait - Espera de ping + + Number of blocks left + - Time Offset - Diferència horària + + + + Unknown... + Desconegut... + Last block time Últim temps de bloc - &Open - &Obre - - - &Console - &Consola + + Progress + Progrés - &Network Traffic - Trà&nsit de la xarxa + + Progress increase per hour + - &Clear - Nete&ja + + + calculating... + s'està calculant... - Totals - Totals + + Estimated time left until synced + Temps estimat restant fins sincronitzat - In: - Dins: + + Hide + Amaga - Out: - Fora: + + Unknown. Syncing Headers (%1)... + Desconegut. Sincronització de les capçaleres (%1)... + + + MyRestrictedAssetsTableModel - Debug log file - Fitxer de registre de depuració + + Date + - Clear console - Neteja la consola + + Type + - 1 &hour - 1 &hora + + Address + - 1 &day - 1 &dia + + Asset Name + - 1 &week - 1 &setmana + + Tagged + - 1 &year - 1 &any + + Untagged + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Utilitza les fletxes d'amunt i avall per navegar per l'historial, i <b>Ctrl-L<\b> per netejar la pantalla. + + Frozen + - Type <b>help</b> for an overview of available commands. - Escriviu <b>help<\b> per a obtenir un llistat de les ordres disponibles. + + Unfrozen + - %1 B - %1 B + + Other + - %1 KB - %1 KB + + watch-only + - %1 MB - %1 MB + + (no label) + - %1 GB - %1 GB + + Date and time that the transaction was received. + - (node id: %1) - (id del node: %1) + + Type of transaction. + - via %1 - a través de %1 + + User-defined intent/purpose of the transaction. + - never - mai + + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog - Inbound - Entrant + + Open URI + Obre un URI - Outbound - Sortint + + Open payment request from URI or file + Obre una sol·licitud de pagament des d'un URI o un fitxer - Yes - + + URI: + URI: - No - No + + Select payment request file + Selecciona un fitxer de sol·licitud de pagament - Unknown - Desconegut + + Select payment request file to open + Seleccioneu el fitxer de sol·licitud de pagament per obrir - ReceiveCoinsDialog + OptionsDialog - &Amount: - Im&port: + + Options + Opcions - &Label: - &Etiqueta: + + &Main + &Principal - &Message: - &Missatge: + + Automatically start %1 after logging in to the system. + Inicieu %1 automàticament després d'entrar en el sistema. - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + &Start %1 on system login + &Inicia %1 en l'entrada al sistema - R&euse an existing receiving address (not recommended) - R&eutilitza una adreça de recepció anterior (no recomanat) + + Size of &database cache + Mida de la memòria cau de la base de &dades - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. - + + MB + MB + + + + Number of script &verification threads + Nombre de fils de &verificació d'scripts + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adreça IP del proxy (p. ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimitza en comptes de sortir de l'aplicació quan la finestra es tanca. Quan s'habilita aquesta opció l'aplicació es tancara només quan se selecciona Surt del menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL de terceres parts (p. ex. explorador de blocs) que apareix en la pestanya de transaccions com elements del menú contextual. %s en l'URL es reemplaçat pel resum de la transacció. Diferents URL estan separades per una barra vertical |. + + + + Active command-line options that override above options: + Opcions de línies d'ordre active que sobreescriuen les opcions de dalt: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reestableix totes les opcions del client. + + + + &Reset Options + &Reestableix les opcions + + + + &Network + &Xarxa + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = deixa tants nuclis lliures) + + + + W&allet + &Moneder + + + + Expert + Expert + + + + Enable coin &control features + Activa les funcions de &control de les monedes + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si inhabiliteu la despesa d'un canvi sense confirmar, el canvi d'una transacció no pot ser utilitzat fins que la transacció no tingui com a mínim una confirmació. Això també afecta com es calcula el vostre balanç. + + + + &Spend unconfirmed change + &Gasta el canvi sense confirmar + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Obre el port del client de Raven al router de forma automàtica. Això només funciona quan el router implementa UPnP i l'opció està activada. + + + + Map port using &UPnP + Port obert amb &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Connecta a la xarxa Raven a través d'un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Connecta a través d'un proxy SOCKS5 (proxy per defecte): + + + + + Proxy &IP: + &IP del proxy: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port del proxy (per exemple 9050) + + + + Used for reaching peers via: + Utilitzat per arribar als iguals mitjançant: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Conectar a la red de Raven a través de un proxy SOCKS5 per als serveis ocults de Tor + + + + &Window + &Finestra + + + + Show only a tray icon after minimizing the window. + Mostra només la icona de la barra en minimitzar la finestra. + + + + &Minimize to the tray instead of the taskbar + &Minimitza a la barra d'aplicacions en comptes de la barra de tasques + + + + M&inimize on close + M&inimitza en tancar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Pantalla + + + + User Interface &language: + &Llengua de la interfície d'usuari: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Aquí es pot definir la llengua de la interfície d'usuari. Aquest paràmetre tindrà efecte en reiniciar el %1. + + + + &Unit to show amounts in: + &Unitats per mostrar els imports en: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Selecciona la unitat de subdivisió per defecte per mostrar en la interfície quan s'envien monedes. + + + + Whether to show coin control features or not. + Si voleu mostrar les funcions de control de monedes o no. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &D'acord + + + + &Cancel + &Cancel·la + + + + default + Per defecte + + + + none + cap + + + + Confirm options reset + Confirmeu el reestabliment de les opcions + + + + + Client restart required to activate changes. + Cal reiniciar el client per activar els canvis. + + + + Client will be shut down. Do you want to proceed? + S'aturarà el client. Voleu procedir? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Amb aquest canvi cal un reinici del client. + + + + The supplied proxy address is invalid. + L'adreça proxy introduïda és invalida. + + + + OverviewPage + + + Form + Formulari + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La informació mostrada pot no estar al día. El teu moneder es sincronitza automàticament amb la xarxa Raven un cop s'ha establert connexió, però aquest proces no s'ha completat encara. + + + + Watch-only: + Només lectura: + + + + Available: + Disponible: + + + + Your current spendable balance + El balanç que podeu gastar actualment + + + + Pending: + Pendent: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transaccions que encara han de confirmar-se i que encara no compten en el balanç que es pot gastar + + + + Immature: + Immadur: + + + + Mined balance that has not yet matured + Balanç minat que encara no ha madurat + + + + Total: + Total: + + + + Your current total balance + El balanç total actual + + + + RVN Balances + + + + + Your current balance in watch-only addresses + El vostre balanç actual en adreces de només lectura + + + + Spendable: + Que es pot gastar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transaccions recents + + + + Unconfirmed transactions to watch-only addresses + Transaccions sense confirmar a adreces de només lectura + + + + Mined balance in watch-only addresses that has not yet matured + Balanç minat en adreces de només lectura que encara no ha madurat + + + + Current total balance in watch-only addresses + Balanç total actual en adreces de només lectura + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Error de la sol·licitud de pagament + + + + Cannot start raven: click-to-pay handler + No es pot iniciar raven: controlador click-to-pay + + + + + + URI handling + Gestió d'URI + + + + Payment request fetch URL is invalid: %1 + L'URL de recuperació de la sol·licitud de pagament no és vàlida: %1 + + + + Invalid payment address %1 + Adreça de pagament no vàlida %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + L'URI no pot ser analitzat! Això pot ser a causa d'una adreça de Raven no vàlida o per paràmetres URI amb mal format. + + + + Payment request file handling + Gestió de fitxers de les sol·licituds de pagament + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + No es pot llegir el fitxer de la sol·licitud de pagament. Això pot ser causat per un fitxer de sol·licitud de pagament no vàlid. + + + + + + + + + Payment request rejected + La sol·licitud de pagament s'ha rebutjat + + + + Payment request network doesn't match client network. + La xarxa de la sol·licitud de pagament no coincideix amb la xarxa del client. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Payment request is not initialized. + La sol·licitud de pagament no està inicialitzada. + + + + Unverified payment requests to custom payment scripts are unsupported. + No s'accepten sol·licituds de pagament no verificades a scripts de pagament personalitzats. + + + + + Invalid payment request. + Sol·licitud de pagament no vàlida. + + + + Requested payment amount of %1 is too small (considered dust). + L'import de pagament sol·licitat %1 és massa petit (es considera polsim). + + + + Refund from %1 + Reemborsament de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La sol·licitud de pagament %1 és massa gran (%2 bytes, permès %3 bytes). + + + + Error communicating with %1: %2 + Error en comunicar amb %1: %2 + + + + Payment request cannot be parsed! + No es pot analitzar la sol·licitud de pagament! + + + + Bad response from server %1 + Mala resposta del servidor %1 + + + + Network request error + Error en la sol·licitud de xarxa + + + + Payment acknowledged + Pagament reconegut + + + + PeerTableModel + + + User Agent + Agent d'usuari + + + + Node/Service + Node/Servei + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Import + + + + Enter a Raven address (e.g. %1) + Introduïu una adreça de Raven (p. ex. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Cap + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Avís: %1 + + + + QRImageWidget + + + &Save Image... + De&sa la imatge... + + + + &Copy Image + &Copia la imatge + + + + Save QR Code + Desa el codi QR + + + + PNG Image (*.png) + Imatge PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versió del client + + + + &Information + &Informació + + + + Debug window + Finestra de depuració + + + + General + General + + + + Using BerkeleyDB version + Utilitzant BerkeleyDB versió + + + + Datadir + Datadir + + + + Startup time + &Temps d'inici + + + + Network + Xarxa + + + + Name + Nom + + + + Number of connections + Nombre de connexions + + + + Block chain + Cadena de blocs + + + + Current number of blocks + Nombre de blocs actuals + + + + Memory Pool + Reserva de memòria + + + + Current number of transactions + Nombre actual de transaccions + + + + Memory usage + Us de memoria + + + + &Reset + + + + + + Received + Rebut + + + + + Sent + Enviat + + + + &Peers + &Iguals + + + + Banned peers + Iguals bandejats + + + + + + Select a peer to view detailed information. + Seleccioneu un igual per mostrar informació detallada. + + + + Whitelisted + A la llista blanca + + + + Direction + Direcció + + + + Version + Versió + + + + Starting Block + Bloc d'inici + + + + Synced Headers + Capçaleres sincronitzades + + + + Synced Blocks + Blocs sincronitzats + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent d'usuari + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Serveis + + + + Ban Score + Puntuació de bandeig + + + + Connection Time + Temps de connexió + + + + Last Send + Darrer enviament + + + + Last Receive + Darrera recepció + + + + Ping Time + Temps de ping + + + + The duration of a currently outstanding ping. + La duració d'un ping més destacat actualment. + + + + Ping Wait + Espera de ping + + + + Min Ping + + + + + Time Offset + Diferència horària + + + + Last block time + Últim temps de bloc + + + + &Open + &Obre + + + + &Console + &Consola + + + + &Network Traffic + Trà&nsit de la xarxa + + + + Totals + Totals + + + + In: + Dins: + + + + Out: + Fora: + + + + Debug log file + Fitxer de registre de depuració + + + + Clear console + Neteja la consola + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &dia + + + + 1 &week + 1 &setmana + + + + 1 &year + 1 &any + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Escriviu <b>help<\b> per a obtenir un llistat de les ordres disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (id del node: %1) + + + + via %1 + a través de %1 + + + + + never + mai + + + + Inbound + Entrant + + + + Outbound + Sortint + + + + Yes + + + + + No + No + + + + + Unknown + Desconegut + + + + RavenGUI + + + Sign &message... + Signa el &missatge... + + + + Synchronizing with network... + S'està sincronitzant amb la xarxa ... + + + + &Overview + &Panorama general + + + + Node + Node + + + + Show general overview of wallet + Mostra el panorama general del moneder + + + + &Transactions + &Transaccions + + + + Browse transaction history + Cerca a l'historial de transaccions + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&urt + + + + Quit application + Surt de l'aplicació + + + + &About %1 + Qu&ant al %1 + + + + Show information about %1 + Mosta informació sobre el %1 + + + + About &Qt + Quant a &Qt + + + + Show information about Qt + Mostra informació sobre Qt + + + + &Options... + &Opcions... + + + + Modify configuration options for %1 + Modifica les opcions de configuració de %1 + + + + &Encrypt Wallet... + &Encripta el moneder... + + + + &Backup Wallet... + &Realitza una còpia de seguretat del moneder... + + + + &Change Passphrase... + &Canvia la contrasenya... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adreces d'e&nviament... + + + + &Receiving addresses... + Adreces de &recepció... + + + + Open &URI... + Obre un &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Feu clic per inhabilitar l'activitat de la xarxa. + + + + Network activity disabled. + S'ha inhabilitat l'activitat de la xarxa. + + + + Click to enable network activity again. + Feu clic per tornar a habilitar l'activitat de la xarxa. + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + S'estan reindexant els blocs al disc... + + + + Send coins to a Raven address + Envia monedes a una adreça Raven + + + + Backup wallet to another location + Realitza una còpia de seguretat del moneder a una altra ubicació + + + + Change the passphrase used for wallet encryption + Canvia la contrasenya d'encriptació del moneder + + + + Open debugging and diagnostic console + Obre la consola de diagnòstic i depuració + + + + &Verify message... + &Verifica el missatge... + + + + Raven + Raven + + + + Wallet + Moneder + + + + &Send + &Envia + + + + &Receive + &Rep + + + + &Show / Hide + &Mostra / Amaga + + + + Show or hide the main Window + Mostra o amaga la finestra principal + + + + Encrypt the private keys that belong to your wallet + Encripta les claus privades pertanyents al moneder + + + + Sign messages with your Raven addresses to prove you own them + Signa el missatges amb la seva adreça de Raven per provar que les poseeixes + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifiqueu els missatges per assegurar-vos que han estat signats amb una adreça Raven específica. + + + + &File + &Fitxer + + + + &Help + &Ajuda + + + + Request payments (generates QR codes and raven: URIs) + Sol·licita pagaments (genera codis QR i raven: URI) + + + + Show the list of used sending addresses and labels + Mostra la llista d'adreces d'enviament i etiquetes utilitzades + + + + Show the list of used receiving addresses and labels + Mostra la llista d'adreces de recepció i etiquetes utilitzades + + + + Open a raven: URI or payment request + Obre una raven: sol·licitud d'URI o pagament + + + + &Command-line options + Opcions de la &línia d'ordres + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + S'estan indexant els blocs al disc... + + + + Processing blocks on disk... + S'estan processant els blocs al disc... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 darrere + + + + Last received block was generated %1 ago. + El darrer bloc rebut ha estat generat fa %1. + + + + Transactions after this will not yet be visible. + Les transaccions a partir d'això no seran visibles. + + + + Error + Error + + + + Warning + Avís + + + + Information + &Informació + + + + Up to date + Al dia + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostra el missatge d'ajuda del %1 per obtenir una llista amb les possibles opcions de línia d'ordres de Raven + + + + %1 client + Client de %1 + + + + Connecting to peers... + + + + + Catching up... + S'està posant al dia ... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Import: %1 + + + + + Type: %1 + + Tipus: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Adreça: %1 + + + + + Sent transaction + Transacció enviada + + + + Incoming transaction + Transacció entrant + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + La generació de la clau HD és <b>habilitada</b> + + + + HD key generation is <b>disabled</b> + La generació de la clau HD és <b>inhabilitada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El moneder està <b>encriptat</b> i actualment <b>desbloquejat</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El moneder està <b>encriptat</b> i actualment <b>bloquejat</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + S'ha produït un error fatal. Raven no pot continuar amb seguretat i finalitzarà. + + + + ReceiveCoinsDialog + + + &Amount: + Im&port: + + + + &Label: + &Etiqueta: + + + + &Message: + &Missatge: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilitza una de les adreces de recepció utilitzades anteriorment. La reutilització d'adreces pot comportar problemes de seguretat i privadesa. No ho utilitzeu llevat que torneu a generar una sol·licitud de pagament feta abans. + + + + R&euse an existing receiving address (not recommended) + R&eutilitza una adreça de recepció anterior (no recomanat) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un missatge opcional que s'adjuntarà a la sol·licitud de pagament, que es mostrarà quan s'obri la sol·licitud. Nota: El missatge no s'enviarà amb el pagament per la xarxa Raven. + + + + + An optional label to associate with the new receiving address. + Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilitzeu aquest formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Un import opcional per sol·licitar. Deixeu-ho en blanc o zero per no sol·licitar cap import específic. + + + + Clear all fields of the form. + Esborra tots els camps del formuari. + + + + Clear + Neteja + + + + Requested payments history + Historial de pagaments sol·licitats + + + + &Request payment + &Sol·licitud de pagament + + + + Show the selected request (does the same as double clicking an entry) + Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + + + Show + Mostra + + + + Remove the selected entries from the list + Esborra les entrades seleccionades de la llista + + + + Remove + Esborra + + + + Copy URI + + + + + Copy label + Copia l'etiqueta + + + + Copy message + Copia el missatge + + + + Copy amount + Copia l'import + + + + ReceiveRequestDialog + + + QR Code + Codi QR + + + + Copy &URI + Copia l'&URI + + + + Copy &Address + Copia l'&adreça + + + + &Save Image... + De&sa la imatge... + + + + Request payment to %1 + Sol·licita un pagament a %1 + + + + Payment information + Informació de pagament + + + + URI + URI + + + + Address + Adreça + + + + Amount + Import + + + + Label + Etiqueta + + + + Message + Missatge + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + + + Error encoding URI into QR Code. + Error en codificar l'URI en un codi QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etiqueta + + + + Message + Missatge + + + + (no label) + (sense etiqueta) + + + + (no message) + (sense missatge) + + + + (no amount requested) + (no s'ha sol·licitat import) + + + + Requested + Sol·licitat + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Envia monedes + + + + Coin Control Features + Característiques de control de les monedes + + + + Inputs... + Entrades... + + + + automatically selected + seleccionat automàticament + + + + Insufficient funds! + Fons insuficients! + + + + Quantity: + Quantitat: + + + + Bytes: + Bytes: + + + + Amount: + Import: + + + + Fee: + Comissió: + + + + After Fee: + Comissió posterior: + + + + Change: + Canvi: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + + + Custom change address + Personalitza l'adreça de canvi + + + + Transaction Fee: + Comissió de transacció + + + + Choose... + Tria... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + redueix els paràmetres de comissió + + + + per kilobyte + per kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + + + Hide + Amaga + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de ravens que la xarxa pugui processar. + + + + (read the tooltip) + (llegiu l'indicador de funció) + + + + Recommended: + Recomanada: + + + + Custom: + Personalitzada: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Envia a múltiples destinataris al mateix temps + + + + Add &Recipient + Afegeix &destinatari + + + + Clear all fields of the form. + Esborra tots els camps del formuari. + + + + Dust: + Polsim: + + + + Confirmation time target: + + + + + Clear &All + Neteja-ho &tot + + + + Balance: + Balanç: + + + + Confirm the send action + Confirma l'acció d'enviament + + + + S&end + E&nvia + + + + Copy quantity + Copia la quantitat + + + + Copy amount + Copia l'import + + + + Copy fee + Copia la comissió + + + + Copy after fee + Copia la comissió posterior + + + + Copy bytes + Copia els bytes + + + + Copy dust + Copia el polsim + + + + Copy change + Copia el canvi + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 a %2 + + + + Are you sure you want to send? + Esteu segur que ho voleu enviar? + + + + added as transaction fee + S'ha afegit una taxa de transacció + + + + Total Amount %1 + Import total %1 + + + + or + o + + + + Confirm send coins + Confirma l'enviament de monedes + + + + The recipient address is not valid. Please recheck. + L'adreça del destinatari no és vàlida. Torneu-la a comprovar. + + + + The amount to pay must be larger than 0. + L'import a pagar ha de ser major que 0. + + + + The amount exceeds your balance. + L'import supera el vostre balanç. + + + + The total exceeds your balance when the %1 transaction fee is included. + El total excedeix el vostre balanç quan s'afegeix la comissió a la transacció %1. + + + + Duplicate address found: addresses should only be used once each. + S'ha trobat una adreça duplicada: les adreces només s'haurien d'utilitzar una vegada cada una. + + + + Transaction creation failed! + La creació de la transacció ha fallat! + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + Una comissió superior a %1 es considera una comissió absurdament alta. + + + + Payment request expired. + La sol·licitud de pagament ha vençut. + + + + Pay only the required fee of %1 + Paga només la comissió necessària de %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Avís: adreça Raven no vàlida + + + + Warning: Unknown change address + Avís: adreça de canvi desconeguda + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (sense etiqueta) + + + + SendCoinsEntry + + + + + A&mount: + Q&uantitat: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + Escull una adreça feta servir anteriorment + + + + This is a normal payment. + Això és un pagament normal. + + + + The Raven address to send the payment to + L'adreça Raven on enviar el pagament + + + + Alt+A + Alta+A + + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + + Alt+P + Alt+P + + + + + + Remove this entry + Elimina aquesta entrada + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + + + S&ubtract fee from amount + S&ubstreu la comissió de l'import + + + + Message: + Missatge: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Aquesta és una sol·licitud de pagament no autenticada. + + + + + Send to: + + + + + This is an authenticated payment request. + Aquesta és una sol·licitud de pagament autenticada. + + + + Enter a label for this address to add it to the list of used addresses + Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + Introduïu una etiqueta per a aquesta adreça per afegir-la a la llibreta d'adreces + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + No apagueu l'ordinador fins que no desaparegui aquesta finestra. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatures - Signa / verifica un missatge + + + + &Sign Message + &Signa el missatge + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que sigui vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + + + The Raven address to sign the message with + L'adreça Raven amb què signar el missatge + + + + + Choose previously used address + Escull una adreça feta servir anteriorment + + + + + Alt+A + Alta+A + + + + Paste address from clipboard + Enganxar adreça del porta-retalls + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduïu aquí el missatge que voleu signar + + + + Signature + Signatura + + + + Copy the current signature to the system clipboard + Copia la signatura actual al porta-retalls del sistema + + + + Sign the message to prove you own this Raven address + Signa el missatge per provar que ets propietari d'aquesta adreça Raven + + + + Sign &Message + Signa el &missatge + + + + Reset all sign message fields + Neteja tots els camps de clau + + + + + Clear &All + Neteja-ho &tot + + + + &Verify Message + &Verifica el missatge + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + + + The Raven address the message was signed with + L'adreça Raven amb què va ser signat el missatge + + + + Verify the message to ensure it was signed with the specified Raven address + Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + + + Verify &Message + Verifica el &missatge + + + + Reset all verify message fields + Neteja tots els camps de verificació de missatge + + + + Click "Sign Message" to generate signature + Feu clic a «Signa el missatge» per a generar una signatura + + + + + The entered address is invalid. + L'adreça introduïda no és vàlida. + + + + + + + Please check the address and try again. + Comproveu l'adreça i torneu-ho a provar. + + + + + The entered address does not refer to a key. + L'adreça introduïda no referencia a cap clau. + + + + Wallet unlock was cancelled. + El desbloqueig del moneder ha estat cancelat. + + + + Private key for the entered address is not available. + La clau privada per a la adreça introduïda no està disponible. + + + + Message signing failed. + La signatura del missatge ha fallat. + + + + Message signed. + Missatge signat. + + + + The signature could not be decoded. + La signatura no s'ha pogut descodificar. + + + + + Please check the signature and try again. + Comproveu la signatura i torneu-ho a provar. + + + + The signature did not match the message digest. + La signatura no coincideix amb el resum del missatge. + + + + Message verification failed. + Ha fallat la verificació del missatge. + + + + Message verified. + Missatge verificat. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/fora de línia + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + abandonada + + + + %1/unconfirmed + %1/sense confirmar + + + + %1 confirmations + %1 confirmacions + + + + + Status + Estat + + + + + , has not been successfully broadcast yet + , encara no ha estat emès correctement + + + + + , broadcast through %n node(s) + + + + + + Date + Data + + + + Source + Font + + + + Generated + Generada + + + + + + + + From + De + + + + + unknown + desconegut + + + + + + + + To + A + + + + + own address + adreça pròpia + + + + + + watch-only + només lectura + + + + + label + etiqueta + + + + + + + + + + Credit + Crèdit + + + + matures in %n more block(s) + + + + + not accepted + no acceptat + + + + + + + + Debit + Dèbit + + + + Total debit + Dèbit total + + + + Total credit + Crèdit total + + + + Transaction fee + Comissió de transacció + + + + Net amount + Import net + + + + + + + Message + Missatge + + + + + Comment + Comentari + + + + + Transaction ID + ID de la transacció + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + Mercader + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu aquest bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + + + Net RVN amount + + + + + Debug information + Informació de depuració + + + + Transaction + Transacció + + + + Inputs + Entrades + + + + Amount + Import + + + + + true + cert + + + + + false + fals + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Aquest panell mostra una descripció detallada de la transacció + + + + Details for %1 + Detalls per %1 + + + + TransactionTableModel + + + Date + Data + + + + Type + Tipus + + + + Label + Etiqueta + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Obert fins %1 + + + + Offline + Fora de línia + + + + Unconfirmed + Sense confirmar + + + + Abandoned + Abandonada + + + + Confirming (%1 of %2 recommended confirmations) + Confirmant (%1 de %2 confirmacions recomanades) + + + + Confirmed (%1 confirmations) + Confirmat (%1 confirmacions) + + + + Conflicted + En conflicte + + + + Immature (%1 confirmations, will be available after %2) + Immadur (%1 confirmacions, serà disponible després de %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Aquest bloc no ha estat rebut per cap altre node i probablement no serà acceptat! + - An optional label to associate with the new receiving address. - Una etiqueta opcional que s'associarà amb la nova adreça receptora. + + Generated but not accepted + Generat però no acceptat - Use this form to request payments. All fields are <b>optional</b>. - Utilitzeu aquest formulari per sol·licitar pagaments. Tots els camps són <b>opcionals</b>. + + Received with + Rebuda amb - An optional amount to request. Leave this empty or zero to not request a specific amount. - Un import opcional per sol·licitar. Deixeu-ho en blanc o zero per no sol·licitar cap import específic. + + Received from + Rebuda de - Clear all fields of the form. - Esborra tots els camps del formuari. + + Sent to + Enviada a - Clear - Neteja + + Payment to yourself + Pagament a un mateix - Requested payments history - Historial de pagaments sol·licitats + + Mined + Minada - &Request payment - &Sol·licitud de pagament + + Asset Issued + - Show the selected request (does the same as double clicking an entry) - Mostra la sol·licitud seleccionada (fa el mateix que el doble clic a una entrada) + + Asset Reissued + - Show - Mostra + + Assets Received + - Remove the selected entries from the list - Esborra les entrades seleccionades de la llista + + Assets Sent + - Remove - Esborra + + watch-only + només lectura - Copy label - Copia l'etiqueta + + (n/a) + (n/a) - Copy message - Copia el missatge + + (no label) + (sense etiqueta) - Copy amount - Copia l'import + + Transaction status. Hover over this field to show number of confirmations. + Estat de la transacció. Desplaceu-vos sobre aquest camp per mostrar el nombre de confirmacions. - - - ReceiveRequestDialog - QR Code - Codi QR + + Date and time that the transaction was received. + Data i hora en que la transacció va ser rebuda. - Copy &URI - Copia l'&URI + + Type of transaction. + Tipus de transacció. - Copy &Address - Copia l'&adreça + + Whether or not a watch-only address is involved in this transaction. + Si està implicada o no una adreça només de lectura en la transacció. - &Save Image... - De&sa la imatge... + + User-defined intent/purpose of the transaction. + Intenció/propòsit de la transacció definida per l'usuari. - Request payment to %1 - Sol·licita un pagament a %1 + + Amount removed from or added to balance. + Import extret o afegit del balanç. - Payment information - Informació de pagament + + The asset (or RVN) removed or added to balance. + + + + TransactionView - URI - URI + + + All + Tot - Address - Adreça + + Today + Avui - Amount - Import + + This week + Aquesta setmana - Label - Etiqueta + + This month + Aquest mes - Message - Missatge + + Last month + El mes passat - Resulting URI too long, try to reduce the text for label / message. - URI resultant massa llarga, intenta reduir el text per a la etiqueta / missatge + + This year + Enguany - Error encoding URI into QR Code. - Error en codificar l'URI en un codi QR. + + Range... + Rang... - - - RecentRequestsTableModel - Date - Data + + Received with + Rebuda amb - Label - Etiqueta + + Sent to + Enviada a - Message - Missatge + + To yourself + A un mateix - (no label) - (sense etiqueta) + + Mined + Minada - (no message) - (sense missatge) + + Other + Altres - (no amount requested) - (no s'ha sol·licitat import) + + Enter address or label to search + Introduïu una adreça o una etiqueta per cercar - Requested - Sol·licitat + + Min amount + Import mínim - - - SendCoinsDialog - Send Coins - Envia monedes + + Asset name + - Coin Control Features - Característiques de control de les monedes + + Abandon transaction + - Inputs... - Entrades... + + Copy address + Copia l'adreça - automatically selected - seleccionat automàticament + + Copy label + Copia l'etiqueta - Insufficient funds! - Fons insuficients! + + Copy amount + Copia l'import - Quantity: - Quantitat: + + Copy transaction ID + Copia l'ID de transacció - Bytes: - Bytes: + + Copy raw transaction + Copia la transacció crua - Amount: - Import: + + Copy full transaction details + Copia els detalls complets de la transacció - Fee: - Comissió: + + Edit label + Editar etiqueta - After Fee: - Comissió posterior: + + Show transaction details + Mostra detalls de la transacció - Change: - Canvi: + + Browse with: + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Si s'activa això, però l'adreça de canvi està buida o bé no és vàlida, el canvi s'enviarà a una adreça generada de nou. + + Export Transaction History + Exporta l'historial de transacció - Custom change address - Personalitza l'adreça de canvi + + Comma separated file (*.csv) + Fitxer separat per comes (*.csv) - Transaction Fee: - Comissió de transacció + + Confirmed + Confirmat - Choose... - Tria... + + Watch-only + Només de lectura - collapse fee-settings - redueix els paràmetres de comissió + + Date + Data - per kilobyte - per kilobyte + + Type + Tipus - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Si la comissió personalitzada es defineix a 1000 satoshis i la transacció és de només 250 bytes, llavors «per kilobyte» només es paguen 250 satoshis en una comissió, mentre que amb la de «total com a mínim» es pagarien 1000 satoshis. Per a transaccions superiors al kilobyte, en tots dos casos es paga per kilobyte. + + Label + Etiqueta - Hide - Amaga + + Address + Adreça - total at least - total com a mínim + + Asset + - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - No hi ha cap problema en pagar només la comissió mínima sempre que hi hagi menys volum de transacció que espai en els blocs. Però tingueu present que això pot acabar en una transacció que mai es confirmi una vegada hi hagi més demanda de transaccions de ravens que la xarxa pugui processar. + + ID + ID - (read the tooltip) - (llegiu l'indicador de funció) + + Exporting Failed + L'exportació ha fallat - Recommended: - Recomanada: + + There was an error trying to save the transaction history to %1. + S'ha produït un error en provar de desar l'historial de transacció a %1. - Custom: - Personalitzada: + + Exporting Successful + Exportació amb èxit - (Smart fee not initialized yet. This usually takes a few blocks...) - (No s'ha inicialitzat encara la comissió intel·ligent. Normalment pren uns pocs blocs...) + + The transaction history was successfully saved to %1. + L'historial de transaccions s'ha desat correctament a %1. - normal - normal + + Asset Issued + - fast - ràpid + + Asset Reissued + - Send to multiple recipients at once - Envia a múltiples destinataris al mateix temps + + Asset Received + - Add &Recipient - Afegeix &destinatari + + Asset Sent + - Clear all fields of the form. - Esborra tots els camps del formuari. + + Copy asset name + - Dust: - Polsim: + + Range: + Rang: - Clear &All - Neteja-ho &tot + + to + a + + + UnitDisplayStatusBarControl - Balance: - Balanç: + + Unit to show amounts in. Click to select another unit. + Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + + WalletFrame - Confirm the send action - Confirma l'acció d'enviament + + No wallet has been loaded. + No s'ha carregat cap moneder. + + + WalletModel - S&end - E&nvia + + Send Coins + Envia monedes - Copy quantity - Copia la quantitat + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - Copy amount - Copia l'import + + Error: Wallet locked + - Copy fee - Copia la comissió + + Words: + - Copy after fee - Copia la comissió posterior + + Passphrase: + + + + WalletView - Copy bytes - Copia els bytes + + &Export + &Exporta - Copy dust - Copia el polsim + + Export the data in the current tab to a file + Exporta les dades de la pestanya actual a un fitxer - Copy change - Copia el canvi + + Backup Wallet + Còpia de seguretat del moneder - %1 to %2 - %1 a %2 + + Wallet Data (*.dat) + Dades del moneder (*.dat) - Are you sure you want to send? - Esteu segur que ho voleu enviar? + + Backup Failed + Ha fallat la còpia de seguretat - added as transaction fee - S'ha afegit una taxa de transacció + + There was an error trying to save the wallet data to %1. + S'ha produït un error en provar de desar les dades del moneder a %1. - Total Amount %1 - Import total %1 + + Backup Successful + La còpia de seguretat s'ha realitzat correctament - or - o + + The wallet data was successfully saved to %1. + S'han desat les dades del moneder correctament a %1. - Confirm send coins - Confirma l'enviament de monedes + + Recovery information + - The recipient address is not valid. Please recheck. - L'adreça del destinatari no és vàlida. Torneu-la a comprovar. + + No words available. + - The amount to pay must be larger than 0. - L'import a pagar ha de ser major que 0. + + This wallet is not a HD wallet, words not supported. + + + + raven-core - The amount exceeds your balance. - L'import supera el vostre balanç. + + Options: + Opcions: - The total exceeds your balance when the %1 transaction fee is included. - El total excedeix el vostre balanç quan s'afegeix la comissió a la transacció %1. + + Specify data directory + Especifica el directori de dades - Duplicate address found: addresses should only be used once each. - S'ha trobat una adreça duplicada: les adreces només s'haurien d'utilitzar una vegada cada una. + + Connect to a node to retrieve peer addresses, and disconnect + Connecta al node per obtenir les adreces de les connexions, i desconnecta - Transaction creation failed! - La creació de la transacció ha fallat! + + Specify your own public address + Especifiqueu la vostra adreça pública - A fee higher than %1 is considered an absurdly high fee. - Una comissió superior a %1 es considera una comissió absurdament alta. + + Accept command line and JSON-RPC commands + Accepta la línia d'ordres i ordres JSON-RPC - Payment request expired. - La sol·licitud de pagament ha vençut. + + Distributed under the MIT software license, see the accompanying file %s or %s + - Pay only the required fee of %1 - Paga només la comissió necessària de %1 + + If <category> is not supplied or if <category> = 1, output all debugging information. + Si no es proporciona <category> o si <category> = 1, treu a la sortida tota la informació de depuració. - Warning: Invalid Raven address - Avís: adreça Raven no vàlida + + Prune configured below the minimum of %d MiB. Please use a higher number. + Poda configurada per sota el mínim de %d MiB. Utilitzeu un nombre superior. - Warning: Unknown change address - Avís: adreça de canvi desconeguda + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + Poda: la darrera sincronització del moneder va més enllà de les dades podades. Cal que activeu -reindex (baixeu tota la cadena de blocs de nou en cas de node podat) - (no label) - (sense etiqueta) + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + Els rescanejos no són possible en el mode de poda. Caldrà que utilitzeu -reindex, que tornarà a baixar la cadena de blocs sencera. - - - SendCoinsEntry - A&mount: - Q&uantitat: + + Error: A fatal internal error occurred, see debug.log for details + Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls - Pay &To: - Paga &a: + + Fee (in %s/kB) to add to transactions you send (default: %s) + Comissió (en %s/kB) per afegir a les transaccions que envieu (per defecte: %s) - &Label: - &Etiqueta: + + Pruning blockstore... + S'està podant la cadena de blocs... - Choose previously used address - Escull una adreça feta servir anteriorment + + Run in the background as a daemon and accept commands + Executa en segon pla com a programa dimoni i accepta ordres - This is a normal payment. - Això és un pagament normal. + + Unable to start HTTP server. See debug log for details. + No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls. - The Raven address to send the payment to - L'adreça Raven on enviar el pagament + + Raven Core + Raven Core - Alt+A - Alta+A + + The %s developers + - Paste address from clipboard - Enganxar adreça del porta-retalls + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - Alt+P - Alt+P + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - Remove this entry - Elimina aquesta entrada + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - La comissió es deduirà de l'import que s'enviarà. El destinatari rebrà menys ravens que les que introduïu al camp d'import. Si se seleccionen múltiples destinataris, la comissió es dividirà per igual. + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 - S&ubtract fee from amount - S&ubstreu la comissió de l'import + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Message: - Missatge: + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - This is an unauthenticated payment request. - Aquesta és una sol·licitud de pagament no autenticada. + + Change address can not be sent to because it doesn't have the correct qualifier tags + - This is an authenticated payment request. - Aquesta és una sol·licitud de pagament autenticada. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Enter a label for this address to add it to the list of used addresses - Introduïu una etiqueta per a aquesta adreça per afegir-la a la llista d'adreces utilitzades + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Un missatge que s'ha adjuntat al raven: URI que s'emmagatzemarà amb la transacció per a la vostra referència. Nota: el missatge no s'enviarà a través de la xarxa Raven. + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Pay To: - Paga a: + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Memo: - Memo: + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Executa una ordre quan una transacció del moneder canviï (%s en cmd es canvia per TxID) - Enter a label for this address to add it to your address book - Introduïu una etiqueta per a aquesta adreça per afegir-la a la llibreta d'adreces + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - - - SendConfirmationDialog - Yes - + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - - - ShutdownWindow - Do not shut down the computer until this window disappears. - No apagueu l'ordinador fins que no desaparegui aquesta finestra. + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signatures - Signa / verifica un missatge + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - &Sign Message - &Signa el missatge + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Podeu signar missatges/acords amb les vostres adreces per provar que rebeu les ravens que s'hi envien. Aneu amb compte no signar res que sigui vague o aleatori, perquè en alguns atacs de suplantació es pot provar que hi signeu la vostra identitat. Només signeu aquelles declaracions completament detallades en què hi esteu d'acord. + + Please contribute if you find %s useful. Visit %s for further information about the software. + - The Raven address to sign the message with - L'adreça Raven amb què signar el missatge + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Choose previously used address - Escull una adreça feta servir anteriorment + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Alt+A - Alta+A + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - Paste address from clipboard - Enganxar adreça del porta-retalls + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) - Alt+P - Alt+P + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - Enter the message you want to sign here - Introduïu aquí el missatge que voleu signar + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Signature - Signatura + + This is the transaction fee you may discard if change is smaller than dust at this level + - Copy the current signature to the system clipboard - Copia la signatura actual al porta-retalls del sistema + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - Sign the message to prove you own this Raven address - Signa el missatge per provar que ets propietari d'aquesta adreça Raven + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Sign &Message - Signa el &missatge + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Reset all sign message fields - Neteja tots els camps de clau + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Clear &All - Neteja-ho &tot + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - &Verify Message - &Verifica el missatge + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Introduïu l'adreça del receptor, el missatge (assegureu-vos de copiar els salts de línia, espais, tabuladors, etc. exactament) i signatura de sota per verificar el missatge. Tingueu cura de no llegir més en la signatura del que està al missatge signat, per evitar ser enganyat per un atac d'home-en-el-mig. Tingueu en compte que això només demostra que la part que signa rep amb l'adreça, i no es pot provar l'enviament de qualsevol transacció! + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - The Raven address the message was signed with - L'adreça Raven amb què va ser signat el missatge + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Verify the message to ensure it was signed with the specified Raven address - Verificar el missatge per assegurar-se que ha estat signat amb una adreça Raven específica + + %d of last 100 blocks have unexpected version + - Verify &Message - Verifica el &missatge + + %s corrupt, salvage failed + - Reset all verify message fields - Neteja tots els camps de verificació de missatge + + -maxmempool must be at least %d MB + - Click "Sign Message" to generate signature - Feu clic a «Signa el missatge» per a generar una signatura + + <category> can be: + <category> pot ser: - The entered address is invalid. - L'adreça introduïda no és vàlida. + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Please check the address and try again. - Comproveu l'adreça i torneu-ho a provar. + + Append comment to the user agent string + - The entered address does not refer to a key. - L'adreça introduïda no referencia a cap clau. + + Attempt to recover private keys from a corrupt wallet on startup + - Wallet unlock was cancelled. - El desbloqueig del moneder ha estat cancelat. + + Block creation options: + Opcions de la creació de blocs: - Private key for the entered address is not available. - La clau privada per a la adreça introduïda no està disponible. + + Cannot resolve -%s address: '%s' + - Message signing failed. - La signatura del missatge ha fallat. + + Chain selection options: + - Message signed. - Missatge signat. + + Change index out of range + - The signature could not be decoded. - La signatura no s'ha pogut descodificar. + + Connection options: + Opcions de connexió: - Please check the signature and try again. - Comproveu la signatura i torneu-ho a provar. + + Copyright (C) %i-%i + - The signature did not match the message digest. - La signatura no coincideix amb el resum del missatge. + + Corrupted block database detected + S'ha detectat una base de dades de blocs corrupta - Message verification failed. - Ha fallat la verificació del missatge. + + Debugging/Testing options: + Opcions de depuració/proves: - Message verified. - Missatge verificat. + + Do not load the wallet and disable wallet RPC calls + No carreguis el moneder i inhabilita les crides RPC del moneder - - - SplashScreen - [testnet] - [testnet] + + Do you want to rebuild the block database now? + Voleu reconstruir la base de dades de blocs ara? - - - TrafficGraphWidget - KB/s - KB/s + + Enable publish hash block in <address> + - - - TransactionDesc - Open until %1 - Obert fins %1 + + Enable publish hash transaction in <address> + - %1/offline - %1/fora de línia + + Enable publish raw block in <address> + - abandoned - abandonada + + Enable publish raw transaction in <address> + - %1/unconfirmed - %1/sense confirmar + + Enable transaction replacement in the memory pool (default: %u) + - %1 confirmations - %1 confirmacions + + Error initializing block database + Error carregant la base de dades de blocs - Status - Estat + + Error initializing wallet database environment %s! + Error inicialitzant l'entorn de la base de dades del moneder %s! - , has not been successfully broadcast yet - , encara no ha estat emès correctement + + Error loading %s + - Date - Data + + Error loading %s: Wallet corrupted + - Source - Font + + Error loading %s: Wallet requires newer version of %s + - Generated - Generada + + Error loading block database + Error carregant la base de dades del bloc - From - De + + Error opening block database + Error en obrir la base de dades de blocs - unknown - desconegut + + Error: Disk space is low! + Error: Espai al disc baix! - To - A + + Failed to listen on any port. Use -listen=0 if you want this. + Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. - own address - adreça pròpia + + Importing... + S'està important... - watch-only - només lectura + + Incorrect or no genesis block found. Wrong datadir for network? + No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? - label - etiqueta + + Initialization sanity check failed. %s is shutting down. + - Credit - Crèdit + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + - not accepted - no acceptat + + Invalid amount for -fallbackfee=<amount>: '%s' + - Debit - Dèbit + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Total debit - Dèbit total + + Loading P2P addresses... + - Total credit - Crèdit total + + Loading banlist... + - Transaction fee - Comissió de transacció + + Location of the auth cookie (default: data dir) + - Net amount - Import net + + Not enough file descriptors available. + No hi ha suficient descriptors de fitxers disponibles. - Message - Missatge + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) - Comment - Comentari + + Print this help message and exit + - Transaction ID - ID de la transacció + + Print version and exit + - Merchant - Mercader + + Prune cannot be configured with a negative value. + La poda no es pot configurar amb un valor negatiu. - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Les monedes generades han de madurar %1 blocs abans de poder ser gastades. Quan genereu aquest bloc, es farà saber a la xarxa per tal d'afegir-lo a la cadena de blocs. Si no pot fer-se lloc a la cadena, el seu estat canviarà a «no acceptat» i no es podrà gastar. Això pot passar ocasionalment si un altre node genera un bloc en un marge de segons respecte al vostre. + + Prune mode is incompatible with -txindex. + El mode de poda és incompatible amb -txindex. - Debug information - Informació de depuració + + Rebuild chain state and block index from the blk*.dat files on disk + - Transaction - Transacció + + Rebuild chain state from the currently indexed blocks + - Inputs - Entrades + + Replaying blocks... + - Amount - Import + + Rewinding blocks... + - true - cert + + Set database cache size in megabytes (%d to %d, default: %d) + Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) - false - fals + + Specify wallet file (within data directory) + Especifica un fitxer de moneder (dins del directori de dades) - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Aquest panell mostra una descripció detallada de la transacció + + The source code is available from %s. + - Details for %1 - Detalls per %1 + + Transaction fee and change calculation failed + - - - TransactionTableModel - Date - Data + + Unable to bind to %s on this computer. %s is probably already running. + - Type - Tipus + + Unsupported argument -benchmark ignored, use -debug=bench. + - Label - Etiqueta + + Unsupported argument -debugnet ignored, use -debug=net. + - Open until %1 - Obert fins %1 + + Unsupported argument -tor found, use -onion. + - Offline - Fora de línia + + Unsupported logging category %s=%s. + - Unconfirmed - Sense confirmar + + Upgrading UTXO database + - Abandoned - Abandonada + + Use UPnP to map the listening port (default: %u) + Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) - Confirming (%1 of %2 recommended confirmations) - Confirmant (%1 de %2 confirmacions recomanades) + + Use the test chain + Utilitza la cadena de proves - Confirmed (%1 confirmations) - Confirmat (%1 confirmacions) + + User Agent comment (%s) contains unsafe characters. + - Conflicted - En conflicte + + Verifying blocks... + S'estan verificant els blocs... - Immature (%1 confirmations, will be available after %2) - Immadur (%1 confirmacions, serà disponible després de %2) + + Wallet %s resides outside data directory %s + El moneder %s resideix fora del directori de dades %s - This block was not received by any other nodes and will probably not be accepted! - Aquest bloc no ha estat rebut per cap altre node i probablement no serà acceptat! + + Wallet debugging/testing options: + Opcions de depuració/proves del moneder: - Generated but not accepted - Generat però no acceptat + + Wallet needed to be rewritten: restart %s to complete + Cal reescriure el moneder: reinicieu %s per a completar-ho - Received with - Rebuda amb + + Wallet options: + Opcions de moneder: - Received from - Rebuda de + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar aquesta opció moltes vegades - Sent to - Enviada a + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connectin. Feu servir la notació [host]:port per a IPv6 - Payment to yourself - Pagament a un mateix + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) - Mined - Minada + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) - watch-only - només lectura + + Error: Listening for incoming connections failed (listen returned error %s) + Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) - (n/a) - (n/a) + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) - (no label) - (sense etiqueta) + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Transaction status. Hover over this field to show number of confirmations. - Estat de la transacció. Desplaceu-vos sobre aquest camp per mostrar el nombre de confirmacions. + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) - Date and time that the transaction was received. - Data i hora en que la transacció va ser rebuda. + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) - Type of transaction. - Tipus de transacció. + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) - Whether or not a watch-only address is involved in this transaction. - Si està implicada o no una adreça només de lectura en la transacció. + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) - User-defined intent/purpose of the transaction. - Intenció/propòsit de la transacció definida per l'usuari. + + The transaction amount is too small to send after the fee has been deducted + L'import de la transacció és massa petit per enviar-la després que se'n dedueixi la comissió - Amount removed from or added to balance. - Import extret o afegit del balanç. + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la - - - TransactionView - All - Tot + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera - Today - Avui + + (default: %u) + (per defecte: %u) - This week - Aquesta setmana + + Accept public REST requests (default: %u) + Accepta sol·licituds REST públiques (per defecte: %u) - This month - Aquest mes + + Automatically create Tor hidden service (default: %d) + - Last month - El mes passat + + Connect through SOCKS5 proxy + Connecta a través del proxy SOCKS5 - This year - Enguany + + Error loading %s: You can't disable HD on an already existing HD wallet + - Range... - Rang... + + Error reading from database, shutting down. + Error en llegir la base de dades, tancant. - Received with - Rebuda amb + + Error upgrading chainstate database + - Sent to - Enviada a + + Imports blocks from external blk000??.dat file on startup + - To yourself - A un mateix + + Information + &Informació - Mined - Minada + + Invalid -onion address or hostname: '%s' + - Other - Altres + + Invalid -proxy address or hostname: '%s' + - Enter address or label to search - Introduïu una adreça o una etiqueta per cercar + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) - Min amount - Import mínim + + Invalid netmask specified in -whitelist: '%s' + S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» - Copy address - Copia l'adreça + + Keep at most <n> unconnectable transactions in memory (default: %u) + Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) - Copy label - Copia l'etiqueta + + Need to specify a port with -whitebind: '%s' + Cal especificar un port amb -whitebind: «%s» - Copy amount - Copia l'import + + Node relay options: + Opcions de transmissió del node: - Copy transaction ID - Copia l'ID de transacció + + RPC server options: + Opcions del servidor RPC: - Copy raw transaction - Copia la transacció crua + + Reducing -maxconnections from %d to %d, because of system limitations. + - Copy full transaction details - Copia els detalls complets de la transacció + + Rescan the block chain for missing wallet transactions on startup + - Edit label - Editar etiqueta + + Send trace/debug info to console instead of debug.log file + Envia informació de traça/depuració a la consola en comptes del fitxer debug.log - Show transaction details - Mostra detalls de la transacció + + Show all debugging options (usage: --help -help-debug) + Mostra totes les opcions de depuració (ús: --help --help-debug) - Export Transaction History - Exporta l'historial de transacció + + Shrink debug.log file on client startup (default: 1 when no -debug) + Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) - Comma separated file (*.csv) - Fitxer separat per comes (*.csv) + + Signing transaction failed + Ha fallat la signatura de la transacció - Confirmed - Confirmat + + The transaction amount is too small to pay the fee + L'import de la transacció és massa petit per pagar-ne una comissió - Watch-only - Només de lectura + + This is experimental software. + Això és programari experimental. - Date - Data + + Tor control port password (default: empty) + - Type - Tipus + + Tor control port to use if onion listening enabled (default: %s) + - Label - Etiqueta + + Transaction amount too small + Import de la transacció massa petit - Address - Adreça + + Transaction too large for fee policy + Transacció massa gran per a la política de comissions - ID - ID + + Transaction too large + La transacció és massa gran - Exporting Failed - L'exportació ha fallat + + Unable to bind to %s on this computer (bind returned error %s) + No s'ha pogut vincular a %s en aquest ordinador (la vinculació ha retornat l'error %s) - There was an error trying to save the transaction history to %1. - S'ha produït un error en provar de desar l'historial de transacció a %1. + + Upgrade wallet to latest format on startup + - Exporting Successful - Exportació amb èxit + + Username for JSON-RPC connections + Nom d'usuari per a connexions JSON-RPC - The transaction history was successfully saved to %1. - L'historial de transaccions s'ha desat correctament a %1. + + Valid Verifier + - Range: - Rang: + + Variable is not allow in the expression: ' + - to - a + + Verifier String doesn't exist for asset: + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Unitat en què mostrar els imports. Feu clic per seleccionar una altra unitat. + + Verifier String for asset trasnfer, not found + - - - WalletFrame - No wallet has been loaded. - No s'ha carregat cap moneder. + + Verifier not found for asset: + - - - WalletModel - Send Coins - Envia monedes + + Verifier string can not be empty. To default to true, use "true" + - - - WalletView - &Export - &Exporta + + Verifier string is empty + - Export the data in the current tab to a file - Exporta les dades de la pestanya actual a un fitxer + + Verifier string not found + - Backup Wallet - Còpia de seguretat del moneder + + Verifying wallet(s)... + - Wallet Data (*.dat) - Dades del moneder (*.dat) + + Warning + Avís - Backup Failed - Ha fallat la còpia de seguretat + + Warning: unknown new rules activated (versionbit %i) + Avís: regles noves desconegudes activades (versionbit %i) - There was an error trying to save the wallet data to %1. - S'ha produït un error en provar de desar les dades del moneder a %1. + + Whether to operate in a blocks only mode (default: %u) + - Backup Successful - La còpia de seguretat s'ha realitzat correctament + + You need to rebuild the database using -reindex to change -txindex + - The wallet data was successfully saved to %1. - S'han desat les dades del moneder correctament a %1. + + Zapping all transactions from wallet... + Se suprimeixen totes les transaccions del moneder... - - - raven-core - Options: - Opcions: + + ZeroMQ notification options: + - Specify data directory - Especifica el directori de dades + + Password for JSON-RPC connections + Contrasenya per a connexions JSON-RPC - Connect to a node to retrieve peer addresses, and disconnect - Connecta al node per obtenir les adreces de les connexions, i desconnecta + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Executa l'ordre quan el millor bloc canviï (%s en cmd es reemplaça per un resum de bloc) - Specify your own public address - Especifiqueu la vostra adreça pública + + Allow DNS lookups for -addnode, -seednode and -connect + Permet consultes DNS per a -addnode, -seednode i -connect - Accept command line and JSON-RPC commands - Accepta la línia d'ordres i ordres JSON-RPC + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) - If <category> is not supplied or if <category> = 1, output all debugging information. - Si no es proporciona <category> o si <category> = 1, treu a la sortida tota la informació de depuració. + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Prune configured below the minimum of %d MiB. Please use a higher number. - Poda configurada per sota el mínim de %d MiB. Utilitzeu un nombre superior. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - Poda: la darrera sincronització del moneder va més enllà de les dades podades. Cal que activeu -reindex (baixeu tota la cadena de blocs de nou en cas de node podat) + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. - Els rescanejos no són possible en el mode de poda. Caldrà que utilitzeu -reindex, que tornarà a baixar la cadena de blocs sencera. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Error: A fatal internal error occurred, see debug.log for details - Error: s'ha produït un error intern fatal. Vegeu debug.log per a més detalls + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Fee (in %s/kB) to add to transactions you send (default: %s) - Comissió (en %s/kB) per afegir a les transaccions que envieu (per defecte: %s) + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Pruning blockstore... - S'està podant la cadena de blocs... + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Run in the background as a daemon and accept commands - Executa en segon pla com a programa dimoni i accepta ordres + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Unable to start HTTP server. See debug log for details. - No s'ha pogut iniciar el servidor HTTP. Vegeu debug.log per a més detalls. + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) - Raven Core - Raven Core + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Vincula a una adreça específica i sempre escolta-hi. Utilitza la notació [host]:port per IPv6 + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Elimina totes les transaccions del moneder i només recupera aquelles de la cadena de blocs a través de -rescan a l'inici + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Executa una ordre quan una transacció del moneder canviï (%s en cmd es canvia per TxID) + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Defineix el nombre de fils de verificació d'scripts (%u a %d, 0 = auto, <0 = deixa tants nuclis lliures, per defecte: %d) + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - <category> can be: - <category> pot ser: + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Block creation options: - Opcions de la creació de blocs: + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Connection options: - Opcions de connexió: + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Corrupted block database detected - S'ha detectat una base de dades de blocs corrupta + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) - Debugging/Testing options: - Opcions de depuració/proves: + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Do not load the wallet and disable wallet RPC calls - No carreguis el moneder i inhabilita les crides RPC del moneder + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) - Do you want to rebuild the block database now? - Voleu reconstruir la base de dades de blocs ara? + + Output debugging information (default: %u, supplying <category> is optional) + Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) - Error initializing block database - Error carregant la base de dades de blocs + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Error initializing wallet database environment %s! - Error inicialitzant l'entorn de la base de dades del moneder %s! + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Error loading block database - Error carregant la base de dades del bloc + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Error opening block database - Error en obrir la base de dades de blocs + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Error: Disk space is low! - Error: Espai al disc baix! + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Failed to listen on any port. Use -listen=0 if you want this. - Ha fallat escoltar a qualsevol port. Feu servir -listen=0 si voleu fer això. + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Importing... - S'està important... + + The default height that is required before rewards are allowed to be sent out + - Incorrect or no genesis block found. Wrong datadir for network? - No s'ha trobat el bloc de gènesi o és incorrecte. El directori de dades de la xarxa és incorrecte? + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Invalid -onion address: '%s' - Adreça -onion no vàlida: '%s' + + This address doesn't contain the correct tags to pass the verifier string check: + - Not enough file descriptors available. - No hi ha suficient descriptors de fitxers disponibles. + + This is the transaction fee you may pay when fee estimates are not available. + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Només connecta als nodes de la xarxa <net> (ipv4, ipv6 o onion) + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Prune cannot be configured with a negative value. - La poda no es pot configurar amb un valor negatiu. + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Prune mode is incompatible with -txindex. - El mode de poda és incompatible amb -txindex. + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Set database cache size in megabytes (%d to %d, default: %d) - Defineix la mida de la memòria cau de la base de dades en megabytes (%d a %d, per defecte: %d) + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Set maximum block size in bytes (default: %d) - Defineix la mida màxim del bloc en bytes (per defecte: %d) + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Specify wallet file (within data directory) - Especifica un fitxer de moneder (dins del directori de dades) + + Unable to reissue asset: unit must be larger than current unit selection + - Use UPnP to map the listening port (default: %u) - Utilitza UPnP per a mapejar el port d'escolta (per defecte: %u) + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Use the test chain - Utilitza la cadena de proves + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Verifying blocks... - S'estan verificant els blocs... + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Verifying wallet... - S'està verificant el moneder... + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) - Wallet %s resides outside data directory %s - El moneder %s resideix fora del directori de dades %s + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Wallet debugging/testing options: - Opcions de depuració/proves del moneder: + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Wallet needed to be rewritten: restart %s to complete - Cal reescriure el moneder: reinicieu %s per a completar-ho + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Wallet options: - Opcions de moneder: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Permet les connexions JSON-RPC d'una font específica. Vàlid per a <ip> són una IP individual (p. ex., 1.2.3.4), una xarxa / màscara de xarxa (p. ex., 1.2.3.4/255.255.255.0) o una xarxa/CIDR (p. ex., 1.2.3.4/24). Es pot especificar aquesta opció moltes vegades + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Vincula l'adreça donada i posa a la llista blanca els iguals que s'hi connectin. Feu servir la notació [host]:port per a IPv6 + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Vincula a l'adreça donada per a escoltar les connexions JSON-RPC. Feu servir la notació [host]:port per a IPv6. Aquesta opció pot ser especificada moltes vegades (per defecte: vincula a totes les interfícies) + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Crea fitxers nous amb els permisos per defecte del sistema, en comptes de l'umask 077 (només efectiu amb la funcionalitat de moneder inhabilitada) + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Descobreix l'adreça IP pròpia (per defecte: 1 quan s'escolta i no -externalip o -proxy) + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Error: Listening for incoming connections failed (listen returned error %s) - Error: ha fallat escoltar les connexions entrants (l'escoltament ha retornat l'error %s) + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Executa l'ordre quan es rebi un avís rellevant o veiem una forquilla molt llarga (%s en cmd és reemplaçat per un missatge) + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Si no s'especifica una paytxfee (comissió de transacció de pagament), inclogueu suficient comissió per tal que les transaccions comencin a confirmar-se en una mitja de n blocs (per defecte: %u) + + %s is set very high! + - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Import no vàlid per a -maxtxfee=<amount>: '%s' (cal que sigui com a mínim la comissió de minrelay de %s per evitar que les comissions s'encallin) + + ' doesn't exist in the database + - Maximum size of data in data carrier transactions we relay and mine (default: %u) - Mida màxima de les dades en les transaccions de l'operador en què confiem i en les meves (per defecte: %u) + + ' has already been used + - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Genera a l'atzar credencials per a cada connexió proxy. Això habilita l'aïllament del flux de Tor (per defecte: %u) + + ' is not a valid character in the expression: + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Defineix la mida màxima de transaccions d'alta prioritat / baixa comissió en bytes (per defecte: %d) + + ' the amount trying to reissue is to large + - The transaction amount is too small to send after the fee has been deducted - L'import de la transacció és massa petit per enviar-la després que se'n dedueixi la comissió + + (default: %s) + (per defecte: %s) - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Els iguals en la llista blanca no poden ser bandejats per DoS i es transmetran sempre llurs transaccions, fins i tot si ja són a la mempool. Això és útil, p. ex., per a una passarel·la + + A space separated list of 12-words used to import a bip44 wallet + - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - Cal que torneu a construir la base de dades fent servir -reindex per tornar al mode no podat. Això tornarà a baixar la cadena de blocs sencera + + Always query for peer addresses via DNS lookup (default: %u) + Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) - (default: %u) - (per defecte: %u) + + Asset Transfer amounts must be greater than 0 + - Accept public REST requests (default: %u) - Accepta sol·licituds REST públiques (per defecte: %u) + + Asset doesn't exist: + - Connect through SOCKS5 proxy - Connecta a través del proxy SOCKS5 + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Error reading from database, shutting down. - Error en llegir la base de dades, tancant. + + Asset name is not valid + - Information - &Informació + + Asset with this name is already in the mempool + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Import no vàlid per a -paytxfee=<amount>: «%s» (ha de ser com a mínim %s) + + Done Loading + - Invalid netmask specified in -whitelist: '%s' - S'ha especificat una màscara de xarxa no vàlida a -whitelist: «%s» + + Enable publish raw asset messages in <address> + - Keep at most <n> unconnectable transactions in memory (default: %u) - Manté com a màxim <n> transaccions no connectables en memòria (per defecte: %u) + + Error creating %s: You can't create non-HD wallets with this version. + - Need to specify a port with -whitebind: '%s' - Cal especificar un port amb -whitebind: «%s» + + Error loading wallet %s. -wallet filename must be a regular file. + - Node relay options: - Opcions de transmissió del node: + + Error loading wallet %s. Duplicate -wallet filename specified. + - RPC server options: - Opcions del servidor RPC: + + Error loading wallet %s. Invalid characters in -wallet filename. + - Send trace/debug info to console instead of debug.log file - Envia informació de traça/depuració a la consola en comptes del fitxer debug.log + + Error not set + - Send transactions as zero-fee transactions if possible (default: %u) - Envia les transaccions com a transaccions de comissió zero sempre que sigui possible (per defecte: %u) + + Error writing bip 39 passphrase to database + - Show all debugging options (usage: --help -help-debug) - Mostra totes les opcions de depuració (ús: --help --help-debug) + + Error writing bip 39 vchseed to database + - Shrink debug.log file on client startup (default: 1 when no -debug) - Redueix el fitxer debug.log durant l'inici del client (per defecte: 1 quan no -debug) + + Error writing bip 39 words to database + - Signing transaction failed - Ha fallat la signatura de la transacció + + Every '(' must have a corresponding ')' in the expression: + - The transaction amount is too small to pay the fee - L'import de la transacció és massa petit per pagar-ne una comissió + + Failed to extract destination from change script + - This is experimental software. - Això és programari experimental. + + Failed to find restricted asset change address from inputs + - Transaction amount too small - Import de la transacció massa petit + + Failed to get asset data from script + - Transaction too large for fee policy - Transacció massa gran per a la política de comissions + + Failed to get verifier string from output: + - Transaction too large - La transacció és massa gran + + Failed to load Assets Database + - Unable to bind to %s on this computer (bind returned error %s) - No s'ha pogut vincular a %s en aquest ordinador (la vinculació ha retornat l'error %s) + + Flag must be 1 or 0 + - Username for JSON-RPC connections - Nom d'usuari per a connexions JSON-RPC + + How many blocks to check at startup (default: %u, 0 = all) + Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) - Warning - Avís + + Include IP addresses in debug output (default: %u) + Inclou l'adreça IP a la sortida de depuració (per defecte: %u) - Warning: unknown new rules activated (versionbit %i) - Avís: regles noves desconegudes activades (versionbit %i) + + Init Message Channels - Scanning Asset Transactions + - Zapping all transactions from wallet... - Se suprimeixen totes les transaccions del moneder... + + Insufficient asset funds + - Password for JSON-RPC connections - Contrasenya per a connexions JSON-RPC + + Invalid Qualifier Name: + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Executa l'ordre quan el millor bloc canviï (%s en cmd es reemplaça per un resum de bloc) + + Invalid expressions in verifier string: + - Allow DNS lookups for -addnode, -seednode and -connect - Permet consultes DNS per a -addnode, -seednode i -connect + + Invalid parameter: amount must be + - Loading addresses... - S'estan carregant les adreces... + + Invalid parameter: amount must be between + - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - (1 = manté les metadades de les tx, p. ex., propietari del compte i informació de sol·licitud del pagament, 2 = prescindeix de les metadades de les tx) + + Invalid parameter: asset amount can't be equal to or less than zero. + - How thorough the block verification of -checkblocks is (0-4, default: %u) - Com d'exhaustiva és la verificació de blocs del -checkblocks (0-4, per defecte: %u) + + Invalid parameter: asset amount greater than max money: + - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Manté un índex complet de transaccions, utilitzat per la crida rpc getrawtransaction (per defecte: %u) + + Invalid parameter: asset_name ' + - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Nombre de segons necessaris perquè els iguals de comportament qüestionable puguin tornar a connectar-se (per defecte: %u) + + Invalid parameter: has_ipfs must be 0 or 1. + - Output debugging information (default: %u, supplying <category> is optional) - Informació de sortida de la depuració (per defecte: %u, proporcionar <category> és opcional) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Utilitza un proxy SOCKS4 apart per a arribar als iguals a través de serveis ocults de Tor (per defecte: %s) + + Invalid parameter: reissuable must be 0 or 1 + - (default: %s) - (per defecte: %s) + + Invalid parameter: reissuable must be 0 + - Always query for peer addresses via DNS lookup (default: %u) - Demana sempre les adreces dels iguals a través de consultes DNS (per defecte: %u) + + Invalid parameter: units must be + - How many blocks to check at startup (default: %u, 0 = all) - Quants blocs per comprovar a l'inici (per defecte: %u, 0 = tots) + + Invalid parameter: units must be between 0-8. + - Include IP addresses in debug output (default: %u) - Inclou l'adreça IP a la sortida de depuració (per defecte: %u) + + Invalid syntax: + - Invalid -proxy address: '%s' - Adreça -proxy invalida: '%s' + + Keypool ran out, please call keypoolrefill first + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escolta les connexions JSON-RPC en <port> (per defecte: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escolta les connexions en <port> (per defecte: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Manté com a màxim <n> connexions a iguals (per defecte: %u) + Make the wallet broadcast transactions Fes que el moneder faci difusió de les transaccions + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Memòria intermèdia màxima de recepció per connexió, <n>*1000 bytes (per defecte: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + Memòria intermèdia màxima d'enviament per connexió, <n>*1000 bytes (per defecte: %u) + + + + Mempool cleared + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Posa davant de la sortida de depuració una marca horària (per defecte: %u) + Relay and mine data carrier transactions (default: %u) - Retransmet i mina les transaccions de l'operador (per defecte: %u) + Retransmet i mina les transaccions de l'operador (per defecte: %u) + Relay non-P2SH multisig (default: %u) Retransmet multisig no P2SH (per defecte: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Defineix la mida clau disponible a <n> (per defecte: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Defineix el nombre de fils a crides de servei RPC (per defecte: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especifica el fitxer de configuració (per defecte: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) - Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Especifica el temps d'espera de la connexió en milisegons (mínim: 1, per defecte: %d) + Specify pid file (default: %s) Especifica el fitxer pid (per defecte: %s) + Spend unconfirmed change when sending transactions (default: %u) Gasta el canvi no confirmat en enviar les transaccions (per defecte: %u) + Starting network threads... - S'estan iniciant els fils de la xarxa... + S'estan iniciant els fils de la xarxa... + + + + The symbol: ' + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Llindar per a desconnectar els iguals de comportament qüestionable (per defecte: %u) + Transaction amounts must not be negative Els imports de la transacció no han de ser negatius + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient La transacció ha de tenir com a mínim un destinatari - Unknown network specified in -onlynet: '%s' - Xarxa desconeguda especificada a -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Xarxa desconeguda especificada a -onlynet: '%s' + + + Insufficient funds Balanç insuficient + Loading block index... - S'està carregant l'índex de blocs... - - - Add a node to connect to and attempt to keep the connection open - Afegeix un node per a connectar-s'hi i intenta mantenir-hi la connexió oberta + S'està carregant l'índex de blocs... + Loading wallet... - S'està carregant el moneder... + S'està carregant el moneder... + Cannot downgrade wallet No es pot reduir la versió del moneder - Cannot write default address - No es pot escriure l'adreça per defecte - - + Rescanning... - S'està reescanejant... - - - Done loading - Ha acabat la càrrega + S'està reescanejant... + Error Error diff --git a/src/qt/locale/raven_cs.ts b/src/qt/locale/raven_cs.ts index e3190ff265..687605dc3d 100644 --- a/src/qt/locale/raven_cs.ts +++ b/src/qt/locale/raven_cs.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Pravým tlačítkem myši můžeš upravit označení adresy + Create a new address Vytvoř novou adresu + &New &Nová + Copy the currently selected address to the system clipboard Zkopíruj tuto adresu do systémové schránky + &Copy &Kopíruj + C&lose &Zavřít + Delete the currently selected address from the list Smaž tuto adresu ze seznamu + Export the data in the current tab to a file Exportuj data z tohoto panelu do souboru + &Export &Export + &Delete S&maž + Choose the address to send coins to Zvol adresu, na kterou pošleš mince + Choose the address to receive coins with Zvol adres na příjem mincí + C&hoose &Zvol + Sending addresses Odesílací adresy + Receiving addresses Přijímací adresy + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Tohle jsou tvé ravenové adresy pro posílání plateb. Před odesláním mincí si vždy zkontroluj částku a cílovou adresu. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Tohle jsou tvé ravenové adresy pro příjem plateb. Nezapomeň si pro každou transakci vždy vygenerovat novou adresu. + &Copy Address &Kopíruj adresu + Copy &Label Kopíruj &označení + &Edit &Uprav + Export Address List Export seznamu adres + Comma separated file (*.csv) Formát CSV (*.csv) + Exporting Failed Exportování selhalo + There was an error trying to save the address list to %1. Please try again. Při ukládání seznamu adres do %1 se přihodila nějaká chyba. Zkus to prosím znovu. @@ -103,14 +125,17 @@ AddressTableModel + Label Označení + Address Adresa + (no label) (bez označení) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Změna hesla + Enter passphrase Zadej platné heslo + New passphrase Zadej nové heslo + Repeat new passphrase Totéž heslo ještě jednou + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Zadej nové heslo k peněžence.<br/>Použij <b>alespoň deset náhodných znaků</b> nebo <b>alespoň osm slov</b>. + Encrypt wallet Zašifruj peněženku + This operation needs your wallet passphrase to unlock the wallet. K provedení této operace musíš zadat heslo k peněžence, aby se mohla odemknout. + Unlock wallet Odemkni peněženku + This operation needs your wallet passphrase to decrypt the wallet. K provedení této operace musíš zadat heslo k peněžence, aby se mohla dešifrovat. + Decrypt wallet Dešifruj peněženku + Change passphrase Změň heslo + Enter the old passphrase and new passphrase to the wallet. Zadej staré a nové heslo k peněžence. + Confirm wallet encryption Potvrď zašifrování peněženky + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Upozornění: Pokud si zašifruješ peněženku a ztratíš či zapomeneš heslo, <b>PŘIJDEŠ O VŠECHNY RAVENY</b>! + Are you sure you wish to encrypt your wallet? Jsi si jistý, že chceš peněženku zašifrovat? + + Wallet encrypted Peněženka je zašifrována + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 se teď ukončí, aby dokončil zašifrování. Pamatuj však, že pouhé zašifrování peněženky nemůže zabránit krádeži tvých ravenů malwarem, kterým se může počítač nakazit. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. DŮLEŽITÉ: Všechny předchozí zálohy peněženky by měly být nahrazeny nově vygenerovanou, zašifrovanou peněženkou. Z bezpečnostních důvodů budou předchozí zálohy nešifrované peněženky nepoužitelné, jakmile začneš používat novou zašifrovanou peněženku. + + + + Wallet encryption failed Zašifrování peněženky selhalo + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Zašifrování peněženky selhalo kvůli vnitřní chybě. Tvá peněženka tedy nebyla zašifrována. + + The supplied passphrases do not match. Zadaná hesla nejsou shodná. + Wallet unlock failed Nepodařilo se odemknout peněženku + + + The passphrase entered for the wallet decryption was incorrect. Nezadal jsi správné heslo pro dešifrování peněženky. + Wallet decryption failed Nepodařilo se dešifrovat peněženku + Wallet passphrase was successfully changed. Heslo k peněžence bylo v pořádku změněno. + + Warning: The Caps Lock key is on! Upozornění: Caps Lock je zapnutý! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Maska + + Asset Selection + - Banned Until - Blokován do + + Quantity: + - - - RavenGUI - Sign &message... - Po&depiš zprávu... + + Bytes: + - Synchronizing with network... - Synchronizuji se se sítí... + + Amount: + - &Overview - &Přehled + + Dust: + - Node - Uzel + + Fee: + - Show general overview of wallet - Zobraz celkový přehled peněženky + + After Fee: + - &Transactions - &Transakce + + Change: + - Browse transaction history - Procházej historii transakcí + + (un)select all + - E&xit - &Konec + + Tree mode + - Quit application - Ukonči aplikaci + + List mode + - &About %1 - O &%1 + + View assets that you have the ownership asset for + - Show information about %1 - Zobraz informace o %1 + + View Administrator Assets + - About &Qt - O &Qt + + Asset + - Show information about Qt - Zobraz informace o Qt + + Amount + - &Options... - &Možnosti... + + Received with label + - Modify configuration options for %1 - Uprav nastavení %1 + + Received with address + - &Encrypt Wallet... - Zaši&fruj peněženku... + + Date + - &Backup Wallet... - &Zazálohuj peněženku... + + Confirmations + - &Change Passphrase... - Změň &heslo... + + Confirmed + - &Sending addresses... - Od&esílací adresy... + + Copy address + - &Receiving addresses... - Př&ijímací adresy... + + Copy label + - Open &URI... - Načíst &URI... + + + Copy amount + - Click to disable network activity. - Kliknutím zařízneš spojení se sítí. + + Copy transaction ID + - Network activity disabled. - Síť je vypnutá. + + Lock unspent + - Click to enable network activity again. - Kliknutím opět umožníš spojení do sítě. + + Unlock unspent + - Syncing Headers (%1%)... - Synchronizuji záhlaví bloků (%1 %)… + + Copy quantity + - Reindexing blocks on disk... - Vytvářím nový index bloků na disku... + + Copy fee + - Send coins to a Raven address - Pošli mince na ravenovou adresu + + Copy after fee + - Backup wallet to another location - Zazálohuj peněženku na jiné místo + + Copy bytes + - Change the passphrase used for wallet encryption - Změň heslo k šifrování peněženky + + Copy dust + - &Debug window - &Ladicí okno + + Copy change + - Open debugging and diagnostic console - Otevři ladicí a diagnostickou konzoli + + (%1 locked) + - &Verify message... - &Ověř zprávu... + + yes + - Raven - Raven + + no + - Wallet - Peněženka + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - P&ošli + + Can vary +/- %1 satoshi(s) per input. + - &Receive - Při&jmi + + + (no label) + - &Show / Hide - &Zobraz/Skryj + + change from %1 (%2) + - Show or hide the main Window - Zobraz nebo skryj hlavní okno + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Zašifruj soukromé klíče ve své peněžence + + Name + - Sign messages with your Raven addresses to prove you own them - Podepiš zprávy svými ravenovými adresami, čímž prokážeš, že jsi jejich vlastníkem + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Ověř zprávy, aby ses ujistil, že byly podepsány danými ravenovými adresami + + + Send Coins + - &File - &Soubor + + Asset Control Features + - &Settings - &Nastavení + + Inputs... + - &Help - Nápověd&a + + automatically selected + - Tabs toolbar - Panel s listy + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Požaduj platby (generuje QR kódy a raven: URI) + + Quantity: + - Show the list of used sending addresses and labels - Ukaž seznam použitých odesílacích adres a jejich označení + + Bytes: + - Show the list of used receiving addresses and labels - Ukaž seznam použitých přijímacích adres a jejich označení + + Amount: + - Open a raven: URI or payment request - Načti raven: URI nebo platební požadavek + + Dust: + - &Command-line options - Ar&gumenty příkazové řádky - - - %n active connection(s) to Raven network - %n aktivní spojení do ravenové sítě%n aktivní spojení do ravenové sítě%n aktivních spojení do ravenové sítě + + Fee: + - Indexing blocks on disk... - Vytvářím index bloků na disku... + + After Fee: + - Processing blocks on disk... - Zpracovávám bloky na disku... + + Change: + - - Processed %n block(s) of transaction history. - Zpracován %n blok transakční historie.Zpracovány %n bloky transakční historie.Zpracováno %n bloků transakční historie. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - Stahuji ještě %1 bloků transakcí + + Custom change address + - Last received block was generated %1 ago. - Poslední stažený blok byl vygenerován %1 zpátky. + + Transaction Fee: + - Transactions after this will not yet be visible. - Následné transakce ještě nebudou vidět. + + Choose... + - Error - Chyba + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Upozornění + + Warning: Fee estimation is currently not possible. + - Information - Informace + + collapse fee-settings + - Up to date - Aktuální + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - Seznam argumentů Ravenu pro příkazovou řádku získáš v nápovědě %1 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1 klient + + per kilobyte + - Connecting to peers... - Připojuji se… + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Stahuji... + + (read the tooltip) + - Date: %1 - - Datum: %1 - + + Recommended: + - Amount: %1 - - Částka: %1 - + + Custom: + - Type: %1 - - Typ: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Označení: %1 - + + Confirmation time target: + - Address: %1 - - Adresa: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Odeslané transakce + + Request Replace-By-Fee + - Incoming transaction - Příchozí transakce + + Confirm the send action + - HD key generation is <b>enabled</b> - HD generování klíčů je <b>zapnuté</b> + + S&end + - HD key generation is <b>disabled</b> - HD generování klíčů je <b>vypnuté</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Stala se fatální chyba. Raven nemůže bezpečně pokračovat v činnosti, a proto skončí. + + Add &Recipient + - - - CoinControlDialog - Coin Selection - Výběr mincí + + Balance: + - Quantity: - Počet: + + Copy quantity + - Bytes: - Bajtů: + + Copy amount + - Amount: - Částka: + + Copy fee + - Fee: - Poplatek: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Maska + + + + Banned Until + Blokován do + + + + CoinControlDialog + + + Coin Selection + Výběr mincí + + + + Quantity: + Počet: + + + + Bytes: + Bajtů: + + + + Amount: + Částka: + + + + Fee: + Poplatek: + + + Dust: Prach: + After Fee: Čistá částka: + Change: Drobné: + (un)select all (od)označit všechny + Tree mode Zobrazit jako strom + List mode Vypsat jako seznam + Amount Částka + Received with label Příjem na označení + Received with address Příjem na adrese + Date Datum + Confirmations Potvrzení + Confirmed Potvrzeno + Copy address Kopíruj adresu + Copy label Kopíruj její označení + + Copy amount Kopíruj částku + Copy transaction ID Kopíruj ID transakce + Lock unspent Zamkni neutracené + Unlock unspent Odemkni k utracení + Copy quantity Kopíruj počet + Copy fee Kopíruj poplatek + Copy after fee Kopíruj čistou částku + Copy bytes Kopíruj bajty + Copy dust Kopíruj prach + Copy change Kopíruj drobné + (%1 locked) (%1 zamčeno) + yes ano + no ne + This label turns red if any recipient receives an amount smaller than the current dust threshold. Popisek zčervená, pokud má některý příjemce obdržet částku menší, než je aktuální práh pro prach. + Can vary +/- %1 satoshi(s) per input. Může se lišit o +/– %1 satoshi na každý vstup. + + (no label) (bez označení) + change from %1 (%2) drobné z %1 (%2) + (change) (drobné) - EditAddressDialog + CreateAssetDialog - Edit Address - Uprav adresu + + Coin Control Features + - &Label - &Označení + + Inputs... + - The label associated with this address list entry - Označení spojené s tímto záznamem v seznamu adres + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Adresa spojená s tímto záznamem v seznamu adres. Lze upravovat jen pro odesílací adresy. + + Insufficient funds! + - &Address - &Adresa + + + Quantity: + - New receiving address - Nová přijímací adresa + + Bytes: + - New sending address - Nová odesílací adresa + + Amount: + - Edit receiving address - Uprav přijímací adresu + + Dust: + - Edit sending address - Uprav odesílací adresu + + Fee: + - The entered address "%1" is not a valid Raven address. - Zadaná adresa „%1“ není platná ravenová adresa. + + After Fee: + - The entered address "%1" is already in the address book. - Zadaná adresa „%1“ už v adresáři je. + + Change: + - Could not unlock wallet. - Nemohu odemknout peněženku. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Nepodařilo se mi vygenerovat nový klíč. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Vytvoří se nový adresář pro data. + + Name: + - name - název + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Adresář už existuje. Přidej %1, pokud tady chceš vytvořit nový adresář. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Taková cesta už existuje, ale není adresářem. + + Check Availabilty + - Cannot create data directory here. - Tady nemůžu vytvořit adresář pro data. + + Address: + - - - HelpMessageDialog - version - verze + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - O %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Argumenty příkazové řádky + + Warning: + - Usage: - Užití: + + The number of assets that will be created + - command-line options - možnosti příkazové řádky + + Units: + - UI Options: - Možnosti UI: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Zvolit při startu adresář pro data (výchozí: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Nastavit jazyk, například „de_DE“ (výchozí: systémové nastavení) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Nastartovat minimalizovaně + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Nastavit kořenové SSL certifikáty pro platební požadavky (výchozí: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Zobrazit startovací obrazovku (výchozí: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Vrátit všechny volby měněné v GUI na výchozí hodnoty + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Vítej + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Vítej v %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Tohle je poprvé, co spouštíš %1, takže si můžeš zvolit, kam bude ukládat svá data. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 bude stahovat kopii řetězce bloků. Proto bude potřeba do tohoto adresáře uložit nejméně %2 GB dat – toto číslo bude navíc v průběhu času růst. Tvá peněženka bude rovněž uložena v tomto adresáři. + + Choose... + - Use the default data directory - Použij výchozí adresář pro data + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Použij tento adresář pro data: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Chyba: Nejde vytvořit požadovaný adresář pro data „%1“. + + collapse fee-settings + - Error - Chyba + + Hide + - - %n GB of free space available - %n GB volného místa%n GB volného místa%n GB volného místa + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (z potřebného %n GB)(z potřebných %n GB)(z potřebných %n GB) + + + per kilobyte + - - - ModalOverlay - Form - Formulář + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Nedávné transakce ještě nemusí být vidět, takže stav tvého účtu nemusí být platný. Jakmile se však tvá peněženka dosynchronizuje s ravenovou sítí (viz informace níže), tak už bude stav správně. + + (read the tooltip) + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Utrácení ravenů, které už utratily zatím nezobrazené transakce, nebude ravenovou sítí umožněno. + + Recommended: + - Number of blocks left - Zbývající počet bloků + + C&ustom: + - Unknown... - neznámý… + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Last block time - Čas posledního bloku + + Confirmation time target: + - Progress - Stav + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Progress increase per hour - Postup za hodinu + + Request Replace-By-Fee + - calculating... - propočítávám… + + Create Asset + - Estimated time left until synced - Odhadovaný zbývající čas + + Clear + - Hide - Skryj + + Balance: + - Unknown. Syncing Headers (%1)... - Neznámý. Synchronizuji záhlaví bloků (%1)… + + 123.456 RVN + - - - OpenURIDialog - Open URI - Načíst URI + + Copy quantity + - Open payment request from URI or file - Načíst platební požadavek z URI nebo ze souboru + + Copy amount + - URI: - URI: + + Copy fee + - Select payment request file - Vyber soubor platebního požadavku + + Copy after fee + - Select payment request file to open - Vyber soubor platebního požadavku k načtení + + Copy bytes + - - - OptionsDialog - Options - Možnosti + + Copy dust + - &Main - &Hlavní + + Copy change + - Automatically start %1 after logging in to the system. - Automaticky spustí %1 po přihlášení do systému. + + %1 (%2 blocks) + - &Start %1 on system login - S&pustit %1 po přihlášení do systému + + Main Asset + - Size of &database cache - Velikost &databázové cache + + Sub Asset + - MB - MB + + Unique Asset + - Number of script &verification threads - Počet vláken pro &verifikaci skriptů + + Messaging Channel Asset + - Accept connections from outside - Přijímat spojení zvenčí + + Qualifier Asset + - Allow incoming connections - Přijímat příchozí spojení + + Sub Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP adresa proxy (např. IPv4: 127.0.0.1/IPv6: ::1) + + Restricted Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Zavřením se aplikace minimalizuje. Pokud je tato volba zaškrtnuta, tak se aplikace ukončí pouze zvolením Konec v menu. + + Asset Type + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL třetích stran (např. block exploreru), která se zobrazí v kontextovém menu v záložce Transakce. %s v URL se nahradí hashem transakce. Více URL odděl svislítkem |. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Third party transaction URLs - URL transakcí třetích stran + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Active command-line options that override above options: - Aktivní argumenty z příkazové řádky, které přetloukly tato nastavení: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Reset all client options to default. - Vrátí všechny volby na výchozí hodnoty. + + + + Warning: Invalid Raven address + - &Reset Options - &Obnovit nastavení + + Warning: Restricted Assets Reissuance requires an address + - &Network - &Síť + + Valid Asset + - (0 = auto, <0 = leave that many cores free) - (0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) + + Invalid: Asset name already in use + - W&allet - P&eněženka + + Error: Asset Database not in sync + - Expert - Pokročilá nastavení + + + %1 to %2 + - Enable coin &control features - Povolit ruční správu &mincí + + Are you sure you want to send? + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Pokud zakážeš utrácení ještě nepotvrzených drobných, nepůjde použít drobné z transakce, dokud nebude mít alespoň jedno potvrzení. Ovlivní to také výpočet stavu účtu. + + added as transaction fee + - &Spend unconfirmed change - &Utrácet i ještě nepotvrzené drobné + + Total Amount %1 + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené. + + or + - Map port using &UPnP - Namapovat port přes &UPnP + + Confirm send assets + - Connect to the Raven network through a SOCKS5 proxy. - Připojí se do ravenové sítě přes SOCKS5 proxy. + + Invalid: + - &Connect through SOCKS5 proxy (default proxy): - &Připojit přes SOCKS5 proxy (výchozí proxy): + + Copy + - Proxy &IP: - &IP adresa proxy: + + Transaction ID Copied + - &Port: - Por&t: + + Asset transaction sent to network: + - - Port of the proxy (e.g. 9050) - Port proxy (např. 9050) + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Použije se k připojování k protějskům přes: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Ukazuje, jestli se zadaná výchozí SOCKS5 proxy používá k připojování k peerům v rámci tohoto typu sítě. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Připojí se do ravenové sítě přes SOCKS5 proxy vyhrazenou pro skryté služby v Tor síti. + + Edit Address + Uprav adresu - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Použít samostatnou SOCKS5 proxy ke spojení s protějšky přes skryté služby v Toru: + + &Label + &Označení - &Window - O&kno + + The label associated with this address list entry + Označení spojené s tímto záznamem v seznamu adres - &Hide the icon from the system tray. - Skryje ikonu, která se zobrazuje v panelu. + + The address associated with this address list entry. This can only be modified for sending addresses. + Adresa spojená s tímto záznamem v seznamu adres. Lze upravovat jen pro odesílací adresy. - Hide tray icon - Skrýt &ikonu z panelu + + &Address + &Adresa - Show only a tray icon after minimizing the window. - Po minimalizaci okna zobrazí pouze ikonu v panelu. + + New receiving address + Nová přijímací adresa - &Minimize to the tray instead of the taskbar - &Minimalizovávat do ikony v panelu + + New sending address + Nová odesílací adresa - M&inimize on close - Za&vřením minimalizovat + + Edit receiving address + Uprav přijímací adresu - &Display - Zobr&azení + + Edit sending address + Uprav odesílací adresu - User Interface &language: - &Jazyk uživatelského rozhraní: + + The entered address "%1" is not a valid Raven address. + Zadaná adresa „%1“ není platná ravenová adresa. - The user interface language can be set here. This setting will take effect after restarting %1. - Tady lze nastavit jazyk uživatelského rozhraní. Nastavení se projeví až po restartování %1. + + The entered address "%1" is already in the address book. + Zadaná adresa „%1“ už v adresáři je. - &Unit to show amounts in: - Je&dnotka pro částky: + + Could not unlock wallet. + Nemohu odemknout peněženku. - Choose the default subdivision unit to show in the interface and when sending coins. - Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí. + + New key generation failed. + Nepodařilo se mi vygenerovat nový klíč. + + + FreespaceChecker - Whether to show coin control features or not. - Zda ukazovat možnosti pro ruční správu mincí nebo ne. + + A new data directory will be created. + Vytvoří se nový adresář pro data. - &OK - &Budiž + + name + název - &Cancel - &Zrušit + + Directory already exists. Add %1 if you intend to create a new directory here. + Adresář už existuje. Přidej %1, pokud tady chceš vytvořit nový adresář. - default - výchozí + + Path already exists, and is not a directory. + Taková cesta už existuje, ale není adresářem. - none - žádné + + Cannot create data directory here. + Tady nemůžu vytvořit adresář pro data. + + + FreezeAddress - Confirm options reset - Potvrzení obnovení nastavení + + Frame + - Client restart required to activate changes. - K aktivaci změn je potřeba restartovat klienta. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - Klient se vypne, chceš pokračovat? + + Address: + - This change would require a client restart. - Tahle změna bude chtít restartovat klienta. + + Custom Change Address + - The supplied proxy address is invalid. - Zadaná adresa proxy je neplatná. + + IPFS / Hash: + - - - OverviewPage - Form - Formulář + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s ravenovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena. + + Global Options + - Watch-only: - Sledované: + + Free&ze trading on this address + - Available: - K dispozici: + + Unfreeze tradin&g on this address + - Your current spendable balance - Aktuální disponibilní stav tvého účtu + + Freeze all &trading for the selected restricted asset + - Pending: - Očekáváno: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Souhrn transakcí, které ještě nejsou potvrzené a které se ještě nezapočítávají do celkového disponibilního stavu účtu + + Check + - Immature: - Nedozráno: + + Clear + - Mined balance that has not yet matured - Vytěžené mince, které ještě nejsou zralé + + Submit + - Balances - Stavy účtů + + Data has been validated, You can now submit the restriction transaction + - Total: - Celkem: + + Must have a restricted asset selected + - Your current total balance - Celkový stav tvého účtu + + Address is already frozen + - Your current balance in watch-only addresses - Aktuální stav účtu sledovaných adres + + Address is not frozen + - Spendable: - Běžné: + + Restricted asset is already frozen globally + - Recent transactions - Poslední transakce + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Nepotvrzené transakce sledovaných adres + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Vytěžené mince na sledovaných adresách, které ještě nejsou zralé + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Aktuální stav účtu sledovaných adres + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Chyba platebního požadavku + + version + verze - Cannot start raven: click-to-pay handler - Nemůžu spustit raven: obsluha click-to-pay + + + (%1-bit) + (%1-bit) + + + + About %1 + O %1 + + + + Command-line options + Argumenty příkazové řádky + + + + Usage: + Užití: + + + + command-line options + možnosti příkazové řádky + + + + UI Options: + Možnosti UI: + + + + Choose data directory on startup (default: %u) + Zvolit při startu adresář pro data (výchozí: %u) + + + + Set language, for example "de_DE" (default: system locale) + Nastavit jazyk, například „de_DE“ (výchozí: systémové nastavení) + + + + Start minimized + Nastartovat minimalizovaně + + + + Set SSL root certificates for payment request (default: -system-) + Nastavit kořenové SSL certifikáty pro platební požadavky (výchozí: -system-) + + + + Show splash screen on startup (default: %u) + Zobrazit startovací obrazovku (výchozí: %u) + + + + Reset all settings changed in the GUI + Vrátit všechny volby měněné v GUI na výchozí hodnoty + + + + Intro + + + Welcome + Vítej + + + + Welcome to %1. + Vítej v %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Tohle je poprvé, co spouštíš %1, takže si můžeš zvolit, kam bude ukládat svá data. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Použij výchozí adresář pro data + + + + Use a custom data directory: + Použij tento adresář pro data: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Chyba: Nejde vytvořit požadovaný adresář pro data „%1“. + + + + Error + Chyba + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulář + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Nedávné transakce ještě nemusí být vidět, takže stav tvého účtu nemusí být platný. Jakmile se však tvá peněženka dosynchronizuje s ravenovou sítí (viz informace níže), tak už bude stav správně. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Utrácení ravenů, které už utratily zatím nezobrazené transakce, nebude ravenovou sítí umožněno. + + + + Number of blocks left + Zbývající počet bloků + + + + + + Unknown... + neznámý… + + + + Last block time + Čas posledního bloku + + + + Progress + Stav + + + + Progress increase per hour + Postup za hodinu + + + + + calculating... + propočítávám… + + + + Estimated time left until synced + Odhadovaný zbývající čas + + + + Hide + Skryj + + + + Unknown. Syncing Headers (%1)... + Neznámý. Synchronizuji záhlaví bloků (%1)… + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Načíst URI + + + + Open payment request from URI or file + Načíst platební požadavek z URI nebo ze souboru + + + + URI: + URI: + + + + Select payment request file + Vyber soubor platebního požadavku + + + + Select payment request file to open + Vyber soubor platebního požadavku k načtení + + + + OptionsDialog + + + Options + Možnosti + + + + &Main + &Hlavní + + + + Automatically start %1 after logging in to the system. + Automaticky spustí %1 po přihlášení do systému. + + + + &Start %1 on system login + S&pustit %1 po přihlášení do systému + + + + Size of &database cache + Velikost &databázové cache + + + + MB + MB + + + + Number of script &verification threads + Počet vláken pro &verifikaci skriptů + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP adresa proxy (např. IPv4: 127.0.0.1/IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Zavřením se aplikace minimalizuje. Pokud je tato volba zaškrtnuta, tak se aplikace ukončí pouze zvolením Konec v menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL třetích stran (např. block exploreru), která se zobrazí v kontextovém menu v záložce Transakce. %s v URL se nahradí hashem transakce. Více URL odděl svislítkem |. + + + + Active command-line options that override above options: + Aktivní argumenty z příkazové řádky, které přetloukly tato nastavení: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Vrátí všechny volby na výchozí hodnoty. + + + + &Reset Options + &Obnovit nastavení + + + + &Network + &Síť + + + + (0 = auto, <0 = leave that many cores free) + (0 = automaticky, <0 = nechat daný počet jader volný, výchozí: 0) + + + + W&allet + P&eněženka + + + + Expert + Pokročilá nastavení + + + + Enable coin &control features + Povolit ruční správu &mincí + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Pokud zakážeš utrácení ještě nepotvrzených drobných, nepůjde použít drobné z transakce, dokud nebude mít alespoň jedno potvrzení. Ovlivní to také výpočet stavu účtu. + + + + &Spend unconfirmed change + &Utrácet i ještě nepotvrzené drobné + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automaticky otevře potřebný port na routeru. Tohle funguje jen za předpokladu, že tvůj router podporuje UPnP a že je UPnP povolené. + + + + Map port using &UPnP + Namapovat port přes &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Připojí se do ravenové sítě přes SOCKS5 proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + &Připojit přes SOCKS5 proxy (výchozí proxy): + + + + + Proxy &IP: + &IP adresa proxy: + + + + + &Port: + Por&t: + + + + + Port of the proxy (e.g. 9050) + Port proxy (např. 9050) + + + + Used for reaching peers via: + Použije se k připojování k protějskům přes: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Připojí se do ravenové sítě přes SOCKS5 proxy vyhrazenou pro skryté služby v Tor síti. + + + + &Window + O&kno + + + + Show only a tray icon after minimizing the window. + Po minimalizaci okna zobrazí pouze ikonu v panelu. + + + + &Minimize to the tray instead of the taskbar + &Minimalizovávat do ikony v panelu + + + + M&inimize on close + Za&vřením minimalizovat + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + Zobr&azení + + + + User Interface &language: + &Jazyk uživatelského rozhraní: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Tady lze nastavit jazyk uživatelského rozhraní. Nastavení se projeví až po restartování %1. + + + + &Unit to show amounts in: + Je&dnotka pro částky: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Zvol výchozí podjednotku, která se bude zobrazovat v programu a při posílání mincí. + + + + Whether to show coin control features or not. + Zda ukazovat možnosti pro ruční správu mincí nebo ne. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Budiž + + + + &Cancel + &Zrušit + + + + default + výchozí + + + + none + žádné + + + + Confirm options reset + Potvrzení obnovení nastavení + + + + + Client restart required to activate changes. + K aktivaci změn je potřeba restartovat klienta. + + + + Client will be shut down. Do you want to proceed? + Klient se vypne, chceš pokračovat? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Tahle změna bude chtít restartovat klienta. + + + + The supplied proxy address is invalid. + Zadaná adresa proxy je neplatná. + + + + OverviewPage + + + Form + Formulář + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Zobrazené informace nemusí být aktuální. Tvá peněženka se automaticky sesynchronizuje s ravenovou sítí, jakmile se s ní spojí. Zatím ale ještě není synchronizace dokončena. + + + + Watch-only: + Sledované: + + + + Available: + K dispozici: + + + + Your current spendable balance + Aktuální disponibilní stav tvého účtu + + + + Pending: + Očekáváno: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Souhrn transakcí, které ještě nejsou potvrzené a které se ještě nezapočítávají do celkového disponibilního stavu účtu + + + + Immature: + Nedozráno: + + + + Mined balance that has not yet matured + Vytěžené mince, které ještě nejsou zralé + + + + Total: + Celkem: + + + + Your current total balance + Celkový stav tvého účtu + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Aktuální stav účtu sledovaných adres + + + + Spendable: + Běžné: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Poslední transakce + + + + Unconfirmed transactions to watch-only addresses + Nepotvrzené transakce sledovaných adres + + + + Mined balance in watch-only addresses that has not yet matured + Vytěžené mince na sledovaných adresách, které ještě nejsou zralé + + + + Current total balance in watch-only addresses + Aktuální stav účtu sledovaných adres + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Chyba platebního požadavku + + + + Cannot start raven: click-to-pay handler + Nemůžu spustit raven: obsluha click-to-pay + + + + + + URI handling + Zpracování URI + + + + Payment request fetch URL is invalid: %1 + Zdrojová URL platebního požadavku není platná: %1 + + + + Invalid payment address %1 + Neplatná platební adresa %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + Nepodařilo se analyzovat URI! Důvodem může být neplatná ravenová adresa nebo poškozené parametry URI. + + + + Payment request file handling + Zpracování souboru platebního požadavku + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Soubor platebního požadavku nejde přečíst nebo zpracovat! Příčinou může být špatný soubor platebního požadavku. + + + + + + + + + Payment request rejected + Platební požadavek byl odmítnut + + + + Payment request network doesn't match client network. + Síť platebního požadavku neodpovídá síti klienta. + + + + Payment request expired. + Platební požadavek vypršel. + + + + Payment request is not initialized. + Platební požadavek není zahájený. + + + + Unverified payment requests to custom payment scripts are unsupported. + Neověřené platební požadavky k uživatelským platebním skriptům nejsou podporované. + + + + + Invalid payment request. + Neplatný platební požadavek. + + + + Requested payment amount of %1 is too small (considered dust). + Požadovaná platební částka %1 je příliš malá (je považována za prach). + + + + Refund from %1 + Vrácení peněz od %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Platební požadavek %1 je moc velký (%2 bajtů, povoleno %3 bajtů). + + + + Error communicating with %1: %2 + Chyba při komunikaci s %1: %2 + + + + Payment request cannot be parsed! + Platební požadavek je nečitelný! + + + + Bad response from server %1 + Chybná odpověď ze serveru %1 + + + + Network request error + Chyba síťového požadavku + + + + Payment acknowledged + Platba potvrzena + + + + PeerTableModel + + + User Agent + Typ klienta + + + + Node/Service + Uzel/Služba + + + + NodeId + Id uzlu + + + + Ping + Odezva + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Částka + + + + Enter a Raven address (e.g. %1) + Zadej ravenovou adresu (např. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Žádné + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 a %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ještě bezpečně neskončil… + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Chyba: Zadaný adresář pro data „%1“ neexistuje. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Chyba: Nemohu zpracovat konfigurační soubor: %1. Používej pouze syntaxi klíč=hodnota. + + + + Error: %1 + Chyba: %1 + + + + QRImageWidget + + + &Save Image... + &Ulož obrázek... + + + + &Copy Image + &Kopíruj obrázek + + + + Save QR Code + Ulož QR kód + + + + PNG Image (*.png) + PNG obrázek (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + nedostupná informace + + + + Client version + Verze klienta + + + + &Information + &Informace + + + + Debug window + Ladicí okno + + + + General + Obecné + + + + Using BerkeleyDB version + Používaná verze BerkeleyDB + + + + Datadir + Adresář s daty + + + + Startup time + Čas spuštění + + + + Network + Síť + + + + Name + Název + + + + Number of connections + Počet spojení + + + + Block chain + Řetězec bloků + + + + Current number of blocks + Aktuální počet bloků + + + + Memory Pool + Transakční zásobník + + + + Current number of transactions + Aktuální množství transakcí + + + + Memory usage + Obsazenost paměti + + + + &Reset + + + + + + Received + Přijato + + + + + Sent + Odesláno + + + + &Peers + &Protějšky + + + + Banned peers + Protějšky pod klatbou (blokované) + + + + + + Select a peer to view detailed information. + Vyber protějšek a uvidíš jeho detailní informace. + + + + Whitelisted + Vždy vítán + + + + Direction + Směr + + + + Version + Verze + + + + Starting Block + Počáteční blok + + + + Synced Headers + Aktuálně hlaviček + + + + Synced Blocks + Aktuálně bloků + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Typ klienta + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Otevři soubor s ladicími záznamy %1 z aktuálního datového adresáře. U velkých žurnálů to může pár vteřin zabrat. + + + + Decrease font size + Zmenšit písmo + + + + Increase font size + Zvětšit písmo + + + + Services + Služby + + + + Ban Score + Skóre pro klatbu + + + + Connection Time + Doba spojení + + + + Last Send + Poslední odeslání + + + + Last Receive + Poslední příjem + + + + Ping Time + Odezva + + + + The duration of a currently outstanding ping. + Jak dlouho už čekám na pong. + + + + Ping Wait + Doba čekání na odezvu + + + + Min Ping + Nejrychlejší odezva + + + + Time Offset + Časový posun + + + + Last block time + Čas posledního bloku + + + + &Open + &Otevřít + + + + &Console + &Konzole + + + + &Network Traffic + &Síťový provoz + + + + Totals + Součty + + + + In: + Sem: + + + + Out: + Ven: + + + + Debug log file + Soubor s ladicími záznamy + + + + Clear console + Vyčistit konzoli + + + + 1 &hour + 1 &hodinu + + + + 1 &day + 1 &den + + + + 1 &week + 1 &týden + + + + 1 &year + 1 &rok + + + + &Disconnect + &Odpoj + + + + + + + Ban for + Uval klatbu na + + + + &Unban + &Odblokuj + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Vítej v RPC konzoli %1. + + + + Type <b>help</b> for an overview of available commands. + Napsáním <b>help</b> si vypíšeš přehled dostupných příkazů. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Síť je vypnutá + + + + (node id: %1) + (id uzlu: %1) + + + + via %1 + via %1 + + + + + never + nikdy + + + + Inbound + Sem + + + + Outbound + Ven + + + + Yes + Ano + + + + No + Ne + + + + + Unknown + Neznámá + + + + RavenGUI + + + Sign &message... + Po&depiš zprávu... + + + + Synchronizing with network... + Synchronizuji se se sítí... + + + + &Overview + &Přehled + + + + Node + Uzel + + + + Show general overview of wallet + Zobraz celkový přehled peněženky + + + + &Transactions + &Transakce + + + + Browse transaction history + Procházej historii transakcí + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Konec + + + + Quit application + Ukonči aplikaci + + + + &About %1 + O &%1 + + + + Show information about %1 + Zobraz informace o %1 + + + + About &Qt + O &Qt + + + + Show information about Qt + Zobraz informace o Qt + + + + &Options... + &Možnosti... + + + + Modify configuration options for %1 + Uprav nastavení %1 + + + + &Encrypt Wallet... + Zaši&fruj peněženku... + + + + &Backup Wallet... + &Zazálohuj peněženku... + + + + &Change Passphrase... + Změň &heslo... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Od&esílací adresy... + + + + &Receiving addresses... + Př&ijímací adresy... + + + + Open &URI... + Načíst &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Kliknutím zařízneš spojení se sítí. + + + + Network activity disabled. + Síť je vypnutá. + + + + Click to enable network activity again. + Kliknutím opět umožníš spojení do sítě. + + + + Syncing Headers (%1%)... + Synchronizuji záhlaví bloků (%1 %)… + + + + Reindexing blocks on disk... + Vytvářím nový index bloků na disku... + + + + Send coins to a Raven address + Pošli mince na ravenovou adresu + + + + Backup wallet to another location + Zazálohuj peněženku na jiné místo + + + + Change the passphrase used for wallet encryption + Změň heslo k šifrování peněženky + + + + Open debugging and diagnostic console + Otevři ladicí a diagnostickou konzoli + + + + &Verify message... + &Ověř zprávu... + + + + Raven + Raven + + + + Wallet + Peněženka + + + + &Send + P&ošli + + + + &Receive + Při&jmi + + + + &Show / Hide + &Zobraz/Skryj + + + + Show or hide the main Window + Zobraz nebo skryj hlavní okno + + + + Encrypt the private keys that belong to your wallet + Zašifruj soukromé klíče ve své peněžence + + + + Sign messages with your Raven addresses to prove you own them + Podepiš zprávy svými ravenovými adresami, čímž prokážeš, že jsi jejich vlastníkem + + + + Verify messages to ensure they were signed with specified Raven addresses + Ověř zprávy, aby ses ujistil, že byly podepsány danými ravenovými adresami + + + + &File + &Soubor + + + + &Help + Nápověd&a + + + + Request payments (generates QR codes and raven: URIs) + Požaduj platby (generuje QR kódy a raven: URI) + + + + Show the list of used sending addresses and labels + Ukaž seznam použitých odesílacích adres a jejich označení + + + + Show the list of used receiving addresses and labels + Ukaž seznam použitých přijímacích adres a jejich označení + + + + Open a raven: URI or payment request + Načti raven: URI nebo platební požadavek + + + + &Command-line options + Ar&gumenty příkazové řádky + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Vytvářím index bloků na disku... + + + + Processing blocks on disk... + Zpracovávám bloky na disku... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + Stahuji ještě %1 bloků transakcí + + + + Last received block was generated %1 ago. + Poslední stažený blok byl vygenerován %1 zpátky. + + + + Transactions after this will not yet be visible. + Následné transakce ještě nebudou vidět. + + + + Error + Chyba + + + + Warning + Upozornění + + + + Information + Informace + + + + Up to date + Aktuální + + + + Show the %1 help message to get a list with possible Raven command-line options + Seznam argumentů Ravenu pro příkazovou řádku získáš v nápovědě %1 + + + + %1 client + %1 klient + + + + Connecting to peers... + Připojuji se… + + + + Catching up... + Stahuji... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Částka: %1 + + + + + Type: %1 + + Typ: %1 + + + + + Label: %1 + + Označení: %1 + + + + + Address: %1 + + Adresa: %1 + + + + + Sent transaction + Odeslané transakce + + + + Incoming transaction + Příchozí transakce + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD generování klíčů je <b>zapnuté</b> + + + + HD key generation is <b>disabled</b> + HD generování klíčů je <b>vypnuté</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>odemčená</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peněženka je <b>zašifrovaná</b> a momentálně <b>zamčená</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Stala se fatální chyba. Raven nemůže bezpečně pokračovat v činnosti, a proto skončí. + + + + ReceiveCoinsDialog + + + &Amount: + Čás&tka: + + + + &Label: + &Označení: + + + + &Message: + &Zpráva: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Recyklovat již dříve použité adresy. Recyklace adres má bezpečnostní rizika a narušuje soukromí. Nezaškrtávejte to, pokud znovu nevytváříte již dříve vytvořený platební požadavek. + + + + R&euse an existing receiving address (not recommended) + &Recyklovat již existující adresy (nedoporučeno) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Volitelná zpráva, která se připojí k platebnímu požadavku a která se zobrazí, když se požadavek otevře. Poznámka: tahle zpráva se neposílá s platbou po ravenové síti. + + + + + An optional label to associate with the new receiving address. + Volitelné označení, které se má přiřadit k nové adrese. + + + + Use this form to request payments. All fields are <b>optional</b>. + Tímto formulářem můžeš požadovat platby. Všechna pole jsou <b>volitelná</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Volitelná částka, kterou požaduješ. Nech prázdné nebo nulové, pokud nepožaduješ konkrétní částku. + + + + Clear all fields of the form. + Promaž obsah ze všech formulářových políček. + + + + Clear + Vyčistit + + + + Requested payments history + Historie vyžádaných plateb + + + + &Request payment + &Vyžádat platbu + + + + Show the selected request (does the same as double clicking an entry) + Zobraz zvolený požadavek (stejně tak můžeš přímo na něj dvakrát poklepat) + + + + Show + Zobrazit + + + + Remove the selected entries from the list + Smaž zvolené požadavky ze seznamu + + + + Remove + Smazat + + + + Copy URI + Kopíruj URI + + + + Copy label + Kopíruj její označení + + + + Copy message + Kopíruj zprávu + + + + Copy amount + Kopíruj částku + + + + ReceiveRequestDialog + + + QR Code + QR kód + + + + Copy &URI + &Kopíruj URI + + + + Copy &Address + Kopíruj &adresu + + + + &Save Image... + &Ulož obrázek... + + + + Request payment to %1 + Platební požadavek: %1 + + + + Payment information + Informace o platbě + + + + URI + URI + + + + Address + Adresa + + + + Amount + Částka + + + + Label + Označení + + + + Message + Zpráva + + + + Resulting URI too long, try to reduce the text for label / message. + Výsledná URI je příliš dlouhá, zkus zkrátit text označení/zprávy. + + + + Error encoding URI into QR Code. + Chyba při kódování URI do QR kódu. + + + + RecentRequestsTableModel + + + Date + Datum - URI handling - Zpracování URI + + Label + Označení - Payment request fetch URL is invalid: %1 - Zdrojová URL platebního požadavku není platná: %1 + + Message + Zpráva - Invalid payment address %1 - Neplatná platební adresa %1 + + (no label) + (bez označení) - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - Nepodařilo se analyzovat URI! Důvodem může být neplatná ravenová adresa nebo poškozené parametry URI. + + (no message) + (bez zprávy) - Payment request file handling - Zpracování souboru platebního požadavku + + (no amount requested) + (bez požadované částky) - Payment request file cannot be read! This can be caused by an invalid payment request file. - Soubor platebního požadavku nejde přečíst nebo zpracovat! Příčinou může být špatný soubor platebního požadavku. + + Requested + Požádáno + + + ReissueAssetDialog - Payment request rejected - Platební požadavek byl odmítnut + + Coin Control Features + - Payment request network doesn't match client network. - Síť platebního požadavku neodpovídá síti klienta. + + Inputs... + - Payment request expired. - Platební požadavek vypršel. + + automatically selected + - Payment request is not initialized. - Platební požadavek není zahájený. + + Insufficient funds! + - Unverified payment requests to custom payment scripts are unsupported. - Neověřené platební požadavky k uživatelským platebním skriptům nejsou podporované. + + + Quantity: + - Invalid payment request. - Neplatný platební požadavek. + + Bytes: + - Requested payment amount of %1 is too small (considered dust). - Požadovaná platební částka %1 je příliš malá (je považována za prach). + + Amount: + - Refund from %1 - Vrácení peněz od %1 + + Dust: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Platební požadavek %1 je moc velký (%2 bajtů, povoleno %3 bajtů). + + Fee: + - Error communicating with %1: %2 - Chyba při komunikaci s %1: %2 + + After Fee: + - Payment request cannot be parsed! - Platební požadavek je nečitelný! + + Change: + - Bad response from server %1 - Chybná odpověď ze serveru %1 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Network request error - Chyba síťového požadavku + + Custom change address + - Payment acknowledged - Platba potvrzena + + + Reissue Asset + - - - PeerTableModel - User Agent - Typ klienta + + Select an asset to reissue: + - Node/Service - Uzel/Služba + + Address: + - NodeId - Id uzlu + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Ping - Odezva + + Verifier String: + - - - QObject - Amount - Částka + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - Enter a Raven address (e.g. %1) - Zadej ravenovou adresu (např. %1) + + Warning: + - %1 d - %1 d + + The number of assets that will be created + - %1 h - %1 h + + Unit: + - %1 m - %1 m + + e.g. 1.00000000 + - %1 s - %1 s + + If the owner of this asset will be able to issue more assets in the future + - None - Žádné + + Reissuable + - N/A - N/A + + Change IPFS/Txid Hash + - %1 ms - %1 ms - - - %n second(s) - %n vteřinu%n vteřiny%n vteřin - - - %n minute(s) - %n minutu%n minuty%n minut - - - %n hour(s) - %n hodinu%n hodiny%n hodin - - - %n day(s) - %n den%n dny%n dnů - - - %n week(s) - %n týden%n týdny%n týdnů + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 a %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n rok%n roky%n roků + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ještě bezpečně neskončil… + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Chyba: Zadaný adresář pro data „%1“ neexistuje. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Chyba: Nemohu zpracovat konfigurační soubor: %1. Používej pouze syntaxi klíč=hodnota. + + Transaction Fee: + - Error: %1 - Chyba: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Ulož obrázek... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Kopíruj obrázek + + Warning: Fee estimation is currently not possible. + - Save QR Code - Ulož QR kód + + collapse fee-settings + - PNG Image (*.png) - PNG obrázek (*.png) + + Hide + - - - RPCConsole - N/A - nedostupná informace + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Verze klienta + + per kilobyte + - &Information - &Informace + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Ladicí okno + + (read the tooltip) + - General - Obecné + + Recommended: + - Using BerkeleyDB version - Používaná verze BerkeleyDB + + Cus&tom: + - Datadir - Adresář s daty + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Čas spuštění + + Confirmation time target: + - Network - Síť + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Název + + Request Replace-By-Fee + - Number of connections - Počet spojení + + Clear + - Block chain - Řetězec bloků + + Balance: + - Current number of blocks - Aktuální počet bloků + + 123.456 RVN + - Memory Pool - Transakční zásobník + + Copy quantity + - Current number of transactions - Aktuální množství transakcí + + Copy amount + - Memory usage - Obsazenost paměti + + Copy fee + - Received - Přijato + + Copy after fee + - Sent - Odesláno + + Copy bytes + - &Peers - &Protějšky + + Copy dust + - Banned peers - Protějšky pod klatbou (blokované) + + Copy change + - Select a peer to view detailed information. - Vyber protějšek a uvidíš jeho detailní informace. + + Select an asset to reissue.. + - Whitelisted - Vždy vítán + + Select the asset you want to reissue. + - Direction - Směr + + %1 (%2 blocks) + - Version - Verze + + Cost + - Starting Block - Počáteční blok + + Asset data couldn't be found + - Synced Headers - Aktuálně hlaviček + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Aktuálně bloků + + Invalid Raven Destination Address + - User Agent - Typ klienta + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Otevři soubor s ladicími záznamy %1 z aktuálního datového adresáře. U velkých žurnálů to může pár vteřin zabrat. + + + Warning: Invalid Raven address + - Decrease font size - Zmenšit písmo + + + Yes + - Increase font size - Zvětšit písmo + + No + - Services - Služby + + + Name + - Ban Score - Skóre pro klatbu + + + Total Quantity + - Connection Time - Doba spojení + + + Units + - Last Send - Poslední odeslání + + + Can Reisssue + - Last Receive - Poslední příjem + + + + IPFS Hash + - Ping Time - Odezva + + + + Txid Hash + - The duration of a currently outstanding ping. - Jak dlouho už čekám na pong. + + Verifier String + - Ping Wait - Doba čekání na odezvu + + + Current Verifier String + - Min Ping - Nejrychlejší odezva + + Please select a asset from the menu to display the assets current settings + - Time Offset - Časový posun + + Please select a asset from the menu to display the assets updated settings + - Last block time - Čas posledního bloku + + Current Quantity + - &Open - &Otevřít + + Current Units + - &Console - &Konzole + + Can Reissue + - &Network Traffic - &Síťový provoz + + Unknown data hash type + - &Clear - &Vyčistit + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Součty + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Sem: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Ven: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Soubor s ladicími záznamy + + + %1 to %2 + - Clear console - Vyčistit konzoli + + Are you sure you want to send? + - 1 &hour - 1 &hodinu + + added as transaction fee + - 1 &day - 1 &den + + Total Amount %1 + - 1 &week - 1 &týden + + or + - 1 &year - 1 &rok + + Confirm reissue assets + - &Disconnect - &Odpoj + + Copy + - Ban for - Uval klatbu na + + Transaction ID Copied + - &Unban - &Odblokuj + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Vítej v RPC konzoli %1. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - V historii se pohybuješ šipkami nahoru a dolů a pomocí <b>Ctrl-L</b> čistíš obrazovku. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Napsáním <b>help</b> si vypíšeš přehled dostupných příkazů. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - UPOZORNĚNÍ: Podvodníci jsou aktivní a říkají uživatelům, aby sem zadávali příkazy, kterými jim pak ale vykradou jejich peněženky. Nepoužívej tuhle konzoli, pokud úplně neznáš důsledky jednotlivých příkazů. + + (no label) + - Network activity disabled - Síť je vypnutá + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 kB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (id uzlu: %1) + + Balance: + - via %1 - via %1 + + + Failed to create a change address + - never - nikdy + + Failed to generate the correct transaction. Please try again + - Inbound - Sem + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Ven + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Ano + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Ne + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Neznámá + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - Čás&tka: + + + Total Amount %1 + - &Label: - &Označení: + + + or + - &Message: - &Zpráva: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Recyklovat již dříve použité adresy. Recyklace adres má bezpečnostní rizika a narušuje soukromí. Nezaškrtávejte to, pokud znovu nevytváříte již dříve vytvořený platební požadavek. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - &Recyklovat již existující adresy (nedoporučeno) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Volitelná zpráva, která se připojí k platebnímu požadavku a která se zobrazí, když se požadavek otevře. Poznámka: tahle zpráva se neposílá s platbou po ravenové síti. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Volitelné označení, které se má přiřadit k nové adrese. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Tímto formulářem můžeš požadovat platby. Všechna pole jsou <b>volitelná</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Volitelná částka, kterou požaduješ. Nech prázdné nebo nulové, pokud nepožaduješ konkrétní částku. + + This is an asset payment + - Clear all fields of the form. - Promaž obsah ze všech formulářových políček. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Vyčistit + + + + Memo: + - Requested payments history - Historie vyžádaných plateb + + Amount: + - &Request payment - &Vyžádat platbu + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Zobraz zvolený požadavek (stejně tak můžeš přímo na něj dvakrát poklepat) + + &Label: + - Show - Zobrazit + + Asset: + - Remove the selected entries from the list - Smaž zvolené požadavky ze seznamu + + The Raven address to send the payment to + - Remove - Smazat + + Choose previously used address + - Copy URI - Kopíruj URI + + Alt+A + - Copy label - Kopíruj její označení + + Paste address from clipboard + - Copy message - Kopíruj zprávu + + Alt+P + - Copy amount - Kopíruj částku + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR kód + + Message: + - Copy &URI - &Kopíruj URI + + Transfer &To: + - Copy &Address - Kopíruj &adresu + + Transfer Administrator Asset + - &Save Image... - &Ulož obrázek... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Platební požadavek: %1 + + This is an unauthenticated payment request. + - Payment information - Informace o platbě + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adresa + + This is an authenticated payment request. + - Amount - Částka + + Enter a label for this address to add it to your address book + - Label - Označení + + Select to view administrator assets to transfer + - Message - Zpráva + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Výsledná URI je příliš dlouhá, zkus zkrátit text označení/zprávy. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Chyba při kódování URI do QR kódu. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Datum + + Failed to get asset metadata for: + - Label - Označení + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Zpráva + + Failed to get asset outpoints from database + - (no label) - (bez označení) + + Selected Balance + - (no message) - (bez zprávy) + + Wallet Balance + - (no amount requested) - (bez požadované částky) + + Select an administrator asset to transfer + - Requested - Požádáno + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Pošli mince + Coin Control Features Možnosti ruční správy mincí + Inputs... Vstupy... + automatically selected automaticky vybrané + Insufficient funds! Nedostatek prostředků! + Quantity: Počet: + Bytes: Bajtů: + Amount: Částka: + Fee: Poplatek: + After Fee: Čistá částka: + Change: Drobné: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Pokud aktivováno, ale adresa pro drobné je prázdná nebo neplatná, tak se drobné pošlou na nově vygenerovanou adresu. + Custom change address Vlastní adresa pro drobné + Transaction Fee: Transakční poplatek: + Choose... Zvol... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings sbal nastavení poplatků + per kilobyte za kilobajt - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. Pokud je vlastní poplatek nastavený na 1000 satoshi a transakce má pouze 250 bajtů, tak „za kilobajt“ zaplatí poplatek jen 250 satoshi, zatímco „přinejmenším“ zaplatí 1000 satoshi. Pro transakce větší než kilobajt obě možnosti platí za kilobajt. + Hide Skryj - total at least - přinejmenším - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Platit jen minimální poplatek je v pořádku, pokud je zrovna méně transakcí než místa v blocích. Ale počítej s tím, že to také může skončit transakcí, která nikdy nebude potvrzena, pokud je větší poptávka po ravenových transakcích, než síť zvládne zpracovat. + (read the tooltip) (viz bublina) + Recommended: Doporučený: + Custom: Vlastní: + (Smart fee not initialized yet. This usually takes a few blocks...) (Inteligentní poplatek ještě není inicializovaný. Obvykle mu to tak pár bloků trvá...) - normal - normální + + Request Replace-By-Fee + - fast - rychlá + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Pošli více příjemcům naráz + Add &Recipient Při&dej příjemce + Clear all fields of the form. Promaž obsah ze všech formulářových políček. + Dust: Prach: + Confirmation time target: Časové cílování potvrzení: + Clear &All Všechno s&maž + Balance: Stav účtu: + Confirm the send action Potvrď odeslání + S&end Pošl&i + Copy quantity Kopíruj počet + Copy amount Kopíruj částku + Copy fee Kopíruj poplatek + Copy after fee Kopíruj čistou částku + Copy bytes Kopíruj bajty + Copy dust Kopíruj prach + Copy change Kopíruj drobné + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 pro %2 + Are you sure you want to send? Jsi si jistý, že to chceš poslat? + added as transaction fee přidán jako transakční poplatek + Total Amount %1 Celková částka %1 + or nebo + Confirm send coins Potvrď odeslání mincí + The recipient address is not valid. Please recheck. Adresa příjemce je neplatná – překontroluj ji prosím. + The amount to pay must be larger than 0. Odesílaná částka musí být větší než 0. + The amount exceeds your balance. Částka překračuje stav účtu. + The total exceeds your balance when the %1 transaction fee is included. Celková částka při připočítání poplatku %1 překročí stav účtu. + Duplicate address found: addresses should only be used once each. Zaznamenána duplicitní adresa: každá adresa by ale měla být použita vždy jen jednou. + Transaction creation failed! Vytvoření transakce selhalo! + The transaction was rejected with the following reason: %1 Transakce byla zamítnuta s tímto odůvodněním: %1 + A fee higher than %1 is considered an absurdly high fee. Poplatek vyšší než %1 je považován za absurdně vysoký. + Payment request expired. Platební požadavek vypršel. - - %n block(s) - %n blok%n bloky%n bloků - + Pay only the required fee of %1 Zaplatit pouze vyžadovaný poplatek %1 + Estimated to begin confirmation within %n block(s). - Potvrzování by podle odhadu mělo začít během %n bloku.Potvrzování by podle odhadu mělo začít během %n bloků.Potvrzování by podle odhadu mělo začít během %n bloků. + + Warning: Invalid Raven address Upozornění: Neplatná ravenová adresa + Warning: Unknown change address Upozornění: Neznámá adresa pro drobné + Confirm custom change address Potvrď vlastní adresu pro drobné + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Adresa, kterou jsi zvolil pro drobné, není součástí této peněženky. Potenciálně všechny prostředky z tvé peněženky mohou být na tuto adresu odeslány. Souhlasíš, aby se tak stalo? + (no label) (bez označení) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: Čás&tka: - Pay &To: - &Komu: - - + &Label: O&značení: + Choose previously used address Vyber již použitou adresu + This is a normal payment. Tohle je normální platba. + The Raven address to send the payment to Ravenová adresa příjemce + Alt+A Alt+A + Paste address from clipboard Vlož adresu ze schránky + Alt+P Alt+P + + + Remove this entry Smaž tento záznam + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Poplatek se odečte od posílané částky. Příjemce tak dostane méně ravenů, než zadáš do pole Částka. Pokud vybereš více příjemců, tak se poplatek rovnoměrně rozloží. + S&ubtract fee from amount Od&ečíst poplatek od částky + Message: Zpráva: + + Send &To: + + + + This is an unauthenticated payment request. Tohle je neověřený platební požadavek. + + + Send to: + + + + This is an authenticated payment request. Tohle je ověřený platební požadavek. + Enter a label for this address to add it to the list of used addresses Zadej označení této adresy; obojí se ti pak uloží do adresáře + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Zpráva, která byla připojena k raven: URI a která se ti pro přehled uloží k transakci. Poznámka: Tahle zpráva se neposílá s platbou po ravenové síti. - Pay To: - Komu: - - + + Memo: Poznámka: + Enter a label for this address to add it to your address book Zadej označení této adresy; obojí se ti pak uloží do adresáře @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes Ano @@ -2316,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 se ukončuje... + Do not shut down the computer until this window disappears. Nevypínej počítač, dokud toto okno nezmizí. @@ -2327,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Podpisy - podepsat/ověřit zprávu + &Sign Message &Podepiš zprávu + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Podepsáním zprávy/smlouvy svými adresami můžeš prokázat, že jsi na ně schopen přijmout raveny. Buď opatrný a nepodepisuj nic vágního nebo náhodného; například při phishingových útocích můžeš být lákán, abys něco takového podepsal. Podepisuj pouze naprosto úplná a detailní prohlášení, se kterými souhlasíš. + The Raven address to sign the message with Ravenová adresa, kterou se zpráva podepíše + + Choose previously used address Vyber již použitou adresu + + Alt+A Alt+A + Paste address from clipboard Vlož adresu ze schránky + Alt+P Alt+P + Enter the message you want to sign here Sem vepiš zprávu, kterou chceš podepsat + Signature Podpis + Copy the current signature to the system clipboard Zkopíruj tento podpis do schránky + Sign the message to prove you own this Raven address Podepiš zprávu, čímž prokážeš, že jsi vlastníkem této ravenové adresy + Sign &Message Po&depiš zprávu + Reset all sign message fields Vymaž všechna pole formuláře pro podepsání zrávy + + Clear &All Všechno &smaž + &Verify Message &Ověř zprávu - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! K ověření podpisu zprávy zadej adresu příjemce, zprávu (ověř si, že správně kopíruješ zalomení řádků, mezery, tabulátory apod.) a podpis. Dávej pozor na to, abys nezkopíroval do podpisu víc, než co je v samotné podepsané zprávě, abys nebyl napálen man-in-the-middle útokem. Poznamenejme však, že takto lze pouze prokázat, že podepisující je schopný na dané adrese přijmout platbu, ale není možnéprokázat, že odeslal jakoukoli transakci! + The Raven address the message was signed with Ravenová adresa, kterou je zpráva podepsána + Verify the message to ensure it was signed with the specified Raven address Ověř zprávu, aby ses ujistil, že byla podepsána danou ravenovou adresou + Verify &Message O&věř zprávu + Reset all verify message fields Vymaž všechna pole formuláře pro ověření zrávy - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature Kliknutím na „Podepiš zprávu“ vygeneruješ podpis + + The entered address is invalid. Zadaná adresa je neplatná. + + + + Please check the address and try again. Zkontroluj ji prosím a zkus to pak znovu. + + The entered address does not refer to a key. Zadaná adresa nepasuje ke klíči. + Wallet unlock was cancelled. Odemčení peněženky bylo zrušeno. + Private key for the entered address is not available. Soukromý klíč pro zadanou adresu není dostupný. + Message signing failed. Nepodařilo se podepsat zprávu. + Message signed. Zpráva podepsána. + The signature could not be decoded. Podpis nejde dekódovat. + + Please check the signature and try again. Zkontroluj ho prosím a zkus to pak znovu. + The signature did not match the message digest. Podpis se neshoduje s hašem zprávy. + Message verification failed. Nepodařilo se ověřit zprávu. + Message verified. Zpráva ověřena. @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s kB/s @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Otevřeno pro %n další blokOtevřeno pro %n další blokyOtevřeno pro %n dalších bloků + + Open until %1 Otřevřeno dokud %1 + conflicted with a transaction with %1 confirmations koliduje s transakcí o %1 konfirmacích + %1/offline %1/offline + 0/unconfirmed, %1 0/nepotvrzeno, %1 + in memory pool v transakčním zásobníku + not in memory pool není ani v transakčním zásobníku + abandoned zanechaná + %1/unconfirmed %1/nepotvrzeno + %1 confirmations %1 potvrzení + + Status Stav + + , has not been successfully broadcast yet , ještě nebylo rozesláno + + , broadcast through %n node(s) - , rozesláno přes %n uzel, rozesláno přes %n uzly, rozesláno přes %n uzlů + + + Date Datum + Source Zdroj + Generated Vygenerováno + + + + + From Od + + unknown neznámo + + + + + To Pro + + own address vlastní adresa + + + watch-only sledovaná + + label označení + + + + + + + Credit Příjem + matures in %n more block(s) - dozraje po %n blokudozraje po %n blocíchdozraje po %n blocích + + not accepted neakceptováno + + + + + Debit Výdaj + Total debit Celkové výdaje + Total credit Celkové příjmy + Transaction fee Transakční poplatek + Net amount Čistá částka + + + + Message Zpráva + + Comment Komentář + + Transaction ID ID transakce + + Transaction total size Celková velikost transakce + + Output index Pořadí výstupu + + Merchant Obchodník - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Vygenerované mince musí čekat %1 bloků, než mohou být utraceny. Když jsi vygeneroval tenhle blok, tak byl rozposlán do sítě, aby byl přidán do řetězce bloků. Pokud se mu nepodaří dostat se do řetězce, změní se na „neakceptovaný“ a nepůjde utratit. To se občas může stát, pokud jiný uzel vygeneruje blok zhruba ve stejném okamžiku jako ty. + + Net RVN amount + + + + Debug information Ladicí informace + Transaction Transakce + Inputs Vstupy + Amount Částka + + true true + + false false @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Toto okno zobrazuje detailní popis transakce + Details for %1 Podrobnosti o %1 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date Datum + Type Typ + Label Označení + + + Amount + + + + + Asset + + + Open for %n more block(s) - Otevřeno pro %n další blokOtevřeno pro %n další blokyOtevřeno pro %n dalších bloků + + Open until %1 Otřevřeno dokud %1 + Offline Offline + Unconfirmed Nepotvrzeno + Abandoned Zanechaná + Confirming (%1 of %2 recommended confirmations) Potvrzuje se (%1 z %2 doporučených potvrzení) + Confirmed (%1 confirmations) Potvrzeno (%1 potvrzení) + Conflicted V kolizi + Immature (%1 confirmations, will be available after %2) Nedozráno (%1 potvrzení, dozraje při %2 potvrzeních) + This block was not received by any other nodes and will probably not be accepted! Tento blok nedostal žádný jiný uzel a pravděpodobně nebude akceptován! + Generated but not accepted Vygenerováno, ale neakceptováno + Received with Přijato do + Received from Přijato od + Sent to Posláno na + Payment to yourself Platba sama sobě + Mined Vytěženo + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only sledovací + (n/a) (n/a) + (no label) (bez označení) + Transaction status. Hover over this field to show number of confirmations. Stav transakce. Najetím myši na toto políčko si zobrazíš počet potvrzení. + Date and time that the transaction was received. Datum a čas přijetí transakce. + Type of transaction. Druh transakce. + Whether or not a watch-only address is involved in this transaction. Zda tato transakce zahrnuje i některou sledovanou adresu. + User-defined intent/purpose of the transaction. Uživatelsky určený účel transakce. + Amount removed from or added to balance. Částka odečtená z nebo přičtená k účtu. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Vše + Today Dnes + This week Tento týden + This month Tento měsíc + Last month Minulý měsíc + This year Letos + Range... Rozsah... + Received with Přijato + Sent to Posláno + To yourself Sám sobě + Mined Vytěženo + Other Ostatní + Enter address or label to search Zadej adresu nebo označení pro její vyhledání + Min amount Minimální částka + + Asset name + + + + Abandon transaction Zapomenout transakci + Copy address Kopíruj adresu + Copy label Kopíruj její označení + Copy amount Kopíruj částku + Copy transaction ID Kopíruj ID transakce + Copy raw transaction Kopíruj surovou transakci + Copy full transaction details Kopíruj kompletní podrobnosti o transakci + Edit label Uprav označení + Show transaction details Zobraz detaily transakce + + Browse with: + + + + Export Transaction History Exportuj transakční historii + Comma separated file (*.csv) Formát CSV (*.csv) + Confirmed Potvrzeno + Watch-only Sledovaná + Date Datum + Type Typ + Label Označení + Address Adresa + + Asset + + + + ID ID + Exporting Failed Exportování selhalo + There was an error trying to save the transaction history to %1. Při ukládání transakční historie do %1 se přihodila nějaká chyba. + Exporting Successful Úspěšně vyexportováno + The transaction history was successfully saved to %1. Transakční historie byla v pořádku uložena do %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Rozsah: + to @@ -2936,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Jednotka pro částky. Klikni pro výběr nějaké jiné. @@ -2943,6 +6521,7 @@ WalletFrame + No wallet has been loaded. Žádná peněženka se nenačetla. @@ -2950,964 +6529,1763 @@ WalletModel + Send Coins Pošli mince + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Export + Export the data in the current tab to a file Exportuj data z tohoto panelu do souboru + Backup Wallet Záloha peněženky + Wallet Data (*.dat) Data peněženky (*.dat) + Backup Failed Zálohování selhalo + There was an error trying to save the wallet data to %1. Při ukládání peněženky do %1 se přihodila nějaká chyba. + Backup Successful Úspěšně zazálohováno + The wallet data was successfully saved to %1. Data z peněženky byla v pořádku uložena do %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Možnosti: + Specify data directory Adresář pro data + Connect to a node to retrieve peer addresses, and disconnect Připojit se k uzlu, získat adresy jeho protějšků a odpojit se + Specify your own public address Udej svou veřejnou adresu + Accept command line and JSON-RPC commands Akceptovat příkazy z příkazové řádky a přes JSON-RPC - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Přijímat spojení zvenčí (výchozí: 1, pokud není zadáno -proxy nebo -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Připojovat se pouze k určeným uzlům; samotné -noconnect nebo -connect=0 zakáží automatické připojování - - + Distributed under the MIT software license, see the accompanying file %s or %s Šířen pod softwarovou licencí MIT, viz přiložený soubor %s nebo %s + If <category> is not supplied or if <category> = 1, output all debugging information. Pokud není <category> zadána nebo je <category> = 1, bude tisknout veškeré ladicí informace. + Prune configured below the minimum of %d MiB. Please use a higher number. Prořezávání je nastaveno pod minimum %d MiB. Použij, prosím, nějaké vyšší číslo. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Prořezávání: poslední synchronizace peněženky proběhla před už prořezanými daty. Je třeba provést -reindex (tedy v případě prořezávacího režimu stáhnout znovu celý řetězec bloků) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. V prořezávacím režimu není možné přeskenovávat řetězec bloků. Musíš provést -reindex, což znovu stáhne celý řetězec bloků. + Error: A fatal internal error occurred, see debug.log for details Chyba: Přihodila se závažná vnitřní chyba, podrobnosti viz v debug.log + Fee (in %s/kB) to add to transactions you send (default: %s) Poplatek (v %s/kB), který se přidá ke každé odeslané transakci (výchozí: %s) + Pruning blockstore... Prořezávám úložiště bloků... + Run in the background as a daemon and accept commands Běžet na pozadí jako démon a přijímat příkazy + Unable to start HTTP server. See debug log for details. Nemohu spustit HTTP server. Detaily viz v debug.log. + Raven Core Raven Core + The %s developers Vývojáři %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Sazba poplatku (v %s/kB), která se použije, pokud nebude k dispozici dostatek dat pro automatický odhad poplatku (výchozí: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Přijímat přeposílané transakce obdržené od vždy vítaných protějšků, i když transakce nepřeposíláme (výchozí: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Poslouchat na zadané adrese. Pro zápis IPv6 adresy použij notaci [adresa]:port - Cannot obtain a lock on data directory %s. %s is probably already running. - Nedaří se mi získat zámek na datový adresář %s. %s pravděpodobně už jednou běží. + + Cannot obtain a lock on data directory %s. %s is probably already running. + Nedaří se mi získat zámek na datový adresář %s. %s pravděpodobně už jednou běží. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Smazat všechny transakce peněženky a při startu obnovit pouze relevantní části řetězce bloků pomocí -rescan - Error loading %s: You can't enable HD on a already existing non-HD wallet - Chyba při načítání %s: nemůžeš zapnout HD u existující ne-HD peněženky - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Nastala chyba při čtení souboru %s! Všechny klíče se přečetly správně, ale data o transakcích nebo záznamy v adresáři mohou chybět či být nesprávné. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Spustit příkaz, když se objeví transakce týkající se peněženky (%s se v příkazu nahradí za TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Počet extra transakcí, které se mají držet v paměti pro účely rekonstrukce kompaktních bloků (výchozí: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Pokud je tenhle blok v řetězci, tak předpokládat, že on i jeho následníci jsou platní, a potenciálně přeskočit ověřování jejich skriptů (0 = ověřovat vše, výchozí: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Maximální povolené seřizování času mediánem časů protějšků. Místní vnímání času může být ovlivněno protějšky, a to dopředu nebo dozadu až o toto množství. (výchozí: %u vteřin) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Horní hranice pro celkový poplatek (v %s) za jednu transakci z peněženky nebo jednu surovou transakci; příliš nízká hodnota může zmařit velké transakce (výchozí: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Zkontroluj, že máš v počítači správně nastavený datum a čas! Pokud jsou nastaveny špatně, %s nebude fungovat správně. + Please contribute if you find %s useful. Visit %s for further information about the software. Prosíme, zapoj se nebo přispěj, pokud ti %s přijde užitečný. Více informací o programu je na %s. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Omezit nároky na úložný prostor prořezáváním (mazáním) starých bloků. Tato volba také umožní použít RPC volání pruneblockchain ke smazání konkrétních bloků a dále automatické prořezávání starých bloků, pokud je zadána cílová velikost souborů s bloky v MiB. Tento režim není slučitelný s -txindex ani -rescan. Upozornění: opětovná změna tohoto nastavení bude vyžadovat nové stažení celého řetězce bloků. (výchozí: 0 = bloky neprořezávat, 1 = povolit ruční prořezávání skrze RPC, >%u = automatické prořezávání bloků tak, aby byla udržena cílová velikost souborů s bloky, v MiB) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Nastavit nejnižší akceptovatelný poplatek (v %s/kB) pro transakce, které mají být zahrnuty do nových bloků. (výchozí: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Nastavení počtu vláken pro verifikaci skriptů (%u až %d, 0 = automaticky, <0 = nechat daný počet jader volný, výchozí: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Databáze bloků obsahuje blok, který vypadá jako z budoucnosti, což může být kvůli špatně nastavenému datu a času na tvém počítači. Nech databázi bloků přestavět pouze v případě, že si jsi jistý, že máš na počítači správný datum a čas + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Tohle je testovací verze – používej ji jen na vlastní riziko, ale rozhodně ji nepoužívej k těžbě nebo pro obchodní aplikace + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Nedaří se mi vrátit databázi do stavu před štěpem. Budeš muset znovu stáhnout celý řetězec bloků + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Použít UPnP k namapování naslouchacího portu (výchozí: 1, pokud naslouchá a nepoužívá -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Uživatelské jméno a zahašované heslo pro JSON-RPC spojení. Pole <userpw> má formát: <UŽIVATELSKÉ_JMÉNO>:<SŮL>$<HAŠ>. Pomocný pythonní skript je přiložen v share/rpcuser. Klient se pak už připojuje normálně pomocí páru argumentů rpcuser=<UŽIVATELSKÉ_JMÉNO>/rpcpassword=<HESLO>. Tuto volbu lze použít i vícekrát + Wallet will not create transactions that violate mempool chain limits (default: %u) Peněženka nebude vytvářet transakce, které by porušovaly limity transakčního zásobníku na řetězce (výchozí: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Upozornění: Síť podle všeho není v konzistentním stavu. Někteří těžaři jsou zřejmě v potížích. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Upozornění: Nesouhlasím zcela se svými protějšky! Možná potřebuji aktualizovat nebo ostatní uzly potřebují aktualizovat. - You need to rebuild the database using -reindex-chainstate to change -txindex - Je třeba přestavět databázi použitím -reindex-chainstate, aby bylo možné změnit -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s je poškozen, jeho záchrana se nezdařila + -maxmempool must be at least %d MB -maxmempool musí být alespoň %d MB + <category> can be: <category> může být: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Připojit komentář k typu klienta + Attempt to recover private keys from a corrupt wallet on startup Pokusit se při startu zachránit soukromé klíče z poškozeného souboru s klíči + Block creation options: Možnosti vytváření bloku: - Cannot resolve -%s address: '%s' - Nemohu přeložit -%s adresu: '%s' + + Cannot resolve -%s address: '%s' + Nemohu přeložit -%s adresu: '%s' + Chain selection options: Možnosti výběru řetězce: + Change index out of range Index drobných je mimo platný rozsah + Connection options: Možnosti připojení: + Copyright (C) %i-%i Copyright (C) %i–%i + Corrupted block database detected Bylo zjištěno poškození databáze bloků + Debugging/Testing options: Možnosti ladění/testování: + Do not load the wallet and disable wallet RPC calls Nenačítat peněženku a vypnout její RPC volání + Do you want to rebuild the block database now? Chceš přestavět databázi bloků hned teď? + Enable publish hash block in <address> Zapnout oznamování hashů bloků na adrese <address> + Enable publish hash transaction in <address> Zapnout oznamování hashů transakcí na adrese <address> + Enable publish raw block in <address> Zapnout oznamování surových bloků na adrese <address> + Enable publish raw transaction in <address> Zapnout oznamování surových transakcí na adrese <address> + Enable transaction replacement in the memory pool (default: %u) Povolit výměnu transakcí v transakčním zásobníku (výchozí: %u) + Error initializing block database Chyba při zakládání databáze bloků + Error initializing wallet database environment %s! Chyba při vytváření databázového prostředí %s pro peněženku! + Error loading %s Chyba při načítání %s + Error loading %s: Wallet corrupted Chyba při načítání %s: peněženka je poškozená + Error loading %s: Wallet requires newer version of %s Chyba při načítání %s: peněženka vyžaduje novější verzi %s - Error loading %s: You can't disable HD on a already existing HD wallet - Chyba při načítání %s: nemůžeš vypnout HD u existující HD peněženky - - + Error loading block database Chyba při načítání databáze bloků + Error opening block database Chyba při otevírání databáze bloků + Error: Disk space is low! Problém: Na disku je málo místa! + Failed to listen on any port. Use -listen=0 if you want this. Nepodařilo se naslouchat na žádném portu. Použij -listen=0, pokud to byl tvůj záměr. + Importing... Importuji... + Incorrect or no genesis block found. Wrong datadir for network? Nemám žádný nebo jen špatný genesis blok. Není špatně nastavený datadir? + Initialization sanity check failed. %s is shutting down. Selhala úvodní zevrubná prověrka. %s se ukončuje. - Invalid -onion address: '%s' - Neplatná -onion adresa: '%s' + + Invalid amount for -%s=<amount>: '%s' + Neplatná částka pro -%s=<částka>: '%s' - Invalid amount for -%s=<amount>: '%s' - Neplatná částka pro -%s=<částka>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Neplatná částka pro -fallbackfee=<částka>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Neplatná částka pro -fallbackfee=<částka>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Udržovat zasobník transakcí menší než <n> megabajtů (výchozí: %u) + + Loading P2P addresses... + + + + Loading banlist... Načítám seznam klateb... + Location of the auth cookie (default: data dir) Místo pro autentizační cookie (výchozí: adresář pro data) + Not enough file descriptors available. Je nedostatek deskriptorů souborů. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Připojovat se pouze k uzlům v <net> síti (ipv4, ipv6 nebo onion) + Print this help message and exit Vypsat tuto nápovědu a skončit + Print version and exit Vypsat verzi a skončit + Prune cannot be configured with a negative value. Prořezávání nemůže být zkonfigurováno s negativní hodnotou. + Prune mode is incompatible with -txindex. Prořezávací režim není kompatibilní s -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Při startu znovu vytvořit index řetězce bloků z aktuálních blk*.dat souborů + Rebuild chain state from the currently indexed blocks Znovu vytvořit stav řetězce bloků z aktuálně indexovaných bloků + + Replaying blocks... + + + + Rewinding blocks... Vracím bloky… + Set database cache size in megabytes (%d to %d, default: %d) Nastavit velikost databázové vyrovnávací paměti v megabajtech (%d až %d, výchozí: %d) - Set maximum block size in bytes (default: %d) - Nastavit maximální velikost bloku v bajtech (výchozí: %d) - - + Specify wallet file (within data directory) Udej název souboru s peněženkou (v rámci datového adresáře) + The source code is available from %s. Zdrojový kód je dostupný na %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Nedaří se mi připojit na %s na tomhle počítači. %s už pravděpodobně jednou běží. + Unsupported argument -benchmark ignored, use -debug=bench. Nepodporovaný argument -benchmark se ignoruje, použij -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Nepodporovaný argument -debugnet se ignoruje, použij -debug=net. + Unsupported argument -tor found, use -onion. Argument -tor již není podporovaný, použij -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Použít UPnP k namapování naslouchacího portu (výchozí: %u) + Use the test chain Použít testovací řetězec + User Agent comment (%s) contains unsafe characters. Komentář u typu klienta (%s) obsahuje riskantní znaky. + Verifying blocks... Ověřuji bloky… - Verifying wallet... - Kontroluji peněženku… - - + Wallet %s resides outside data directory %s Peněženka %s se nachází mimo datový adresář %s + Wallet debugging/testing options: Možnosti ladění/testování peněženky: + Wallet needed to be rewritten: restart %s to complete Soubor s peněženkou potřeboval přepsat: restartuj %s, aby se operace dokončila + Wallet options: Možnosti peněženky: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Povolit JSON-RPC spojení ze specifikovaného zdroje. Platnou hodnotou <ip> je jednotlivá IP adresa (např. 1.2.3.4), síť/maska (např. 1.2.3.4/255.255.255.0) nebo síť/CIDR (např. 1.2.3.4/24). Tuto volbu lze použít i vícekrát + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Obsadit zadanou adresu a vždy vítat protějšky, které se na ni připojí. Pro zápis IPv6 adresy použij notaci [adresa]:port - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Čekat na zadané adrese na JSON-RPC spojení. Pro zápis IPv6 adresy použij notaci [adresa]:port. Tuto volbu lze použít i vícekrát (výchozí: poslouchat na všech rozhraních) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Vytvářet nové soubory s výchozími systémovými právy namísto umask 077 (uplatní se, pouze pokud je vypnutá funkce peněženky) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Zjistit vlastní IP adresu (výchozí: 1, pokud naslouchá a není zadáno -externalip nebo -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Chyba: Nelze naslouchat příchozí spojení (listen vrátil chybu %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Spustit příkaz, když přijde relevantní upozornění nebo když dojde k opravdu dlouhému rozštěpení řetezce bloků (%s se v příkazu nahradí zprávou) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Poplatky (v %s/kB) menší než tato hodnota jsou považovány za nulové pro účely přeposílání, těžení a vytváření transakcí (výchozí: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Pokud paytxfee není nastaveno, platit dostatečný poplatek na to, aby začaly být transakce potvrzovány v průměru během n bloků (výchozí: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Neplatná částka pro -maxtxfee=<amount>: '%s' (musí být alespoň jako poplatek minrelay %s, aby transakce nezůstávaly trčet) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Neplatná částka pro -maxtxfee=<amount>: '%s' (musí být alespoň jako poplatek minrelay %s, aby transakce nezůstávaly trčet) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximální velikost dat v transakcích nesoucích data, se kterou jsme ochotni je ještě přeposílat a těžit (výchozí: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Použít náhodné údaje pro každé proxy spojení. To umožní izolovat nesouvisející datové toky v Toru (výchozí: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Nastavit maximální velikost prioritních/nízkopoplatkových transakcí v bajtech (výchozí: %d) - - + The transaction amount is too small to send after the fee has been deducted Částka v transakci po odečtení poplatku je příliš malá na odeslání - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Použít hierarchické deterministické generování klíčů (HD) podle BIP32. Má vliv pouze během vytváření peněženky/prvního startu - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Na vždy vítané protějšky se nevztahuje DoS klatba a jejich transakce jsou vždy přeposílány, i když už třeba jsou v transakčním zásobníku, což je užitečné např. pro bránu + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain K návratu k neprořezávacímu režimu je potřeba přestavět databázi použitím -reindex. Také se znovu stáhne celý řetězec bloků + (default: %u) (výchozí: %u) + Accept public REST requests (default: %u) Přijímat veřejné REST požadavky (výchozí: %u) + Automatically create Tor hidden service (default: %d) Automaticky v Toru vytvářet skryté služby (výchozí: %d) + Connect through SOCKS5 proxy Připojit se přes SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Chyba při čtení z databáze, ukončuji se. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importovat při startu bloky z externího souboru blk000??.dat + Information Informace - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Neplatná částka pro -paytxfee=<částka>: '%s' (musí být alespoň %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Ve -whitelist byla zadána neplatná podsíť: '%s' + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Neplatná částka pro -paytxfee=<částka>: '%s' (musí být alespoň %s) + + Invalid netmask specified in -whitelist: '%s' + Ve -whitelist byla zadána neplatná podsíť: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Držet v paměti nejvýše <n> nespojitelných transakcí (výchozí: %u) - Need to specify a port with -whitebind: '%s' - V rámci -whitebind je třeba specifikovat i port: '%s' + + Need to specify a port with -whitebind: '%s' + V rámci -whitebind je třeba specifikovat i port: '%s' + Node relay options: Možnosti přeposílání: + RPC server options: Možnosti RPC serveru: + Reducing -maxconnections from %d to %d, because of system limitations. Omezuji -maxconnections z %d na %d kvůli systémovým omezením. + Rescan the block chain for missing wallet transactions on startup Přeskenovat při startu řetězec bloků na chybějící transakce tvé pěněženky + Send trace/debug info to console instead of debug.log file Posílat stopovací/ladicí informace do konzole místo do souboru debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Posílat transakce pokud možno bez poplatků (výchozí: %u) - - + Show all debugging options (usage: --help -help-debug) Zobrazit všechny možnosti ladění (užití: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Při spuštění klienta zmenšit soubor debug.log (výchozí: 1, pokud není zadáno -debug) + Signing transaction failed Nepodařilo se podepsat transakci + The transaction amount is too small to pay the fee Částka v transakci je příliš malá na pokrytí poplatku + This is experimental software. Tohle je experimentální program. + Tor control port password (default: empty) Heslo ovládacího portu Toru (výchozí: prázdné) + Tor control port to use if onion listening enabled (default: %s) Ovládací port Toru, je-li zapnuté onion naslouchání (výchozí: %s) + Transaction amount too small Částka v transakci je příliš malá + Transaction too large for fee policy Transakce je na poplatkovou politiku příliš velká + Transaction too large Transakce je příliš velká + Unable to bind to %s on this computer (bind returned error %s) Nedaří se mi připojit na %s na tomhle počítači (operace bind vrátila chybu %s) + Upgrade wallet to latest format on startup Převést při startu peněženku na nejnovější formát + Username for JSON-RPC connections Uživatelské jméno pro JSON-RPC spojení + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Upozornění + Warning: unknown new rules activated (versionbit %i) Upozornění: aktivována neznámá nová pravidla (verzový bit %i) + Whether to operate in a blocks only mode (default: %u) Zda fungovat v čistě blokovém režimu (výchozí: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Vymazat všechny transakce z peněženky... + ZeroMQ notification options: Možnosti ZeroMQ oznamování: + Password for JSON-RPC connections Heslo pro JSON-RPC spojení + Execute command when the best block changes (%s in cmd is replaced by block hash) Spustit příkaz, když se změní nejlepší blok (%s se v příkazu nahradí hashem bloku) + Allow DNS lookups for -addnode, -seednode and -connect Povolit DNS dotazy pro -addnode (přidání uzlu), -seednode a -connect (připojení) - Loading addresses... - Načítám adresy... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = ukládat transakční metadata, např. majitele účtu a informace o platebním požadavku, 2 = mazat transakční metadata) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee je nastaveno velmi vysoko! Takto vysoký poplatek může být zaplacen v jednotlivé transakci. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Nedržet transakce v zásobníku déle než <n> hodin (výchozí: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Ekvivalent bajtů za každý sigop v transakcích – pro účely přeposílání a těžení (výchozí: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Poplatky (v %s/kB) menší než tato hodnota jsou považovány za nulové pro účely vytváření transakcí (výchozí: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Vynutit přeposílání transakcí od vždy vítaných protějšků (tj. těch na bílé listině), i když porušují místní zásady pro přeposílání (výchozí: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Jak moc důkladná má být verifikace bloků -checkblocks (0-4, výchozí: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Spravovat úplný index transakcí, který je využíván rpc voláním getrawtransaction (výchozí: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Doba ve vteřinách, po kterou se nebudou moci zlobivé protějšky znovu připojit (výchozí: %u) + Output debugging information (default: %u, supplying <category> is optional) Tisknout ladicí informace (výchozí: %u, zadání <category> je volitelné) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Při nedostatku adres získat další protějšky z DNS (výchozí: 1, pokud není použito -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Nastaví serializaci surových transakcí nebo bloků, jak jsou vraceny v méně povídavém módu: ne-segwit (0) nebo segwit (1) (výchozí: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Umožnit filtrování bloků a transakcí pomocí Bloomova filtru (výchozí: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Toto je transakční poplatek, který se platí, pokud náhodou není k dispozici odhad poplatků. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Tento produkt zahrnuje programy vyvinuté OpenSSL Projektem pro použití v OpenSSL Toolkitu %s a kryptografický program od Erika Younga a program UPnP od Thomase Bernarda. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Celková délka síťového identifikačního řetězce (%i) překročila svůj horní limit (%i). Omez počet nebo velikost voleb uacomment. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Pokusit se udržet odchozí provoz pod stanovenou hodnotou (v MiB za 24 hodin), 0 = bez omezení (výchozí: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Byl použit nepodporovaný argument -socks. Nastavení verze SOCKS už není možné, podporovány jsou pouze SOCKS5 proxy. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Nepodporovaný argument -whitelistalwaysrelay se ignoruje, použij -whitelistrelay a/nebo -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Použít samostatnou SOCKS5 proxy ke spojení s protějšky přes skryté služby v Toru (výchozí: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Upozornění: Síť těží neznámé verze bloků! Je možné, že jsou v platnosti neznámá pravidla + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Upozornění: soubor s peněženkou je poškozený, data jsou však zachráněna! Původní soubor %s je uložený jako %s v %s. Pokud nejsou stav tvého účtu nebo transakce v pořádku, zřejmě bys měl obnovit zálohu. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Vždy vítat protějšky připojující se z dané IP adresy (např. 1.2.3.4) či podsítě (CIDR zápis, např. 1.2.3.0/24). Lze zadat i vícekrát. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s je nastaveno velmi vysoko! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (výchozí: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Vždy získávat adresy dalších protějšků přes DNS (výchozí: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Kolik bloků při startu zkontrolovat (výchozí: %u, 0 = všechny) + Include IP addresses in debug output (default: %u) Zaznamenávat do ladicích výstupů i IP adresy (výchozí: %u) - Invalid -proxy address: '%s' - Neplatná -proxy adresa: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Vyčerpal se zásobník klíčů, zavolej prvně, prosím, keypoolrefill + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Čekat na JSON-RPC spojení na <portu> (výchozí: %u nebo testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Čekat na spojení na <portu> (výchozí: %u nebo testnet: %u) + Maintain at most <n> connections to peers (default: %u) Povolit nejvýše <n> protějšků (výchozí: %u) + Make the wallet broadcast transactions Transakce z peněženky rozesílat + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximální velikost přijímacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximální velikost odesílacího bufferu pro každé spojení, <n>*1000 bajtů (výchozí: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Připojit před ladicí výstup časové razítko (výchozí: %u) + Relay and mine data carrier transactions (default: %u) Přeposílat a těžit transakce nesoucí data (výchozí: %u) + Relay non-P2SH multisig (default: %u) Přeposílat ne-P2SH multisig (výchozí: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Posílat transakce se zapnutým plným RBF (= replace-by-fee) (výchozí: %u) + Set key pool size to <n> (default: %u) Nastavit zásobník klíčů na velikost <n> (výchozí: %u) + Set maximum BIP141 block weight (default: %d) Nastavit maximální váhu bloku pro BIP141 (výchozí: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Nastavení počtu vláken pro servisní RPC volání (výchozí: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Konfigurační soubor (výchozí: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Zadej časový limit spojení v milivteřinách (minimum: 1, výchozí: %d) + + Specify pid file (default: %s) + + + + Spend unconfirmed change when sending transactions (default: %u) Utrácet i ještě nepotvrzené drobné při posílání transakcí (výchozí: %u) + Starting network threads... Spouštím síťová vlákna… + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Peněženka zaručí přiložení poplatku alespoň ve výši minima pro přenos transakce. + This is the minimum transaction fee you pay on every transaction. Toto je minimální poplatek, který zaplatíš za každou transakci. + This is the transaction fee you will pay if you send a transaction. Toto je poplatek, který zaplatíš za každou poslanou transakci. + Threshold for disconnecting misbehaving peers (default: %u) Práh pro odpojování zlobivých protějšků (výchozí: %u) + Transaction amounts must not be negative Částky v transakci nemohou být záporné + Transaction has too long of a mempool chain Transakce má v transakčním zásobníku příliš dlouhý řetězec + Transaction must have at least one recipient Transakce musí mít alespoň jednoho příjemce - Unknown network specified in -onlynet: '%s' - V -onlynet byla uvedena neznámá síť: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + V -onlynet byla uvedena neznámá síť: '%s' + + + Insufficient funds Nedostatek prostředků + Loading block index... Načítám index bloků... - Add a node to connect to and attempt to keep the connection open - Přidat uzel, ke kterému se připojit a snažit se spojení udržet - - + Loading wallet... Načítám peněženku... + Cannot downgrade wallet Nemohu převést peněženku do staršího formátu - Cannot write default address - Nemohu napsat výchozí adresu - - + Rescanning... Přeskenovávám… - Done loading - Načítání dokončeno - - + Error Chyba diff --git a/src/qt/locale/raven_cy.ts b/src/qt/locale/raven_cy.ts index 64b8108214..d4570e18db 100644 --- a/src/qt/locale/raven_cy.ts +++ b/src/qt/locale/raven_cy.ts @@ -1,503 +1,8290 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Creu cyfeiriad newydd + &New &Newydd + Copy the currently selected address to the system clipboard - Copio'r cyfeiriad sydd wedi'i ddewis i'r clipfwrdd system + Copio'r cyfeiriad sydd wedi'i ddewis i'r clipfwrdd system + &Copy &Copïo + C&lose C&au + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + &Export &Allforio + &Delete &Dileu - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Teipiwch gyfrinymadrodd + New passphrase Cyfrinymadrodd newydd + Repeat new passphrase Ailadroddwch gyfrinymadrodd newydd - - - BanTableModel - - - RavenGUI - Synchronizing with network... - Cysoni â'r rhwydwaith... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Overview - &Trosolwg + + Encrypt wallet + - Show general overview of wallet - Dangos trosolwg cyffredinol y waled + + This operation needs your wallet passphrase to unlock the wallet. + - &Transactions - &Trafodion + + Unlock wallet + - Browse transaction history - Pori hanes trafodion + + This operation needs your wallet passphrase to decrypt the wallet. + - E&xit - A&llanfa + + Decrypt wallet + - Quit application - Gadael rhaglen + + Change passphrase + - About &Qt - Ynghylch &Qt + + Enter the old passphrase and new passphrase to the wallet. + - &Options... - &Opsiynau + + Confirm wallet encryption + - &Encrypt Wallet... - &Amgryptio'r waled... + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Change Passphrase... - &Newid cyfrinymadrodd... + + Are you sure you wish to encrypt your wallet? + - &Sending addresses... - &Cyfeiriadau anfon... + + + Wallet encrypted + - &Receiving addresses... - &Cyfeiriadau derbyn... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Open &URI... - Agor &URI... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Change the passphrase used for wallet encryption - Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled + + + + + Wallet encryption failed + - Raven - Raven + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Wallet - Waled + + + The supplied passphrases do not match. + - &Send - &Anfon + + Wallet unlock failed + - &Receive - &Derbyn + + + + The passphrase entered for the wallet decryption was incorrect. + - &Show / Hide - &Dangos / Cuddio + + Wallet decryption failed + - &File - &Ffeil + + Wallet passphrase was successfully changed. + - &Settings - &Gosodiadau + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Help - &Cymorth + + Asset Selection + - Tabs toolbar - Bar offer tabiau + + Quantity: + - Error - Gwall + + Bytes: + - Warning - Rhybudd + + Amount: + - Information - Gwybodaeth + + Dust: + - Up to date - Cyfamserol + + Fee: + - Catching up... - Dal i fyny + + After Fee: + - Date: %1 - - Dyddiad: %1 - + + Change: + - Type: %1 - - Math: %1 - + + (un)select all + - Label: %1 - - Label: %1 - + + Tree mode + - Address: %1 - - Cyfeiriad: %1 - + + List mode + - Sent transaction - Trafodiad a anfonwyd + + View assets that you have the ownership asset for + - Incoming transaction - Trafodiad sy'n cyrraedd + + View Administrator Assets + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Mae'r waled <b>wedi'i amgryptio</b> ac <b>heb ei gloi</b> ar hyn o bryd + + Asset + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Mae'r waled <b>wedi'i amgryptio</b> ac <b>ar glo</b> ar hyn o bryd + + Amount + - - - CoinControlDialog - Amount: - Maint + + Received with label + - Date - Dyddiad + + Received with address + - - - EditAddressDialog - Edit Address - Golygu'r cyfeiriad + + Date + - &Label - &Label + + Confirmations + - &Address - &Cyfeiriad + + Confirmed + - - - FreespaceChecker - name - enw + + Copy address + - - - HelpMessageDialog - Usage: - Cynefod: + + Copy label + - - - Intro - Welcome - Croeso + + + Copy amount + - Error - Gwall + + Copy transaction ID + - - - ModalOverlay - Form - Ffurflen + + Lock unspent + - - - OpenURIDialog - Open URI - Agor URI + + Unlock unspent + - URI: - URI: + + Copy quantity + - - - OptionsDialog - Options - Opsiynau + + Copy fee + - &Network - &Rhwydwaith + + Copy after fee + - W&allet - W&aled + + Copy bytes + - IPv4 - IPv4 + + Copy dust + - IPv6 - IPv6 + + Copy change + - Tor - Tor + + (%1 locked) + - &Window - &Ffenestr + + yes + - &Display - &Dangos + + no + - - - OverviewPage - Form - Ffurflen + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - PaymentServer - - - PeerTableModel - - - QObject - %1 and %2 - %1 a %2 + + Can vary +/- %1 satoshi(s) per input. + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Gwybodaeth + + + (no label) + - Network - Rhwydwaith + + change from %1 (%2) + - &Open - &Agor + + (change) + - + - ReceiveCoinsDialog + AssetTableModel - &Label: - &Label: + + Name + - - - ReceiveRequestDialog - Copy &Address - &Cyfeiriad Copi + + Quantity + - - - RecentRequestsTableModel - + - SendCoinsDialog + AssetsDialog + + Send Coins - Anfon arian + - Amount: - Maint + + Asset Control Features + - Send to multiple recipients at once - Anfon at pobl lluosog ar yr un pryd + + Inputs... + - Balance: - Gweddill: + + automatically selected + - Confirm the send action - Cadarnhau'r gweithrediad anfon + + Insufficient funds! + - - - SendCoinsEntry - A&mount: - &Maint + + Quantity: + - &Label: - &Label: + + Bytes: + - Alt+A - Alt+A + + Amount: + - Paste address from clipboard - Gludo cyfeiriad o'r glipfwrdd + + Dust: + - Alt+P - Alt+P + + Fee: + - Message: - Neges: + + After Fee: + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + Change: + - Paste address from clipboard - Gludo cyfeiriad o'r glipfwrdd + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Alt+P - Alt+P + + Custom change address + - - - SplashScreen - [testnet] - [testnet] + + Transaction Fee: + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - WalletFrame - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - WalletModel - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - WalletView - + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Maint + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + Dyddiad + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - raven-core + CreateAssetDialog - Options: - Opsiynau: + + Coin Control Features + - Raven Core - Craidd Raven + + Inputs... + - Information - Gwybodaeth + + automatically selected + - Warning - Rhybudd + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Golygu'r cyfeiriad + + + + &Label + &Label + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Cyfeiriad + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + enw + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + Cynefod: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Croeso + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Gwall + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Ffurflen + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Agor URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opsiynau + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &Rhwydwaith + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + W&aled + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Ffenestr + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Dangos + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Ffurflen + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 a %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Gwybodaeth + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Rhwydwaith + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Agor + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Cysoni â'r rhwydwaith... + + + + &Overview + &Trosolwg + + + + Node + + + + + Show general overview of wallet + Dangos trosolwg cyffredinol y waled + + + + &Transactions + &Trafodion + + + + Browse transaction history + Pori hanes trafodion + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + A&llanfa + + + + Quit application + Gadael rhaglen + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Ynghylch &Qt + + + + Show information about Qt + + + + + &Options... + &Opsiynau + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Amgryptio'r waled... + + + + &Backup Wallet... + + + + + &Change Passphrase... + &Newid cyfrinymadrodd... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Cyfeiriadau anfon... + + + + &Receiving addresses... + &Cyfeiriadau derbyn... + + + + Open &URI... + Agor &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Newid y cyfrinymadrodd a ddefnyddiwyd ar gyfer amgryptio'r waled + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Waled + + + + &Send + &Anfon + + + + &Receive + &Derbyn + + + + &Show / Hide + &Dangos / Cuddio + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Ffeil + + + + &Help + &Cymorth + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Gwall + + + + Warning + Rhybudd + + + + Information + Gwybodaeth + + + + Up to date + Cyfamserol + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Dal i fyny + + + + Date: %1 + + Dyddiad: %1 + + + + + + Amount: %1 + + + + + + Type: %1 + + Math: %1 + + + + + Label: %1 + + Label: %1 + + + + + Address: %1 + + Cyfeiriad: %1 + + + + + Sent transaction + Trafodiad a anfonwyd + + + + Incoming transaction + Trafodiad sy'n cyrraedd + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Mae'r waled <b>wedi'i amgryptio</b> ac <b>heb ei gloi</b> ar hyn o bryd + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Mae'r waled <b>wedi'i amgryptio</b> ac <b>ar glo</b> ar hyn o bryd + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + &Label: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Cyfeiriad Copi + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Anfon arian + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Maint + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Anfon at pobl lluosog ar yr un pryd + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Gweddill: + + + + Confirm the send action + Cadarnhau'r gweithrediad anfon + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &Maint + + + + &Label: + &Label: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Gludo cyfeiriad o'r glipfwrdd + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Neges: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Gludo cyfeiriad o'r glipfwrdd + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opsiynau: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Craidd Raven + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Gwybodaeth + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Rhybudd + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Gwall diff --git a/src/qt/locale/raven_da.ts b/src/qt/locale/raven_da.ts index 6e3acacdc0..265947bf68 100644 --- a/src/qt/locale/raven_da.ts +++ b/src/qt/locale/raven_da.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Højreklik for at redigere adresse eller mærkat + Create a new address Opret en ny adresse + &New &Ny + Copy the currently selected address to the system clipboard Kopiér den valgte adresse til systemets udklipsholder + &Copy &Kopiér + C&lose &Luk + Delete the currently selected address from the list Slet den markerede adresse fra listen + Export the data in the current tab to a file Eksportér den aktuelle visning til en fil + &Export &Eksportér + &Delete &Slet + Choose the address to send coins to Vælg adresse at sende ravens til + Choose the address to receive coins with Vælg adresse at modtage ravens med + C&hoose &Vælg + Sending addresses Afsendelsesadresser + Receiving addresses Modtagelsesadresser + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Disse er dine Raven-adresser til afsendelse af betalinger. Tjek altid beløb og modtagelsesadresse, inden du sender ravens. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Dette er dine Raven-adresser til modtagelse af betalinger. Det anbefales at bruge en ny modtagelsesadresse for hver transaktion. + &Copy Address &Kopiér adresse + Copy &Label Kopiér &mærkat + &Edit &Redigér + Export Address List Eksportér adresseliste + Comma separated file (*.csv) Kommasepareret fil (*.csv) + Exporting Failed Eksport mislykkedes + There was an error trying to save the address list to %1. Please try again. Der opstod en fejl under gemning af adresselisten til %1. Prøv venligst igen. @@ -103,14 +125,17 @@ AddressTableModel + Label Mærkat + Address Adresse + (no label) (ingen mærkat) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Adgangskodedialog + Enter passphrase Indtast adgangskode + New passphrase Ny adgangskode + Repeat new passphrase Gentag ny adgangskode + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Indtast det nye kodeord til tegnebogen.<br/>Brug venligst et kodeord på <b>ti eller flere tilfældige tegn</b> eller <b>otte eller flere ord</b>. + Encrypt wallet Kryptér tegnebog + This operation needs your wallet passphrase to unlock the wallet. Denne funktion har brug for din tegnebogs adgangskode for at låse tegnebogen op. + Unlock wallet Lås tegnebog op + This operation needs your wallet passphrase to decrypt the wallet. Denne funktion har brug for din tegnebogs adgangskode for at dekryptere tegnebogen. + Decrypt wallet Dekryptér tegnebog + Change passphrase Skift adgangskode + Enter the old passphrase and new passphrase to the wallet. Indtast den gamle adgangskode og en ny adgangskode til tegnebogen. + Confirm wallet encryption Bekræft tegnebogskryptering + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Advarsel: Hvis du krypterer din tegnebog og mister din adgangskode, vil du <b>MISTE ALLE DINE RAVENS</b>! + Are you sure you wish to encrypt your wallet? Er du sikker på, at du ønsker at kryptere din tegnebog? + + Wallet encrypted Tegnebog krypteret + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 vil nu lukke for at færdiggøre krypteringsprocessen. Husk at kryptering af din tegnebog kan ikke beskytte dine raven fuldt ud mod at blive stjålet af eventuel malware, der måtte have inficeret din computer. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. VIGTIGT: Enhver tidligere sikkerhedskopi, som du har lavet af tegnebogsfilen, bør blive erstattet af den nyligt genererede, krypterede tegnebogsfil. Af sikkerhedsmæssige årsager vil tidligere sikkerhedskopier af den ikke-krypterede tegnebogsfil blive ubrugelige i det øjeblik, du starter med at anvende den nye, krypterede tegnebog. + + + + Wallet encryption failed Tegnebogskryptering mislykkedes + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Tegnebogskryptering mislykkedes på grund af en intern fejl. Din tegnebog blev ikke krypteret. + + The supplied passphrases do not match. De angivne adgangskoder stemmer ikke overens. + Wallet unlock failed Tegnebogsoplåsning mislykkedes + + + The passphrase entered for the wallet decryption was incorrect. Den angivne adgangskode for tegnebogsdekrypteringen er forkert. + Wallet decryption failed Tegnebogsdekryptering mislykkedes + Wallet passphrase was successfully changed. Tegnebogens adgangskode blev ændret. + + Warning: The Caps Lock key is on! Advarsel: Caps Lock-tasten er aktiveret! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmaske + + Asset Selection + - Banned Until - Bandlyst indtil + + Quantity: + - - - RavenGUI - Sign &message... - Signér &besked… + + Bytes: + - Synchronizing with network... - Synkroniserer med netværk… + + Amount: + - &Overview - &Oversigt + + Dust: + - Node - Knude + + Fee: + - Show general overview of wallet - Vis generel oversigt over tegnebog + + After Fee: + - &Transactions - &Transaktioner + + Change: + - Browse transaction history - Gennemse transaktionshistorik + + (un)select all + - E&xit - &Luk + + Tree mode + - Quit application - Afslut program + + List mode + - &About %1 - &Om %1 + + View assets that you have the ownership asset for + - Show information about %1 - Vis informationer om %1 + + View Administrator Assets + - About &Qt - Om &Qt + + Asset + - Show information about Qt - Vis informationer om Qt + + Amount + - &Options... - &Indstillinger… + + Received with label + - Modify configuration options for %1 - Redigér konfigurationsindstillinger for %1 + + Received with address + - &Encrypt Wallet... - &Kryptér tegnebog… + + Date + - &Backup Wallet... - &Sikkerhedskopiér tegnebog… + + Confirmations + - &Change Passphrase... - &Skift adgangskode… + + Confirmed + - &Sending addresses... - &Afsendelsesadresser… + + Copy address + - &Receiving addresses... - &Modtagelsesadresser… + + Copy label + - Open &URI... - &Åbn URI… + + + Copy amount + - Click to disable network activity. - Klik for at deaktivere netværksaktivitet. + + Copy transaction ID + - Network activity disabled. - Netværksaktivitet deaktiveret. + + Lock unspent + - Click to enable network activity again. - Klik for a aktivere netværksaktivitet igen. + + Unlock unspent + - Syncing Headers (%1%)... - Synkroniserer hoveder (%1%)… + + Copy quantity + - Reindexing blocks on disk... - Genindekserer blokke på disken… + + Copy fee + - Send coins to a Raven address - Send ravens til en Raven-adresse + + Copy after fee + - Backup wallet to another location - Lav sikkerhedskopi af tegnebogen til et andet sted + + Copy bytes + - Change the passphrase used for wallet encryption - Skift adgangskode anvendt til tegnebogskryptering + + Copy dust + - &Debug window - &Fejlsøgningsvindue + + Copy change + - Open debugging and diagnostic console - Åbn fejlsøgnings- og diagnosticeringskonsollen + + (%1 locked) + - &Verify message... - &Verificér besked… + + yes + - Raven - Raven + + no + - Wallet - Tegnebog + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Send + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Modtag + + + (no label) + - &Show / Hide - &Vis / skjul + + change from %1 (%2) + - Show or hide the main Window - Vis eller skjul hovedvinduet + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Kryptér de private nøgler, der hører til din tegnebog + + Name + - Sign messages with your Raven addresses to prove you own them - Signér beskeder med dine Raven-adresser for at bevise, at de tilhører dig + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verificér beskeder for at sikre, at de er signeret med de angivne Raven-adresser + + + Send Coins + - &File - &Fil + + Asset Control Features + - &Settings - &Opsætning + + Inputs... + - &Help - &Hjælp + + automatically selected + - Tabs toolbar - Faneværktøjslinje + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Anmod om betalinger (genererer QR-koder og “raven:”-URI'er) + + Quantity: + - Show the list of used sending addresses and labels - Vis listen over brugte afsendelsesadresser og -mærkater + + Bytes: + - Show the list of used receiving addresses and labels - Vis listen over brugte modtagelsesadresser og -mærkater + + Amount: + - Open a raven: URI or payment request - Åbn en “raven:”-URI eller betalingsanmodning + + Dust: + - &Command-line options - Tilvalg for &kommandolinje + + Fee: + - - %n active connection(s) to Raven network - %n aktiv forbindelse til Raven-netværket%n aktive forbindelser til Raven-netværket + + + After Fee: + - Indexing blocks on disk... - Genindekserer blokke på disken… + + Change: + - Processing blocks on disk... - Bearbejder blokke på disken… + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - Bearbejdede %n blok med transaktionshistorik.Bearbejdede %n blokke med transaktionshistorik. + + + Custom change address + - %1 behind - %1 bagud + + Transaction Fee: + - Last received block was generated %1 ago. - Senest modtagne blok blev genereret for %1 siden. + + Choose... + - Transactions after this will not yet be visible. - Transaktioner herefter vil endnu ikke være synlige. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Fejl + + Warning: Fee estimation is currently not possible. + - Warning - Advarsel + + collapse fee-settings + - Information - Information + + Hide + - Up to date - Opdateret + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Vis %1 hjælpebesked for at få en liste over mulige tilvalg for Raven kommandolinje + + per kilobyte + - %1 client - %1-klient + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Forbinder til knuder… + + (read the tooltip) + - Catching up... - Indhenter… + + Recommended: + - Date: %1 - - Dato: %1 - + + Custom: + - Amount: %1 - - Beløb: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - Type: %1 - + + Confirmation time target: + - Label: %1 - - Mærkat: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - Adresse: %1 - + + Request Replace-By-Fee + - Sent transaction - Afsendt transaktion + + Confirm the send action + - Incoming transaction - Indgående transaktion + + S&end + - HD key generation is <b>enabled</b> - Generering af HD-nøgler er <b>aktiveret</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - Generering af HD-nøgler er <b>deaktiveret</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Der opstod en fatal fejl. Raven kan ikke længere fortsætte sikkert og vil afslutte. + + Balance: + - - - CoinControlDialog - Coin Selection - Coin-styring + + Copy quantity + - Quantity: - Mængde: + + Copy amount + - Bytes: - Byte: + + Copy fee + - Amount: - Beløb: + + Copy after fee + - Fee: - Gebyr: + + Copy bytes + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmaske + + + + Banned Until + Bandlyst indtil + + + + CoinControlDialog + + + Coin Selection + Coin-styring + + + + Quantity: + Mængde: + + + + Bytes: + Byte: + + + + Amount: + Beløb: + + + + Fee: + Gebyr: + + + Dust: Støv: + After Fee: Efter gebyr: + Change: Byttepenge: + (un)select all (af)vælg alle + Tree mode Trætilstand + List mode Listetilstand + Amount Beløb + Received with label Modtaget med mærkat + Received with address Modtaget med adresse + Date Dato + Confirmations Bekræftelser + Confirmed Bekræftet + Copy address Kopiér adresse + Copy label Kopiér mærkat + + Copy amount Kopiér beløb + Copy transaction ID Kopiér transaktions-ID + Lock unspent Fastlås ubrugte + Unlock unspent Lås ubrugte op + Copy quantity Kopiér mængde + Copy fee Kopiér gebyr + Copy after fee Kopiér eftergebyr + Copy bytes Kopiér byte + Copy dust Kopiér støv + Copy change Kopiér byttepenge + (%1 locked) (%1 fastlåst) + yes ja + no nej + This label turns red if any recipient receives an amount smaller than the current dust threshold. Denne mærkat bliver rød, hvis en eller flere modtagere modtager et beløb, der er mindre end den aktuelle støvgrænse. + Can vary +/- %1 satoshi(s) per input. Kan variere med ±%1 satoshi per input. + + (no label) (ingen mærkat) + change from %1 (%2) byttepenge fra %1 (%2) + (change) (byttepange) - EditAddressDialog + CreateAssetDialog - Edit Address - Redigér adresse + + Coin Control Features + - &Label - &Mærkat + + Inputs... + - The label associated with this address list entry - Mærkatet, der er associeret med denne indgang i adresselisten + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Adressen, der er associeret med denne indgang i adresselisten. Denne kan kune ændres for afsendelsesadresser. + + Insufficient funds! + - &Address - &Adresse + + + Quantity: + - New receiving address - Ny modtagelsesadresse + + Bytes: + - New sending address - Ny afsendelsesadresse + + Amount: + - Edit receiving address - Redigér modtagelsesadresse + + Dust: + - Edit sending address - Redigér afsendelsesadresse + + Fee: + - The entered address "%1" is not a valid Raven address. - Den indtastede adresse “%1” er ikke en gyldig Raven-adresse. + + After Fee: + - The entered address "%1" is already in the address book. - Den indtastede adresse “%1” er allerede i adressebogen. + + Change: + - Could not unlock wallet. - Kunne ikke låse tegnebog op. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Ny nøglegenerering mislykkedes. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - En ny datamappe vil blive oprettet. + + Name: + - name - navn + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Mappe eksisterer allerede. Tilføj %1, hvis du vil oprette en ny mappe her. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Sti eksisterer allerede og er ikke en mappe. + + Check Availabilty + - Cannot create data directory here. - Kan ikke oprette en mappe her. + + Address: + - - - HelpMessageDialog - version - version + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Om %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Kommandolinjetilvalg + + Warning: + - Usage: - Anvendelse: + + The number of assets that will be created + - command-line options - kommandolinjetilvalg + + Units: + - UI Options: - Indstillinger for brugergrænseflade: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Vælg datamappe under opstart (standard: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Vælg sprog; fx “da_DK” (standard: systemsprog) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Start minimeret + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Opsæt SSL-rodcertifikater til betalingsadmodninger (standard: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Vis startskærm under opstart (standard: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Nulstil alle indstillinger, der er foretaget i den grafiske brugerflade + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Velkommen + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Velkommen til %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Siden dette er første gang, programmet startes, kan du vælge, hvor %1 skal gemme sin data. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 vil downloade og gemme et kopi af Raven-blokkæden. Mindst %2 GB data vil blive gemt i denne mappe, og den vil vokse over tid. Tegnebogen vil også blive gemt i denne mappe. + + Choose... + - Use the default data directory - Brug standardmappen for data + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Brug tilpasset mappe for data: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Fejl: Angivet datamappe “%1” kan ikke oprettes. + + collapse fee-settings + - Error - Fejl + + Hide + - - %n GB of free space available - %n GB fri plads tilgængelig%n GB fri plads tilgængelig + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (ud af %n GB nødvendig)(ud af %n GB nødvendig) + + + per kilobyte + - - - ModalOverlay - Form - Formular + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Nylige transaktioner er måske ikke synlige endnu, og derfor kan din tegnebogs saldo være ukorrekt. Denne information vil være korrekt, når din tegnebog er færdig med at synkronisere med raven-netværket, som detaljerne herunder viser. + + (read the tooltip) + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Forsøg på at bruge raven, som er indeholdt i endnu-ikke-viste transaktioner, accepteres ikke af netværket. + + Recommended: + - Number of blocks left - Antal blokke tilbage + + C&ustom: + - Unknown... - Ukendt… + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Last block time - Tidsstempel for seneste blok + + Confirmation time target: + - Progress - Fremgang + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Progress increase per hour - Øgning af fremgang pr. time + + Request Replace-By-Fee + - calculating... - beregner… + + Create Asset + - Estimated time left until synced - Estimeret tid tilbage af synkronisering + + Clear + - Hide - Skjul + + Balance: + - Unknown. Syncing Headers (%1)... - Ukendt. Synkroniserer hoveder (%1)… + + 123.456 RVN + - - - OpenURIDialog - Open URI - Åbn URI + + Copy quantity + - Open payment request from URI or file - Åbn betalingsanmodning fra URI eller fil + + Copy amount + - URI: - URI: + + Copy fee + - Select payment request file - Vælg fil for betalingsanmodning + + Copy after fee + - Select payment request file to open - Vælg fil for betalingsanmodning til åbning + + Copy bytes + - - - OptionsDialog - Options - Indstillinger + + Copy dust + - &Main - &Generelt + + Copy change + - Automatically start %1 after logging in to the system. - Start %1 automatisk, når der logges ind på systemet. + + %1 (%2 blocks) + - &Start %1 on system login - &Start %1 ved systemlogin + + Main Asset + - Size of &database cache - Størrelsen på &databasens cache + + Sub Asset + - MB - MB + + Unique Asset + - Number of script &verification threads - Antallet af script&verificeringstråde + + Messaging Channel Asset + - Accept connections from outside - Acceptér forbindelser udefra + + Qualifier Asset + - Allow incoming connections - Tillad indkommende forbindelser + + Sub Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-adresse for proxyen (fx IPv4: 127.0.0.1 / IPv6: ::1) + + Restricted Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimér i stedet for at lukke applikationen, når vinduet lukkes. Når denne indstilling er aktiveret, vil applikationen først blive lukket, når Afslut vælges i menuen. + + Asset Type + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Tredjeparts-URL'er (fx et blokhåndteringsværktøj), der vises i transaktionsfanen som genvejsmenupunkter. %s i URL'en erstattes med transaktionens hash. Flere URL'er separeres med en lodret streg |. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Third party transaction URLs - Tredjeparts-transaktions-URL'er + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Active command-line options that override above options: - Aktuelle tilvalg for kommandolinjen, der tilsidesætter ovenstående tilvalg: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Reset all client options to default. - Nulstil alle klientindstillinger til deres standard. + + + + Warning: Invalid Raven address + - &Reset Options - &Nulstil indstillinger + + Warning: Restricted Assets Reissuance requires an address + - &Network - &Netværk + + Valid Asset + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = efterlad så mange kerner fri) + + Invalid: Asset name already in use + - W&allet - &Tegnebog + + Error: Asset Database not in sync + - Expert - Ekspert + + + %1 to %2 + - Enable coin &control features - Aktivér egenskaber for &coin-styring + + Are you sure you want to send? + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Hvis du deaktiverer brug af ubekræftede byttepenge, kan byttepengene fra en transaktion ikke bruges, før pågældende transaktion har mindst én bekræftelse. Dette påvirker også måden hvorpå din saldo beregnes. + + added as transaction fee + - &Spend unconfirmed change - &Brug ubekræftede byttepenge + + Total Amount %1 + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Åbn automatisk Raven-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret. + + or + - Map port using &UPnP - Konfigurér port vha. &UPnP + + Confirm send assets + - Connect to the Raven network through a SOCKS5 proxy. - Forbind til Raven-netværket gennem en SOCKS5-proxy. + + Invalid: + - &Connect through SOCKS5 proxy (default proxy): - &Forbind gennem SOCKS5-proxy (standard-proxy): + + Copy + - Proxy &IP: - Proxy-&IP: + + Transaction ID Copied + - &Port: - &Port: + + Asset transaction sent to network: + - - Port of the proxy (e.g. 9050) - Port for proxyen (fx 9050) + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Bruges til at nå knuder via: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Viser om den angivne standard-SOCKS5-proxy bruges til at nå knuder via denne netværkstype. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Forbind til Raven-netværket gennem en separat SOCKS5-proxy for skjulte Tor-tjenester. + + Edit Address + Redigér adresse - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Brug separat SOCKS5-proxy for at nå knuder via skjulte Tor-tjenester. + + &Label + &Mærkat - &Window - &Vindue + + The label associated with this address list entry + Mærkatet, der er associeret med denne indgang i adresselisten - &Hide the icon from the system tray. - &Skjul ikonet fra statusbaren. + + The address associated with this address list entry. This can only be modified for sending addresses. + Adressen, der er associeret med denne indgang i adresselisten. Denne kan kune ændres for afsendelsesadresser. - Hide tray icon - Skjul statusikon + + &Address + &Adresse - Show only a tray icon after minimizing the window. - Vis kun et statusikon efter minimering af vinduet. + + New receiving address + Ny modtagelsesadresse - &Minimize to the tray instead of the taskbar - &Minimér til statusfeltet i stedet for proceslinjen + + New sending address + Ny afsendelsesadresse - M&inimize on close - M&inimér ved lukning + + Edit receiving address + Redigér modtagelsesadresse - &Display - &Visning + + Edit sending address + Redigér afsendelsesadresse - User Interface &language: - &Sprog for brugergrænseflade: + + The entered address "%1" is not a valid Raven address. + Den indtastede adresse “%1” er ikke en gyldig Raven-adresse. - The user interface language can be set here. This setting will take effect after restarting %1. - Sproget for brugerfladen kan vælges her. Denne indstilling vil træde i kraft efter genstart af %1. + + The entered address "%1" is already in the address book. + Den indtastede adresse “%1” er allerede i adressebogen. - &Unit to show amounts in: - &Enhed, som beløb vises i: + + Could not unlock wallet. + Kunne ikke låse tegnebog op. - Choose the default subdivision unit to show in the interface and when sending coins. - Vælg standard for underopdeling af enhed, som skal vises i brugergrænsefladen og ved afsendelse af ravens. + + New key generation failed. + Ny nøglegenerering mislykkedes. + + + FreespaceChecker - Whether to show coin control features or not. - Hvorvidt egenskaber for coin-styring skal vises eller ej. + + A new data directory will be created. + En ny datamappe vil blive oprettet. - &OK - &Ok + + name + navn - &Cancel - &Annullér + + Directory already exists. Add %1 if you intend to create a new directory here. + Mappe eksisterer allerede. Tilføj %1, hvis du vil oprette en ny mappe her. - default - standard + + Path already exists, and is not a directory. + Sti eksisterer allerede og er ikke en mappe. - none - ingen + + Cannot create data directory here. + Kan ikke oprette en mappe her. + + + FreezeAddress - Confirm options reset - Bekræft nulstilling af indstillinger + + Frame + - Client restart required to activate changes. - Genstart af klienten er nødvendig for at aktivere ændringer. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - Klienten vil lukke ned. Vil du fortsætte? + + Address: + - This change would require a client restart. - Denne ændring vil kræve en genstart af klienten. + + Custom Change Address + - The supplied proxy address is invalid. - Den angivne proxy-adresse er ugyldig. + + IPFS / Hash: + - - - OverviewPage - Form - Formular + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Raven-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu. + + Global Options + - Watch-only: - Kigge: + + Free&ze trading on this address + - Available: - Tilgængelig: + + Unfreeze tradin&g on this address + - Your current spendable balance - Din nuværende tilgængelige saldo + + Freeze all &trading for the selected restricted asset + - Pending: - Afventende: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total saldo for transaktioner, som ikke er blevet bekræftet endnu, og som ikke endnu er en del af den tilgængelige saldo + + Check + - Immature: - Umodne: + + Clear + - Mined balance that has not yet matured - Minet saldo, som endnu ikke er modnet + + Submit + - Balances - Saldi: + + Data has been validated, You can now submit the restriction transaction + - Total: - Total: + + Must have a restricted asset selected + - Your current total balance - Din nuværende totale saldo + + Address is already frozen + - Your current balance in watch-only addresses - Din nuværende saldo på kigge-adresser + + Address is not frozen + - Spendable: - Spendérbar: + + Restricted asset is already frozen globally + - Recent transactions - Nylige transaktioner + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Ubekræftede transaktioner til kigge-adresser + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Minet saldo på kigge-adresser, som endnu ikke er modnet + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Nuværende totalsaldo på kigge-adresser + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Fejl i betalingsanmodning + + version + version - Cannot start raven: click-to-pay handler - Kan ikke starte raven: click-to-pay-håndtering + + + (%1-bit) + (%1-bit) + + + + About %1 + Om %1 + + + + Command-line options + Kommandolinjetilvalg + + + + Usage: + Anvendelse: + + + + command-line options + kommandolinjetilvalg + + + + UI Options: + Indstillinger for brugergrænseflade: + + + + Choose data directory on startup (default: %u) + Vælg datamappe under opstart (standard: %u) + + + + Set language, for example "de_DE" (default: system locale) + Vælg sprog; fx “da_DK” (standard: systemsprog) + + + + Start minimized + Start minimeret + + + + Set SSL root certificates for payment request (default: -system-) + Opsæt SSL-rodcertifikater til betalingsadmodninger (standard: -system-) + + + + Show splash screen on startup (default: %u) + Vis startskærm under opstart (standard: %u) + + + + Reset all settings changed in the GUI + Nulstil alle indstillinger, der er foretaget i den grafiske brugerflade + + + + Intro + + + Welcome + Velkommen + + + + Welcome to %1. + Velkommen til %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Siden dette er første gang, programmet startes, kan du vælge, hvor %1 skal gemme sin data. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Brug standardmappen for data + + + + Use a custom data directory: + Brug tilpasset mappe for data: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Fejl: Angivet datamappe “%1” kan ikke oprettes. + + + + Error + Fejl + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formular + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Nylige transaktioner er måske ikke synlige endnu, og derfor kan din tegnebogs saldo være ukorrekt. Denne information vil være korrekt, når din tegnebog er færdig med at synkronisere med raven-netværket, som detaljerne herunder viser. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Forsøg på at bruge raven, som er indeholdt i endnu-ikke-viste transaktioner, accepteres ikke af netværket. + + + + Number of blocks left + Antal blokke tilbage + + + + + + Unknown... + Ukendt… + + + + Last block time + Tidsstempel for seneste blok + + + + Progress + Fremgang + + + + Progress increase per hour + Øgning af fremgang pr. time + + + + + calculating... + beregner… + + + + Estimated time left until synced + Estimeret tid tilbage af synkronisering + + + + Hide + Skjul + + + + Unknown. Syncing Headers (%1)... + Ukendt. Synkroniserer hoveder (%1)… + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Åbn URI + + + + Open payment request from URI or file + Åbn betalingsanmodning fra URI eller fil + + + + URI: + URI: + + + + Select payment request file + Vælg fil for betalingsanmodning + + + + Select payment request file to open + Vælg fil for betalingsanmodning til åbning + + + + OptionsDialog + + + Options + Indstillinger + + + + &Main + &Generelt + + + + Automatically start %1 after logging in to the system. + Start %1 automatisk, når der logges ind på systemet. + + + + &Start %1 on system login + &Start %1 ved systemlogin + + + + Size of &database cache + Størrelsen på &databasens cache + + + + MB + MB + + + + Number of script &verification threads + Antallet af script&verificeringstråde + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-adresse for proxyen (fx IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimér i stedet for at lukke applikationen, når vinduet lukkes. Når denne indstilling er aktiveret, vil applikationen først blive lukket, når Afslut vælges i menuen. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Tredjeparts-URL'er (fx et blokhåndteringsværktøj), der vises i transaktionsfanen som genvejsmenupunkter. %s i URL'en erstattes med transaktionens hash. Flere URL'er separeres med en lodret streg |. + + + + Active command-line options that override above options: + Aktuelle tilvalg for kommandolinjen, der tilsidesætter ovenstående tilvalg: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Nulstil alle klientindstillinger til deres standard. + + + + &Reset Options + &Nulstil indstillinger + + + + &Network + &Netværk + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = efterlad så mange kerner fri) + + + + W&allet + &Tegnebog + + + + Expert + Ekspert + + + + Enable coin &control features + Aktivér egenskaber for &coin-styring + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Hvis du deaktiverer brug af ubekræftede byttepenge, kan byttepengene fra en transaktion ikke bruges, før pågældende transaktion har mindst én bekræftelse. Dette påvirker også måden hvorpå din saldo beregnes. + + + + &Spend unconfirmed change + &Brug ubekræftede byttepenge + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Åbn automatisk Raven-klientens port på routeren. Dette virker kun, når din router understøtter UPnP, og UPnP er aktiveret. + + + + Map port using &UPnP + Konfigurér port vha. &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Forbind til Raven-netværket gennem en SOCKS5-proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + &Forbind gennem SOCKS5-proxy (standard-proxy): + + + + + Proxy &IP: + Proxy-&IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port for proxyen (fx 9050) + + + + Used for reaching peers via: + Bruges til at nå knuder via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Forbind til Raven-netværket gennem en separat SOCKS5-proxy for skjulte Tor-tjenester. + + + + &Window + &Vindue + + + + Show only a tray icon after minimizing the window. + Vis kun et statusikon efter minimering af vinduet. + + + + &Minimize to the tray instead of the taskbar + &Minimér til statusfeltet i stedet for proceslinjen + + + + M&inimize on close + M&inimér ved lukning + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Visning + + + + User Interface &language: + &Sprog for brugergrænseflade: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Sproget for brugerfladen kan vælges her. Denne indstilling vil træde i kraft efter genstart af %1. + + + + &Unit to show amounts in: + &Enhed, som beløb vises i: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Vælg standard for underopdeling af enhed, som skal vises i brugergrænsefladen og ved afsendelse af ravens. + + + + Whether to show coin control features or not. + Hvorvidt egenskaber for coin-styring skal vises eller ej. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Ok + + + + &Cancel + &Annullér + + + + default + standard + + + + none + ingen + + + + Confirm options reset + Bekræft nulstilling af indstillinger + + + + + Client restart required to activate changes. + Genstart af klienten er nødvendig for at aktivere ændringer. + + + + Client will be shut down. Do you want to proceed? + Klienten vil lukke ned. Vil du fortsætte? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Denne ændring vil kræve en genstart af klienten. + + + + The supplied proxy address is invalid. + Den angivne proxy-adresse er ugyldig. + + + + OverviewPage + + + Form + Formular + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Den viste information kan være forældet. Din tegnebog synkroniserer automatisk med Raven-netværket, når en forbindelse etableres, men denne proces er ikke gennemført endnu. + + + + Watch-only: + Kigge: + + + + Available: + Tilgængelig: + + + + Your current spendable balance + Din nuværende tilgængelige saldo + + + + Pending: + Afventende: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total saldo for transaktioner, som ikke er blevet bekræftet endnu, og som ikke endnu er en del af den tilgængelige saldo + + + + Immature: + Umodne: + + + + Mined balance that has not yet matured + Minet saldo, som endnu ikke er modnet + + + + Total: + Total: + + + + Your current total balance + Din nuværende totale saldo + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Din nuværende saldo på kigge-adresser + + + + Spendable: + Spendérbar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Nylige transaktioner + + + + Unconfirmed transactions to watch-only addresses + Ubekræftede transaktioner til kigge-adresser + + + + Mined balance in watch-only addresses that has not yet matured + Minet saldo på kigge-adresser, som endnu ikke er modnet + + + + Current total balance in watch-only addresses + Nuværende totalsaldo på kigge-adresser + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fejl i betalingsanmodning + + + + Cannot start raven: click-to-pay handler + Kan ikke starte raven: click-to-pay-håndtering + + + + + + URI handling + URI-håndtering + + + + Payment request fetch URL is invalid: %1 + Hentnings-URL for betalingsanmodning er ugyldig: %1 + + + + Invalid payment address %1 + Ugyldig betalingsadresse %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI kan ikke tolkes! Dette kan skyldes en ugyldig Raven-adresse eller forkert udformede URL-parametre. + + + + Payment request file handling + Filhåndtering for betalingsanmodninger + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Fil for betalingsanmodning kan ikke læses! Dette kan skyldes en ugyldig fil for betalingsanmodning. + + + + + + + + + Payment request rejected + Betalingsanmodning afvist + + + + Payment request network doesn't match client network. + Netværk for betalingsanmodning stemmer ikke overens med klientens netværk. + + + + Payment request expired. + Betalingsanmodning er udløbet. + + + + Payment request is not initialized. + Betalingsanmodning er ikke klargjort. + + + + Unverified payment requests to custom payment scripts are unsupported. + Ikke-verificerede betalingsanmodninger for tilpassede betalings-scripts understøttes ikke. + + + + + Invalid payment request. + Ugyldig betalingsanmodning. + + + + Requested payment amount of %1 is too small (considered dust). + Anmodet betalingsbeløb på %1 er for lille (regnes som støv). + + + + Refund from %1 + Tilbagebetaling fra %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalingsanmodning %1 er for stor (%2 byte; %3 byte tilladt). + + + + Error communicating with %1: %2 + Fejl under kommunikation med %1: %2 + + + + Payment request cannot be parsed! + Betalingsanmodning kan ikke tolkes! + + + + Bad response from server %1 + Fejlagtigt svar fra server %1 + + + + Network request error + Fejl i netværksforespørgsel + + + + Payment acknowledged + Betaling anerkendt + + + + PeerTableModel + + + User Agent + Brugeragent + + + + Node/Service + Knude/tjeneste + + + + NodeId + Knude-id + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Beløb + + + + Enter a Raven address (e.g. %1) + Indtast en Raven-adresse (fx %1) + + + + %1 d + %1 d + + + + %1 h + %1 t + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ingen + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 og %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 har endnu ikke afsluttet på sikker vis… + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Fejl: Angivet datamappe “%1” eksisterer ikke. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fejl: Kan ikke fortolke konfigurationsfil: %1. Brug kun syntaksen nøgle=værdi. + + + + Error: %1 + Fejl: %1 + + + + QRImageWidget + + + &Save Image... + Gem billede… + + + + &Copy Image + &Kopiér foto + + + + Save QR Code + Gem QR-kode + + + + PNG Image (*.png) + PNG-billede (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Klientversion + + + + &Information + &Information + + + + Debug window + Fejlsøgningsvindue + + + + General + Generelt + + + + Using BerkeleyDB version + Bruger BerkeleyDB version + + + + Datadir + Datamappe + + + + Startup time + Opstartstidspunkt + + + + Network + Netværk + + + + Name + Navn + + + + Number of connections + Antal forbindelser + + + + Block chain + Blokkæde + + + + Current number of blocks + Nuværende antal blokke + + + + Memory Pool + Hukommelsespulje + + + + Current number of transactions + Aktuelt antal transaktioner + + + + Memory usage + Hukommelsesforbrug + + + + &Reset + + + + + + Received + Modtaget + + + + + Sent + Sendt + + + + &Peers + Andre &knuder + + + + Banned peers + Bandlyste knuder + + + + + + Select a peer to view detailed information. + Vælg en anden knude for at se detaljeret information. + + + + Whitelisted + På hvidliste + + + + Direction + Retning + + + + Version + Version + + + + Starting Block + Startblok + + + + Synced Headers + Synkroniserede headers + + + + Synced Blocks + Synkroniserede blokke + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Brugeragent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Åbn %1s fejlsøgningslogfil fra den aktuelle datamappe. Dette kan tage nogle få sekunder for store logfiler. + + + + Decrease font size + Formindsk skrifttypestørrelse + + + + Increase font size + Forstør skrifttypestørrelse + + + + Services + Tjenester + + + + Ban Score + Bandlysningsscore + + + + Connection Time + Forbindelsestid + + + + Last Send + Seneste afsendelse + + + + Last Receive + Seneste modtagelse + + + + Ping Time + Ping-tid + + + + The duration of a currently outstanding ping. + Varigheden af den aktuelt igangværende ping. + + + + Ping Wait + Ping-ventetid + + + + Min Ping + Minimum ping + + + + Time Offset + Tidsforskydning + + + + Last block time + Tidsstempel for seneste blok + + + + &Open + &Åbn + + + + &Console + &Konsol + + + + &Network Traffic + &Netværkstrafik + + + + Totals + Totaler + + + + In: + Indkommende: + + + + Out: + Udgående: + + + + Debug log file + Fejlsøgningslogfil + + + + Clear console + Ryd konsol + + + + 1 &hour + 1 &time + + + + 1 &day + 1 &dag + + + + 1 &week + 1 &uge + + + + 1 &year + 1 &år + + + + &Disconnect + &Afbryd forbindelse + + + + + + + Ban for + Bandlys i + + + + &Unban + &Fjern bandlysning + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Velkommen til %1s RPC-konsol. + + + + Type <b>help</b> for an overview of available commands. + Tast <b>help</b> for en oversigt over de tilgængelige kommandoer. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Netværksaktivitet deaktiveret + + + + (node id: %1) + (knude-id: %1) + + + + via %1 + via %1 + + + + + never + aldrig + + + + Inbound + Indkommende + + + + Outbound + Udgående + + + + Yes + Ja + + + + No + Nej + + + + + Unknown + Ukendt + + + + RavenGUI + + + Sign &message... + Signér &besked… + + + + Synchronizing with network... + Synkroniserer med netværk… + + + + &Overview + &Oversigt + + + + Node + Knude + + + + Show general overview of wallet + Vis generel oversigt over tegnebog + + + + &Transactions + &Transaktioner + + + + Browse transaction history + Gennemse transaktionshistorik + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Luk + + + + Quit application + Afslut program + + + + &About %1 + &Om %1 + + + + Show information about %1 + Vis informationer om %1 + + + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informationer om Qt + + + + &Options... + &Indstillinger… + + + + Modify configuration options for %1 + Redigér konfigurationsindstillinger for %1 + + + + &Encrypt Wallet... + &Kryptér tegnebog… + + + + &Backup Wallet... + &Sikkerhedskopiér tegnebog… + + + + &Change Passphrase... + &Skift adgangskode… + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Afsendelsesadresser… + + + + &Receiving addresses... + &Modtagelsesadresser… + + + + Open &URI... + &Åbn URI… + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Klik for at deaktivere netværksaktivitet. + + + + Network activity disabled. + Netværksaktivitet deaktiveret. + + + + Click to enable network activity again. + Klik for a aktivere netværksaktivitet igen. + + + + Syncing Headers (%1%)... + Synkroniserer hoveder (%1%)… + + + + Reindexing blocks on disk... + Genindekserer blokke på disken… + + + + Send coins to a Raven address + Send ravens til en Raven-adresse + + + + Backup wallet to another location + Lav sikkerhedskopi af tegnebogen til et andet sted + + + + Change the passphrase used for wallet encryption + Skift adgangskode anvendt til tegnebogskryptering + + + + Open debugging and diagnostic console + Åbn fejlsøgnings- og diagnosticeringskonsollen + + + + &Verify message... + &Verificér besked… + + + + Raven + Raven + + + + Wallet + Tegnebog + + + + &Send + &Send + + + + &Receive + &Modtag + + + + &Show / Hide + &Vis / skjul + + + + Show or hide the main Window + Vis eller skjul hovedvinduet + + + + Encrypt the private keys that belong to your wallet + Kryptér de private nøgler, der hører til din tegnebog + + + + Sign messages with your Raven addresses to prove you own them + Signér beskeder med dine Raven-adresser for at bevise, at de tilhører dig + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificér beskeder for at sikre, at de er signeret med de angivne Raven-adresser + + + + &File + &Fil + + + + &Help + &Hjælp + + + + Request payments (generates QR codes and raven: URIs) + Anmod om betalinger (genererer QR-koder og “raven:”-URI'er) + + + + Show the list of used sending addresses and labels + Vis listen over brugte afsendelsesadresser og -mærkater + + + + Show the list of used receiving addresses and labels + Vis listen over brugte modtagelsesadresser og -mærkater + + + + Open a raven: URI or payment request + Åbn en “raven:”-URI eller betalingsanmodning + + + + &Command-line options + Tilvalg for &kommandolinje + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Genindekserer blokke på disken… + + + + Processing blocks on disk... + Bearbejder blokke på disken… + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 bagud + + + + Last received block was generated %1 ago. + Senest modtagne blok blev genereret for %1 siden. + + + + Transactions after this will not yet be visible. + Transaktioner herefter vil endnu ikke være synlige. + + + + Error + Fejl + + + + Warning + Advarsel + + + + Information + Information + + + + Up to date + Opdateret + + + + Show the %1 help message to get a list with possible Raven command-line options + Vis %1 hjælpebesked for at få en liste over mulige tilvalg for Raven kommandolinje + + + + %1 client + %1-klient + + + + Connecting to peers... + Forbinder til knuder… + + + + Catching up... + Indhenter… + + + + Date: %1 + + Dato: %1 + + + + + + Amount: %1 + + Beløb: %1 + + + + + Type: %1 + + Type: %1 + + + + + Label: %1 + + Mærkat: %1 + + + + + Address: %1 + + Adresse: %1 + + + + + Sent transaction + Afsendt transaktion + + + + Incoming transaction + Indgående transaktion + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Generering af HD-nøgler er <b>aktiveret</b> + + + + HD key generation is <b>disabled</b> + Generering af HD-nøgler er <b>deaktiveret</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>ulåst</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Tegnebog er <b>krypteret</b> og i øjeblikket <b>låst</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Der opstod en fatal fejl. Raven kan ikke længere fortsætte sikkert og vil afslutte. + + + + ReceiveCoinsDialog + + + &Amount: + &Beløb: + + + + &Label: + &Mærkat: + + + + &Message: + &Besked: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Genbrug en af de tidligere brugte modtagelsesadresser. Genbrug af adresser har indflydelse på sikkerhed og privatliv. Brug ikke dette med mindre du genskaber en betalingsanmodning fra tidligere. + + + + R&euse an existing receiving address (not recommended) + &Genbrug en eksisterende modtagelsesadresse (anbefales ikke) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over Raven-netværket. + + + + + An optional label to associate with the new receiving address. + Et valgfrit mærkat, der associeres med den nye modtagelsesadresse. + + + + Use this form to request payments. All fields are <b>optional</b>. + Brug denne formular for at anmode om betalinger. Alle felter er <b>valgfri</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Et valgfrit beløb til anmodning. Lad dette felt være tomt eller indeholde nul for at anmode om et ikke-specifikt beløb. + + + + Clear all fields of the form. + Ryd alle felter af formen. + + + + Clear + Ryd + + + + Requested payments history + Historik over betalingsanmodninger + + + + &Request payment + &Anmod om betaling + + + + Show the selected request (does the same as double clicking an entry) + Vis den valgte anmodning (gør det samme som dobbeltklik på en indgang) + + + + Show + Vis + + + + Remove the selected entries from the list + Fjern de valgte indgange fra listen + + + + Remove + Fjern + + + + Copy URI + Kopiér URI + + + + Copy label + Kopiér mærkat + + + + Copy message + Kopiér besked + + + + Copy amount + Kopiér beløb + + + + ReceiveRequestDialog + + + QR Code + QR-kode + + + + Copy &URI + Kopiér &URI + + + + Copy &Address + Kopiér &adresse + + + + &Save Image... + &Gem billede… + + + + Request payment to %1 + Anmod om betaling til %1 + + + + Payment information + Betalingsinformation + + + + URI + URI + + + + Address + Adresse + + + + Amount + Beløb + + + + Label + Mærkat + + + + Message + Besked + + + + Resulting URI too long, try to reduce the text for label / message. + Resulterende URI var for lang; prøv at forkorte teksten til mærkaten/beskeden. + + + + Error encoding URI into QR Code. + Fejl ved kodning fra URI til QR-kode. + + + + RecentRequestsTableModel + + + Date + Dato - URI handling - URI-håndtering + + Label + Mærkat - Payment request fetch URL is invalid: %1 - Hentnings-URL for betalingsanmodning er ugyldig: %1 + + Message + Besked - Invalid payment address %1 - Ugyldig betalingsadresse %1 + + (no label) + (ingen mærkat) - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI kan ikke tolkes! Dette kan skyldes en ugyldig Raven-adresse eller forkert udformede URL-parametre. + + (no message) + (ingen besked) - Payment request file handling - Filhåndtering for betalingsanmodninger + + (no amount requested) + (intet anmodet beløb) - Payment request file cannot be read! This can be caused by an invalid payment request file. - Fil for betalingsanmodning kan ikke læses! Dette kan skyldes en ugyldig fil for betalingsanmodning. + + Requested + Anmodet + + + ReissueAssetDialog - Payment request rejected - Betalingsanmodning afvist + + Coin Control Features + - Payment request network doesn't match client network. - Netværk for betalingsanmodning stemmer ikke overens med klientens netværk. + + Inputs... + - Payment request expired. - Betalingsanmodning er udløbet. + + automatically selected + - Payment request is not initialized. - Betalingsanmodning er ikke klargjort. + + Insufficient funds! + - Unverified payment requests to custom payment scripts are unsupported. - Ikke-verificerede betalingsanmodninger for tilpassede betalings-scripts understøttes ikke. + + + Quantity: + - Invalid payment request. - Ugyldig betalingsanmodning. + + Bytes: + - Requested payment amount of %1 is too small (considered dust). - Anmodet betalingsbeløb på %1 er for lille (regnes som støv). + + Amount: + - Refund from %1 - Tilbagebetaling fra %1 + + Dust: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Betalingsanmodning %1 er for stor (%2 byte; %3 byte tilladt). + + Fee: + - Error communicating with %1: %2 - Fejl under kommunikation med %1: %2 + + After Fee: + - Payment request cannot be parsed! - Betalingsanmodning kan ikke tolkes! + + Change: + - Bad response from server %1 - Fejlagtigt svar fra server %1 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Network request error - Fejl i netværksforespørgsel + + Custom change address + - Payment acknowledged - Betaling anerkendt + + + Reissue Asset + - - - PeerTableModel - User Agent - Brugeragent + + Select an asset to reissue: + - Node/Service - Knude/tjeneste + + Address: + - NodeId - Knude-id + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Ping - Ping + + Verifier String: + - - - QObject - Amount - Beløb + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - Enter a Raven address (e.g. %1) - Indtast en Raven-adresse (fx %1) + + Warning: + - %1 d - %1 d + + The number of assets that will be created + - %1 h - %1 t + + Unit: + - %1 m - %1 m + + e.g. 1.00000000 + - %1 s - %1 s + + If the owner of this asset will be able to issue more assets in the future + - None - Ingen + + Reissuable + - N/A - N/A + + Change IPFS/Txid Hash + - %1 ms - %1 ms - - - %n second(s) - %n sekund%n sekunder - - - %n minute(s) - %n minut%n minutter - - - %n hour(s) - %n time%n timer - - - %n day(s) - %n dag%n dage - - - %n week(s) - %n uge%n uger + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 og %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n år%n år + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 har endnu ikke afsluttet på sikker vis… + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Fejl: Angivet datamappe “%1” eksisterer ikke. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Fejl: Kan ikke fortolke konfigurationsfil: %1. Brug kun syntaksen nøgle=værdi. + + Transaction Fee: + - Error: %1 - Fejl: %1 + + Choose... + - - - QRImageWidget - &Save Image... - Gem billede… + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Kopiér foto + + Warning: Fee estimation is currently not possible. + - Save QR Code - Gem QR-kode + + collapse fee-settings + - PNG Image (*.png) - PNG-billede (*.png) + + Hide + - - - RPCConsole - N/A - N/A + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Klientversion + + per kilobyte + - &Information - &Information + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Fejlsøgningsvindue + + (read the tooltip) + - General - Generelt + + Recommended: + - Using BerkeleyDB version - Bruger BerkeleyDB version + + Cus&tom: + - Datadir - Datamappe + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Opstartstidspunkt + + Confirmation time target: + - Network - Netværk + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Navn + + Request Replace-By-Fee + - Number of connections - Antal forbindelser + + Clear + - Block chain - Blokkæde + + Balance: + - Current number of blocks - Nuværende antal blokke + + 123.456 RVN + - Memory Pool - Hukommelsespulje + + Copy quantity + - Current number of transactions - Aktuelt antal transaktioner + + Copy amount + - Memory usage - Hukommelsesforbrug + + Copy fee + - Received - Modtaget + + Copy after fee + - Sent - Sendt + + Copy bytes + - &Peers - Andre &knuder + + Copy dust + - Banned peers - Bandlyste knuder + + Copy change + - Select a peer to view detailed information. - Vælg en anden knude for at se detaljeret information. + + Select an asset to reissue.. + - Whitelisted - På hvidliste + + Select the asset you want to reissue. + - Direction - Retning + + %1 (%2 blocks) + - Version - Version + + Cost + - Starting Block - Startblok + + Asset data couldn't be found + - Synced Headers - Synkroniserede headers + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Synkroniserede blokke + + Invalid Raven Destination Address + - User Agent - Brugeragent + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Åbn %1s fejlsøgningslogfil fra den aktuelle datamappe. Dette kan tage nogle få sekunder for store logfiler. + + + Warning: Invalid Raven address + - Decrease font size - Formindsk skrifttypestørrelse + + + Yes + - Increase font size - Forstør skrifttypestørrelse + + No + - Services - Tjenester + + + Name + - Ban Score - Bandlysningsscore + + + Total Quantity + - Connection Time - Forbindelsestid + + + Units + - Last Send - Seneste afsendelse + + + Can Reisssue + - Last Receive - Seneste modtagelse + + + + IPFS Hash + - Ping Time - Ping-tid + + + + Txid Hash + - The duration of a currently outstanding ping. - Varigheden af den aktuelt igangværende ping. + + Verifier String + - Ping Wait - Ping-ventetid + + + Current Verifier String + - Min Ping - Minimum ping + + Please select a asset from the menu to display the assets current settings + - Time Offset - Tidsforskydning + + Please select a asset from the menu to display the assets updated settings + - Last block time - Tidsstempel for seneste blok + + Current Quantity + - &Open - &Åbn + + Current Units + - &Console - &Konsol + + Can Reissue + - &Network Traffic - &Netværkstrafik + + Unknown data hash type + - &Clear - &Ryd + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totaler + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Indkommende: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Udgående: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Fejlsøgningslogfil + + + %1 to %2 + - Clear console - Ryd konsol + + Are you sure you want to send? + - 1 &hour - 1 &time + + added as transaction fee + - 1 &day - 1 &dag + + Total Amount %1 + - 1 &week - 1 &uge + + or + - 1 &year - 1 &år + + Confirm reissue assets + - &Disconnect - &Afbryd forbindelse + + Copy + - Ban for - Bandlys i + + Transaction ID Copied + - &Unban - &Fjern bandlysning + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Velkommen til %1s RPC-konsol. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Brug op- og ned-piletasterne til at navigere i historikken og <b>Ctrl-L</b> til at rydde skærmen. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Tast <b>help</b> for en oversigt over de tilgængelige kommandoer. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - ADVARSEL: Svindlere har tidligere forsøgt at få folk til at indtaste kommandoer her og derved stjæle indholdet af deres tegnebog. Brug ikke denne konsol uden fuldt ud at forstå følgerne for en kommando. + + (no label) + - Network activity disabled - Netværksaktivitet deaktiveret + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (knude-id: %1) + + Balance: + - via %1 - via %1 + + + Failed to create a change address + - never - aldrig + + Failed to generate the correct transaction. Please try again + - Inbound - Indkommende + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Udgående + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Ja + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Nej + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Ukendt + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - &Beløb: + + + Total Amount %1 + - &Label: - &Mærkat: + + + or + - &Message: - &Besked: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Genbrug en af de tidligere brugte modtagelsesadresser. Genbrug af adresser har indflydelse på sikkerhed og privatliv. Brug ikke dette med mindre du genskaber en betalingsanmodning fra tidligere. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - &Genbrug en eksisterende modtagelsesadresse (anbefales ikke) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - En valgfri besked, der føjes til betalingsanmodningen, og som vil vises, når anmodningen åbnes. Bemærk: Beskeden vil ikke sendes sammen med betalingen over Raven-netværket. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Et valgfrit mærkat, der associeres med den nye modtagelsesadresse. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Brug denne formular for at anmode om betalinger. Alle felter er <b>valgfri</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Et valgfrit beløb til anmodning. Lad dette felt være tomt eller indeholde nul for at anmode om et ikke-specifikt beløb. + + This is an asset payment + - Clear all fields of the form. - Ryd alle felter af formen. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Ryd + + + + Memo: + - Requested payments history - Historik over betalingsanmodninger + + Amount: + - &Request payment - &Anmod om betaling + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Vis den valgte anmodning (gør det samme som dobbeltklik på en indgang) + + &Label: + - Show - Vis + + Asset: + - Remove the selected entries from the list - Fjern de valgte indgange fra listen + + The Raven address to send the payment to + - Remove - Fjern + + Choose previously used address + - Copy URI - Kopiér URI + + Alt+A + - Copy label - Kopiér mærkat + + Paste address from clipboard + - Copy message - Kopiér besked + + Alt+P + - Copy amount - Kopiér beløb + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR-kode + + Message: + - Copy &URI - Kopiér &URI + + Transfer &To: + - Copy &Address - Kopiér &adresse + + Transfer Administrator Asset + - &Save Image... - &Gem billede… + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Anmod om betaling til %1 + + This is an unauthenticated payment request. + - Payment information - Betalingsinformation + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adresse + + This is an authenticated payment request. + - Amount - Beløb + + Enter a label for this address to add it to your address book + - Label - Mærkat + + Select to view administrator assets to transfer + - Message - Besked + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Resulterende URI var for lang; prøv at forkorte teksten til mærkaten/beskeden. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Fejl ved kodning fra URI til QR-kode. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Dato + + Failed to get asset metadata for: + - Label - Mærkat + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Besked + + Failed to get asset outpoints from database + - (no label) - (ingen mærkat) + + Selected Balance + - (no message) - (ingen besked) + + Wallet Balance + - (no amount requested) - (intet anmodet beløb) + + Select an administrator asset to transfer + - Requested - Anmodet + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Send ravens + Coin Control Features Egenskaber for coin-styring + Inputs... Inputs… + automatically selected valgt automatisk + Insufficient funds! Utilstrækkelige midler! + Quantity: Mængde: + Bytes: Byte: + Amount: Beløb: + Fee: Gebyr: + After Fee: Efter gebyr: + Change: Byttepenge: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Hvis dette aktiveres, men byttepengeadressen er tom eller ugyldig, vil byttepenge blive sendt til en nygenereret adresse. + Custom change address Tilpasset byttepengeadresse + Transaction Fee: Transaktionsgebyr: + Choose... Vælg… + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings sammenfold gebyropsætning + per kilobyte pr. kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. Hvis det brugertilpassede gebyr er sat til 1000 satoshis, og transaktionen kun fylder 250 byte, betaler “pr. kilobyte” kun 250 satoshis i gebyr, mens “total mindst” betaler 1000 satoshis. For transaktioner større end en kilobyte betaler begge pr. kilobyte. + Hide Skjul - total at least - total mindst - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Det er helt fint kun at betale det minimale gebyr, så længe den totale transaktionsvolumen er mindre end den plads, der er tilgængelig i blokkene. Men vær opmærksom på, at dette kan ende ud i transaktioner, der aldrig bliver bekræftet, når der bliver større forespørgsel efter raven-transaktioner, end hvad netværket kan bearbejde. + (read the tooltip) (læs værktøjstippet) + Recommended: Anbefalet: + Custom: Brugertilpasset: + (Smart fee not initialized yet. This usually takes a few blocks...) (Smart-gebyr er ikke initialiseret endnu. Dette tager typisk nogle få blokke…) - normal - normal + + Request Replace-By-Fee + - fast - hurtig + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Send til flere modtagere på en gang + Add &Recipient Tilføj &modtager + Clear all fields of the form. Ryd alle felter af formen. + Dust: Støv: + Confirmation time target: Mål for bekræftelsestid: + Clear &All Ryd &alle + Balance: Saldo: + Confirm the send action Bekræft afsendelsen + S&end &Afsend + Copy quantity Kopiér mængde + Copy amount Kopiér beløb + Copy fee Kopiér gebyr + Copy after fee Kopiér eftergebyr + Copy bytes Kopiér byte + Copy dust Kopiér støv + Copy change Kopiér byttepenge + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 til %2 + Are you sure you want to send? Er du sikker på, at du vil sende? + added as transaction fee tilføjet som transaktionsgebyr + Total Amount %1 Beløb i alt %1 + or eller + Confirm send coins Bekræft afsendelse af ravens + The recipient address is not valid. Please recheck. Modtageradressen er ikke gyldig. Tjek venligst igen. + The amount to pay must be larger than 0. Beløbet til betaling skal være større end 0. + The amount exceeds your balance. Beløbet overstiger din saldo. + The total exceeds your balance when the %1 transaction fee is included. Totalen overstiger din saldo, når transaktionsgebyret på %1 er inkluderet. + Duplicate address found: addresses should only be used once each. Adressegenganger fundet. Adresser bør kun bruges én gang hver. + Transaction creation failed! Oprettelse af transaktion mislykkedes! + The transaction was rejected with the following reason: %1 Transaktionen blev afvist med følgende begrundelse: %1 + A fee higher than %1 is considered an absurdly high fee. Et gebyr højere end %1 opfattes som et absurd højt gebyr. + Payment request expired. Betalingsanmodning er udløbet. - - %n block(s) - %n blok%n blokke - + Pay only the required fee of %1 Betal kun det påkrævede gebyr på %1 + Estimated to begin confirmation within %n block(s). - Bekræftelse estimeret til at begynde om %n blok.Bekræftelse estimeret til at begynde om %n blokke. + + Warning: Invalid Raven address Advarsel: Ugyldig Raven-adresse + Warning: Unknown change address Advarsel: Ukendt byttepengeadresse + Confirm custom change address Bekræft tilpasset byttepengeadresse + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Den adresse, du har valgt til byttepenge, er ikke en del af denne tegnebog. Nogle af eller alle penge i din tegnebog kan blive sendt til denne adresse. Er du sikker? + (no label) (ingen mærkat) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: &Beløb: - Pay &To: - Betal &til: - - + &Label: &Mærkat: + Choose previously used address Vælg tidligere brugt adresse + This is a normal payment. Dette er en normal betaling. + The Raven address to send the payment to Raven-adresse, som betalingen skal sendes til + Alt+A Alt+A + Paste address from clipboard Indsæt adresse fra udklipsholderen + Alt+P Alt+P + + + Remove this entry Fjern denne indgang + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Gebyret vil blive trukket fra det sendte beløb. Modtageren vil modtage færre raven, end du indtaster i beløbfeltet. Hvis flere modtagere vælges, vil gebyret deles ligeligt. + S&ubtract fee from amount &Træk gebyr fra beløb + Message: Besked: + + Send &To: + + + + This is an unauthenticated payment request. Dette er en uautentificeret betalingsanmodning. + + + Send to: + + + + This is an authenticated payment request. Dette er en autentificeret betalingsanmodning. + Enter a label for this address to add it to the list of used addresses Indtast et mærkat for denne adresse for at føje den til listen over brugte adresser + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - En besked, som blev føjet til “bitcon:”-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over Raven-netværket. - - - Pay To: - Betal til: + En besked, som blev føjet til “bitcon:”-URI'en, som vil gemmes med transaktionen til din reference. Bemærk: Denne besked vil ikke blive sendt over Raven-netværket. + + Memo: Memo: + Enter a label for this address to add it to your address book Indtast en mærkat for denne adresse for at føje den til din adressebog @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes Ja @@ -2316,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 lukker ned… + Do not shut down the computer until this window disappears. Luk ikke computeren ned, før dette vindue forsvinder. @@ -2327,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Signaturer – Underskriv/verificér en besked + &Sign Message &Singér besked + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Du kan signere beskeder/aftaler med dine adresser for at bevise, at du kan modtage raven, der bliver sendt til adresserne. Vær forsigtig med ikke at signere noget vagt eller tilfældigt, da eventuelle phishing-angreb kan snyde dig til at overlade din identitet til dem. Signér kun fuldt ud detaljerede udsagn, som du er enig i. + The Raven address to sign the message with Raven-adresse, som beskeden skal signeres med + + Choose previously used address Vælg tidligere brugt adresse + + Alt+A Alt+A + Paste address from clipboard Indsæt adresse fra udklipsholderen + Alt+P Alt+P + Enter the message you want to sign here Indtast her beskeden, du ønsker at signere + Signature Signatur + Copy the current signature to the system clipboard Kopiér den nuværende signatur til systemets udklipsholder + Sign the message to prove you own this Raven address Signér denne besked for at bevise, at Raven-adressen tilhører dig + Sign &Message Signér &besked + Reset all sign message fields Nulstil alle “signér besked”-felter + + Clear &All Ryd &alle + &Verify Message &Verificér besked - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Indtast modtagerens adresse, besked (vær sikker på at kopiere linjeskift, mellemrum, tabuleringer, etc. præcist) og signatur herunder for at verificere beskeden. Vær forsigtig med ikke at læse noget ud fra signaturen, som ikke står i selve beskeden, for at undgå at blive snydt af et eventuelt man-in-the-middle-angreb. Bemærk, at dette kun beviser, at den signerende person kan modtage med adressen; det kan ikke bevise hvem der har sendt en given transaktion! + The Raven address the message was signed with Raven-adressen, som beskeden blev signeret med + Verify the message to ensure it was signed with the specified Raven address Verificér beskeden for at sikre, at den er signeret med den angivne Raven-adresse + Verify &Message Verificér &besked + Reset all verify message fields Nulstil alle “verificér besked”-felter - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature Klik “Signér besked” for at generere underskriften + + The entered address is invalid. Den indtastede adresse er ugyldig. + + + + Please check the address and try again. Tjek venligst adressen og forsøg igen. + + The entered address does not refer to a key. Den indtastede adresse henviser ikke til en nøgle. + Wallet unlock was cancelled. Tegnebogsoplåsning annulleret. + Private key for the entered address is not available. Den private nøgle for den indtastede adresse er ikke tilgængelig. + Message signing failed. Signering af besked mislykkedes. + Message signed. Besked signeret. + The signature could not be decoded. Signaturen kunne ikke afkodes. + + Please check the signature and try again. Tjek venligst signaturen og forsøg igen. + The signature did not match the message digest. Signaturen passer ikke overens med beskedens indhold. + Message verification failed. Verificering af besked mislykkedes. + Message verified. Besked verificeret. @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [testnetværk] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Åben i %n yderligere blokÅben i %n yderligere blokke + + Open until %1 Åben indtil %1 + conflicted with a transaction with %1 confirmations i konflikt med en transaktion, der har %1 bekræftelser + %1/offline %1/offline + 0/unconfirmed, %1 0/ubekræftet, %1 + in memory pool i hukommelsespulje + not in memory pool ikke i hukommelsespulje + abandoned opgivet + %1/unconfirmed %1/ubekræftet + %1 confirmations %1 bekræftelser + + Status Status + + , has not been successfully broadcast yet , er ikke blevet transmitteret endnu + + , broadcast through %n node(s) - , transmitteret igennem %n knude, transmitteret igennem %n knuder + + + Date Dato + Source Kilde + Generated Genereret + + + + + From Fra + + unknown ukendt + + + + + To Til + + own address egen adresse + + + watch-only kigge + + label mærkat + + + + + + + Credit Kredit + matures in %n more block(s) - modner om %n blokmodner om %n blokke + + not accepted ikke accepteret + + + + + Debit Debet + Total debit Total debet + Total credit Total kredit + Transaction fee Transaktionsgebyr + Net amount Nettobeløb + + + + Message Besked + + Comment Kommentar + + Transaction ID Transaktions-ID + + Transaction total size Totalstørrelse af transaktion + + Output index Outputindeks + + Merchant Forretningsdrivende - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Minede ravens skal modne %1 blokke, før de kan bruges. Da du genererede denne blok, blev den transmitteret til netværket for at blive føjet til blokkæden. Hvis det ikke lykkes at få den i kæden, vil dens tilstand ændres til “ikke accepteret”, og den vil ikke kunne bruges. Dette kan ske nu og da, hvis en anden knude udvinder en blok inden for nogle få sekunder fra din. + + Net RVN amount + + + + Debug information Fejlsøgningsinformation + Transaction Transaktion + Inputs Input + Amount Beløb + + true sand + + false falsk @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Denne rude viser en detaljeret beskrivelse af transaktionen + Details for %1 Detaljer for %1 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date Dato + Type Type + Label Mærkat + + + Amount + + + + + Asset + + + Open for %n more block(s) - Åben i %n yderligere blokÅben i %n yderligere blokke + + Open until %1 Åben indtil %1 + Offline Offline + Unconfirmed Ubekræftet + Abandoned Opgivet + Confirming (%1 of %2 recommended confirmations) Bekræfter (%1 af %2 anbefalede bekræftelser) + Confirmed (%1 confirmations) Bekræftet (%1 bekræftelser) + Conflicted Konflikt + Immature (%1 confirmations, will be available after %2) Umoden (%1 bekræftelser; vil være tilgængelig efter %2) + This block was not received by any other nodes and will probably not be accepted! Denne blok blev ikke modtaget af nogen andre knuder og vil formentlig ikke blive accepteret! + Generated but not accepted Genereret, men ikke accepteret + Received with Modtaget med + Received from Modtaget fra + Sent to Sendt til + Payment to yourself Betaling til dig selv + Mined Minet + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only kigge + (n/a) (n/a) + (no label) (ingen mærkat) + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Hold musen over dette felt for at vise antallet af bekræftelser. + Date and time that the transaction was received. Dato og klokkeslæt for modtagelse af transaktionen. + Type of transaction. Transaktionstype. + Whether or not a watch-only address is involved in this transaction. Afgør hvorvidt en kigge-adresse er involveret i denne transaktion. + User-defined intent/purpose of the transaction. Brugerdefineret hensigt/formål med transaktionen. + Amount removed from or added to balance. Beløb trukket fra eller tilføjet balance. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Alle + Today I dag + This week Denne uge + This month Denne måned + Last month Sidste måned + This year I år + Range... Interval… + Received with Modtaget med + Sent to Sendt til + To yourself Til dig selv + Mined Minet + Other Andet + Enter address or label to search Indtast adresse eller mærkat for at søge + Min amount Minimumsbeløb + + Asset name + + + + Abandon transaction Opgiv transaktion + Copy address Kopiér adresse + Copy label Kopiér mærkat + Copy amount Kopiér beløb + Copy transaction ID Kopiér transaktions-ID + Copy raw transaction Kopiér rå transaktion + Copy full transaction details Kopiér komplette transaktionsdetaljer + Edit label Redigér mærkat + Show transaction details Vis transaktionsdetaljer + + Browse with: + + + + Export Transaction History Eksportér transaktionshistorik + Comma separated file (*.csv) Kommasepareret fil (*.csv) + Confirmed Bekræftet + Watch-only Kigge + Date Dato + Type Type + Label Mærkat + Address Adresse + + Asset + + + + ID ID + Exporting Failed Eksport mislykkedes + There was an error trying to save the transaction history to %1. En fejl opstod under gemning af transaktionshistorik til %1. + Exporting Successful Eksport problemfri + The transaction history was successfully saved to %1. Transaktionshistorikken blev gemt til %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Interval: + to til @@ -2936,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Enhed, som beløb vises i. Klik for at vælge en anden enhed. @@ -2943,6 +6521,7 @@ WalletFrame + No wallet has been loaded. Ingen tegnebog er indlæst. @@ -2950,969 +6529,1764 @@ WalletModel + Send Coins Send ravens + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Eksportér + Export the data in the current tab to a file Eksportér den aktuelle visning til en fil + Backup Wallet Sikkerhedskopiér tegnebog + Wallet Data (*.dat) Tegnebogsdata (*.dat) + Backup Failed Sikkerhedskopiering mislykkedes + There was an error trying to save the wallet data to %1. Der skete en fejl under gemning af tegnebogsdata til %1. + Backup Successful Sikkerhedskopiering problemfri + The wallet data was successfully saved to %1. Tegnebogsdata blev gemt til %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Indstillinger: + Specify data directory Angiv datamappe + Connect to a node to retrieve peer addresses, and disconnect Forbind til en knude for at modtage adresser på andre knuder, og afbryd derefter + Specify your own public address Angiv din egen offentlige adresse + Accept command line and JSON-RPC commands Acceptér kommandolinje- og JSON-RPC-kommandoer - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Acceptér forbindelser udefra (standard: 1 hvis ingen -proxy eller -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Forbind kun til de specificerede knuder; -noconnect eller -connect=0 alene for at deaktivere automatiske forbindelser - - + Distributed under the MIT software license, see the accompanying file %s or %s Distribueret under MIT-softwarelicensen; se den vedlagte fil %s eller %s + If <category> is not supplied or if <category> = 1, output all debugging information. Hvis <category> ikke angives eller hvis <category> = 1, udskriv al fejlretningsinformation. + Prune configured below the minimum of %d MiB. Please use a higher number. Beskæring er sat under minimumsgrænsen på %d MiB. Brug venligst et større tal. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Beskæring: Seneste synkronisering rækker udover beskårne data. Du er nødt til at bruge -reindex (downloade hele blokkæden igen i fald af beskåret knude) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Genindlæsninger er ikke mulige i beskåret tilstand. Du er nødt til at bruge -reindex, hvilket vil downloade hele blokkæden igen. + Error: A fatal internal error occurred, see debug.log for details Fejl: En alvorlig intern fejl er opstået. Se debug.log for detaljer + Fee (in %s/kB) to add to transactions you send (default: %s) Gebyr (i %s/kB) der skal lægges til de transaktioner du sender (standard: %s) + Pruning blockstore... Beskærer bloklager… + Run in the background as a daemon and accept commands Kør i baggrunden som en service, og acceptér kommandoer + Unable to start HTTP server. See debug log for details. Kunne ikke starte HTTP-server. Se fejlretningslog for detaljer. + Raven Core Raven Core + The %s developers Udviklerne af %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) En gebyrsats (i %s/kB), som vil blive brugt, hvis gebyrestimering har utilstrækkelig data (standard: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Acceptér videresendte transaktioner, der modtages fra hvidlistede knuder, selv når transaktioner ikke videresendes (standard: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Tildel til den givne adresse og lyt altid på den. Brug [vært]:port-notation for IPv6 - Cannot obtain a lock on data directory %s. %s is probably already running. - Kan ikke opnå en lås på datamappe %s. %s kører sansynligvis allerede. + + Cannot obtain a lock on data directory %s. %s is probably already running. + Kan ikke opnå en lås på datamappe %s. %s kører sansynligvis allerede. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Slet alle transaktioner i tegnebogen og genskab kun disse dele af blokkæden gennem -rescan under opstart - Error loading %s: You can't enable HD on a already existing non-HD wallet - Fejl under indlæsning af %s: Du kan ikke aktivere HD på en allerede eksisterende ikke-HD-tegnebog - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Fejl under læsning af %s! Alle nøgler blev læst korrekt, men transaktionsdata eller indgange i adressebogen kan mangle eller være ukorrekte. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Udfør kommando, når en transaktion i tegnebogen ændres (%s i kommandoen erstattes med TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Ekstra transaktioner, der skal beholdes i hukommelsen til kompakte blokgenopbygninger (standard: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Hvis denne blok er i kæden, så antag at den og dens forgængere er gyldige, og spring potentielt deres scriptverificering over (0 for at verificere alle, standard: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Justering af maksimalt tilladt gennemsnitlig afvigelse fra peer-tid. Den lokale opfattelse af tid kan blive påvirket frem eller tilbage af peers med denne mængde tid. (standard: %u sekunder) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Maksimalt totalgebyr (i %s) der må bruges i en enkelt tegnebogstransaktion eller rå transaktion; en for lav en værdi kan afbryde store transaktioner (standard: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Undersøg venligst at din computers dato og klokkeslet er korrekt indstillet! Hvis der er fejl i disse, vil %s ikke fungere korrekt. + Please contribute if you find %s useful. Visit %s for further information about the software. Overvej venligst at bidrage til udviklingen, hvis du finder %s brugbar. Besøg %s for yderligere information om softwaren. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) - Reducér pladskravene ved at beskære (slette, “prune”) gamle blokke. Dette tillader pruneblockchain-RPC'en at blive kaldt for at slette specifikke blokke, og det aktiverer automatisk beskæring af gamle blokke, hvis en målstørrelse i MiB er angivet. Denne tilstand er ikke kompatibel med -txindex og -rescan. Advarsel: Fortrydelse af denne indstilling kræver download af hele blokkæden igen. (standard: 0 = slå beskæring af blokke fra, 1 = tillad manuel beskæring via RPC, >%u = beskær automatisk blokfiler for at bliver under den angivne målstørrelse i MiB) + Reducér pladskravene ved at beskære (slette, “prune”) gamle blokke. Dette tillader pruneblockchain-RPC'en at blive kaldt for at slette specifikke blokke, og det aktiverer automatisk beskæring af gamle blokke, hvis en målstørrelse i MiB er angivet. Denne tilstand er ikke kompatibel med -txindex og -rescan. Advarsel: Fortrydelse af denne indstilling kræver download af hele blokkæden igen. (standard: 0 = slå beskæring af blokke fra, 1 = tillad manuel beskæring via RPC, >%u = beskær automatisk blokfiler for at bliver under den angivne målstørrelse i MiB) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Sæt den laveste gebyrrate (i %s/kB) for transaktioner, der skal inkluderes i blokoprettelse. (standard: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Sæt antallet af scriptverificeringstråde (%u til %d, 0 = auto, <0 = efterlad det antal kernet fri, standard: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Blokdatabasen indeholder en blok, som ser ud til at være fra fremtiden. Dette kan skyldes, at din computers dato og tid ikke er sat korrekt. Genopbyg kun blokdatabasen, hvis du er sikker på, at din computers dato og tid er korrekt + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dette er en foreløbig testudgivelse – brug på eget ansvar – brug ikke til mining eller handelsprogrammer + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Kan ikke spole databasen tilbage til en tilstand inden en splitning. Du er nødt til at downloade blokkæden igen + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Brug UPnP for at konfigurere den lyttende port (standard: 1 under lytning og ingen -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Brugernavn og hashet adgangskode for JSON-RPC-forbindelser. Feltet <userpw> er i formatet: <BRUGERNAVN>:<SALT>$<HASH>. Et kanonisk Python-skript er inkluderet i share/rpcuser. Klienten forbinder så normalt ved hjælp af argumentparret rpcuser=<BRUGERNAVN>/rpcpassword=<ADGANGSKODE>. Dette tilvalg kan angives flere gange + Wallet will not create transactions that violate mempool chain limits (default: %u) Tegnebogen vil ikke oprette transaktioner, som overtræder begrænsningen for hukommelsespuljekæden (standard: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Advarsel: Netværket ser ikke ud til at være fuldt ud enige! Enkelte minere ser ud til at opleve problemer. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Advarsel: Vi ser ikke ud til at være fuldt ud enige med andre knuder! Du kan være nødt til at opgradere, eller andre knuder kan være nødt til at opgradere. - You need to rebuild the database using -reindex-chainstate to change -txindex - Du er nødt til at genopbygge databasen ved hjælp af -reindex-chainstate for at ændre -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s ødelagt, redning af data mislykkedes + -maxmempool must be at least %d MB -maxmempool skal være mindst %d MB + <category> can be: <kategori> kan være: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Føj kommentar til brugeragentstrengen + Attempt to recover private keys from a corrupt wallet on startup Forsøg at genskabe private nøgler fra en ødelagt tegnebog under opstart + Block creation options: Blokoprettelsestilvalg: - Cannot resolve -%s address: '%s' + + Cannot resolve -%s address: '%s' Kan ikke finde -%s-adressen: “%s” + Chain selection options: Indstillinger for kædevalg: + Change index out of range Ændr indeks uden for interval + Connection options: Tilvalg for forbindelser: + Copyright (C) %i-%i Ophavsret © %i-%i + Corrupted block database detected Ødelagt blokdatabase opdaget + Debugging/Testing options: Tilvalg for fejlfinding/test: + Do not load the wallet and disable wallet RPC calls Indlæs ikke tegnebogen og deaktivér tegnebogs-RPC-kald + Do you want to rebuild the block database now? Ønsker du at genopbygge blokdatabasen nu? + Enable publish hash block in <address> Aktivér offentliggørelse af hash-blok i <address> + Enable publish hash transaction in <address> Aktivér offentliggørelse af hash-transaktion i <address> + Enable publish raw block in <address> Aktivér offentliggørelse af rå blok i <address> + Enable publish raw transaction in <address> Aktivér offentliggørelse af rå transaktion i <address> + Enable transaction replacement in the memory pool (default: %u) Aktivér transaktionserstatning i hukommelsespuljen (standard: %u) + Error initializing block database Klargøring af blokdatabase mislykkedes + Error initializing wallet database environment %s! Klargøring af tegnebogsdatabasemiljøet %s mislykkedes! + Error loading %s Fejl under indlæsning af %s + Error loading %s: Wallet corrupted Fejl under indlæsning af %s: Tegnebog ødelagt + Error loading %s: Wallet requires newer version of %s Fejl under indlæsning af %s: Tegnebog kræver nyere version af %s - Error loading %s: You can't disable HD on a already existing HD wallet - Fejl under indlæsning af %s: Du kan ikke deaktivere HD på en allerede eksisterende HD-tegnebog - - + Error loading block database Indlæsning af blokdatabase mislykkedes + Error opening block database Åbning af blokdatabase mislykkedes + Error: Disk space is low! Fejl: Mangel på ledig diskplads! + Failed to listen on any port. Use -listen=0 if you want this. Lytning på enhver port mislykkedes. Brug -listen=0, hvis du ønsker dette. + Importing... Importerer… + Incorrect or no genesis block found. Wrong datadir for network? Ukorrekt eller ingen tilblivelsesblok fundet. Forkert datamappe for netværk? + Initialization sanity check failed. %s is shutting down. Klargøring af sundhedstjek mislykkedes. %s lukker ned. - Invalid -onion address: '%s' - Ugyldig -onion adresse: “%s” + + Invalid amount for -%s=<amount>: '%s' + Ugyldigt beløb for -%s=<beløb>: “%s” - Invalid amount for -%s=<amount>: '%s' - Ugyldigt beløb for -%s=<beløb>: “%s” + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' Ugyldigt beløb for -fallbackfee=<beløb>: “%s” + Keep the transaction memory pool below <n> megabytes (default: %u) Hold hukommelsespuljen med transaktioner under <n> megabyte (standard: %u) + + Loading P2P addresses... + + + + Loading banlist... Indlæser bandlysningsliste… + Location of the auth cookie (default: data dir) Placering for autentificerings-cookie (standard: datamappe) + Not enough file descriptors available. For få tilgængelige fildeskriptorer. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Tilslut kun til knuder i netværk <net> (IPv4, IPv6 eller Onion) + Print this help message and exit Udskriv denne hjælpetekst og afslut + Print version and exit Udskriv version og afslut + Prune cannot be configured with a negative value. Beskæring kan ikke opsættes med en negativ værdi. + Prune mode is incompatible with -txindex. Beskæringstilstand er ikke kompatibel med -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Genopbyg kædetilstand og blokindeks fra blk*.dat-filerne på disken + Rebuild chain state from the currently indexed blocks Genopbyg kædetilstand ud fra de aktuelt indekserede blokke + + Replaying blocks... + + + + Rewinding blocks... Spoler blokke tilbage… + Set database cache size in megabytes (%d to %d, default: %d) Sæt cache-størrelse for database i megabytes (%d til %d; standard: %d) - Set maximum block size in bytes (default: %d) - Sæt maksimum blokstørrelse i byte (standard: %d) - - + Specify wallet file (within data directory) Angiv tegnebogsfil (inden for datamappe) + The source code is available from %s. Kildekoden er tilgængelig fra %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Ikke i stand til at tildele til %s på denne computer. %s kører formodentlig allerede. + Unsupported argument -benchmark ignored, use -debug=bench. Argument -benchmark understøttes ikke og ignoreres; brug -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argument -debugnet understøttes ikke og ignoreres; brug -debug=net. + Unsupported argument -tor found, use -onion. Argument -tor understøttes ikke; brug -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Brug UPnP til at konfigurere den lyttende port (standard: %u) + Use the test chain Brug testkæden + User Agent comment (%s) contains unsafe characters. Brugeragent-kommentar (%s) indeholder usikre tegn. + Verifying blocks... Verificerer blokke… - Verifying wallet... - Verificerer tegnebog… - - + Wallet %s resides outside data directory %s Tegnebog %s findes uden for datamappe %s + Wallet debugging/testing options: Tilvalg for fejlfinding/test af tegnebog: + Wallet needed to be rewritten: restart %s to complete Det var nødvendigt at genskrive tegnebogen: Genstart %s for at gennemføre + Wallet options: Tilvalg for tegnebog: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Tillad JSON-RPC-forbindelser fra angivet kilde. Gyldig for <ip> er en enkelt IP (fx 1.2.3.4), et netværk/netmaske (fx 1.2.3.4/255.255.255.0) eller et netværk/CIDR (fx 1.2.3.4/24). Dette tilvalg kan angives flere gange + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Tildel given adresse og sæt andre knuder, der forbinder til den, på hvidliste. Brug [vært]:port notation for IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Tildel til den givne adresse for at lytte efter JSON-RPC-forbindelser. Brug [vært]:port-notation for IPv6. Denne valgmulighed kan angives flere gange (standard: tildel til alle grænseflader) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Opret nye filer med systemstandard for rettigheder i stedet for umask 077 (kun virksomt med tegnebogsfunktionalitet deaktiveret) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Opdag egne IP-adresser (standard: 1 under lytning og ingen -externalip eller -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Fejl: Lytning efter indkommende forbindelser mislykkedes (lytning resultarede i fejl %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Udfør kommando, når en relevant alarm modtages eller vi ser en virkelig lang udsplitning (%s i cmd erstattes af besked) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Gebyrer (i %s/kB) mindre end dette opfattes som intet gebyr for videresendelse, mining og oprettelse af transaktioner (standard: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Hvis paytxfee ikke er sat, inkluderes nok gebyr til at transaktioner begynder at blive bekræftet ingen for gennemsnitligt n blokke (standard: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) Ugyldigt beløb for -maxtxfee=<beløb>: “%s” (skal være på mindst minrelay-gebyret på %s for at undgå hængende transaktioner) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maksimal størrelse på data i transaktioner til dataoverførsel, som vi videresender og miner (standard: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Brug tilfældige akkreditiver for hver proxy-forbindelse. Dette aktiverer strømisolation med Tor (standard: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Sæt maksimumstørrelse for højprioritet/lavgebyr-transaktioner i byte (standard: %d) - - + The transaction amount is too small to send after the fee has been deducted Transaktionsbeløbet er for lille til at sende, når gebyret er trukket fra - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Brug hierarkisk deterministisk nøglegenerering (HD) efter BIP32. Har kun effekt ved generering af ny tegnebog og under første opstart - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Andre knuder på hvidliste kan ikke DoS-bandlyses, og deres transaktioner videresendes altid, selv hvis de allerede er i hukommelsespuljen. Brugbart til fx et adgangspunkt + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Du er nødt til at genopbygge databasen ved hjælp af -reindex for at gå tilbage til ikke-beskåret tilstand. Dette vil downloade hele blokkæden igen + (default: %u) (standard: %u) + Accept public REST requests (default: %u) Acceptér offentlige REST-anmodninger (standard: %u) + Automatically create Tor hidden service (default: %d) Opret automatisk skjult Tor-tjeneste (standard: %d) + Connect through SOCKS5 proxy Forbind gennem SOCKS5-proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Fejl under læsning fra database; lukker ned. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importerer blokeringer fra ekstern blk000??.dat-fil under opstart + Information Information - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Ugyldigt beløb for -paytxfee=<beløb>: “%s” (skal være mindst %s) - Invalid netmask specified in -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' Ugyldig netmaske angivet i -whitelist: “%s” + Keep at most <n> unconnectable transactions in memory (default: %u) Behold højest <n> uforbindelige transaktioner i hukommelsen (standard: %u) - Need to specify a port with -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' Nødt til at angive en port med -whitebinde: “%s” + Node relay options: Videresendelsesvalgmuligheder for knude: + RPC server options: Tilvalg for RPC-server: + Reducing -maxconnections from %d to %d, because of system limitations. Reducerer -maxconnections fra %d til %d på grund af systembegrænsninger. + Rescan the block chain for missing wallet transactions on startup Genindlæs blokkæden efter manglende tegnebogstransaktioner under opstart + Send trace/debug info to console instead of debug.log file Send sporings-/fejlsøgningsinformation til konsollen i stedet for debug.log filen - Send transactions as zero-fee transactions if possible (default: %u) - Send transaktioner som nul-gebyr-transaktioner hvis muligt (standard: %u) - - + Show all debugging options (usage: --help -help-debug) Vis alle tilvalg for fejlsøgning (brug: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Formindsk debug.log filen ved klientopstart (standard: 1 hvis ikke -debug) + Signing transaction failed Signering af transaktion mislykkedes + The transaction amount is too small to pay the fee Transaktionsbeløbet er for lille til at betale gebyret + This is experimental software. Dette er eksperimentelt software. + Tor control port password (default: empty) Adgangskode for Tor kontrolport (standard: tom) + Tor control port to use if onion listening enabled (default: %s) Tor kontrolport, der skal bruges, hvis onion-lytning er aktiveret (standard: %s) + Transaction amount too small Transaktionsbeløb er for lavt + Transaction too large for fee policy Transaktion for stor til gebyrretningslinjer + Transaction too large Transaktionen er for stor + Unable to bind to %s on this computer (bind returned error %s) Ikke i stand til at tildele til %s på denne computer (bind returnerede fejl %s) + Upgrade wallet to latest format on startup Opgradér tegnebog til seneste format under opstart + Username for JSON-RPC connections Brugernavn til JSON-RPC-forbindelser + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Advarsel + Warning: unknown new rules activated (versionbit %i) Advarsel: Ukendte nye regler aktiveret (versionsbit %i) + Whether to operate in a blocks only mode (default: %u) Hvorvidt der skal arbejdes i kun-blokke-tilstand (standard: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Zapper alle transaktioner fra tegnebog… + ZeroMQ notification options: ZeroMQ-notifikationsindstillinger: + Password for JSON-RPC connections Adgangskode til JSON-RPC-forbindelser + Execute command when the best block changes (%s in cmd is replaced by block hash) Udfør kommando, når den bedste blok ændres (%s i kommandoen erstattes med blokhash) + Allow DNS lookups for -addnode, -seednode and -connect Tillad DNS-opslag for -addnode, -seednode og -connect - Loading addresses... - Indlæser adresser… - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = behold metadata for transaktion, fx kontoindehaver og information om betalingsanmodning, 2 = drop metadata for transaktion) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee er sat meget højt! Gebyrer så store risikeres betalt på en enkelt transaktion. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Behold ikke transaktioner i hukommelsespuljen i mere end <n> timer (default: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Tilsvarende bytes pr. sigop i transaktioner, som videresendes og mines (standard: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Gebyrer (i %s/kB) mindre end dette opfattes som intet gebyr under oprettelse af transaktioner (standard: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Gennemtving videresendelse af transaktioner fra hvidlistede knuder, selv om de overtræder lokal videresendelsespolitik (standard: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Hvor gennemarbejdet blokverificeringen for -checkblocks er (0-4; standard: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Vedligehold et komplet transaktionsindeks, der bruges af rpc-kaldet getrawtransaction (standard: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Antal sekunder, som knuder der opfører sig upassende, skal vente før reetablering (standard: %u) + Output debugging information (default: %u, supplying <category> is optional) Udskriv fejlsøgningsinformation (standard: %u, angivelse af <kategori> er valgfri) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Forespørg knudeadresser via DNS-opslag hvis antallet af adresser er lavt (standard: 1 med mindre -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Indstiller serialiseringen af rå transaktioner eller blok-hex returneret i ikke-verbose tilstand, non-segwit(0) eller sigwit(1) (standard: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Understøt filtrering af blokke og transaktioner med Bloom-filtre (standard: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Dette er transaktionsgebyret, du kan betale, når gebyrestimeringer ikke er tilgængelige. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Dette produkt indeholder software, der er udviklet af OpenSSL-projektet for brug i OpenSSL-værktøjskassen %s, samt kryptografisk software, der er skrevet af Eric Young, samt UPnP-software, der er skrevet af Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Den totale længde på netværksversionsstrengen (%i) overstiger maksimallængden (%i). Reducér antaller af eller størrelsen på uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Prøver at holde udadgående traffik under det givne mål (i MiB pr. 24 timer), 0 = ingen grænse (standard: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Argument -socks understøttes ikke. Det er ikke længere muligt at sætte SOCKS-version; kun SOCKS5-proxier understøttes. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argument -whitelistalwaysrelay understøttes ikke og ignoreres; brug -whitelistrelay og/eller -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Brug separat SOCS5-proxy for at nå knuder via skjulte Tor-tjenester (standard: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Advarsel: Ukendte blokversioner bliver minet! Det er muligt, at ukendte regler er i brug + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Advarsel: Tegnebogsfil ødelagt, data reddet! Oprindelig %s gemt som %s i %s; hvis din saldo eller dine transaktioner er forkert, bør du genskabe fra en sikkerhedskopi. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Sæt knuder på hvidliste, som forbinder fra den givne IP-adresse (fx 1.2.3.4) eller CIDR-noteret netværk (fx 1.2.3.0/24). Kan angives flere gange. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s er meget højt sat! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (standard: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Forespørg altid adresser på andre knuder via DNS-opslag (default: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Antal blokke som tjekkes ved opstart (standard: %u, 0 = alle) + Include IP addresses in debug output (default: %u) Inkludér IP-adresser i fejlretningsoutput (standard: %u) - Invalid -proxy address: '%s' - Ugyldig -proxy adresse: “%s” + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Nøglepulje løb tør; kald venligst keypoolrefill først + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Lyt efter JSON-RPC-forbindelser på <port> (standard: %u eller testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Lyt efter forbindelser på <port> (standard: %u eller testnet: %u) + Maintain at most <n> connections to peers (default: %u) Oprethold højest <n> forbindelser til andre knuder (standard: %u) + Make the wallet broadcast transactions Få tegnebogen til at transmittere transaktioner + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maksimum for modtagelsesbuffer pr. forbindelse, <n>*1000 byte (standard: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maksimum for afsendelsesbuffer pr. forbindelse, <n>*1000 byte (standard: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Føj tidsstempel foran fejlsøgningsoutput (standard: %u) + Relay and mine data carrier transactions (default: %u) Videresend og udvind databærer-transaktioner (standard: %u) + Relay non-P2SH multisig (default: %u) Videresend ikke-P2SH multisig (standard: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Send transaktioner med fuld-RBF opt-in aktiveret (standard: %u) + Set key pool size to <n> (default: %u) Sæt nøglepuljestørrelse til <n> (standard: %u) + Set maximum BIP141 block weight (default: %d) Sæt maksimal BIP141-blokvægt (standard: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Angiv antallet af tråde til at håndtere RPC-kald (standard: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Angiv konfigurationsfil (standard: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Angiv tilslutningstimeout i millisekunder (minimum: 1, standard: %d) + Specify pid file (default: %s) Angiv pid-fil (standard: %s) + Spend unconfirmed change when sending transactions (default: %u) Brug ubekræftede byttepenge under afsendelse af transaktioner (standard: %u) + Starting network threads... Starter netværkstråde… + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Tegnebogen vil undgå at betale mindre end minimum-videresendelsesgebyret. + This is the minimum transaction fee you pay on every transaction. Dette er det transaktionsgebyr, du minimum betaler for hver transaktion. + This is the transaction fee you will pay if you send a transaction. Dette er transaktionsgebyret, som betaler, når du sender en transaktion. + Threshold for disconnecting misbehaving peers (default: %u) Grænse for afbrydelse af forbindelse til knuder, der opfører sig upassende (standard: %u) + Transaction amounts must not be negative Transaktionsbeløb må ikke være negative + Transaction has too long of a mempool chain Transaktionen har en for lang hukommelsespuljekæde + Transaction must have at least one recipient Transaktionen skal have mindst én modtager - Unknown network specified in -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' Ukendt netværk anført i -onlynet: “%s” + Insufficient funds Manglende dækning + Loading block index... Indlæser blokindeks… - Add a node to connect to and attempt to keep the connection open - Tilføj en knude til at forbinde til og forsøg at holde forbindelsen åben - - + Loading wallet... Indlæser tegnebog… + Cannot downgrade wallet Kan ikke nedgradere tegnebog - Cannot write default address - Kan ikke skrive standardadresse - - + Rescanning... Genindlæser… - Done loading - Indlæsning gennemført - - + Error Fejl diff --git a/src/qt/locale/raven_de.ts b/src/qt/locale/raven_de.ts index f06a44ccd8..acbf7b6149 100644 --- a/src/qt/locale/raven_de.ts +++ b/src/qt/locale/raven_de.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Rechtsklick zum Bearbeiten der Adresse oder der Bezeichnung + Create a new address Eine neue Adresse erstellen + &New &Neu + Copy the currently selected address to the system clipboard Ausgewählte Adresse in die Zwischenablage kopieren + &Copy &Kopieren + C&lose &Schließen + Delete the currently selected address from the list Ausgewählte Adresse aus der Liste entfernen + Export the data in the current tab to a file Daten der aktuellen Ansicht in eine Datei exportieren + &Export &Exportieren + &Delete &Löschen + Choose the address to send coins to - Wählen Sie die Adresse aus, an die Sie Ravens überweisen möchten + Wählen Sie die Adresse aus, an die Sie Raven überweisen möchten + Choose the address to receive coins with - Wählen Sie die Adresse aus, über die Sie Ravens empfangen wollen + Wählen Sie die Adresse aus, über die Sie Raven empfangen wollen + C&hoose &Auswählen + Sending addresses Zahlungsadressen + Receiving addresses Empfangsadressen + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Dies sind ihre Raven-Adressen zum Tätigen von Überweisungen. Bitte prüfen Sie den Betrag und die Empfangsadresse, bevor Sie Ravens überweisen. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Dies sind Ihre Raven-Adressen zum Empfangen von Zahlungen. Es wird empfohlen, für jede Transaktion eine neue Empfangsadresse zu verwenden. + &Copy Address &Adresse kopieren + Copy &Label &Bezeichnung kopieren + &Edit - B&earbeiten + &Bearbeiten + Export Address List Addressliste exportieren + Comma separated file (*.csv) Kommagetrennte-Datei (*.csv) + Exporting Failed Exportieren fehlgeschlagen + There was an error trying to save the address list to %1. Please try again. Beim Speichern der Adressliste nach %1 ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut. @@ -103,14 +125,17 @@ AddressTableModel + Label Bezeichnung + Address Adresse + (no label) (keine Bezeichnung) @@ -118,2103 +143,5359 @@ AskPassphraseDialog + Passphrase Dialog Passphrasendialog + Enter passphrase Passphrase eingeben + New passphrase Neue Passphrase + Repeat new passphrase Neue Passphrase bestätigen + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Geben Sie die neue Passphrase für die Wallet ein.<br>Bitte benutzen Sie eine Passphrase bestehend aus <b>zehn oder mehr zufälligen Zeichen</b> oder <b>acht oder mehr Wörtern</b>. + Encrypt wallet Wallet verschlüsseln + This operation needs your wallet passphrase to unlock the wallet. Dieser Vorgang benötigt ihre Passphrase, um die Wallet zu entsperren. + Unlock wallet Wallet entsperren + This operation needs your wallet passphrase to decrypt the wallet. - Dieser Vorgang benötigt Ihre Passphrase, um die Wallet zu entschlüsseln. + Dieser Vorgang benötigt Ihre Passphrase, um das Wallet zu entschlüsseln. + Decrypt wallet Wallet entschlüsseln + Change passphrase Passphrase ändern + Enter the old passphrase and new passphrase to the wallet. Geben Sie die alte und neue Wallet-Passphrase ein. + Confirm wallet encryption Wallet-Verschlüsselung bestätigen + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Warnung: Wenn Sie Ihre Wallet verschlüsseln und Ihre Passphrase verlieren, werden Sie <b>alle Ihre Ravens verlieren</b>! + Are you sure you wish to encrypt your wallet? - Sind Sie sich sicher, dass Sie Ihre Wallet verschlüsseln möchten? + Sind Sie sich sicher, dass Sie Ihr Wallet verschlüsseln möchten? + + Wallet encrypted Wallet verschlüsselt + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. - %1 wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Wallet-Verschlüsselung nicht vollständig vor Diebstahl Ihrer Ravens durch Schadprogramme schützt, die Ihren Computer befällt. + %1 wird jetzt beendet, um den Verschlüsselungsprozess abzuschließen. Bitte beachten Sie, dass die Wallet-Verschlüsselung nicht vollständig vor Diebstahl Ihrer Raven durch Schadprogramme schützt, die Ihren Computer befällt. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. WICHTIG: Alle vorherigen Wallet-Sicherungen sollten durch die neu erzeugte, verschlüsselte Wallet ersetzt werden. Aus Sicherheitsgründen werden vorherige Sicherungen der unverschlüsselten Wallet nutzlos, sobald Sie die neue, verschlüsselte Wallet verwenden. + + + + Wallet encryption failed Wallet-Verschlüsselung fehlgeschlagen + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Die Wallet-Verschlüsselung ist aufgrund eines internen Fehlers fehlgeschlagen. Ihre Wallet wurde nicht verschlüsselt. - The supplied passphrase does not match. - Die eingegebene Passphrase stimmt nicht überein. + + + The supplied passphrases do not match. + Die angegebenen Passphrasen stimmen nicht überein. + Wallet unlock failed Wallet-Entsperrung fehlgeschlagen + + + The passphrase entered for the wallet decryption was incorrect. Die eingegebene Passphrase zur Wallet-Entschlüsselung war nicht korrekt. + Wallet decryption failed Wallet-Entschlüsselung fehlgeschlagen + Wallet passphrase was successfully changed. Die Wallet-Passphrase wurde erfolgreich geändert. + + Warning: The Caps Lock key is on! - Warnung: Die Feststelltaste ist aktiviert! + Warnung: Feststelltaste ist aktiviert! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netzmaske + + Asset Selection + Assetauswahl - Banned Until - Gesperrt bis + + Quantity: + Anzahl: - - - RavenGUI - Sign &message... - Nachricht s&ignieren... + + Bytes: + Bytes: - Synchronizing with network... - Synchronisiere mit Netzwerk... + + Amount: + Betrag: - &Overview - &Übersicht + + Dust: + Staub: - Node - Knoten + + Fee: + Gebühr: - Show general overview of wallet - Allgemeine Wallet-Übersicht anzeigen + + After Fee: + Abzgl. Gebühr: - &Transactions - &Transaktionen + + Change: + Wechselgeld: - Browse transaction history - Transaktionsverlauf durchsehen + + (un)select all + Alle (ab)wählen - E&xit - &Beenden + + Tree mode + Baumansicht - Quit application - Anwendung beenden + + List mode + Listenansicht - &About %1 - Über %1 + + View assets that you have the ownership asset for + Zeige Assets, für die Du das 'ownership asset' hast - Show information about %1 - Informationen über %1 anzeigen + + View Administrator Assets + Zeige Administrator Assets - About &Qt - Über &Qt + + Asset + Asset - Show information about Qt - Informationen über Qt anzeigen + + Amount + Anzahl - &Options... - &Konfiguration... + + Received with label + Empfange mit Label - Modify configuration options for %1 - Konfiguration von %1 bearbeiten + + Received with address + Empfange mit Adresse - &Encrypt Wallet... - Wallet &verschlüsseln... + + Date + Datum - &Backup Wallet... - Wallet &sichern... + + Confirmations + Bestätigungen - &Change Passphrase... - Passphrase &ändern... + + Confirmed + Bestätigt - &Sending addresses... - &Zahlungsadressen... + + Copy address + Adresse kopieren - &Receiving addresses... - &Empfangsadressen... + + Copy label + Label kopieren - Open &URI... - &URI öffnen... + + + Copy amount + Betrag kopieren - Click to disable network activity. - Klicken zum Deaktivieren der Netzwerkaktivität. + + Copy transaction ID + Transaction ID kopieren - Network activity disabled. - Netzwerkaktivität deaktiviert. + + Lock unspent + Nicht ausgegebenen Betrag sperren - Click to enable network activity again. - Klicken zum Aktivieren der Netzwerkaktivität. + + Unlock unspent + Nicht ausgegebenen Betrag entsperren - Syncing Headers (%1%)... - Header werden synchronisiert (%1%)... + + Copy quantity + Anzahl kopieren - Reindexing blocks on disk... - Reindiziere Blöcke auf Datenträger... + + Copy fee + Gebühr kopieren - Send coins to a Raven address - Ravens an eine Raven-Adresse überweisen + + Copy after fee + Abzüglich Gebühr kopieren - Backup wallet to another location - Eine Wallet-Sicherungskopie erstellen und abspeichern + + Copy bytes + Byte kopieren - Change the passphrase used for wallet encryption - Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird + + Copy dust + 'Staub' kopieren - &Debug window - &Debugfenster + + Copy change + Wechselgeld kopieren - Open debugging and diagnostic console - Debugging- und Diagnosekonsole öffnen + + (%1 locked) + (%1 gesperrt) - &Verify message... - Nachricht &verifizieren... + + yes + ja - Raven - Raven + + no + nein - Wallet - Wallet + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Diese Bezeichnung wird rot dargestellt, wenn irgendein Empfänger einen Betrag kleiner als die derzeitige 'Staubgrenze' erhält. - &Send - &Überweisen + + Can vary +/- %1 satoshi(s) per input. + Kann pro Eingabe um +/- %1 Satoshi(s) abweichen. - &Receive - &Empfangen + + + (no label) + (keine Bezeichnung) - &Show / Hide - &Anzeigen / Verstecken + + change from %1 (%2) + Wechselgeld von %1 (%2) - Show or hide the main Window - Das Hauptfenster anzeigen oder verstecken + + (change) + (Wechselgeld) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Verschlüsselt die zu Ihrer Wallet gehörenden privaten Schlüssel + + Name + Name - Sign messages with your Raven addresses to prove you own them - Nachrichten signieren, um den Besitz Ihrer Raven-Adressen zu beweisen + + Quantity + Anzahl + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Raven-Adressen signiert wurden + + + Send Coins + Raven überweisen - &File - &Datei + + Asset Control Features + Asset Kontrollfunktionen - &Settings - &Einstellungen + + Inputs... + Eingaben... - &Help - &Hilfe + + automatically selected + Automatisch ausgewählt - Tabs toolbar - Registerkartenleiste + + Insufficient funds! + Unzureichender Kontostand! - Request payments (generates QR codes and raven: URIs) - Zahlungen anfordern (erzeugt QR-Codes und "raven:"-URIs) + + Quantity: + Anzahl - Show the list of used sending addresses and labels - Liste verwendeter Zahlungsadressen und Bezeichnungen anzeigen + + Bytes: + Bytes: - Show the list of used receiving addresses and labels - Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen + + Amount: + Betrag: - Open a raven: URI or payment request - Eine "raven:"-URI oder Zahlungsanforderung öffnen + + Dust: + "Dust": - &Command-line options - &Kommandozeilenoptionen + + Fee: + Gebühr: - - %n active connection(s) to Raven network - %n aktive Verbindung zum Raven-Netzwerk%n aktive Verbindungen zum Raven-Netzwerk + + + After Fee: + Abzgl. Gebühr: - Indexing blocks on disk... - Indiziere Blöcke auf Datenträger... + + Change: + Wechselgeld: - Processing blocks on disk... - Verarbeite Blöcke auf Datenträger... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Wenn dies aktivert, und die Wechselgeld-Adresse leer oder ungültig ist, wird das Wechselgeld einer neu erzeugten Adresse gutgeschrieben. - - Processed %n block(s) of transaction history. - %n Block des Transaktionsverlaufs verarbeitet.%n Blöcke des Transaktionsverlaufs verarbeitet. + + + Custom change address + Benutzerdefinierte Wechselgeld-Adresse - %1 behind - %1 im Rückstand + + Transaction Fee: + Transaktionsgebühr - Last received block was generated %1 ago. - Der letzte empfangene Block ist %1 alt. + + Choose... + Auswählen... - Transactions after this will not yet be visible. - Transaktionen hiernach werden noch nicht angezeigt. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Die Verwendung der Fallbackfee kann dazu führen, dass eine Transaktion gesendet wird, die mehrere Stunden oder Tage (oder nie) zur Bestätigung benötigt. Überlegen Sie sich, ob Sie Ihre Gebühr manuell wählen oder warten Sie, bis Sie die gesamte Kette validiert haben. - Error - Fehler + + Warning: Fee estimation is currently not possible. + Warnung: Gebührenschätzung im Moment nicht möglich. - Warning - Warnung + + collapse fee-settings + Transaktionsgebühreneinstellungen ausblenden - Information - Hinweis + + Hide + Ausblenden - Up to date - Auf aktuellem Stand + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Wenn die benutzerdefinierte Gebühr 1000 Satoshis beträgt und die Transaktion nur 250 Byte groß ist, wird bei Auswahl von "pro Kilobyte" eine Gebühr in Höhe von 250 Satoshis, bei Auswahl von "Mindestbetrag" eine Gebühr in Höhe von 1000 Satoshis bezahlt. Bei Transaktionen die größer als ein Kilobyte sind, werden bei beiden Optionen die Gebühren pro Kilobyte bezahlt. - Show the %1 help message to get a list with possible Raven command-line options - Zeige den "%1"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten + + per kilobyte + pro Kilobyte - %1 client - %1 Client + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Raven-Transaktionen besteht als das Netzwerk verarbeiten kann. - Connecting to peers... - Verbinde mit Netzwerk... + + (read the tooltip) + (den Hinweistext lesen) - Catching up... - Hole auf... + + Recommended: + Empfehlungen: - Date: %1 - - Datum: %1 - + + Custom: + Benutzerdefiniert: - Amount: %1 - - Betrag: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Intelligente Gebührenlogik ist noch nicht verfügbar. Normalerweise dauert dies einige Blöcke lang...) - Type: %1 - - Typ: %1 - + + Confirmation time target: + Gewünschte Bestätigungszeit: - Label: %1 - - Bezeichnung: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Deutet an, dass der Absender diese Transaktion durch eine neue Transaktion mit höheren Gebühren ersetzen will (bevor diese bestätigt wird). - Address: %1 - - Adresse: %1 - + + Request Replace-By-Fee + Replace-By-Fee anfordern - Sent transaction - Gesendete Transaktion + + Confirm the send action + Überweisung bestätigen - Incoming transaction - Eingehende Transaktion + + S&end + &Überweisen - HD key generation is <b>enabled</b> - HD Schlüssel Generierung ist <b>aktiviert</b> + + Clear all fields of the form. + Alle Formularfelder zurücksetzen. - HD key generation is <b>disabled</b> - HD Schlüssel Generierung ist <b>deaktiviert</b> + + Clear &All + Zurücksetzen - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> + + Transfer to multiple recipients at once + An mehrere Empfänger auf einmal transferieren - Wallet is <b>encrypted</b> and currently <b>locked</b> - Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> + + Add &Recipient + Empfänger hinzufügen - A fatal error occurred. Raven can no longer continue safely and will quit. - Ein schwerer Fehler ist aufgetreten. Raven kann nicht stabil weiter ausgeführt werden und wird beendet. + + Balance: + Kontostand: + + + + Copy quantity + Anzahl kopieren + + + + Copy amount + Betrag kopieren + + + + Copy fee + Gebühr kopieren + + + + Copy after fee + Abzüglich Gebühr kopieren + + + + Copy bytes + Bytes kopieren + + + + Copy dust + Staub kopieren + + + + Copy change + Wechselgeld kopieren + + + + %1 (%2 blocks) + %1 (%2 blocks) + + + + + + + %1 to %2 + 1% bis 2% + + + + Are you sure you want to send? + Sind Sie sicher, dass Sie die Überweisung ausführen möchten? + + + + added as transaction fee + als Transaktionsgebühr hinzugefügt + + + + Confirm send assets + Senden von Assets bestätigen + + + + The recipient address is not valid. Please recheck. + Die Zahlungsadresse ist ungültig. Bitte nochmals überprüfen. + + + + The amount to pay must be larger than 0. + Der zu zahlende Betrag muss größer als 0 sein. + + + + The amount exceeds your balance. + Der angegebene Betrag übersteigt Ihren Kontostand. + + + + The total exceeds your balance when the %1 transaction fee is included. + Der angegebene Betrag übersteigt aufgrund der Transaktionsgebühr in Höhe von 1% Ihren Kontostand. + + + + Duplicate address found: addresses should only be used once each. + Doppelte Adresse entdeckt: Adressen dürfen jeweils nur einmal vorkommen. + + + + Transaction creation failed! + Transaktionserstellung fehlgeschlagen! + + + + The transaction was rejected with the following reason: %1 + Die Transaktion wurde aus folgendem Grund abgelehnt: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + Eine Gebühr größer als 1% wird als unnötig hohe Gebühr angesehen. + + + + Payment request expired. + Zahlungsanforderung abgelaufen. + + + + Pay only the required fee of %1 + Nur die benötigte Gebühr in Höhe von 1% bezahlen + + + + Estimated to begin confirmation within %n block(s). + Voraussichtlicher Beginn der Bestätigung innerhalb von %n Block.Voraussichtlicher Beginn der Bestätigung innerhalb von %n Blöcken. + + + + Warning: Invalid Raven address + Warnung: Ungültige Raven-Adresse + + + + Warning: Unknown change address + Warnung: Unbekannte Wechselgeld-Adresse + + + + Confirm custom change address + Benutzerdefinierte Wechselgeld-Adresse bestätigen + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Die ausgewählte Adresse für Ihr Wechselgeld ist nicht Bestandteil dieses Wallets. Einige oder alle Mittel aus Ihrem Wallet könnten an diese Adresse gesendet werden. Wollen Sie das wirklich? + + + + (no label) + (keine Bezeichnung) + + + + AssignQualifier + + + Frame + Rahmen + + + + Select Type: + Typ auswählen: + + + + Select Qualifier: + Qualifier auswählen: + + + + Address: + Adresse: + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + Benutzerdefinierte Wechselgeld-Adresse + + + + Check + Prüfen + + + + Clear + Zurücksetzen + + + + Submit + Senden + + + + Assign Qualifier + Qualifier zuweisen + + + + Remove Qualifier + Qualifier entfernen + + + + Data has been validated, You can now submit the qualifier request + Die Daten wurden validiert, Sie können nun die Qualifier-Anfrage abschicken + + + + Must have a qualifier asset selected + Sie müssen ein Qualifier-Asset ausgewählt haben + + + + Address already has the qualifier assigned to it + Adresse hat bereits einen Qualifier zugewiesen + + + + Address doesn't have the qualifier, so we can't remove it + Adresse hat diesen Qualifier nicht, also kann er nicht entfernt werden + + + + Unable to preform action at this time + Aktion im Moment nicht möglich. + + + + BanTableModel + + + IP/Netmask + IP/Netzmaske + + + + Banned Until + Gesperrt bis CoinControlDialog + Coin Selection - Münzauswahl ("Coin Control") + Münzauswahl ("Coin Control") + Quantity: Anzahl: + Bytes: Byte: + Amount: Betrag: + Fee: Gebühr: + Dust: - "Dust": + "Dust": + After Fee: Abzüglich Gebühr: + Change: Wechselgeld: + (un)select all Alles (de)selektieren + Tree mode Baumansicht + List mode Listenansicht + Amount Betrag + Received with label Empfangen über Bezeichnung + Received with address Empfangen über Adresse + Date Datum + Confirmations Bestätigungen + Confirmed Bestätigt + Copy address Adresse kopieren + Copy label Bezeichnung kopieren + + Copy amount Betrag kopieren + Copy transaction ID Transaktions-ID kopieren + Lock unspent Nicht ausgegebenen Betrag sperren + Unlock unspent Nicht ausgegebenen Betrag entsperren + Copy quantity Anzahl kopieren + Copy fee Gebühr kopieren + Copy after fee Abzüglich Gebühr kopieren + Copy bytes Bytes kopieren + Copy dust - "Staub" kopieren + "Staub" kopieren + Copy change Wechselgeld kopieren + (%1 locked) (%1 gesperrt) + yes ja + no nein + This label turns red if any recipient receives an amount smaller than the current dust threshold. - Diese Bezeichnung wird rot, wenn irgendein Empfänger einen Betrag kleiner als die derzeitige "Staubgrenze" erhält. + Diese Bezeichnung wird rot, wenn irgendein Empfänger einen Betrag kleiner als die derzeitige "Staubgrenze" erhält. + Can vary +/- %1 satoshi(s) per input. Kann pro Eingabe um +/- %1 Satoshi(s) abweichen. + + (no label) (keine Bezeichnung) + change from %1 (%2) Wechselgeld von %1 (%2) + (change) (Wechselgeld) - EditAddressDialog + CreateAssetDialog - Edit Address - Adresse bearbeiten + + Coin Control Features + "Coin Control"-Funktionen - &Label - &Bezeichnung + + Inputs... + Eingaben... - The label associated with this address list entry - Bezeichnung, die dem Adresslisteneintrag zugeordnet ist. + + automatically selected + Automatisch ausgewählt - The address associated with this address list entry. This can only be modified for sending addresses. - Adresse, die dem Adresslisteneintrag zugeordnet ist. Diese kann nur bei Zahlungsadressen verändert werden. + + Insufficient funds! + Unzureichender Kontostand! - &Address - &Adresse + + + Quantity: + Anzahl: - New receiving address - Neue Empfangsadresse + + Bytes: + Bytes: - New sending address - Neue Zahlungsadresse + + Amount: + Betrag: - Edit receiving address - Empfangsadresse bearbeiten + + Dust: + Staub: - Edit sending address - Zahlungsadresse bearbeiten + + Fee: + Gebühr: - The entered address "%1" is not a valid Raven address. - Die eingegebene Adresse "%1" ist keine gültige Raven-Adresse. + + After Fee: + Abzgl. Gebühr: - The entered address "%1" is already in the address book. - Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. + + Change: + Wechselgeld: - Could not unlock wallet. - Wallet konnte nicht entsperrt werden. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Wenn dies aktiviert ist, aber die Wechselgeldadresse leer oder ungültig ist, wird das Wechselgeld an eine neu generierte Adresse gesendet. - New key generation failed. - Erzeugung eines neuen Schlüssels fehlgeschlagen. + + Custom change address + Benutzerdefinierte Wechselgeld-Adresse - - - FreespaceChecker - A new data directory will be created. - Es wird ein neues Datenverzeichnis angelegt. + + Name: + Name: - name - Name + + A-Z 0-9 and . or _ as the second character + A-Z 0-9 und . oder _ als zweites Zeichen - Directory already exists. Add %1 if you intend to create a new directory here. - Verzeichnis existiert bereits. Fügen Sie %1 an, wenn Sie beabsichtigen hier ein neues Verzeichnis anzulegen. + + The name of the asset you would like to create + Der Name des Assets, das erstellt werden soll - Path already exists, and is not a directory. - Pfad existiert bereits und ist kein Verzeichnis. + + Check Availabilty + Verfügbarkeit prüfen - Cannot create data directory here. - Datenverzeichnis kann hier nicht angelegt werden. + + Address: + Adresse: - - - HelpMessageDialog - version - Version + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + Die RVN-Adresse, die dieses Asset halten wird (Sie müssen diese Adresse besitzen). Das Feld Leer lassen, um eine neue Adresse zu erstellen. - (%1-bit) - (%1-Bit) + + Verifier String: + Verifier String: - About %1 - Über %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + Erstellen Sie einen Verifier String, der aus Qualifier-Namen aufgebaut ist, z. B. (#KYC & #VALID). Leer lassen, damit der Standardwert 'true' ist - Command-line options - Kommandozeilenoptionen + + Warning: + Warnung: - Usage: - Benutzung: + + The number of assets that will be created + Die Anzahl der Assets, die erstellt werden - command-line options - Kommandozeilenoptionen + + Units: + Menge: - UI Options: - UI Einstellungen: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + Wie oft das Asset geteilt werden kann (z.B. 8 = 1.00000000, 2 = 1.00) - Choose data directory on startup (default: %u) - Datenverzeichnis beim Starten auswählen (Standard: %u) + + e.g. 1 + z.B. 1 - Set language, for example "de_DE" (default: system locale) - Sprache einstellen, zum Beispiel "de_DE" (Standard: Systemgebietsschema) + + If the owner of this asset will be able to issue more assets in the future + Ob der Eigentümer dieses Assets in der Zukunft weitere Assets ausgeben kann - Start minimized - Minimiert starten + + Reissuable + Wieder ausgebbar - Set SSL root certificates for payment request (default: -system-) - SSL-Wurzelzertifikate für Zahlungsanforderungen festlegen (Standard: Systemstandard) + + Does this asset have an ipfs hash to go with it + Hat dieses Asset einen ipfs hash - Show splash screen on startup (default: %u) - Startbildschirm beim Starten anzeigen (Standard: %u) + + Add IPFS/Txid Hash + IPFS/Txid Hash hinzufügen - Reset all settings changed in the GUI - Setze alle Einstellungen zurück, die über die grafische Oberfläche geändert wurden. + + The ipfs/txid hash that contains information about the asset + Der IPFS/Txid Hash, der Informationen über das Asset enthält - - - Intro - Welcome - Willkommen + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + Der IPFS/Txid Hash, der mit dem Asset verbunden ist (z.B. QmU4h365LYMHx...) - Welcome to %1. - Willkommen zu %1. + + ERROR TEXT + FEHLER TEXT - As this is the first time the program is launched, you can choose where %1 will store its data. - Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo %1 seine Daten ablegen wird. + + Transaction Fee: + Transaktionsgebühr: - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 wird eine Kopie der Raven Blockchain herunterladen und speichern. Mindestens %2GB Daten werden in diesem Verzeichnis abgelegt und die Datenmenge wächst über die Zeit an. Auch die Wallet wird in diesem Verzeichnis abgelegt. + + Choose... + Auswählen... - Use the default data directory - Standard-Datenverzeichnis verwenden + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Die Verwendung der Fallbackfee kann dazu führen, dass eine Transaktion gesendet wird, die mehrere Stunden oder Tage (oder nie) zur Bestätigung benötigt. Überlegen Sie sich, ob Sie Ihre Gebühr manuell wählen oder warten Sie, bis Sie die gesamte Kette validiert haben. - Use a custom data directory: - Ein benutzerdefiniertes Datenverzeichnis verwenden: + + Warning: Fee estimation is currently not possible. + Warnung: Gebührenschätzung im Moment nicht möglich. - Error: Specified data directory "%1" cannot be created. - Fehler: Angegebenes Datenverzeichnis "%1" kann nicht angelegt werden. + + collapse fee-settings + Transaktionsgebühreneinstellungen ausblenden - Error - Fehler + + Hide + Ausblenden - - %n GB of free space available - %n GB freier Speicherplatz verfügbar%n GB freier Speicherplatz verfügbar + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Wenn die benutzerdefinierte Gebühr 1000 Satoshis beträgt und die Transaktion nur 250 Byte groß ist, wird bei Auswahl von "pro Kilobyte" eine Gebühr in Höhe von 250 Satoshis, bei Auswahl von "Mindestbetrag" eine Gebühr in Höhe von 1000 Satoshis bezahlt. Bei Transaktionen die größer als ein Kilobyte sind, werden bei beiden Optionen die Gebühren pro Kilobyte bezahlt. - - (of %n GB needed) - (von benötigtem %n GB)(von benötigten %n GB) + + + per kilobyte + pro Kilobyte - - - ModalOverlay - Form - Formular + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Raven-Transaktionen besteht als das Netzwerk verarbeiten kann. - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Neueste Transaktionen werden eventuell noch nicht angezeigt, daher könnte Ihr Kontostand veraltet sein. Er wird korrigiert, sobald Ihre Wallet die Synchronisation mit dem Raven-Netzwerk erfolgreich abgeschlossen hat. Details dazu finden sich weiter unten. + + (read the tooltip) + (den Hinweistext lesen) - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Versuche, Ravens aus noch nicht angezeigten Transaktionen auszugeben, werden vom Netzwerk nicht akzeptiert. + + Recommended: + Empfohlen: - Number of blocks left - Anzahl verbleibender Blöcke + + C&ustom: + &Benutzerdefiniert: - Unknown... - Unbekannt... + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Die Smart fee ist noch nicht initialisiert. Dies dauert normalerweise einige Blöcke...) - Last block time - Letzte Blockzeit + + Confirmation time target: + Gewünschte Bestätigungszeit: - Progress - Fortschritt + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Deutet an, dass der Absender diese Transaktion durch eine neue Transaktion mit höheren Gebühren ersetzen will (bevor diese bestätigt wird). - Progress increase per hour - Fortschritt pro Stunde + + Request Replace-By-Fee + Replace-By-Fee anfordern - calculating... - berechne... + + Create Asset + Asset erstellen - Estimated time left until synced - Abschätzung der verbleibenden Zeit bis synchronisiert + + Clear + Zurücksetzen - Hide - Ausblenden + + Balance: + Kontostand: - Unknown. Syncing Headers (%1)... - Unbekannt. Synchronisiere Headers (%1)... + + 123.456 RVN + 123.456 RVN - - - OpenURIDialog - Open URI - URI öffnen + + Copy quantity + Anzahl kopieren - Open payment request from URI or file - Zahlungsanforderung über URI oder aus Datei öffnen + + Copy amount + Betrag kopieren - URI: - URI: + + Copy fee + Gebühr kopieren - Select payment request file - Zahlungsanforderungsdatei auswählen + + Copy after fee + Abzüglich Gebühr kopieren - Select payment request file to open - Zu öffnende Zahlungsanforderungsdatei auswählen + + Copy bytes + Bytes kopieren - - - OptionsDialog - Options - Konfiguration + + Copy dust + "Staub" kopieren - &Main - &Allgemein + + Copy change + Wechselgeld kopieren - Automatically start %1 after logging in to the system. - %1 nach der Anmeldung am System automatisch ausführen. + + %1 (%2 blocks) + %1 (%2 blocks) - &Start %1 on system login - &Starte %1 nach Systemanmeldung + + Main Asset + Haupt-Asset - Size of &database cache - Größe des &Datenbankcaches + + Sub Asset + Unter-Asset - MB - MB + + Unique Asset + Einzigartiges Asset - Number of script &verification threads - Anzahl an Skript-&Verifizierungs-Threads + + Messaging Channel Asset + Messaging-Kanal Asset - Accept connections from outside - Eingehende Verbindungen annehmen + + Qualifier Asset + Qualifier Asset - Allow incoming connections - Erlaubt eingehende Verbindungen + + Sub Qualifier Asset + Unter-Qualifier-Asset - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-Adresse des Proxies (z.B. IPv4: 127.0.0.1 / IPv6: ::1) + + Restricted Asset + Eingeschränktes Asset - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimiert die Anwendung anstatt sie zu beenden wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie die Anwendung über "Beenden" im Menü schließen. + + Asset Type + Asset-Typ - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Externe URLs (z.B. ein Block-Explorer), die im Kontextmenü des Transaktionsverlaufs eingefügt werden. In der URL wird %s durch den Transaktionshash ersetzt. Bei Angabe mehrerer URLs müssen diese durch "|" voneinander getrennt werden. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + Der IPFS/Txid Hash muss mit 'Qm' beginnen und 46 Zeichen lang sein oder aus 64 hex Zeichen bestehen - Third party transaction URLs - Externe Transaktions-URLs + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + Der IPFS/Txid Hash muss 46 normale oder 64 hex Zeichen lang sein - Active command-line options that override above options: - Aktive Kommandozeilenoptionen, die obige Konfiguration überschreiben: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + Der IPFS/Txid Hash ist nicht gültig. Bitte benutzen Sie einen gültigen IPFS/Txid Hash. - Reset all client options to default. - Setzt die Clientkonfiguration auf Standardwerte zurück. + + + + Warning: Invalid Raven address + Warnung: Ungültige Raven-Adresse - &Reset Options - Konfiguration &zurücksetzen + + Warning: Restricted Assets Reissuance requires an address + Warnung: Die Wiederveröffentlichung eingeschränkter Assets erfordert eine Adresse - &Network - &Netzwerk + + Valid Asset + Gültiges Asset - (0 = auto, <0 = leave that many cores free) - (0 = automatisch, <0 = so viele Kerne frei lassen) + + Invalid: Asset name already in use + Ungültig: Asset-Name wird bereits verwendet - W&allet - W&allet + + Error: Asset Database not in sync + Fehler: Asset-Datenbank nicht synchronisiert - Expert - Erweiterte Wallet-Optionen + + + %1 to %2 + %1 bis %2 - Enable coin &control features - "&Coin Control"-Funktionen aktivieren + + Are you sure you want to send? + Sind Sie sicher, dass Sie die Überweisung ausführen möchten? - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Wenn Sie das Ausgeben von unbestätigtem Wechselgeld deaktivieren, kann das Wechselgeld einer Transaktion nicht verwendet werden, bis es mindestens eine Bestätigung erhalten hat. Dies wirkt sich auf die Berechnung des Kontostands aus. + + added as transaction fee + als Transaktionsgebühr hinzugefügt - &Spend unconfirmed change - &Unbestätigtes Wechselgeld darf ausgegeben werden + + Total Amount %1 + Gesamtbetrag %1 - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatisch den Raven-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. + + or + oder - Map port using &UPnP - Portweiterleitung via &UPnP + + Confirm send assets + Senden von Assets bestätigen - Connect to the Raven network through a SOCKS5 proxy. - Über einen SOCKS5-Proxy mit dem Raven-Netzwerk verbinden. + + Invalid: + Ungültig: - &Connect through SOCKS5 proxy (default proxy): - Über einen SOCKS5-Proxy &verbinden (Standardproxy): + + Copy + Kopieren - Proxy &IP: - Proxy-&IP: + + Transaction ID Copied + Transaktions-ID kopiert - &Port: - &Port: + + Asset transaction sent to network: + Asset-Transaktion an das Netzwerk gesendet: + + + + Estimated to begin confirmation within %n block(s). + Voraussichtlicher Beginn der Bestätigung innerhalb von %n Blöcken.Voraussichtlicher Beginn der Bestätigung innerhalb von %n Blöcken. - Port of the proxy (e.g. 9050) - Port des Proxies (z.B. 9050) + + Warning: Unknown change address + Warnung: Unbekannte Wechselgeld-Adresse - Used for reaching peers via: - Benutzt um Gegenstellen zu erreichen über: + + Confirm custom change address + Benutzerdefinierte Wechselgeld-Adresse bestätigen - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Zeigt an, ob der eingegebene Standard SOCKS5 Proxy genutzt wird um Peers mit dem Netzwerktyp zu erreichen. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Die ausgewählte Adresse für Ihr Wechselgeld ist nicht Bestandteil dieses Wallets. Einige oder alle Mittel aus Ihrem Wallet könnten an diese Adresse gesendet werden. Wollen Sie das wirklich? - IPv4 - IPv4 + + (no label) + (keine Bezeichnung) - IPv6 - IPv6 + + Pay only the required fee of %1 + Nur die notwendige Gebühr in Höhe von %1 zahlen + + + EditAddressDialog - Tor - Tor + + Edit Address + Adresse bearbeiten - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Über einen separaten SOCKS5 Proxy für Tor Services mit dem Raven Netzwerk verbinden. + + &Label + &Bezeichnung - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Separaten SOCKS5-Proxy verwenden, um Gegenstellen über versteckte Tor-Dienste zu erreichen: + + The label associated with this address list entry + Bezeichnung, die dem Adresslisteneintrag zugeordnet ist. - &Window - &Programmfenster + + The address associated with this address list entry. This can only be modified for sending addresses. + Adresse, die dem Adresslisteneintrag zugeordnet ist. Diese kann nur bei Zahlungsadressen verändert werden. - &Hide the icon from the system tray. - &Das Icon im Infobereich verstecken. + + &Address + &Adresse - Hide tray icon - Icon verstecken + + New receiving address + Neue Empfangsadresse - Show only a tray icon after minimizing the window. - Nur ein Symbol im Infobereich anzeigen, nachdem das Programmfenster minimiert wurde. + + New sending address + Neue Zahlungsadresse - &Minimize to the tray instead of the taskbar - In den Infobereich anstatt in die Taskleiste &minimieren + + Edit receiving address + Empfangsadresse bearbeiten - M&inimize on close - Beim Schließen m&inimieren + + Edit sending address + Zahlungsadresse bearbeiten - &Display - Anzei&ge + + The entered address "%1" is not a valid Raven address. + Die eingegebene Adresse "%1" ist keine gültige Raven-Adresse. - User Interface &language: - &Sprache der Benutzeroberfläche: + + The entered address "%1" is already in the address book. + Die eingegebene Adresse "%1" befindet sich bereits im Adressbuch. - The user interface language can be set here. This setting will take effect after restarting %1. - Die Benutzeroberflächensprache kann hier festgelegt werden. Diese Einstellung wird nach einem Neustart von %1 wirksam werden. + + Could not unlock wallet. + Wallet konnte nicht entsperrt werden. - &Unit to show amounts in: - &Einheit der Beträge: + + New key generation failed. + Erzeugung eines neuen Schlüssels fehlgeschlagen. + + + FreespaceChecker - Choose the default subdivision unit to show in the interface and when sending coins. - Wählen Sie die standardmäßige Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Ravens angezeigt werden soll. + + A new data directory will be created. + Es wird ein neues Datenverzeichnis angelegt. - Whether to show coin control features or not. - Legt fest, ob die "Coin Control"-Funktionen angezeigt werden. + + name + Name - &OK - &OK + + Directory already exists. Add %1 if you intend to create a new directory here. + Verzeichnis existiert bereits. Fügen Sie %1 an, wenn Sie beabsichtigen hier ein neues Verzeichnis anzulegen. - &Cancel - A&bbrechen + + Path already exists, and is not a directory. + Pfad existiert bereits und ist kein Verzeichnis. - default - Standard + + Cannot create data directory here. + Datenverzeichnis kann hier nicht angelegt werden. + + + FreezeAddress - none - keine + + Frame + Rahmen - Confirm options reset - Zurücksetzen der Konfiguration bestätigen + + Restricted Asset: + Eingeschränktes Asset: - Client restart required to activate changes. - Clientneustart nötig, um die Änderungen zu aktivieren. + + Address: + Adresse: - Client will be shut down. Do you want to proceed? + + Custom Change Address + Benutzerdefinierte Wechselgeld-Adresse + + + + IPFS / Hash: + IPFS / Hash: + + + + Single Address Options + Optionen für einzelne Adressen + + + + Global Options + Globale Einstellungen + + + + Free&ze trading on this address + Handel mit d&ieser Adresse einfrieren + + + + Unfreeze tradin&g on this address + Handeln mit dieser Adresse frei&geben. + + + + Freeze all &trading for the selected restricted asset + Den gesam&ten Handel für das ausgewählte eingeschränkte Asset einfrieren + + + + &Unfreeze all trading for the selected restricted asset + Den gesamten Handel für das a&usgewählte eingeschränkte Asset freigeben + + + + Check + Prüfen + + + + Clear + Zurücksetzen + + + + Submit + Einreichen + + + + Data has been validated, You can now submit the restriction transaction + Die Daten wurden validiert, Sie können nun die Einschränkungs-Transaktion senden + + + + Must have a restricted asset selected + + + + + Address is already frozen + Adresse ist bereits eingefroren + + + + Address is not frozen + Adresse ist nicht eingefroren + + + + Restricted asset is already frozen globally + Eingeschränktes Asset ist bereits global eingefroren + + + + Restricted asset is not frozen globally + Eingeschränktes Asset wird nicht global eingefroren + + + + Unable to preform action at this time + Aktion im Moment nicht möglich + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + Warnung: Transaktion während Wallet synchronisiert! + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + Sie versuchen eine Transaktion zu senden, während die Wallet nicht vollständig synchronisiert ist. Dies ist nicht empfohlen, da die Transaktion eventuell in Ihrer Wallet hängen bleibt. Sind Sie sicher, dass Sie fortfahren möchten? + +Empfohlene Aktion: Vollständige Synchronisation bevor eine Transaktion gesendet wird. + + + + + HelpMessageDialog + + + version + Version + + + + + (%1-bit) + (%1-Bit) + + + + About %1 + Über %1 + + + + Command-line options + Kommandozeilenoptionen + + + + Usage: + Benutzung: + + + + command-line options + Kommandozeilenoptionen + + + + UI Options: + UI Einstellungen: + + + + Choose data directory on startup (default: %u) + Datenverzeichnis beim Starten auswählen (Standard: %u) + + + + Set language, for example "de_DE" (default: system locale) + Sprache einstellen, zum Beispiel "de_DE" (Standard: Systemgebietsschema) + + + + Start minimized + Minimiert starten + + + + Set SSL root certificates for payment request (default: -system-) + SSL-Wurzelzertifikate für Zahlungsanforderungen festlegen (Standard: Systemstandard) + + + + Show splash screen on startup (default: %u) + Startbildschirm beim Starten anzeigen (Standard: %u) + + + + Reset all settings changed in the GUI + Setze alle Einstellungen zurück, die über die grafische Oberfläche geändert wurden. + + + + Intro + + + Welcome + Willkommen + + + + Welcome to %1. + Willkommen zu %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Da Sie das Programm gerade zum ersten Mal starten, können Sie nun auswählen wo %1 seine Daten ablegen wird. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + Wenn Sie auf 'OK' klicken, beginnt %1 mit dem Herunterladen und Verarbeiten der gesamten %4-Blockchain (%2GB), beginnend mit den frühesten Transaktionen in %3 beim ersten Start von %4. + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + Die anfängliche Synchronisierung ist sehr anspruchsvoll und kann Hardware-Probleme mit Ihrem Computer aufdecken, die zuvor unbemerkt geblieben waren. Jedes Mal, wenn Sie %1 ausführen, wird das Herunterladen an der Stelle fortgesetzt, an der es unterbrochen wurde. + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + Wenn Sie sich dafür entschieden haben, den Speicherplatz der Blockchain zu begrenzen, müssen die zurückliegenden Daten dennoch heruntergeladen und verarbeitet werden, werden aber anschließend gelöscht, um die Festplattennutzung gering zu halten. + + + + Use the default data directory + Standard-Datenverzeichnis verwenden + + + + Use a custom data directory: + Ein benutzerdefiniertes Datenverzeichnis verwenden: + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + Mindestens 1% GB Daten werden in diesem Ordner gespeichert, die über Zeit zunehmen können. + + + + Approximately %1 GB of data will be stored in this directory. + Ungefähr 1% GB Daten werden in diesem Ordner gespeichert. + + + + %1 will download and store a copy of the Raven block chain. + %1 wird eine Kopie der Raven-Blockchain herunterladen und speichern. + + + + The wallet will also be stored in this directory. + Die Wallet wird ebenfalls in diesem Ordner gespeichert. + + + + Error: Specified data directory "%1" cannot be created. + Fehler: Angegebenes Datenverzeichnis "%1" kann nicht angelegt werden. + + + + Error + Fehler + + + + %n GB of free space available + %n GB freier Speicherplatz verfügbar%n GB freier Speicherplatz verfügbar + + + + (of %n GB needed) + (von benötigten %n GB)(von benötigten %n GB) + + + + MnemonicDialog + + + HD Wallet Setup + HD Wallet Erstellung + + + + MnemonicDialog1 + + + HD Wallet Setup + HD Wallet Erstellung + + + + Select the type of wallet to create. + Wählen Sie den Typ der zu erstellenden Wallet aus. + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + Eine neue Wallet-Datei wird erstellt, da am Speicherort der Raven-Blockchain keine wallet.dat gefunden wurde. + + + + Please choose what you would like to do: + Bitte wählen Sie aus, was Sie machen möchten: + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + Erstellen Sie eine neue Wallet mit einem neuen BIP39-konformen Satz von 12 Seed-Wörtern. + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + Wiedererstellen einer bestehenden Wallet unter Verwendung eines zuvor verwendeten BIP39-konformen Satzes +von 12 Seed-Wörtern, die Sie kennen sollten. + + + + Accept + Annehmen + + + + You are choosing to create a new wallet using new seed words. + Sie entscheiden sich dafür, eine neue Wallet mit neuen Seed-Wörtern zu erstellen. + + + + You are choosing to re-create an old wallet using seed words which you know. + Sie entscheiden sich dafür, ein altes Wallet wiederherzustellen, indem Sie die Ihnen bekannten Seed-Wörter verwenden. + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + Passphrase: + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + Warnung: + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + Bitte notieren Sie sich vor dem Akzeptieren Ihre 12 Seed-Wörter und die Passphrase. +Sie sind nicht wiederherstellbar! + + + + Accept + Annehmen + + + + Go Back + Zurück + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + Passphrase: + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + Warnung: + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Annehmen + + + + Go Back + Zurück + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formular + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Neueste Transaktionen werden eventuell noch nicht angezeigt, daher könnte Ihr Kontostand veraltet sein. Er wird korrigiert, sobald Ihre Wallet die Synchronisation mit dem Raven-Netzwerk erfolgreich abgeschlossen hat. Details dazu finden sich weiter unten. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Versuche, Ravens aus noch nicht angezeigten Transaktionen auszugeben, werden vom Netzwerk nicht akzeptiert. + + + + Number of blocks left + Anzahl verbleibender Blöcke + + + + + + Unknown... + Unbekannt... + + + + Last block time + Letzte Blockzeit + + + + Progress + Fortschritt + + + + Progress increase per hour + Fortschritt pro Stunde + + + + + calculating... + berechne... + + + + Estimated time left until synced + Abschätzung der verbleibenden Zeit bis synchronisiert + + + + Hide + Ausblenden + + + + Unknown. Syncing Headers (%1)... + Unbekannt. Synchronisiere Headers (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + Datum + + + + Type + Typ + + + + Address + Adresse + + + + Asset Name + Asset-Name + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + Andere + + + + watch-only + + + + + (no label) + (keine Bezeichnung) + + + + Date and time that the transaction was received. + Datum und Zeit als die Transaktion empfangen wurde. + + + + Type of transaction. + Art der Transaktion + + + + User-defined intent/purpose of the transaction. + Benutzerdefinierte Absicht bzw. Verwendungszweck der Transaktion + + + + The asset (or RVN) removed or added to balance. + Das Asset (oder RVN), das entfernt oder zum Bestand hinzugefügt wurde. + + + + OpenURIDialog + + + Open URI + URI öffnen + + + + Open payment request from URI or file + Zahlungsanforderung über URI oder aus Datei öffnen + + + + URI: + URI: + + + + Select payment request file + Zahlungsanforderungsdatei auswählen + + + + Select payment request file to open + Zu öffnende Zahlungsanforderungsdatei auswählen + + + + OptionsDialog + + + Options + Konfiguration + + + + &Main + &Allgemein + + + + Automatically start %1 after logging in to the system. + %1 nach der Anmeldung am System automatisch ausführen. + + + + &Start %1 on system login + &Starte %1 nach Systemanmeldung + + + + Size of &database cache + Größe des &Datenbankcaches + + + + MB + MB + + + + Number of script &verification threads + Anzahl an Skript-&Verifizierungs-Threads + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-Adresse des Proxies (z.B. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + Separaten SOCKS&5-Proxy verwenden, um Gegenstellen über versteckte Tor-Dienste zu erreichen: + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + &Icon verstecken + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimiert die Anwendung anstatt sie zu beenden wenn das Fenster geschlossen wird. Wenn dies aktiviert ist, müssen Sie die Anwendung über "Beenden" im Menü schließen. + + + + &Currency Unit: + &Währungseinheit: + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + Wählen Sie, in welcher Währung der Echtzeitwert von RVN angezeigt wird (z.B.: BTC/RVN). + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Externe URLs (z.B. ein Block-Explorer), die im Kontextmenü des Transaktionsverlaufs eingefügt werden. In der URL wird %s durch den Transaktionshash ersetzt. Bei Angabe mehrerer URLs müssen diese durch "|" voneinander getrennt werden. + + + + Active command-line options that override above options: + Aktive Kommandozeilenoptionen, die obige Konfiguration überschreiben: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + Konfigurationsdatei öffnen + + + + Reset all client options to default. + Setzt die Clientkonfiguration auf Standardwerte zurück. + + + + &Reset Options + Konfiguration &zurücksetzen + + + + &Network + &Netzwerk + + + + (0 = auto, <0 = leave that many cores free) + (0 = automatisch, <0 = so viele Kerne frei lassen) + + + + W&allet + W&allet + + + + Expert + Erweiterte Wallet-Optionen + + + + Enable coin &control features + "&Coin Control"-Funktionen aktivieren + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Wenn Sie das Ausgeben von unbestätigtem Wechselgeld deaktivieren, kann das Wechselgeld einer Transaktion nicht verwendet werden, bis es mindestens eine Bestätigung erhalten hat. Dies wirkt sich auf die Berechnung des Kontostands aus. + + + + &Spend unconfirmed change + &Unbestätigtes Wechselgeld darf ausgegeben werden + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatisch den Raven-Clientport auf dem Router öffnen. Dies funktioniert nur, wenn Ihr Router UPnP unterstützt und dies aktiviert ist. + + + + Map port using &UPnP + Portweiterleitung via &UPnP + + + + Accept connections from outside. + Eingehende Verbindungen zulassen. + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Über einen SOCKS5-Proxy mit dem Raven-Netzwerk verbinden. + + + + &Connect through SOCKS5 proxy (default proxy): + Über einen SOCKS5-Proxy &verbinden (Standardproxy): + + + + + Proxy &IP: + Proxy-&IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port des Proxies (z.B. 9050) + + + + Used for reaching peers via: + Benutzt um Gegenstellen zu erreichen über: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Über einen separaten SOCKS5 Proxy für Tor Services mit dem Raven Netzwerk verbinden. + + + + &Window + &Programmfenster + + + + Show only a tray icon after minimizing the window. + Nur ein Symbol im Infobereich anzeigen, nachdem das Programmfenster minimiert wurde. + + + + &Minimize to the tray instead of the taskbar + In den Infobereich anstatt in die Taskleiste &minimieren + + + + M&inimize on close + Beim Schließen m&inimieren + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + Anzei&ge + + + + User Interface &language: + &Sprache der Benutzeroberfläche: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Die Benutzeroberflächensprache kann hier festgelegt werden. Diese Einstellung wird nach einem Neustart von %1 wirksam werden. + + + + &Unit to show amounts in: + &Einheit der Beträge: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Wählen Sie die standardmäßige Untereinheit, die in der Benutzeroberfläche und beim Überweisen von Ravens angezeigt werden soll. + + + + Whether to show coin control features or not. + Legt fest, ob die "Coin Control"-Funktionen angezeigt werden. + + + + &Third party transaction URLs + &Externe Transaktions-URLs + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + A&bbrechen + + + + default + Standard + + + + none + keine + + + + Confirm options reset + Zurücksetzen der Konfiguration bestätigen + + + + + Client restart required to activate changes. + Clientneustart nötig, um die Änderungen zu aktivieren. + + + + Client will be shut down. Do you want to proceed? Client wird beendet. Möchten Sie den Vorgang fortsetzen? - This change would require a client restart. - Diese Änderung würde einen Clientneustart benötigen. + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + Die Konfigurationsdatei wird benutzt, um fortgeschrittene Optionen festzulegen, die die GUI-Optionen überschreiben. Zudem wird die Konfigurationsdatei durch jegliche Kommandozeilenoptionen überschrieben. + + + + Error + Fehler + + + + The configuration file could not be opened. + Die Konfigurationsdatei konnte nicht geöffnet werden. + + + + This change would require a client restart. + Diese Änderung würde einen Clientneustart benötigen. + + + + The supplied proxy address is invalid. + Die eingegebene Proxyadresse ist ungültig. + + + + OverviewPage + + + Form + Formular + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum Raven-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen. + + + + Watch-only: + Beobachtet: + + + + Available: + Verfügbar: + + + + Your current spendable balance + Ihr aktuell verfügbarer Kontostand + + + + Pending: + Ausstehend: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Betrag aus unbestätigten Transaktionen, der noch nicht im aktuell verfügbaren Kontostand enthalten ist + + + + Immature: + Unreif: + + + + Mined balance that has not yet matured + Erarbeiteter Betrag der noch nicht gereift ist + + + + Total: + Gesamtbetrag: + + + + Your current total balance + Aktueller Gesamtbetrag aus obigen Kategorien + + + + RVN Balances + RVN Kontostände + + + + Your current balance in watch-only addresses + Ihr aktueller Kontostand beobachteter Adressen + + + + Spendable: + Verfügbar: + + + + Asset Balances + Asset Kontostände + + + + Search + Suchen + + + + Recent transactions + Letzte Transaktionen + + + + Unconfirmed transactions to watch-only addresses + Unbestätigte Transaktionen von beobachteten Adressen + + + + Mined balance in watch-only addresses that has not yet matured + Erarbeiteter Betrag in beobachteten Adressen der noch nicht gereift ist + + + + Current total balance in watch-only addresses + Aktueller Gesamtbetrag in beobachteten Adressen aus obigen Kategorien + + + + Send Asset + Asset senden + + + + Copy Amount + Betrag kopieren + + + + Copy Name + + + + + Copy Hash + Hash kopieren + + + + Issue Sub Asset + Unter-Asset ausgeben + + + + Issue Unique Asset + Einzigartiges Asset ausgeben + + + + Reissue Asset + Asset erneut ausgeben + + + + Open IPFS in Browser + IPFS im Browser öffnen + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fehlerhafte Zahlungsanforderung + + + + Cannot start raven: click-to-pay handler + Kann Raven nicht starten: Klicken-zum-Bezahlen-Handler + + + + + + URI handling + URI-Verarbeitung + + + + Payment request fetch URL is invalid: %1 + Abruf-URL der Zahlungsanforderung ist ungültig: %1 + + + + Invalid payment address %1 + Ungültige Zahlungsadresse %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI kann nicht analysiert werden! Dies kann durch eine ungültige Raven-Adresse oder fehlerhafte URI-Parameter verursacht werden. + + + + Payment request file handling + Zahlungsanforderungsdatei-Verarbeitung + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Zahlungsanforderungsdatei kann nicht gelesen werden! Dies kann durch eine ungültige Zahlungsanforderungsdatei verursacht werden. + + + + + + + + + Payment request rejected + Zahlungsanforderung abgelehnt + + + + Payment request network doesn't match client network. + Netzwerk der Zahlungsanforderung stimmt nicht mit dem Client-Netzwerk überein. + + + + Payment request expired. + Zahlungsanforderung abgelaufen. + + + + Payment request is not initialized. + Zahlungsanforderung ist nicht initialisiert. + + + + Unverified payment requests to custom payment scripts are unsupported. + Unverifizierte Zahlungsanforderungen an benutzerdefinierte Zahlungsskripte werden nicht unterstützt. + + + + + Invalid payment request. + Ungültige Zahlungsanforderung. + + + + Requested payment amount of %1 is too small (considered dust). + Der angeforderte Zahlungsbetrag in Höhe von 1% ist zu niedrig und wurde als "Staub" eingestuft. + + + + Refund from %1 + Rücküberweisung von %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Zahlungsanforderung %1 ist zu groß (%2 Byte, erlaubt sind %3 Byte). + + + + Error communicating with %1: %2 + Kommunikationsfehler mit %1: %2 + + + + Payment request cannot be parsed! + Zahlungsanforderung kann nicht verarbeitet werden! + + + + Bad response from server %1 + Fehlerhafte Antwort vom Server: %1 + + + + Network request error + Fehlerhafte Netzwerkanfrage + + + + Payment acknowledged + Zahlung bestätigt + + + + PeerTableModel + + + User Agent + User-Agent + + + + Node/Service + Knoten/Dienst + + + + NodeId + Knoten Identität + + + + Ping + Ping + + + + Sent + + + + + Received + Empfangen + + + + QObject + + + Amount + Betrag + + + + Enter a Raven address (e.g. %1) + Raven-Adresse eingeben (z.B. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Keine + + + + N/A + k.A. + + + + %1 ms + %1 ms + + + + %n second(s) + %n Sekunden%n Sekunden + + + + %n minute(s) + %n Minuten%n Minuten + + + + %n hour(s) + %n Stunden%n Stunden + + + + %n day(s) + %n Tage%n Tage + + + + + %n week(s) + %n Wochen%n Wochen + + + + %1 and %2 + %1 und %2 + + + + %n year(s) + %n Jahre%n Jahre + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 didn't yet exit safely... + %1 wurde noch nicht sicher beendet... + + + + unknown + unbekannt + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Fehler: Angegebenes Datenverzeichnis "%1" existiert nicht. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fehler: Konfigurationsdatei kann nicht analysiert werden: %1. Bitte nur "Schlüssel=Wert"-Syntax verwenden. + + + + Error: %1 + Fehler: %1 + + + + QRImageWidget + + + &Save Image... + Grafik &speichern... + + + + &Copy Image + Grafik &kopieren + + + + Save QR Code + QR-Code speichern + + + + PNG Image (*.png) + PNG-Grafik (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + k.A. + + + + Client version + Clientversion + + + + &Information + Hinweis + + + + Debug window + Debugfenster + + + + General + Allgemein + + + + Using BerkeleyDB version + Verwendete BerkeleyDB-Version + + + + Datadir + Datenverzeichnis + + + + Startup time + Startzeit + + + + Network + Netzwerk + + + + Name + Name + + + + Number of connections + Anzahl der Verbindungen + + + + Block chain + Blockchain + + + + Current number of blocks + Aktuelle Anzahl der Blöcke + + + + Memory Pool + Speicherpool + + + + Current number of transactions + Aktuelle Anzahl der Transaktionen + + + + Memory usage + Speichernutzung + + + + &Reset + &Zurücksetzen + + + + + Received + Empfangen + + + + + Sent + Übertragen + + + + &Peers + &Peers + + + + Banned peers + Gesperrte Peers + + + + + + Select a peer to view detailed information. + Peer auswählen, um detaillierte Informationen zu erhalten. + + + + Whitelisted + Zugelassene + + + + Direction + Richtung + + + + Version + Version + + + + Starting Block + Start-Block + + + + Synced Headers + Synchronisierte Header + + + + Synced Blocks + Synchronisierte Blöcke + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + Die Schaltflächen starten die Wallet mit Kommandozeilenparametern neu, um fehlende Transaktionen oder beschädigte Blockchain-Dateien wiederherzustellen. + + + + Wallet Path + Wallet-Pfad + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + -rescan: Blockchaindateien auf der Festplatte erneut nach fehlenden Transaktionen durchsuchen. (Kurzzeitverfahren) + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + -zapwallettxes=1: Alle Wallet-Transaktionen löschen und diese durch einen erneuten Scan wiederherstellen. (Behält Metadaten) + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + Wiederherstellen des Blockchain-Zustands und Block-Index aus den blk00*.dat Dateien auf der Festplatte. (Langzeitverfahren) + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User-Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Öffnet die %1-Debugprotokolldatei aus dem aktuellen Datenverzeichnis. Dies kann bei großen Protokolldateien einige Sekunden dauern. + + + + Decrease font size + Schrift verkleinern + + + + Increase font size + Schrift vergrößern + + + + Services + Dienste + + + + Ban Score + Sperrpunktzahl + + + + Connection Time + Verbindungsdauer + + + + Last Send + Letzte Übertragung + + + + Last Receive + Letzter Empfang + + + + Ping Time + Pingzeit + + + + The duration of a currently outstanding ping. + Die Laufzeit eines aktuell ausstehenden Ping. + + + + Ping Wait + Ping Wartezeit + + + + Min Ping + Minimaler Ping + + + + Time Offset + Zeitversatz + + + + Last block time + Letzte Blockzeit + + + + &Open + &Öffnen + + + + &Console + &Konsole + + + + &Network Traffic + &Netzwerkauslastung + + + + Totals + Gesamtbetrag: + + + + In: + Eingehend: + + + + Out: + Ausgehend: + + + + Debug log file + Debugprotokolldatei + + + + Clear console + Konsole zurücksetzen + + + + 1 &hour + 1 &Stunde + + + + 1 &day + 1 &Tag + + + + 1 &week + 1 &Woche + + + + 1 &year + 1 &Jahr + + + + &Disconnect + &Trennen + + + + + + + Ban for + Banne für + + + + &Unban + &Node entsperren + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Willkommen in der %1 RPC Konsole. + + + + Type <b>help</b> for an overview of available commands. + Bitte <b>help</b> eingeben, um eine Übersicht verfügbarer Befehle zu erhalten. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + WARNUNG: Betrüger versuchen, mit der Eingabe von Kommandos, die Wallet-Inhalte anderer Benutzer zu stehlen. Benutzen Sie diese Konsole nur, wenn Sie die Auswirkungen eines Kommandos vollständig verstehen. + + + + Network activity disabled + Netzwerkaktivität deaktiviert + + + + (node id: %1) + (Knotenkennung: %1) + + + + via %1 + über %1 + + + + + never + nie + + + + Inbound + Eingehend + + + + Outbound + Ausgehend + + + + Yes + Ja + + + + No + Nein + + + + + Unknown + Unbekannt + + + + RavenGUI + + + Sign &message... + Nachricht s&ignieren... + + + + Synchronizing with network... + Synchronisiere mit Netzwerk... + + + + &Overview + &Übersicht + + + + Node + Knoten + + + + Show general overview of wallet + Allgemeine Wallet-Übersicht anzeigen + + + + &Transactions + &Transaktionen + + + + Browse transaction history + Transaktionsverlauf durchsehen + + + + &Create Assets + &Assets erstellen + + + + + Create new main/sub/unique assets + Neue Haupt-/Unter-/Einzel-Assets erstellen + + + + &Transfer Assets + &Assets verschicken + + + + + Transfer assets to RVN addresses + Assets an RVN Adressen verschicken + + + + &Manage Assets + &Assets verwalten + + + + Manage assets you are the administrator of + Verwalten von Assets, für die Sie der Administrator sind + + + + &Messaging + + + + + + Coming Soon + Bald verfügbar + + + + &Voting + + + + + &Restricted Assets + Eingesch&ränkte Assets + + + + + Manage restricted assets + Verwalten von eingeschränkten Assets + + + + E&xit + &Beenden + + + + Quit application + Anwendung beenden + + + + &About %1 + Über %1 + + + + Show information about %1 + Informationen über %1 anzeigen + + + + About &Qt + Über &Qt + + + + Show information about Qt + Informationen über Qt anzeigen + + + + &Options... + &Konfiguration... + + + + Modify configuration options for %1 + Konfiguration von %1 bearbeiten + + + + &Encrypt Wallet... + Wallet &verschlüsseln... + + + + &Backup Wallet... + Wallet &sichern... + + + + &Change Passphrase... + Passphrase &ändern... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Zahlungsadressen... + + + + &Receiving addresses... + &Empfangsadressen... + + + + Open &URI... + &URI öffnen... + + + + &Wallet + &Wallet + + + + Ravencoin Market Price + Ravencoin Marktpreis + + + + Brought to you by binance.com + Zur Verfügung gestellt von binance.com + + + + Click to disable network activity. + Klicken zum Deaktivieren der Netzwerkaktivität. + + + + Network activity disabled. + Netzwerkaktivität deaktiviert. + + + + Click to enable network activity again. + Klicken zum Aktivieren der Netzwerkaktivität. + + + + Syncing Headers (%1%)... + Header werden synchronisiert (%1%)... + + + + Reindexing blocks on disk... + Reindiziere Blöcke auf Datenträger... + + + + Send coins to a Raven address + Ravens an eine Raven-Adresse überweisen + + + + Backup wallet to another location + Eine Wallet-Sicherungskopie erstellen und abspeichern + + + + Change the passphrase used for wallet encryption + Ändert die Passphrase, die für die Wallet-Verschlüsselung benutzt wird + + + + Open debugging and diagnostic console + Debugging- und Diagnosekonsole öffnen + + + + &Verify message... + Nachricht &verifizieren... + + + + Raven + Raven + + + + Wallet + Wallet + + + + &Send + &Überweisen + + + + &Receive + &Empfangen + + + + &Show / Hide + &Anzeigen / Verstecken + + + + Show or hide the main Window + Das Hauptfenster anzeigen oder verstecken + + + + Encrypt the private keys that belong to your wallet + Verschlüsselt die zu Ihrer Wallet gehörenden privaten Schlüssel + + + + Sign messages with your Raven addresses to prove you own them + Nachrichten signieren, um den Besitz Ihrer Raven-Adressen zu beweisen + + + + Verify messages to ensure they were signed with specified Raven addresses + Nachrichten verifizieren, um sicherzustellen, dass diese mit den angegebenen Raven-Adressen signiert wurden + + + + &File + &Datei + + + + &Help + &Hilfe + + + + Request payments (generates QR codes and raven: URIs) + Zahlungen anfordern (erzeugt QR-Codes und "raven:"-URIs) + + + + Show the list of used sending addresses and labels + Liste verwendeter Zahlungsadressen und Bezeichnungen anzeigen + + + + Show the list of used receiving addresses and labels + Liste verwendeter Empfangsadressen und Bezeichnungen anzeigen + + + + Open a raven: URI or payment request + Eine "raven:"-URI oder Zahlungsanforderung öffnen + + + + &Command-line options + &Kommandozeilenoptionen + + + + %n active connection(s) to Raven network + %n aktive Verbindungen zum Raven-Netzwerk%n aktive Verbindungen zum Raven-Netzwerk + + + + Indexing blocks on disk... + Indiziere Blöcke auf Datenträger... + + + + Processing blocks on disk... + Verarbeite Blöcke auf Datenträger... + + + + Processed %n block(s) of transaction history. + %n Blöcke des Transaktionsverlaufs verarbeitet.%n Blöcke des Transaktionsverlaufs verarbeitet. + + + + %1 behind + %1 im Rückstand + + + + Last received block was generated %1 ago. + Der letzte empfangene Block ist %1 alt. + + + + Transactions after this will not yet be visible. + Transaktionen hiernach werden noch nicht angezeigt. + + + + Error + Fehler + + + + Warning + Warnung + + + + Information + Hinweis + + + + Up to date + Auf aktuellem Stand + + + + Show the %1 help message to get a list with possible Raven command-line options + Zeige den "%1"-Hilfetext, um eine Liste mit möglichen Kommandozeilenoptionen zu erhalten - The supplied proxy address is invalid. - Die eingegebene Proxyadresse ist ungültig. + + %1 client + %1 Client + + + + Connecting to peers... + Verbinde mit Netzwerk... + + + + Catching up... + Hole auf... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Betrag: %1 + + + + + Type: %1 + + Typ: %1 + + + + + Label: %1 + + Bezeichnung: %1 + + + + + Address: %1 + + Adresse: %1 + + + + + Sent transaction + Gesendete Transaktion + + + + Incoming transaction + Eingehende Transaktion + + + + + Assets not yet active + Assets noch nicht aktiv + + + + Restricted Assets not yet active + Eingeschränkte Assets noch nicht aktiv + + + + HD key generation is <b>enabled</b> + HD Schlüssel Generierung ist <b>aktiviert</b> + + + + HD key generation is <b>disabled</b> + HD Schlüssel Generierung ist <b>deaktiviert</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>entsperrt</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet ist <b>verschlüsselt</b> und aktuell <b>gesperrt</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ein schwerer Fehler ist aufgetreten. Raven kann nicht stabil weiter ausgeführt werden und wird beendet. - OverviewPage + ReceiveCoinsDialog - Form - Formular + + &Amount: + &Betrag: - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Die angezeigten Informationen sind möglicherweise nicht mehr aktuell. Ihre Wallet wird automatisch synchronisiert, nachdem eine Verbindung zum Raven-Netzwerk hergestellt wurde. Dieser Prozess ist jedoch derzeit noch nicht abgeschlossen. + + &Label: + &Bezeichnung: - Watch-only: - Beobachtet: + + &Message: + &Nachricht: - Available: - Verfügbar: + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Eine der bereits verwendeten Empfangsadressen wiederverwenden. Adressen wiederzuverwenden birgt Sicherheits- und Datenschutzrisiken. Außer zum Neuerstellen einer bereits erzeugten Zahlungsanforderung sollten Sie dies nicht nutzen. - Your current spendable balance - Ihr aktuell verfügbarer Kontostand + + R&euse an existing receiving address (not recommended) + Vorhandene Empfangsadresse &wiederverwenden (nicht empfohlen) - Pending: - Ausstehend: + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Raven-Netzwerk gesendet. - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Betrag aus unbestätigten Transaktionen, der noch nicht im aktuell verfügbaren Kontostand enthalten ist + + + An optional label to associate with the new receiving address. + Eine optionale Bezeichnung, die der neuen Empfangsadresse zugeordnet wird. - Immature: - Unreif: + + Use this form to request payments. All fields are <b>optional</b>. + Verwenden Sie dieses Formular, um Zahlungen anzufordern. Alle Felder sind <b>optional</b>. - Mined balance that has not yet matured - Erarbeiteter Betrag der noch nicht gereift ist + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Ein optional angeforderter Betrag. Lassen Sie dieses Feld leer oder setzen Sie es auf 0, um keinen spezifischen Betrag anzufordern. - Balances - Kontostände + + Clear all fields of the form. + Alle Formularfelder zurücksetzen. - Total: - Gesamtbetrag: + + Clear + Zurücksetzen - Your current total balance - Aktueller Gesamtbetrag aus obigen Kategorien + + Requested payments history + Verlauf der angeforderten Zahlungen - Your current balance in watch-only addresses - Ihr aktueller Kontostand beobachteter Adressen + + &Request payment + &Zahlung anfordern - Spendable: - Verfügbar: + + Show the selected request (does the same as double clicking an entry) + Ausgewählte Zahlungsanforderungen anzeigen (entspricht einem Doppelklick auf einen Eintrag) - Recent transactions - Letzte Transaktionen + + Show + Anzeigen - Unconfirmed transactions to watch-only addresses - Unbestätigte Transaktionen von beobachteten Adressen + + Remove the selected entries from the list + Ausgewählte Einträge aus der Liste entfernen - Mined balance in watch-only addresses that has not yet matured - Erarbeiteter Betrag in beobachteten Adressen der noch nicht gereift ist + + Remove + Entfernen - Current total balance in watch-only addresses - Aktueller Gesamtbetrag in beobachteten Adressen aus obigen Kategorien + + Copy URI + &URI kopieren + + + + Copy label + Bezeichnung kopieren + + + + Copy message + Nachricht kopieren + + + + Copy amount + Betrag kopieren - PaymentServer + ReceiveRequestDialog - Payment request error - Fehlerhafte Zahlungsanforderung + + QR Code + QR-Code - Cannot start raven: click-to-pay handler - Kann Raven nicht starten: Klicken-zum-Bezahlen-Handler + + Copy &URI + &URI kopieren - URI handling - URI-Verarbeitung + + Copy &Address + &Adresse kopieren - Payment request fetch URL is invalid: %1 - Abruf-URL der Zahlungsanforderung ist ungültig: %1 + + &Save Image... + Grafik &speichern... - Invalid payment address %1 - Ungültige Zahlungsadresse %1 + + Request payment to %1 + Zahlung anfordern an %1 - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI kann nicht analysiert werden! Dies kann durch eine ungültige Raven-Adresse oder fehlerhafte URI-Parameter verursacht werden. + + Payment information + Zahlungsinformationen - Payment request file handling - Zahlungsanforderungsdatei-Verarbeitung + + URI + URI - Payment request file cannot be read! This can be caused by an invalid payment request file. - Zahlungsanforderungsdatei kann nicht gelesen werden! Dies kann durch eine ungültige Zahlungsanforderungsdatei verursacht werden. + + Address + Adresse - Payment request rejected - Zahlungsanforderung abgelehnt + + Amount + Betrag - Payment request network doesn't match client network. - Netzwerk der Zahlungsanforderung stimmt nicht mit dem Client-Netzwerk überein. + + Label + Bezeichnung - Payment request expired. - Zahlungsanforderung abgelaufen. + + Message + Nachricht - Payment request is not initialized. - Zahlungsanforderung ist nicht initialisiert. + + Resulting URI too long, try to reduce the text for label / message. + Resultierende URI ist zu lang, bitte den Text für Bezeichnung/Nachricht kürzen. - Unverified payment requests to custom payment scripts are unsupported. - Unverifizierte Zahlungsanforderungen an benutzerdefinierte Zahlungsskripte werden nicht unterstützt. + + Error encoding URI into QR Code. + Beim Enkodieren der URI in den QR-Code ist ein Fehler aufgetreten. + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Bezeichnung + + + + Message + Nachricht + + + + (no label) + (keine Bezeichnung) + + + + (no message) + (keine Nachricht) + + + + (no amount requested) + (kein Betrag angefordert) + + + + Requested + Angefordert + + + + ReissueAssetDialog + + + Coin Control Features + "Coin Control"-Funktionen + + + + Inputs... + Eingaben... - Invalid payment request. - Ungültige Zahlungsanforderung. + + automatically selected + automatisch ausgewählt - Requested payment amount of %1 is too small (considered dust). - Angeforderter Zahlungsbetrag in Höhe von %1 ist zu niedrig und wurde als "Staub" eingestuft. + + Insufficient funds! + Unzureichender Kontostand! - Refund from %1 - Rücküberweisung von %1 + + + Quantity: + Anzahl: - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Zahlungsanforderung %1 ist zu groß (%2 Byte, erlaubt sind %3 Byte). + + Bytes: + Bytes: - Error communicating with %1: %2 - Kommunikationsfehler mit %1: %2 + + Amount: + Betrag: - Payment request cannot be parsed! - Zahlungsanforderung kann nicht verarbeitet werden! + + Dust: + - Bad response from server %1 - Fehlerhafte Antwort vom Server: %1 + + Fee: + Gebühr: - Network request error - Fehlerhafte Netzwerkanfrage + + After Fee: + Abzgl. Gebühr: - Payment acknowledged - Zahlung bestätigt + + Change: + Wechselgeld: - - - PeerTableModel - User Agent - User-Agent + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Wenn dies aktiviert ist, aber die Wechselgeldadresse leer oder ungültig ist, wird das Wechselgeld an eine neu generierte Adresse gesendet. - Node/Service - Knoten/Dienst + + Custom change address + Benutzerdefinierte Wechselgeld-Adresse - NodeId - Knoten Identität + + + Reissue Asset + Asset erneut ausgeben - Ping - Ping + + Select an asset to reissue: + Wählen Sie ein Asset aus, das Sie neu ausgeben möchten: - - - QObject - Amount - Betrag + + Address: + Adresse: - Enter a Raven address (e.g. %1) - Raven-Adresse eingeben (z.B. %1) + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + Die RVN-Adresse, die dieses Asset halten wird (Sie müssen diese Adresse besitzen). Das Feld leer lassen, um eine neue Adresse zu erstellen. - %1 d - %1 d + + Verifier String: + Verifier String: - %1 h - %1 h + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 m - %1 m + + Warning: + Warnung: - %1 s - %1 s + + The number of assets that will be created + Die Anzahl der Assets, die erstellt werden - None - Keine + + Unit: + - N/A - k.A. + + e.g. 1.00000000 + z.B. 1.00000000 - %1 ms - %1 ms + + If the owner of this asset will be able to issue more assets in the future + Ob der Eigentümer dieses Assets in der Zukunft weitere Assets ausgeben kann - - %n second(s) - %n Sekunde%n Sekunden + + + Reissuable + - - %n minute(s) - %n Minute%n Minuten + + + Change IPFS/Txid Hash + IPFS/Txid Hash ändern - - %n hour(s) - %n Stunde%n Stunden + + + The ipfs/txid hash that contains information about the asset + Der IPFS/Txid Hash, der Informationen über das Asset enthält - - %n day(s) - %n Tag%n Tage + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + Der IPFS/Txid Hash, der mit dem Asset verbunden ist (z.B. QmU4h365LYMHx...) - - %n week(s) - %n Woche%n Wochen + + + ERROR TEXT + FEHLER TEXT - %1 and %2 - %1 und %2 + + Current Asset Settings + Aktuelle Asset-Einstellungen - %1 didn't yet exit safely... - %1 wurde noch nicht sicher beendet... + + Updated Asset Settings + Aktualisierte Asset-Einstellungen - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Fehler: Angegebenes Datenverzeichnis "%1" existiert nicht. + + Transaction Fee: + Transaktionsgebühr: - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Fehler: Konfigurationsdatei kann nicht analysiert werden: %1. Bitte nur "Schlüssel=Wert"-Syntax verwenden. + + Choose... + Auswählen... - Error: %1 - Fehler: %1 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Die Verwendung der Fallbackfee kann dazu führen, dass eine Transaktion gesendet wird, die mehrere Stunden oder Tage (oder nie) zur Bestätigung benötigt. Überlegen Sie sich, ob Sie Ihre Gebühr manuell wählen oder warten Sie, bis Sie die gesamte Blockchain validiert haben. - - - QRImageWidget - &Save Image... - Grafik &speichern... + + Warning: Fee estimation is currently not possible. + Warnung: Gebührenschätzung im Moment nicht möglich. - &Copy Image - Grafik &kopieren + + collapse fee-settings + Transaktionsgebühreneinstellungen ausblenden - Save QR Code - QR-Code speichern + + Hide + Ausblenden - PNG Image (*.png) - PNG-Grafik (*.png) + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Wenn die benutzerdefinierte Gebühr 1000 Satoshis beträgt und die Transaktion nur 250 Byte groß ist, wird bei Auswahl von "pro Kilobyte" eine Gebühr in Höhe von 250 Satoshis, bei Auswahl von "Mindestbetrag" eine Gebühr in Höhe von 1000 Satoshis bezahlt. Bei Transaktionen die größer als ein Kilobyte sind, werden bei beiden Optionen die Gebühren pro Kilobyte bezahlt. - - - RPCConsole - N/A - k.A. + + per kilobyte + pro Kilobyte - Client version - Clientversion + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Raven-Transaktionen besteht als das Netzwerk verarbeiten kann. - &Information - Hinweis + + (read the tooltip) + - Debug window - Debugfenster + + Recommended: + Empfohlen: - General - Allgemein + + Cus&tom: + - Using BerkeleyDB version - Verwendete BerkeleyDB-Version + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Datadir - Datenverzeichnis + + Confirmation time target: + Gewünschte Bestätigungszeit: - Startup time - Startzeit + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Deutet an, dass der Absender diese Transaktion durch eine neue Transaktion mit höheren Gebühren ersetzen will (bevor diese bestätigt wird). - Network - Netzwerk + + Request Replace-By-Fee + Replace-By-Fee anfordern - Name - Name + + Clear + Zurücksetzen - Number of connections - Anzahl der Verbindungen + + Balance: + Kontostand: - Blockchain - Blockchain + + 123.456 RVN + 123,456 RVN - Current number of blocks - Aktuelle Anzahl der Blöcke + + Copy quantity + Anzahl kopieren - Memory Pool - Speicherpool + + Copy amount + Betrag kopieren - Current number of transactions - Aktuelle Anzahl der Transaktionen + + Copy fee + Gebühr kopieren - Memory usage - Speichernutzung + + Copy after fee + Abzüglich Gebühr kopieren - Received - Empfangen + + Copy bytes + Bytes kopieren - Sent - Übertragen + + Copy dust + - &Peers - &Peers + + Copy change + Wechselgeld kopieren - Banned peers - Gesperrte Peers + + Select an asset to reissue.. + Wählen Sie ein Asset aus, das Sie neu ausgeben möchten. - Select a peer to view detailed information. - Peer auswählen, um detaillierte Informationen zu erhalten. + + Select the asset you want to reissue. + Wählen Sie das Asset aus, das Sie erneut ausgeben möchten. - Whitelisted - Zugelassene + + %1 (%2 blocks) + - Direction - Richtung + + Cost + - Version - Version + + Asset data couldn't be found + Asset-Daten konnten nicht gefunden werden - Starting Block - Start-Block + + Quantity is to large. Max is 21,000,000,000 + Anzahl zu groß. Maximal 21.000.000.000 - Synced Headers - Synchronisierte Header + + Invalid Raven Destination Address + Ungültige Raven-Zieladresse - Synced Blocks - Synchronisierte Blöcke + + Warning: Restricted Assets Issuance requires an address + Warnung: Die Ausgabe eingeschränkter Assets erfordert eine Adresse - User Agent - User-Agent + + + Warning: Invalid Raven address + Warnung: Ungültige Raven-Adresse - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Öffnet die %1-Debugprotokolldatei aus dem aktuellen Datenverzeichnis. Dies kann bei großen Protokolldateien einige Sekunden dauern. + + + Yes + Ja - Decrease font size - Schrift verkleinern + + No + Nein - Increase font size - Schrift vergrößern + + + Name + Name - Services - Dienste + + + Total Quantity + - Ban Score - Sperrpunktzahl + + + Units + - Connection Time - Verbindungsdauer + + + Can Reisssue + - Last Send - Letzte Übertragung + + + + IPFS Hash + IPFS Hash - Last Receive - Letzter Empfang + + + + Txid Hash + Txid Hash - Ping Time - Pingzeit + + Verifier String + - The duration of a currently outstanding ping. - Die Laufzeit eines aktuell ausstehenden Ping. + + + Current Verifier String + - Ping Wait - Ping Wartezeit + + Please select a asset from the menu to display the assets current settings + Wählen Sie ein Asset aus dem Menü, um die aktuellen Asset-Einstellungen anzuzeigen - Min Ping - Minimaler Ping + + Please select a asset from the menu to display the assets updated settings + Wählen Sie ein Asset aus dem Menü, um die aktualisierten Asset-Einstellungen anzuzeigen - Time Offset - Zeitversatz + + Current Quantity + - Last block time - Letzte Blockzeit + + Current Units + - &Open - &Öffnen + + Can Reissue + - &Console - &Konsole + + Unknown data hash type + - &Network Traffic - &Netzwerkauslastung + + Only IPFS Hashes allowed until RIP5 is activated + - &Clear - &Zurücksetzen + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Totals - Gesamtbetrag: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - In: - Eingehend: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + Der IPFS/Txid Hash ist nicht gültig. Bitte benutzen Sie einen gültigen IPFS/Txid Hash. - Out: - Ausgehend: + + + %1 to %2 + - Debug log file - Debugprotokolldatei + + Are you sure you want to send? + - Clear console - Konsole zurücksetzen + + added as transaction fee + - 1 &hour - 1 &Stunde + + Total Amount %1 + Gesamtbetrag 1% - 1 &day - 1 &Tag + + or + - 1 &week - 1 &Woche + + Confirm reissue assets + Bestätigen Sie die erneute Ausgabe von Assets - 1 &year - 1 &Jahr + + Copy + - &Disconnect - &Trennen + + Transaction ID Copied + Transaktions-ID kopiert - Ban for - Banne für + + Asset transaction sent to network: + Asset-Transaktion an das Netzwerk gesendet: - - &Unban - &Node entsperren + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Willkommen in der %1 RPC Konsole. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Pfeiltaste hoch und runter, um den Verlauf durchzublättern und <b>Strg-L</b>, um die Konsole zurückzusetzen. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Bitte <b>help</b> eingeben, um eine Übersicht verfügbarer Befehle zu erhalten. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - WARNUNG: Betrüger versuchen aktiv Nutzer dazu zu bringen Kommandos hier auszuführen um die Wallet Inhalte zu stehlen. Diese Konsole sollte nicht benutzt werden ausser man kennt die möglichen Folgen des Kommandos. + + (no label) + - Network activity disabled - Netzwerkaktivität deaktiviert + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + Asset-Kontostände - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + Adressliste - (node id: %1) - (Knotenkennung: %1) + + Balance: + Kontostand: - via %1 - über %1 + + + Failed to create a change address + Fehler beim Erstellen einer Wechselgeld-Adresse - never - nie + + Failed to generate the correct transaction. Please try again + Fehler beim Generieren der richtigen Transaktion. Bitte versuchen Sie es erneut. - Inbound - Eingehend + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Ausgehend + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Ja + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Nein + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Unbekannt + + + added as transaction fee + als Transaktionsgebühr hinzugefügt - - - ReceiveCoinsDialog - &Amount: - &Betrag: + + + Total Amount %1 + Gesamtbetrag %1 - &Label: - &Bezeichnung: + + + or + oder - &Message: - &Nachricht: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Eine der bereits verwendeten Empfangsadressen wiederverwenden. Adressen wiederzuverwenden birgt Sicherheits- und Datenschutzrisiken. Außer zum Neuerstellen einer bereits erzeugten Zahlungsanforderung sollten Sie dies nicht nutzen. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - Vorhandene Empfangsadresse &wiederverwenden (nicht empfohlen) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Eine optionale Nachricht, die an die Zahlungsanforderung angehängt wird. Sie wird angezeigt, wenn die Anforderung geöffnet wird. Hinweis: Diese Nachricht wird nicht mit der Zahlung über das Raven-Netzwerk gesendet. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Eine optionale Bezeichnung, die der neuen Empfangsadresse zugeordnet wird. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Verwenden Sie dieses Formular, um Zahlungen anzufordern. Alle Felder sind <b>optional</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Ein optional angeforderter Betrag. Lassen Sie dieses Feld leer oder setzen Sie es auf 0, um keinen spezifischen Betrag anzufordern. + + This is an asset payment + Dies ist eine Asset-Zahlung - Clear all fields of the form. - Alle Formularfelder zurücksetzen. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Eine an die "raven:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Raven-Netzwerk gesendet. - Clear - Zurücksetzen + + + + Memo: + Memo: - Requested payments history - Verlauf der angeforderten Zahlungen + + Amount: + Betrag: - &Request payment - &Zahlung anfordern + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Ausgewählte Zahlungsanforderungen anzeigen (entspricht einem Doppelklick auf einen Eintrag) + + &Label: + - Show - Anzeigen + + Asset: + Asset: - Remove the selected entries from the list - Ausgewählte Einträge aus der Liste entfernen + + The Raven address to send the payment to + - Remove - Entfernen + + Choose previously used address + Bereits verwendete Adresse auswählen - Copy URI - &URI kopieren + + Alt+A + Alt+A - Copy label - Bezeichnung kopieren + + Paste address from clipboard + Adresse aus der Zwischenablage einfügen - Copy message - Nachricht kopieren + + Alt+P + Alt+P - Copy amount - Betrag kopieren + + + + Remove this entry + Diesen Eintrag entfernen - - - ReceiveRequestDialog - QR Code - QR-Code + + Message: + Nachricht: - Copy &URI - &URI kopieren + + Transfer &To: + - Copy &Address - &Adresse kopieren + + Transfer Administrator Asset + Administrator Asset übertragen - &Save Image... - Grafik &speichern... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Zahlung anfordern an %1 + + This is an unauthenticated payment request. + - Payment information - Zahlungsinformationen + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adresse + + This is an authenticated payment request. + - Amount - Betrag + + Enter a label for this address to add it to your address book + - Label - Bezeichnung + + Select to view administrator assets to transfer + - Message - Nachricht + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Resultierende URI ist zu lang, bitte den Text für Bezeichnung/Nachricht kürzen. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Beim Enkodieren der URI in den QR-Code ist ein Fehler aufgetreten. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Datum + + Failed to get asset metadata for: + - Label - Bezeichnung + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Nachricht + + Failed to get asset outpoints from database + - (no label) - (keine Bezeichnung) + + Selected Balance + - (no message) - (keine Nachricht) + + Wallet Balance + - (no amount requested) - (kein Betrag angefordert) + + Select an administrator asset to transfer + - Requested - Angefordert + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Ravens überweisen + Coin Control Features - "Coin Control"-Funktionen + "Coin Control"-Funktionen + Inputs... Eingaben... + automatically selected automatisch ausgewählt + Insufficient funds! Unzureichender Kontostand! + Quantity: Anzahl: + Bytes: Byte: + Amount: Betrag: + Fee: Gebühr: + After Fee: Abzüglich Gebühr: + Change: Wechselgeld: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Wenn dies aktivert, und die Wechselgeld-Adresse leer oder ungültig ist, wird das Wechselgeld einer neu erzeugten Adresse gutgeschrieben. + Custom change address Benutzerdefinierte Wechselgeld-Adresse + Transaction Fee: Transaktionsgebühr: + Choose... Auswählen... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Transaktionsgebühreneinstellungen ausblenden + per kilobyte pro Kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Wenn die benutzerdefinierte Gebühr 1000 Satoshis beträgt und die Transaktion nur 250 Byte groß ist, wird bei Auswahl von "pro Kilobyte" eine Gebühr in Höhe von 250 Satoshis, bei Auswahl von "Mindestbetrag" eine Gebühr in Höhe von 1000 Satoshis bezahlt. Bei Transaktionen die größer als ein Kilobyte sind, werden bei beiden Optionen die Gebühren pro Kilobyte bezahlt. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Wenn die benutzerdefinierte Gebühr 1000 Satoshis beträgt und die Transaktion nur 250 Byte groß ist, wird bei Auswahl von "pro Kilobyte" eine Gebühr in Höhe von 250 Satoshis, bei Auswahl von "Mindestbetrag" eine Gebühr in Höhe von 1000 Satoshis bezahlt. Bei Transaktionen die größer als ein Kilobyte sind, werden bei beiden Optionen die Gebühren pro Kilobyte bezahlt. + Hide Ausblenden - total at least - Mindestbetrag - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Nur die minimale Gebühr zu bezahlen ist so lange in Ordnung, wie weniger Transaktionsvolumen als Platz in den Blöcken vorhanden ist. Aber Vorsicht, diese Option kann dazu führen, dass Transaktionen nicht bestätigt werden, wenn mehr Bedarf an Raven-Transaktionen besteht als das Netzwerk verarbeiten kann. + (read the tooltip) (den Hinweistext lesen) + Recommended: Empfehlungen: + Custom: Benutzerdefiniert: + (Smart fee not initialized yet. This usually takes a few blocks...) (Intelligente Gebührenlogik ist noch nicht verfügbar. Normalerweise dauert dies einige Blöcke lang...) - normal - normal + + Request Replace-By-Fee + Replace-By-Fee anfordern - fast - schnell + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once An mehrere Empfänger auf einmal überweisen + Add &Recipient Empfänger &hinzufügen + Clear all fields of the form. Alle Formularfelder zurücksetzen. + Dust: - "Dust": + "Dust": + Confirmation time target: Gewünschte Bestätigungszeit: + Clear &All Alles &zurücksetzen + Balance: Kontostand: + Confirm the send action Überweisung bestätigen + S&end &Überweisen + Copy quantity Anzahl kopieren + Copy amount Betrag kopieren + Copy fee Gebühr kopieren + Copy after fee Abzüglich Gebühr kopieren + Copy bytes Byte kopieren + Copy dust - "Staub" kopieren + "Staub" kopieren + Copy change Wechselgeld kopieren + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 an %2 + Are you sure you want to send? Wollen Sie die Überweisung ausführen? + added as transaction fee als Transaktionsgebühr hinzugefügt + Total Amount %1 Gesamtbetrag %1 + or oder + Confirm send coins Überweisung bestätigen + The recipient address is not valid. Please recheck. Die Zahlungsadresse ist ungültig, bitte nochmals überprüfen. + The amount to pay must be larger than 0. Der zu zahlende Betrag muss größer als 0 sein. + The amount exceeds your balance. Der angegebene Betrag übersteigt Ihren Kontostand. + The total exceeds your balance when the %1 transaction fee is included. Der angegebene Betrag übersteigt aufgrund der Transaktionsgebühr in Höhe von %1 Ihren Kontostand. + Duplicate address found: addresses should only be used once each. Doppelte Adresse entdeckt: Adressen dürfen jeweils nur einmal vorkommen. + Transaction creation failed! Transaktionserstellung fehlgeschlagen! + The transaction was rejected with the following reason: %1 Die Transaktion wurde aus folgendem Grund abgelehnt: %1 + A fee higher than %1 is considered an absurdly high fee. Eine höhere Gebühr als %1 wird als unsinnig hohe Gebühr angesehen. + Payment request expired. Zahlungsanforderung abgelaufen. - - %n block(s) - %n Block%n Blöcke - + Pay only the required fee of %1 Nur die notwendige Gebühr in Höhe von %1 zahlen + Estimated to begin confirmation within %n block(s). - Voraussichtlicher Beginn der Bestätigung innerhalb von %n Block.Voraussichtlicher Beginn der Bestätigung innerhalb von %n Blöcken. + + Warning: Invalid Raven address Warnung: Ungültige Raven-Adresse + Warning: Unknown change address Warnung: Unbekannte Wechselgeld-Adresse + Confirm custom change address Bestätige benutzerdefinierte Wechselgeld-Adresse + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Die ausgewählte Wechselgeld-Adresse ist nicht Bestandteil dieses Wallets. Einige oder alle Mittel aus Ihrem Wallet könnten an diese Adresse gesendet werden. Wollen Sie das wirklich? + (no label) (keine Bezeichnung) @@ -2222,82 +5503,108 @@ SendCoinsEntry + + + A&mount: Betra&g: - Pay &To: - E&mpfänger: - - + &Label: &Bezeichnung: + Choose previously used address Bereits verwendete Adresse auswählen + This is a normal payment. Dies ist eine normale Überweisung. + The Raven address to send the payment to Die Zahlungsadresse der Überweisung + Alt+A Alt+A + Paste address from clipboard Adresse aus der Zwischenablage einfügen + Alt+P Alt+P + + + Remove this entry Diesen Eintrag entfernen + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Die Gebühr wird vom zu überweisenden Betrag abgezogen. Der Empfänger wird also weniger Ravens erhalten, als Sie im Betrags-Feld eingegeben haben. Falls mehrere Empfänger ausgewählt wurden, wird die Gebühr gleichmäßig verteilt. + S&ubtract fee from amount Gebühr vom Betrag ab&ziehen + Message: Nachricht: + + Send &To: + + + + This is an unauthenticated payment request. Dies ist keine beglaubigte Zahlungsanforderung. + + + Send to: + + + + This is an authenticated payment request. Dies ist eine beglaubigte Zahlungsanforderung. + Enter a label for this address to add it to the list of used addresses Adressbezeichnung eingeben, die dann zusammen mit der Adresse der Liste bereits verwendeter Adressen hinzugefügt wird. + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Eine an die "raven:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Raven-Netzwerk gesendet. - - - Pay To: - Empfänger: + Eine an die "raven:"-URI angefügte Nachricht, die zusammen mit der Transaktion gespeichert wird. Hinweis: Diese Nachricht wird nicht über das Raven-Netzwerk gesendet. + + Memo: Memo: + Enter a label for this address to add it to your address book Geben Sie eine Bezeichnung für diese Adresse ein, um sie zu Ihrem Adressbuch hinzuzufügen @@ -2305,6 +5612,8 @@ SendConfirmationDialog + + Yes Ja @@ -2312,10 +5621,12 @@ ShutdownWindow + %1 is shutting down... %1 wird beendet... + Do not shut down the computer until this window disappears. Fahren Sie den Computer nicht herunter, bevor dieses Fenster verschwindet. @@ -2323,138 +5634,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Signaturen - eine Nachricht signieren / verifizieren + &Sign Message Nachricht &signieren + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Sie können Nachrichten/Vereinbarungen mit Hilfe Ihrer Adressen signieren, um zu beweisen, dass Sie Ravens empfangen können, die an diese Adressen überwiesen werden. Seien Sie vorsichtig und signieren Sie nichts Vages oder Willkürliches, um Ihre Indentität vor Phishingangriffen zu schützen. Signieren Sie nur vollständig-detaillierte Aussagen, mit denen Sie auch einverstanden sind. + The Raven address to sign the message with Die Raven-Adresse mit der die Nachricht signiert wird + + Choose previously used address Bereits verwendete Adresse auswählen + + Alt+A Alt+A + Paste address from clipboard Adresse aus der Zwischenablage einfügen + Alt+P Alt+P + Enter the message you want to sign here Zu signierende Nachricht hier eingeben + Signature Signatur + Copy the current signature to the system clipboard Aktuelle Signatur in die Zwischenablage kopieren + Sign the message to prove you own this Raven address Die Nachricht signieren, um den Besitz dieser Raven-Adresse zu beweisen + Sign &Message &Nachricht signieren + Reset all sign message fields - Alle "Nachricht signieren"-Felder zurücksetzen + Alle "Nachricht signieren"-Felder zurücksetzen + + Clear &All &Zurücksetzen + &Verify Message Nachricht &verifizieren - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Geben Sie die Zahlungsadresse des Empfängers, Nachricht (achten Sie darauf Zeilenumbrüche, Leerzeichen, Tabulatoren usw. exakt zu kopieren) und Signatur unten ein, um die Nachricht zu verifizieren. Vorsicht, interpretieren Sie nicht mehr in die Signatur hinein, als in der signierten Nachricht selber enthalten ist, um nicht von einem Man-in-the-middle-Angriff hinters Licht geführt zu werden. Beachten Sie dass dies nur beweist, dass die signierende Partei über diese Adresse Überweisungen empfangen kann. + The Raven address the message was signed with Die Raven-Adresse mit der die Nachricht signiert wurde + Verify the message to ensure it was signed with the specified Raven address Die Nachricht verifizieren, um sicherzustellen, dass diese mit der angegebenen Raven-Adresse signiert wurde + Verify &Message &Nachricht verifizieren + Reset all verify message fields - Alle "Nachricht verifizieren"-Felder zurücksetzen + Alle "Nachricht verifizieren"-Felder zurücksetzen - Click "Sign Message" to generate signature - Auf "Nachricht signieren" klicken, um die Signatur zu erzeugen + + Click "Sign Message" to generate signature + Auf "Nachricht signieren" klicken, um die Signatur zu erzeugen + + The entered address is invalid. Die eingegebene Adresse ist ungültig. + + + + Please check the address and try again. Bitte überprüfen Sie die Adresse und versuchen Sie es erneut. + + The entered address does not refer to a key. Die eingegebene Adresse verweist nicht auf einen Schlüssel. + Wallet unlock was cancelled. Wallet-Entsperrung wurde abgebrochen. + Private key for the entered address is not available. Privater Schlüssel zur eingegebenen Adresse ist nicht verfügbar. + Message signing failed. Signierung der Nachricht fehlgeschlagen. + Message signed. Nachricht signiert. + The signature could not be decoded. Die Signatur konnte nicht dekodiert werden. + + Please check the signature and try again. Bitte überprüfen Sie die Signatur und versuchen Sie es erneut. + The signature did not match the message digest. - Die Signatur entspricht nicht dem "Message Digest". + Die Signatur entspricht nicht dem "Message Digest". + Message verification failed. Verifikation der Nachricht fehlgeschlagen. + Message verified. Nachricht verifiziert. @@ -2462,6 +5816,7 @@ SplashScreen + [testnet] [Testnetz] @@ -2469,6 +5824,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2476,174 +5832,260 @@ TransactionDesc + Open for %n more block(s) - Offen für %n weiteren BlockOffen für %n weitere Blöcke + Offen für %n weitere BlöckeOffen für %n weitere Blöcke + Open until %1 Offen bis %1 + conflicted with a transaction with %1 confirmations steht im Konflikt mit einer Transaktion mit %1 Bestätigungen + %1/offline %1/offline + 0/unconfirmed, %1 %1/unbestätigt + in memory pool im Speicherpool + not in memory pool nicht im Speicherpool + abandoned eingestellt + %1/unconfirmed %1/unbestätigt + %1 confirmations %1 Bestätigungen + + Status Status + + , has not been successfully broadcast yet , wurde noch nicht erfolgreich übertragen + + , broadcast through %n node(s) - , über %n Knoten übertragen, über %n Knoten übertragen + + + Date Datum + Source Quelle + Generated Erzeugt + + + + + From Von + + unknown unbekannt + + + + + To An + + own address eigene Adresse + + + watch-only beobachtet + + label Bezeichnung + + + + + + + Credit Gutschrift + matures in %n more block(s) - reift noch %n weiteren Blockreift noch %n weitere Blöcke + + not accepted nicht angenommen + + + + + Debit Belastung + Total debit Gesamtbelastung + Total credit Gesamtgutschrift + Transaction fee Transaktionsgebühr + Net amount Nettobetrag + + + + Message Nachricht + + Comment Kommentar + + Transaction ID Transaktionskennung + + Transaction total size Gesamte Transaktionsgröße + + Output index Ausgabeindex + + Merchant Händler - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Erzeugte Ravens müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block erzeugt haben, wurde er an das Netzwerk übertragen, um ihn der Blockchain hinzuzufügen. Falls dies fehlschlägt, wird der Status in "nicht angenommen" geändert und Sie werden keine Ravens gutgeschrieben bekommen. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich erzeugt. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Erzeugte Ravens müssen %1 Blöcke lang reifen, bevor sie ausgegeben werden können. Als Sie diesen Block erzeugt haben, wurde er an das Netzwerk übertragen, um ihn der Blockchain hinzuzufügen. Falls dies fehlschlägt, wird der Status in "nicht angenommen" geändert und Sie werden keine Ravens gutgeschrieben bekommen. Das kann gelegentlich passieren, wenn ein anderer Knoten einen Block fast zeitgleich erzeugt. + + Net RVN amount + + + + Debug information Debuginformationen + Transaction Transaktion + Inputs Eingaben + Amount Betrag + + true wahr + + false falsch @@ -2651,10 +6093,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Dieser Bereich zeigt eine detaillierte Beschreibung der Transaktion an + Details for %1 Details für %1 @@ -2662,269 +6106,411 @@ TransactionTableModel + Date Datum + Type Typ + Label Bezeichnung + + + Amount + Betrag + + + + Asset + Asset + + Open for %n more block(s) - Offen für %n weiteren BlockOffen für %n weitere Blöcke + + Open until %1 Offen bis %1 + Offline Offline + Unconfirmed Unbestätigt + Abandoned Eingestellt + Confirming (%1 of %2 recommended confirmations) Wird bestätigt (%1 von %2 empfohlenen Bestätigungen) + Confirmed (%1 confirmations) Bestätigt (%1 Bestätigungen) + Conflicted in Konflikt stehend + Immature (%1 confirmations, will be available after %2) Unreif (%1 Bestätigungen, wird verfügbar sein nach %2) + This block was not received by any other nodes and will probably not be accepted! Dieser Block wurde vom Netzwerk nicht angenommen und wird wahrscheinlich nicht bestätigt werden! + Generated but not accepted - Generiert, aber nicht akzeptiert + Generiert, aber nicht angenommen + Received with Empfangen über + Received from Empfangen von + Sent to Überwiesen an + Payment to yourself Eigenüberweisung + Mined Erarbeitet + + Asset Issued + Asset erstellt + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only beobachtet + (n/a) (k.A.) + (no label) (keine Bezeichnung) + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Fahren Sie mit der Maus über dieses Feld, um die Anzahl der Bestätigungen zu sehen. + Date and time that the transaction was received. Datum und Zeit als die Transaktion empfangen wurde. + Type of transaction. Art der Transaktion + Whether or not a watch-only address is involved in this transaction. Zeigt an, ob eine beobachtete Adresse in diese Transaktion involviert ist. + User-defined intent/purpose of the transaction. Benutzerdefinierte Absicht bzw. Verwendungszweck der Transaktion + Amount removed from or added to balance. Der Betrag, der dem Kontostand abgezogen oder hinzugefügt wurde. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Alle + Today Heute + This week Diese Woche + This month Diesen Monat + Last month Letzten Monat + This year Dieses Jahr + Range... Zeitraum... + Received with Empfangen über + Sent to Überwiesen an + To yourself Eigenüberweisung + Mined Erarbeitet + Other Andere + Enter address or label to search Zu suchende Adresse oder Bezeichnung eingeben + Min amount Mindestbetrag + + Asset name + + + + Abandon transaction Transaktion einstellen + Copy address Adresse kopieren + Copy label Bezeichnung kopieren + Copy amount Betrag kopieren + Copy transaction ID Transaktionskennung kopieren + Copy raw transaction Rohe Transaktion kopieren + Copy full transaction details Vollständige Transaktionsdetails kopieren + Edit label Bezeichnung bearbeiten + Show transaction details Transaktionsdetails anzeigen + + Browse with: + + + + Export Transaction History Transaktionsverlauf exportieren + Comma separated file (*.csv) Kommagetrennte-Datei (*.csv) + Confirmed Bestätigt + Watch-only Nur beobachten + Date Datum + Type Typ + Label Bezeichnung + Address Adresse + + Asset + + + + ID ID + Exporting Failed Exportieren fehlgeschlagen + There was an error trying to save the transaction history to %1. Beim Speichern des Transaktionsverlaufs nach %1 ist ein Fehler aufgetreten. + Exporting Successful Exportieren erfolgreich + The transaction history was successfully saved to %1. Speichern des Transaktionsverlaufs nach %1 war erfolgreich. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Zeitraum: + to bis @@ -2932,6 +6518,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Die Einheit in der Beträge angezeigt werden. Klicken, um eine andere Einheit auszuwählen. @@ -2939,6 +6526,7 @@ WalletFrame + No wallet has been loaded. Es wurde keine Wallet geladen. @@ -2946,960 +6534,1763 @@ WalletModel + Send Coins Ravens überweisen + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export E&xportieren + Export the data in the current tab to a file Daten der aktuellen Ansicht in eine Datei exportieren + Backup Wallet Wallet sichern + Wallet Data (*.dat) Wallet-Daten (*.dat) + Backup Failed Sicherung fehlgeschlagen + There was an error trying to save the wallet data to %1. Beim Speichern der Wallet-Daten nach %1 ist ein Fehler aufgetreten. + Backup Successful Sicherung erfolgreich + The wallet data was successfully saved to %1. Speichern der Wallet-Daten nach %1 war erfolgreich. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Optionen: + Specify data directory Datenverzeichnis festlegen + Connect to a node to retrieve peer addresses, and disconnect Mit dem angegebenen Knoten verbinden, um Adressen von Gegenstellen abzufragen, danach trennen + Specify your own public address Die eigene öffentliche Adresse angeben + Accept command line and JSON-RPC commands Kommandozeilen- und JSON-RPC-Befehle annehmen - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Eingehende Verbindungen annehmen (Standard: 1, wenn nicht -proxy oder -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Verbindungen nur zu spezifizierten Node(s); verwenden Sie -noconnect oder -connect=0 alleine um automatische Verbindungen zu deaktivieren - - + Distributed under the MIT software license, see the accompanying file %s or %s Veröffentlicht unter der MIT-Softwarelizenz, siehe beiliegende Datei %s oder %s. + If <category> is not supplied or if <category> = 1, output all debugging information. Wenn <category> nicht angegeben wird oder <category>=1, jegliche Debugginginformationen ausgeben. + Prune configured below the minimum of %d MiB. Please use a higher number. Kürzungsmodus wurde kleiner als das Minimum in Höhe von %d MiB konfiguriert. Bitte verwenden Sie einen größeren Wert. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Prune (Kürzung): Die letzte Synchronisation der Wallet liegt vor gekürzten (gelöschten) Blöcken. Es ist ein -reindex (Download der gesamten Blockchain) notwendig. + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Rescans sind im pruned mode nicht möglich. Ein -reindex ist notwendig, welcher die gesmate Blockchain erneut herunterlädt. + Error: A fatal internal error occurred, see debug.log for details Fehler: Ein schwerer interner Fehler ist aufgetreten, siehe debug.log für Details. + Fee (in %s/kB) to add to transactions you send (default: %s) Gebühr (in %s/kB), die von Ihnen gesendeten Transaktionen hinzugefügt wird (Standard: %s) + Pruning blockstore... Kürze Blockspeicher... + Run in the background as a daemon and accept commands Als Hintergrunddienst ausführen und Befehle annehmen + Unable to start HTTP server. See debug log for details. Kann HTTP Server nicht starten. Siehe debug log für Details. + Raven Core Raven Core + The %s developers Die %s-Entwickler + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Eine Transaktionsgebühr (in %s/kB) wird genutzt, wenn für die Gebührenschätzung zu wenig Daten vorliegen (Standardwert: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Geben Sie immer die Transaktionen, die Sie von freigegebenen Peers erhalten haben, weiter (Voreinstellung: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - An die angegebene Adresse binden und immer abhören. Für IPv6 "[Host]:Port"-Notation verwenden + An die angegebene Adresse binden und immer abhören. Für IPv6 "[Host]:Port"-Notation verwenden + Cannot obtain a lock on data directory %s. %s is probably already running. Datenverzeichnis %s kann nicht gesperrt werden. Evtl. wurde %s bereits gestartet. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Alle Wallet-Transaktionen löschen und nur diese Teilbereiche der Blockchain durch -rescan beim Starten wiederherstellen - Error loading %s: You can't enable HD on a already existing non-HD wallet - Fehler beim Laden von %s: Sie können HD nicht aktivieren da sie derzeit eine nicht HD Brieftasche besitzen. - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Lesen von %s fehlgeschlagen! Alle Schlüssel wurden korrekt gelesen, Transaktionsdaten bzw. Adressbucheinträge fehlen aber möglicherweise oder sind inkorrekt. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + Debuginformationen einer Kategorie ausschließen. Kann zusammen mit -debug=1 benutzt werden, um Debug-Logs aller Kategorien außer einer oder mehreren angegebenen Kategorien zu erzeugen. + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Befehl ausführen wenn sich eine Wallet-Transaktion verändert (%s im Befehl wird durch die Transaktions-ID ersetzt) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Zusätzliche Transaktionen für kompakten Block-Nachbau im Speicher vorhalten (default: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Sofern dieser Block Bestandteil der Blockchain ist, nehme an, dass er und seine Vorgänger gültig sind und überspringe ggf. dessen Skriptverifikation (0 um alle zu verifizieren, default: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Maximal zulässige mediane Peer-Zeit-Offset-Einstellung. Lokale Perspektive der Zeit kann von Peers vorwärts oder rückwärts um diesen Betrag beeinflusst werden. (Voreinstellung: %u Sekunden) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Maximale Gesamtgebühr (in %s) für eine Wallet- oder Roh-Transaktion; wird diese zu niedrig gesetzt können große Transaktionen abgebrochen werden (Standard: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Bitte korrigieren Sie die Datums- und Uhrzeiteinstellungen Ihres Computers, da %s ansonsten nicht ordnungsgemäß funktionieren wird. + Please contribute if you find %s useful. Visit %s for further information about the software. Wenn sie %s nützlich finden, sind Helfer sehr gern gesehen. Besuchen Sie %s um mehr über das Softwareprojekt zu erfahren. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + Peer-Adressen über DNS-Namensauflösung abfragen, sofern nicht genug Adressen vorhanden (Default: 1, außer es wird -connect benutzt) + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Speicherplatzanforderung durch Kürzen (Pruning) alter Blöcke reduzieren. Dies erlaubt das Aufrufen des sogenannten Pruneblockchain RPC zum Löschen spezifischer Blöcke und aktiviert das automatische Pruning alter Blöcke, sofern eine Zielgröße in MIB angegeben wird. Dieser Modus ist nicht mit -txindex und -rescan kompatibel. Warnung: Das Rücksetzen dieser Einstellung erfordert das erneute Herunterladen der gesamten Blockchain. (Standard: 0 = deaktiviert das Pruning, 1 = erlaubt manuelles Pruning via RPC, >%u = automatisches Pruning der Blockdateien, um angegebene Maximalgröße in MiB nicht zu überschreiten) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Niedrigste Gebühr (in %s/kB) für Transaktionen einstellen, die bei der Blockerzeugung berücksichtigt werden sollen. (default: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Maximale Anzahl an Skript-Verifizierungs-Threads festlegen (%u bis %d, 0 = automatisch, <0 = so viele Kerne frei lassen, Standard: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Die Block-Datenbank enthält einen Block, der in der Zukunft auftaucht. Dies kann daran liegen, dass die Systemzeit Ihres Computers falsch eingestellt ist. Stellen Sie die Block-Datenbank nur wieder her, wenn Sie sich sicher sind, dass Ihre Systemzeit korrekt eingestellt ist. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dies ist eine Vorab-Testversion - Verwendung auf eigene Gefahr - nicht für Mining- oder Handelsanwendungen nutzen! + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Sie müssen die Datenbank mit Hilfe von -reindex neu aufbauen, um zum ungekürzten Modus zurückzukehren. Dies erfordert, dass die gesamte Blockkette erneut heruntergeladen wird. + Use UPnP to map the listening port (default: 1 when listening and no -proxy) UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: 1, wenn abgehört wird und -proxy nicht gesetzt ist) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Benutzername und gehashtes Passwort für JSON-RPC Verbindungen. Das Feld <userpw> kommt im Format: <USERNAME>:<SALT>$<HASH>. Ein kanonisches Pythonskript ist in share/rpcuser inbegriffen. Der client benutzt wie gehabt, die rpcuser/rpcpassword Parameter. Diese Option kann mehrere Male spezifiziert werden + Wallet will not create transactions that violate mempool chain limits (default: %u) Das Wallet erzeugt keine Transaktionen, die das Mempool Chain Limit überschreiten (Standardeinstellung: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Warnung: Das Netzwerk scheint nicht vollständig übereinzustimmen! Einige Miner scheinen Probleme zu haben. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Warnung: Wir scheinen nicht vollständig mit unseren Peers übereinzustimmen! Sie oder die anderen Knoten müssen unter Umständen Ihre Client-Software aktualisieren. - You need to rebuild the database using -reindex-chainstate to change -txindex - Sie müssen die Datenbank mit Hilfe von -reindex-chainstate neu aufbauen, um -txindex zu verändern + + Whether to save the mempool on shutdown and load on restart (default: %u) + Legt fest, ob der Memory Pool beim Schließen gespeichert und beim Neustart geladen werden soll (Default: %u) + + + + %d of last 100 blocks have unexpected version + %d der letzten 100 Blöcke haben eine unerwartete Version + %s corrupt, salvage failed %s beschädigt, Datenrettung fehlgeschlagen + -maxmempool must be at least %d MB -maxmempool muss mindestens %d MB betragen + <category> can be: <category> kann sein: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string - Hänge ein Kommentar zur User Agent-Zeichenkette an + Hänge ein Kommentar zu einem User Agent-String an + Attempt to recover private keys from a corrupt wallet on startup Es wird versucht, private Schlüssel beim Starten aus einer beschädigten Wallet wiederherzustellen + Block creation options: Blockerzeugungsoptionen: - Cannot resolve -%s address: '%s' - Kann Adresse in -%s nicht auflösen: '%s' + + Cannot resolve -%s address: '%s' + Kann Adresse in -%s nicht auflösen: '%s' + Chain selection options: Chain Auswahloptionen: + Change index out of range Position des Wechselgelds außerhalb des Bereichs + Connection options: Verbindungsoptionen: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Beschädigte Blockdatenbank erkannt + Debugging/Testing options: Debugging-/Testoptionen: + Do not load the wallet and disable wallet RPC calls Die Wallet nicht laden und Wallet-RPC-Aufrufe deaktivieren + Do you want to rebuild the block database now? Möchten Sie die Blockdatenbank jetzt neu aufbauen? + Enable publish hash block in <address> Aktiviere das Veröffentlichen des Hash-Blocks in <address> + Enable publish hash transaction in <address> Aktiviere das Veröffentlichen der Hash-Transaktion in <address> + Enable publish raw block in <address> Aktiviere das Veröffentlichen des Raw-Blocks in <address> + Enable publish raw transaction in <address> Aktiviere das Veröffentlichen der Roh-Transaktion in <address> + Enable transaction replacement in the memory pool (default: %u) Transaktionsersetzung im Speicherpool aktivieren (Standard: %u) + Error initializing block database Fehler beim Initialisieren der Blockdatenbank + Error initializing wallet database environment %s! Fehler beim Initialisieren der Wallet-Datenbankumgebung %s! + Error loading %s Fehler beim Laden von %s + Error loading %s: Wallet corrupted Fehler beim Laden von %s: Die Wallet ist beschädigt + Error loading %s: Wallet requires newer version of %s Fehler beim Laden von %s: Die Wallet benötigt eine neuere Version von %s - Error loading %s: You can't disable HD on a already existing HD wallet - Fehler beim Laden von %s: Sie können die hierarchisch deterministische Schlüsselgeneration (HD) für eine bereits existierende HD-Brieftasche nicht deaktivieren - - + Error loading block database Fehler beim Laden der Blockdatenbank + Error opening block database Fehler beim Öffnen der Blockdatenbank + Error: Disk space is low! Fehler: Zu wenig freier Speicherplatz auf dem Datenträger! + Failed to listen on any port. Use -listen=0 if you want this. Fehler, es konnte kein Port abgehört werden. Wenn dies so gewünscht wird -listen=0 verwenden. + Importing... Importiere... + Incorrect or no genesis block found. Wrong datadir for network? Fehlerhafter oder kein Genesis-Block gefunden. Falsches Datenverzeichnis für das Netzwerk? + Initialization sanity check failed. %s is shutting down. Initialisierungsplausibilitätsprüfung fehlgeschlagen. %s wird beendet. - Invalid -onion address: '%s' - Ungültige "-onion"-Adresse: '%s' + + Invalid amount for -%s=<amount>: '%s' + Ungültiger Betrag für -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Ungültiger Betrag für -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + Ungültiger Betrag für -discardfee=<amount>: '%s' - Invalid amount for -fallbackfee=<amount>: '%s' - Ungültiger Betrag für -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Ungültiger Betrag für -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Halten Sie den Transaktionsspeicherpool unter <n> Megabytes (Voreinstellung: %u) + + Loading P2P addresses... + Lade P2P Adressen... + + + Loading banlist... Lade Sperrliste... + Location of the auth cookie (default: data dir) Dateiort für das Auth-Cookie (Standard: Datenverzeichnis) + Not enough file descriptors available. Nicht genügend Datei-Deskriptoren verfügbar. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Nur zu Knoten des Netzwerktyps <net> verbinden (ipv4, ipv6 oder onion) + Print this help message and exit Diese Hilfe-Meldung drucken und beenden + Print version and exit Versionsnummer drucken und beenden + Prune cannot be configured with a negative value. Kürzungsmodus kann nicht mit einem negativen Wert konfiguriert werden. + Prune mode is incompatible with -txindex. Kürzungsmodus ist nicht mit -txindex kompatibel. + Rebuild chain state and block index from the blk*.dat files on disk Wiederherstellen des Blockchain-Zustands aus den blk*.dat Dateien auf der Festplatte + Rebuild chain state from the currently indexed blocks Wiederherstellen des Blockchain-Zustands aus aktuellen indizierten Blöcken + + Replaying blocks... + + + + Rewinding blocks... Verifiziere Blöcke... + Set database cache size in megabytes (%d to %d, default: %d) Größe des Datenbankcaches in Megabyte festlegen (%d bis %d, Standard: %d) - Set maximum block size in bytes (default: %d) - Maximale Blockgröße in Byte festlegen (Standard: %d) - - + Specify wallet file (within data directory) Wallet-Datei angeben (innerhalb des Datenverzeichnisses) + The source code is available from %s. Der Quellcode ist von %s verfügbar. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Kann auf diesem Computer nicht an %s binden. Evtl. wurde %s bereits gestartet. + Unsupported argument -benchmark ignored, use -debug=bench. Nicht unterstütztes Argument -benchmark wurde ignoriert, bitte -debug=bench verwenden. + Unsupported argument -debugnet ignored, use -debug=net. Nicht unterstütztes Argument -debugnet wurde ignoriert, bitte -debug=net verwenden. + Unsupported argument -tor found, use -onion. Nicht unterstütztes Argument -tor gefunden, bitte -onion verwenden. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) UPnP verwenden, um eine Portweiterleitung einzurichten (Standard: %u) + Use the test chain Die Testchain verwenden + User Agent comment (%s) contains unsafe characters. Der User Agent Kommentar (%s) enthält unsichere Zeichen. + Verifying blocks... Verifiziere Blöcke... - Verifying wallet... - Verifiziere Wallet... - - + Wallet %s resides outside data directory %s Wallet %s liegt außerhalb des Datenverzeichnisses %s + Wallet debugging/testing options: Wallet Debugging-/Testoptionen: + Wallet needed to be rewritten: restart %s to complete Wallet musste neu geschrieben werden: starten Sie %s zur Fertigstellung neu + Wallet options: Wallet-Optionen: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times JSON-RPC-Verbindungen von der angegeben Quelle erlauben. Gültig für <ip> ist eine einzelne IP-Adresse (z.B. 1.2.3.4), ein Netzwerk bzw. eine Netzmaske (z.B. 1.2.3.4/255.255.255.0), oder die CIDR-Notation (z.B. 1.2.3.4/24). Kann mehrmals angegeben werden. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - An die angegebene Adresse binden und Peers, die sich dorthin verbinden, immer zulassen. Für IPv6 "[Host]:Port"-Notation verwenden - - - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - An die angegebene Adresse binden und nach eingehenden JSON-RPC-Verbindungen abhören. Für IPv6 "[Host]:Port"-Notation verwenden. Kann mehrmals angegeben werden. (Standard: an alle Schnittstellen binden) + An die angegebene Adresse binden und Peers, die sich dorthin verbinden, immer zulassen. Für IPv6 "[Host]:Port"-Notation verwenden + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Neue Dateien mit Standard-Systemrechten erzeugen, anstatt mit umask 077 (nur mit deaktivierter Walletfunktion nutzbar) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Eigene IP-Adressen ermitteln (Standard: 1, wenn abgehört wird und nicht -externalip oder -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Fehler: Abhören nach eingehenden Verbindungen fehlgeschlagen (listen meldete Fehler %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Befehl ausführen wenn ein relevanter Alarm empfangen wird oder wir einen wirklich langen Fork entdecken (%s im Befehl wird durch die Nachricht ersetzt) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Niedrigere Gebühren (in %s/Kb) als diese werden bei der Transaktionserstellung als gebührenfrei angesehen (Standard: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Wenn -paytxfee nicht festgelegt wurde Gebühren einschließen, so dass mit der Bestätigung von Transaktionen im Schnitt innerhalb von n Blöcken begonnen wird (Standard: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Ungültiger Betrag für -maxtxfee=<amount>: '%s' (muss mindestens die minimale Weiterleitungsgebühr in Höhe von %s sein, um zu verhindern dass Transaktionen nicht bearbeitet werden) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Ungültiger Betrag für -maxtxfee=<amount>: '%s' (muss mindestens die minimale Weiterleitungsgebühr in Höhe von %s sein, um zu verhindern dass Transaktionen nicht bearbeitet werden) + Maximum size of data in data carrier transactions we relay and mine (default: %u) - Maximale Datengröße in "Data Carrier"-Transaktionen die weitergeleitet und erarbeitet werden (Standard: %u) + Maximale Datengröße in "Data Carrier"-Transaktionen die weitergeleitet und erarbeitet werden (Standard: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Zufällige Anmeldedaten für jede Proxyverbindung verwenden. Dies aktiviert Tor-Datenflussisolation (Standard: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Maximale Größe in Byte von "high-priority/low-fee"-Transaktionen festlegen (Standard: %d) - - + The transaction amount is too small to send after the fee has been deducted Der Transaktionsbetrag ist zum Senden zu niedrig, nachdem die Gebühr abgezogen wurde. - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Verwende hierarchisch deterministische Schlüsselgenerierung (HD) nach BIP32. Funktioniert nur bei Erstellung (erstem Start) einer Wallet. - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Erlaubte Peers werden nicht für DoS-Attacken gesperrt und ihre Transkationen werden immer weitergeleitet, auch wenn sie sich bereits im Speicherpool befinden, was z.B. für Gateways sinnvoll ist. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Sie müssen die Datenbank mit Hilfe von -reindex neu aufbauen, um zum ungekürzten Modus zurückzukehren. Dies erfordert, dass die gesamte Blockchain erneut heruntergeladen wird. + (default: %u) (Standard: %u) + Accept public REST requests (default: %u) Öffentliche REST-Anfragen annehmen (Standard: %u) + Automatically create Tor hidden service (default: %d) Automatisch versteckten Tor-Dienst erstellen (Standard: %d) + Connect through SOCKS5 proxy Über einen SOCKS5-Proxy &verbinden + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Fehler beim lesen der Datenbank, Ausführung wird beendet. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Blöcke beim Starten aus externer Datei blk000??.dat importieren + Information Hinweis - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Ungültiger Betrag für -paytxfee=<amount>: '%s' (muss mindestens %s sein) + + Invalid -onion address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Ungültige Netzmaske angegeben in -whitelist: '%s' + + Invalid -proxy address or hostname: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Ungültiger Betrag für -paytxfee=<amount>: '%s' (muss mindestens %s sein) + + + + Invalid netmask specified in -whitelist: '%s' + Ungültige Netzmaske angegeben in -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Maximal <n> nicht-verbindbare Transaktionen im Speicher halten (Standard: %u) - Need to specify a port with -whitebind: '%s' - Angabe eines Ports benötigt für -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Angabe eines Ports benötigt für -whitebind: '%s' + Node relay options: Knoten-Weiterleitungsoptionen: + RPC server options: RPC-Serveroptionen: + Reducing -maxconnections from %d to %d, because of system limitations. Reduziere -maxconnections von %d zu %d, aufgrund von Systemlimitierungen. + Rescan the block chain for missing wallet transactions on startup Blockchain beim Starten erneut nach fehlenden Wallet-Transaktionen durchsuchen + Send trace/debug info to console instead of debug.log file Rückverfolgungs- und Debuginformationen an die Konsole senden, anstatt sie in debug.log zu schreiben - Send transactions as zero-fee transactions if possible (default: %u) - Transaktionen, wenn möglich, als gebührenfreie Transaktion senden (Standard: %u) - - + Show all debugging options (usage: --help -help-debug) Alle Debuggingoptionen anzeigen (Benutzung: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Protokolldatei debug.log beim Starten des Clients kürzen (Standard: 1, wenn kein -debug) + Signing transaction failed Signierung der Transaktion fehlgeschlagen + The transaction amount is too small to pay the fee Der Transaktionsbetrag ist zu niedrig, um die Gebühr zu bezahlen. + This is experimental software. Dies ist experimentelle Software. + Tor control port password (default: empty) TOR Kontrollport Passwort (Standard: leer) + Tor control port to use if onion listening enabled (default: %s) Zu benutzender TOR Kontrollport wenn Onion Abhörung aktiv ist (Standard: %s) + Transaction amount too small Transaktionsbetrag zu niedrig + Transaction too large for fee policy Transaktion ist für die Gebührenrichtlinie zu groß + Transaction too large Transaktion zu groß + Unable to bind to %s on this computer (bind returned error %s) Kann auf diesem Computer nicht an %s binden (bind meldete Fehler %s) + Upgrade wallet to latest format on startup Wallet beim Starten auf das neueste Format aktualisieren + Username for JSON-RPC connections Benutzername für JSON-RPC-Verbindungen + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + Verifiziere Wallet(s)... + + + Warning Warnung + Warning: unknown new rules activated (versionbit %i) Warnung: Unbekannte neue Regeln aktiviert (Versionsbit %i) + Whether to operate in a blocks only mode (default: %u) - Legt fest ob "Nur Blöcke" Modus aktiv sein soll (Standard: %u) + Legt fest ob "Nur Blöcke" Modus aktiv sein soll (Standard: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Lösche alle Transaktionen aus der Wallet... + ZeroMQ notification options: ZeroMQ-Benachrichtigungsoptionen: + Password for JSON-RPC connections Passwort für JSON-RPC-Verbindungen + Execute command when the best block changes (%s in cmd is replaced by block hash) Befehl ausführen wenn der beste Block wechselt (%s im Befehl wird durch den Hash des Blocks ersetzt) + Allow DNS lookups for -addnode, -seednode and -connect Erlaube DNS-Abfragen für -addnode, -seednode und -connect - Loading addresses... - Lade Adressen... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = TX-Metadaten wie z.B. Accountbesitzer und Zahlungsanforderungsinformationen behalten, 2 = TX-Metadaten verwerfen) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee ist auf einen sehr hohen Wert festgelegt! Gebühren dieser Höhe könnten für eine einzelne Transaktion bezahlt werden. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Die Transaktion nicht länger im Speicherpool behalten als <n> Stunden (Standard: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) - Maximale Datengröße in "Data Carrier"-Transaktionen die weitergeleitet und erarbeitet werden (Standard: %u) + Maximale Datengröße in "Data Carrier"-Transaktionen die weitergeleitet und erarbeitet werden (Standard: %u) + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + Fehler beim Laden der Wallet %s. Der -wallet Parameter darf nur Dateinamen beinhalten (keinen Pfad). + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Niedrigere Gebühren (in %s/Kb) als diese werden bei der Transaktionserstellung als gebührenfrei angesehen (Standard: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Leite Transaktionen von Peers auf der Positivliste auf jeden Fall weiter, auch wenn sie die lokalen Weiterleitungsregeln verletzen (Standard: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Legt fest, wie gründlich die Blockverifikation von -checkblocks ist (0-4, Standard: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Einen vollständigen Transaktionsindex führen, der vom RPC-Befehl "getrawtransaction" genutzt wird (Standard: %u) + Einen vollständigen Transaktionsindex führen, der vom RPC-Befehl "getrawtransaction" genutzt wird (Standard: %u) + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Anzahl der Sekunden, während denen sich nicht konform verhaltenden Peers die Wiederverbindung verweigert wird (Standard: %u) + Output debugging information (default: %u, supplying <category> is optional) Debugging-Informationen ausgeben (Standard: %u, <category> anzugeben ist optional) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Adressen von Peers via DNS-Namensauflösung finden, falls zu wenige Adressen verfügbar sind (Standard: 1, außer bei -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Setzt die Serialisierung von Rohtransaktionen oder Block Hex-Daten auf non-verbose mode, nicht-Segwit(0) oder Segwit(1) (default: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Unterstütze das Filtern von Blöcken und Transaktionen mit Bloomfiltern (default: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Das ist die Transaktionsgebühr, die gezahlt werden müsste, wenn die Gebührenschätzungen nicht verfügbar sind. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Dieses Produkt enthält Software, die vom OpenSSL Project zur Verwendung im OpenSSL Toolkit %s entwickelt wurde, sowie kryptografische Software, die von Eric Young entwickelt wurde, sowie UPnP Software, die von Thomas Bernhard entwickelt wurde. + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Gesamtlänge des Netzwerkversionstrings (%i) erreicht die maximale Länge (%i). Reduzieren Sie die Nummer oder die Größe von uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Versucht ausgehenden Datenverkehr unter dem gegebenen Wert zu halten (in MiB pro 24h), 0 = kein Limit (Standard: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Nicht unterstütztes Argument -socks gefunden. Das Festlegen der SOCKS-Version ist nicht mehr möglich, nur noch SOCKS5-Proxies werden unterstützt. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Das Argument -whitelistalwaysrelay wird nicht unterstützt und deswegen ignoriert. Benutze -whitelistrelay und/oder -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Separaten SOCKS5-Proxy verwenden, um Peers über versteckte Tor-Dienste zu erreichen (Standard: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Warnung: Unbekannte Blockversion wird durch Mining erzeugt! Es ist möglich, dass unbekannte Regeln in Kraft sind. + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + Warnung: Wallet-Datei beschädigt, Daten gerettet! Original %s wurde als %s in %s gespeichert; sofern der Kontostand oder Transaktionen falsch sind, sollten Sie die Datei aus einer Sicherung wiederherstellen. + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Peers die sich von der angegebenen IP-Adresse (e.g. 1.2.3.4) oder CIDR Notation (eg. 1.2.3.0/24) aus verbinden immer zulassen. Kann mehrmals angegeben werden. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s wurde sehr hoch eingestellt! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (Standard: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Peer-Adressen immer über DNS-Namensauflösung abfragen (Standard: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + Fehler beim Laden der Wallet %s. Der -wallet Dateiname muss eine reguläre Datei sein. + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + Fehler beim Laden der Wallet %s. Ungültige Zeichen im -wallet Dateinamen. + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Wieviele Blöcke beim Starten geprüft werden sollen (Standard: %u, 0 = alle) + Include IP addresses in debug output (default: %u) IP-Adressen in Debugausgabe einschließen (Standard: %u) - Invalid -proxy address: '%s' - Ungültige Adresse in -proxy: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Der Keypool ist erschöpft. Bitte rufen Sie zunächst keypoolrefill auf. + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) <port> nach JSON-RPC-Verbindungen abhören (Standard: %u oder Testnetz: %u) + Listen for connections on <port> (default: %u or testnet: %u) <port> nach Verbindungen abhören (Standard: %u oder Testnetz: %u) + Maintain at most <n> connections to peers (default: %u) Maximal <n> Verbindungen zu Peers aufrechterhalten (Standard: %u) + Make the wallet broadcast transactions Die Wallet soll Transaktionen übertragen/broadcasten + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximale Größe des Empfangspuffers pro Verbindung, <n> * 1000 Byte (Standard: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximale Größe des Sendepuffers pro Verbindung, <n> * 1000 Byte (Standard: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Debugausgaben einen Zeitstempel voranstellen (Standard: %u) + Relay and mine data carrier transactions (default: %u) - "Data Carrier"-Transaktionen weiterleiten und erarbeiten (Standard: %u) + "Data Carrier"-Transaktionen weiterleiten und erarbeiten (Standard: %u) + Relay non-P2SH multisig (default: %u) - Nicht-"P2SH-Multisig" weiterleiten (Standard: %u) + Nicht-"P2SH-Multisig" weiterleiten (Standard: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Wähle alle zu sendenden Transaktionen als full-RBF (Standard: %u) + Set key pool size to <n> (default: %u) Größe des Schlüsselpools festlegen auf <n> (Standard: %u) + Set maximum BIP141 block weight (default: %d) Maximales BIP141 Blockgewicht festlegen (Standard: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Maximale Anzahl an Threads zur Verarbeitung von RPC-Anfragen festlegen (Standard: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Konfigurationsdatei festlegen (Standard: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Verbindungzeitüberschreitung in Millisekunden festlegen (Minimum: 1, Standard: %d) + Specify pid file (default: %s) PID-Datei festlegen (Standard: %s) + Spend unconfirmed change when sending transactions (default: %u) Unbestätigtes Wechselgeld darf beim Senden von Transaktionen ausgegeben werden (Standard: %u) + Starting network threads... Netzwerk-Threads werden gestartet... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Die Wallet verhindert Zahlungen, die die Mindesttransaktionsgebühr nicht berücksichtigen. + This is the minimum transaction fee you pay on every transaction. Dies ist die minimale Gebühr die beim Senden einer Transaktion fällig wird. + This is the transaction fee you will pay if you send a transaction. Dies ist die Gebühr die beim Senden einer Transaktion fällig wird. + Threshold for disconnecting misbehaving peers (default: %u) Schwellenwert, um Verbindungen zu sich nicht konform verhaltenden Peers zu beenden (Standard: %u) + Transaction amounts must not be negative Transaktionsbeträge dürfen nicht negativ sein. + Transaction has too long of a mempool chain Die Mempool Chain der Transaktion ist zu lang. + Transaction must have at least one recipient Die Transaktion muss mindestens einen Empfänger enthalten. - Unknown network specified in -onlynet: '%s' - Unbekanntes Netzwerk in -onlynet angegeben: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Unbekanntes Netzwerk in -onlynet angegeben: '%s' + + + Insufficient funds Unzureichender Kontostand + Loading block index... Lade Blockindex... - Add a node to connect to and attempt to keep the connection open - Mit dem angegebenen Knoten verbinden und versuchen die Verbindung aufrecht zu erhalten - - + Loading wallet... Lade Wallet... + Cannot downgrade wallet Wallet kann nicht auf eine ältere Version herabgestuft werden - Cannot write default address - Standardadresse kann nicht geschrieben werden - - + Rescanning... Durchsuche erneut... - Done loading - Laden abgeschlossen - - + Error Fehler diff --git a/src/qt/locale/raven_el.ts b/src/qt/locale/raven_el.ts index 8b3e78897c..c28768ec21 100644 --- a/src/qt/locale/raven_el.ts +++ b/src/qt/locale/raven_el.ts @@ -1,215 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Δημιουργία νέου λογαριασμού - + + + &New + + + + + Copy the currently selected address to the system clipboard + + + + + &Copy + + + + + C&lose + + + + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + + &Export + + + + + &Delete + + + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Εισάγετε συνθηματικό + New passphrase Νέο συνθηματικό + Repeat new passphrase Επαναλάβετε νέο συνθηματικό - - - BanTableModel - - - RavenGUI - Quit application - Κλείσιμο εφαρμογής + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Wallet - Πορτοφόλι + + Encrypt wallet + - Error - Σφάλμα + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + - + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - CoinControlDialog + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + Date - Ημερομηνία + - - - EditAddressDialog - &Label - Ετικέτα + + Confirmations + - &Address - Διεύθυνση + + Confirmed + - - - FreespaceChecker - - - HelpMessageDialog - version - έκδοση + + Copy address + - - - Intro - Welcome - Καλώς Ήλθατε + + Copy label + - Error - Σφάλμα + + + Copy amount + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - W&allet - Πορτοφόλι + + Copy transaction ID + - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Services - Υπηρεσίες + + Lock unspent + - - - ReceiveCoinsDialog - Remove - Αφαίρεση + + Unlock unspent + - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - Insufficient funds! - Κεφάλαια μη επαρκή + + Copy quantity + - Recommended: - Συνίσταται: + + Copy fee + - - - SendCoinsEntry - Message: - Μήνυμα: + + Copy after fee + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Insufficient funds - Κεφάλαια μη επαρκή + + Copy bytes + - Loading wallet... - Φόρτωση πορτοφολιού... + + Copy dust + - Rescanning... - Επανάληψη σάρωσης + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + AssetTableModel + + + Name + - Done loading - Η φόρτωση ολοκληρώθηκε + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + Ημερομηνία + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + Ετικέτα + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Διεύθυνση + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + έκδοση + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Καλώς Ήλθατε + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Σφάλμα + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Πορτοφόλι + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Υπηρεσίες + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + Κλείσιμο εφαρμογής + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + Πορτοφόλι + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Σφάλμα + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + Αφαίρεση + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Κεφάλαια μη επαρκή + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Συνίσταται: + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Μήνυμα: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Κεφάλαια μη επαρκή + + + + Loading block index... + + + + + Loading wallet... + Φόρτωση πορτοφολιού... + + + + Cannot downgrade wallet + + + + + Rescanning... + Επανάληψη σάρωσης + Error Σφάλμα diff --git a/src/qt/locale/raven_el_GR.ts b/src/qt/locale/raven_el_GR.ts index d4bfd17672..57e2190c85 100644 --- a/src/qt/locale/raven_el_GR.ts +++ b/src/qt/locale/raven_el_GR.ts @@ -1,104 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label Δεξί-κλικ για επεξεργασία της διεύθυνσης ή της ετικέτας + Create a new address Δημιουργία νέας διεύθυνσης + &New &Νέo + Copy the currently selected address to the system clipboard Αντέγραψε την επιλεγμένη διεύθυνση στο πρόχειρο του συστήματος + &Copy &Αντιγραφή + C&lose Κ&λείσιμο + Delete the currently selected address from the list Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + Export the data in the current tab to a file Εξαγωγή δεδομένων καρτέλας σε αρχείο + &Export &Εξαγωγή + &Delete &Διαγραφή + Choose the address to send coins to Επιλέξτε διεύθυνση αποστολής των νομισμάτων σας + Choose the address to receive coins with Επιλέξτε διεύθυνση παραλαβής νομισμάτων + C&hoose Ε&πιλογή + Sending addresses Διευθύνσεις αποστολής + Receiving addresses Διευθύνσεις λήψης + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + Αυτές είναι οι Raven διευθύνσεις για να στέλνεις πληρωμές. Πάντα ελέγχετε το ποσό και την διεύθενση παραλήπτη πριν στείλετε νομίσματα. + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Αυτές είναι οι Raven διευθύνσεις για να στέλνεις πληρωμές. Είναι προτινόμενο να χρησιμοποιείτε μια νέα διεύθυνση για κάθε συναλλαγή. + + + &Copy Address &Αντιγραφή Διεύθυνσης + Copy &Label Αντιγραφή&Ετικέτα + &Edit &Διόρθωση + Export Address List Εξαγωγή Λίστας Διεύθυνσεων + Comma separated file (*.csv) Αρχείο οριοθετημένο με κόμματα (*.csv) + Exporting Failed Αποτυχία Εξαγωγής - + + + There was an error trying to save the address list to %1. Please try again. + Παρουσιάστηκε ένα σφάλμα κατά την προσπάθεια αποθήκευσης της λίστας διευθύνσεων στο %1. Παρακαλώ προσπαθήστε ξανά. + + AddressTableModel + Label Ετικέτα + Address Διεύθυνση + (no label) (χωρίς ετικέτα) @@ -106,1849 +143,8150 @@ AskPassphraseDialog + Passphrase Dialog Φράση πρόσβασης + Enter passphrase Βάλτε κωδικό πρόσβασης + New passphrase &Αλλαγή κωδικού + Repeat new passphrase Επανέλαβε τον νέο κωδικό πρόσβασης + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Κρυπτογράφηση πορτοφολιού + + This operation needs your wallet passphrase to unlock the wallet. + + + + Unlock wallet Ξεκλειδωσε το πορτοφολι - Change passphrase - Αλλάξτε Φράση Πρόσβασης + + This operation needs your wallet passphrase to decrypt the wallet. + Αυτή η ενέργεια απαιτεί τον κωδικό πορτοφολιού για την αποκωδικοποίηση του πορτοφολιού. - Wallet unlock failed - Το Ξεκλείδωμα του Πορτοφολιού Απέτυχε + + Decrypt wallet + αποκωδικοποίηση πορτοφολιού - - - BanTableModel - - - RavenGUI - Sign &message... - Υπογραφή &Μηνύματος... + + Change passphrase + Αλλάξτε Φράση Πρόσβασης - Synchronizing with network... - Συγχρονισμός με το δίκτυο... + + Enter the old passphrase and new passphrase to the wallet. + Παραθέστε τον παλιό και τον καινούργιο κωδικό στο πορτοφόλι. - &Overview - &Επισκόπηση + + Confirm wallet encryption + επιβεβαίωση κρυπτογράφησης πορτοφολιού - Node - Κόμβος + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + Προειδοποίηση: Αν κρυπτογραφήσεις το πορτοφόλι σου και χάσεις τον κωδικό, <b> ΘΑ ΧΑΣΕΙΣ ΟΛΑ ΤΑ RAVENS</b>! - Show general overview of wallet - Εμφάνισε τη γενική εικόνα του πορτοφολιού + + Are you sure you wish to encrypt your wallet? + Είσαι σίγουρος για την κρυπτογράφηση του πορτοφολιού σου; - &Transactions - &Συναλλαγές + + + Wallet encrypted + Το πορτοφόλι κρυπτογραφήθηκε - Browse transaction history - Περιήγηση στο ιστορικό συναλλαγών + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + %1 θα κλείσει τώρα για να τελειώσει την διαδικασία κρυπτογράφησης. Θυμήσου οτι η κρυπτογράφηση του πορτοφολιού σας δεν μπορεί να προστατεύσει πλήρως τα ravens από το να κλαπούν λόγω κακόβουλου λογισμικού στον υπολογιστή σας. - E&xit - Έ&ξοδος + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Quit application - Εξοδος από την εφαρμογή + + + + + Wallet encryption failed + - &About %1 - &Περί %1 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Η κρυπτογράφηση πορτοφολιού απέτυχε λόγω εσωτερικού σφάλματος. Το πορτοφόλι σας δεν κρυπτογραφήθηκε. - About &Qt - Σχετικά με &Qt + + + The supplied passphrases do not match. + - Show information about Qt - Εμφάνισε πληροφορίες σχετικά με Qt + + Wallet unlock failed + Το Ξεκλείδωμα του Πορτοφολιού Απέτυχε - &Options... - &Επιλογές... + + + + The passphrase entered for the wallet decryption was incorrect. + - &Encrypt Wallet... - &Κρυπτογράφησε το πορτοφόλι + + Wallet decryption failed + - &Backup Wallet... - &Αντίγραφο ασφαλείας του πορτοφολιού + + Wallet passphrase was successfully changed. + - &Change Passphrase... - &Άλλαξε κωδικο πρόσβασης + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Sending addresses... - Διευθύνσεις αποστολής + + Asset Selection + - &Receiving addresses... - Διευθύνσεις λήψης + + Quantity: + - Open &URI... - 'Ανοιγμα &URI + + Bytes: + - Reindexing blocks on disk... - Φόρτωση ευρετηρίου μπλοκ στον σκληρο δισκο... + + Amount: + - Send coins to a Raven address - Στείλε νομίσματα σε μια διεύθυνση raven + + Dust: + - Backup wallet to another location - Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία + + Fee: + - Change the passphrase used for wallet encryption - Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού + + After Fee: + - &Debug window - &Παράθυρο αποσφαλμάτωσης + + Change: + - Open debugging and diagnostic console - Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών + + (un)select all + - &Verify message... - &Επιβεβαίωση μηνύματος + + Tree mode + - Raven - Raven + + List mode + - Wallet - Πορτοφόλι + + View assets that you have the ownership asset for + - &Send - &Αποστολή + + View Administrator Assets + - &Receive - &Παραλαβή + + Asset + - &Show / Hide - &Εμφάνισε/Κρύψε + + Amount + Ποσό - Show or hide the main Window - Εμφάνιση ή αποκρύψη του κεντρικου παράθυρου + + Received with label + - Encrypt the private keys that belong to your wallet - Κρυπτογραφήστε τα ιδιωτικά κλειδιά που ανήκουν στο πορτοφόλι σας + + Received with address + - Sign messages with your Raven addresses to prove you own them - Υπογράψτε ένα μήνυμα για να βεβαιώσετε πως είστε ο κάτοχος αυτής της διεύθυνσης + + Date + - Verify messages to ensure they were signed with specified Raven addresses - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Raven + + Confirmations + - &File - &Αρχείο + + Confirmed + - &Settings - &Ρυθμίσεις + + Copy address + - &Help - &Βοήθεια + + Copy label + - Tabs toolbar - Εργαλειοθήκη καρτελών + + + Copy amount + - Request payments (generates QR codes and raven: URIs) - Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις raven: ) + + Copy transaction ID + - Show the list of used sending addresses and labels - Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών αποστολής + + Lock unspent + - Show the list of used receiving addresses and labels - Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών λήψεως + + Unlock unspent + - Open a raven: URI or payment request - Άνοιγμα raven: URI αίτησης πληρωμής + + Copy quantity + - &Command-line options - &Επιλογές γραμμής εντολών + + Copy fee + - %1 behind - %1 πίσω + + Copy after fee + - Last received block was generated %1 ago. - Το τελευταίο μπλοκ που ελήφθη δημιουργήθηκε %1 πριν. + + Copy bytes + - Transactions after this will not yet be visible. - Οι συναλλαγές μετά από αυτό δεν θα είναι ακόμη ορατες. + + Copy dust + - Error - Σφάλμα + + Copy change + - Warning - Προειδοποίηση + + (%1 locked) + - Information - Πληροφορία + + yes + - Up to date - Ενημερωμένο + + no + - Catching up... - Ενημέρωση... + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Date: %1 - - Ημερομηνία: %1 - + + Can vary +/- %1 satoshi(s) per input. + - Amount: %1 - - Ποσό: %1 - + + + (no label) + (χωρίς ετικέτα) - Type: %1 - - Τύπος: %1 - + + change from %1 (%2) + - Label: %1 - - Ετικέτα: %1 - + + (change) + + + + AssetTableModel - Address: %1 - - Διεύθυνση: %1 - + + Name + - Sent transaction - Η συναλλαγή απεστάλη + + Quantity + + + + AssetsDialog - Incoming transaction - Εισερχόμενη συναλλαγή + + + Send Coins + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> + + Asset Control Features + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> + + Inputs... + - - - CoinControlDialog - Coin Selection - Επιλογή κερμάτων + + automatically selected + + + Insufficient funds! + + + + Quantity: - Ποσότητα: + + Bytes: - Bytes: + + Amount: - Ποσό: + - Fee: - Ταρίφα + + Dust: + - Dust: - Σκόνη + + Fee: + + After Fee: - Ταρίφα αλλαγής + + Change: - Ρέστα: + - (un)select all - (από)επιλογή όλων + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - Εμφάνιση τύπου δέντρο + + Custom change address + - List mode - Λίστα εντολών + + Transaction Fee: + - Amount - Ποσό + + Choose... + - Received with label - Παραλήφθηκε με επιγραφή + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Received with address - Παραλείφθηκε με την εξής διεύθυνση + + Warning: Fee estimation is currently not possible. + - Date - Ημερομηνία + + collapse fee-settings + - Confirmations - Επικυρώσεις + + Hide + - Confirmed - Επικυρωμένες + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Copy address - Αντιγραφή διεύθυνσης + + per kilobyte + - Copy label - Αντιγραφή ετικέτας + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Copy amount - Αντιγραφή ποσού + + (read the tooltip) + - Copy transaction ID - Αντιγραφή ταυτότητας συναλλαγής + + Recommended: + - (no label) - (χωρίς ετικέτα) + + Custom: + - - - EditAddressDialog - Edit Address - Επεξεργασία Διεύθυνσης + + (Smart fee not initialized yet. This usually takes a few blocks...) + - &Label - &Επιγραφή + + Confirmation time target: + - The label associated with this address list entry - Η ετικέτα που συνδέεται με αυτήν την καταχώρηση στο βιβλίο διευθύνσεων + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - The address associated with this address list entry. This can only be modified for sending addresses. - Η διεύθυνση σχετίζεται με αυτή την καταχώρηση του βιβλίου διευθύνσεων. Μπορεί να τροποποιηθεί μόνο για τις διευθύνσεις αποστολής. + + Request Replace-By-Fee + - &Address - &Διεύθυνση + + Confirm the send action + - New receiving address - Νέα Διεύθυνση Λήψης + + S&end + - New sending address - Νέα Διεύθυνση Αποστολής + + Clear all fields of the form. + - Edit receiving address - Διόρθωση Διεύθυνσης Λήψης + + Clear &All + - + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + Υπόλοιπο: + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + Η διεύθυνση παραλήπτη δεν είναι έγκυρη. Παρακαλώ ξαναελέγξτε. + + + + The amount to pay must be larger than 0. + Το ποσό πληρωμής πρέπει να είναι μεγαλύτερο από 0. + + + + The amount exceeds your balance. + Το ποσό υπερβαίνει το υπόλοιπο σας. + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + Πληρώστε μόνο τον απαιτούμενο τέλος των %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Επιβεβαίωση προσαρμοσμένης αλλαγής διεύθυνσης + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Η διεύθυνση που επιλέξατε για αλλαγή δεν είναι μέρος αυτού του πορτοφολιού. Μερικά ή όλα τα κεφάλαια στο πορτοφόλι σας θα σταλούν σε αυτήν την διεύθυνση. Είστε σίγουροι; + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + Επιλογή κερμάτων + + + + Quantity: + Ποσότητα: + + + + Bytes: + Bytes: + + + + Amount: + Ποσό: + + + + Fee: + Ταρίφα + + + + Dust: + Σκόνη + + + + After Fee: + Ταρίφα αλλαγής + + + + Change: + Ρέστα: + + + + (un)select all + (από)επιλογή όλων + + + + Tree mode + Εμφάνιση τύπου δέντρο + + + + List mode + Λίστα εντολών + + + + Amount + Ποσό + + + + Received with label + Παραλήφθηκε με επιγραφή + + + + Received with address + Παραλείφθηκε με την εξής διεύθυνση + + + + Date + Ημερομηνία + + + + Confirmations + Επικυρώσεις + + + + Confirmed + Επικυρωμένες + + + + Copy address + Αντιγραφή διεύθυνσης + + + + Copy label + Αντιγραφή ετικέτας + + + + + Copy amount + Αντιγραφή ποσού + + + + Copy transaction ID + Αντιγραφή ταυτότητας συναλλαγής + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (χωρίς ετικέτα) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + Έλεγχος διαθεσιμότητας + + + + Address: + Διεύθυνση: + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + H διεύθυνση RVN που θα κρατά αυτό το περιουσιακό στοιχείο (Πρέπει να σου ανήκει αυτή η διεύθυνση). Άφηστε το κενό για δημιουργία νέας διεύθυνσης. + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + Υπόλοιπο: + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + Η συναλλαγή του περιουσιαστικού στοιχείου στάλθηκε στο δίκτυο: + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Επιβεβαίωση προσαρμοσμένης αλλαγής διεύθυνσης + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Η διεύθυνση που επιλέξατε για αλλαγή δεν είναι μέρος αυτού του πορτοφολιού. Μερικά ή όλα τα κεφάλαια στο πορτοφόλι σας θα σταλούν σε αυτήν την διεύθυνση. Είστε σίγουροι; + + + + (no label) + (χωρίς ετικέτα) + + + + Pay only the required fee of %1 + Πληρώστε μόνο τον απαιτούμενο τέλος των %1 + + + + EditAddressDialog + + + Edit Address + Επεξεργασία Διεύθυνσης + + + + &Label + &Επιγραφή + + + + The label associated with this address list entry + Η ετικέτα που συνδέεται με αυτήν την καταχώρηση στο βιβλίο διευθύνσεων + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Η διεύθυνση σχετίζεται με αυτή την καταχώρηση του βιβλίου διευθύνσεων. Μπορεί να τροποποιηθεί μόνο για τις διευθύνσεις αποστολής. + + + + &Address + &Διεύθυνση + + + + New receiving address + Νέα Διεύθυνση Λήψης + + + + New sending address + Νέα Διεύθυνση Αποστολής + + + + Edit receiving address + Διόρθωση Διεύθυνσης Λήψης + + + + Edit sending address + Επεξεργασία διεύθυνση αποστολής + + + + The entered address "%1" is not a valid Raven address. + Η εισαχθείσα διεύθυνση "%1" δεν είναι έγκυρη Raven διεύθυνση. + + + + The entered address "%1" is already in the address book. + Η εισαχθείσα διεύθυνση "%1" είναι ήδη στο βιβλίο διευθύνσεων. + + + + Could not unlock wallet. + Το πορτοφόλι δεν κατάφερε να ξεκλειδωθεί. + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Θα δημιουργηθεί ένας νέος φάκελος δεδομένων. + + + + name + όνομα + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Κατάλογος ήδη υπάρχει. Προσθήκη %1, αν σκοπεύετε να δημιουργήσετε έναν νέο κατάλογο εδώ. + + + + Path already exists, and is not a directory. + Η διαδρομή υπάρχει ήδη αλλά δεν είναι φάκελος + + + + Cannot create data directory here. + Δεν μπορεί να δημιουργηθεί φάκελος δεδομένων εδώ. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + έκδοση + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + επιλογής γραμμής εντολών + + + + Usage: + Χρήση: + + + + command-line options + επιλογής γραμμής εντολών + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Καλώς ήρθατε + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Χρήση του προεπιλεγμένου φακέλου δεδομένων + + + + Use a custom data directory: + Προσαρμογή του φακέλου δεδομένων: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Σφάλμα: Ο καθορισμένος φάκελος δεδομένων "%1" δεν μπορεί να δημιουργηθεί. + + + + Error + Σφάλμα + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Φόρμα + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Χρόνος τελευταίου μπλοκ + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Απόκρυψη + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + 'Ανοιγμα &URI + + + + Open payment request from URI or file + Ανοιχτό αίτημα πληρωμής από URI ή απο αρχείο + + + + URI: + URI: + + + + Select payment request file + Επιλέξτε πληρωμή αρχείου αίτησης + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Ρυθμίσεις + + + + &Main + &Κύριο + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Μέγεθος κρυφής μνήμης βάσης δεδομένων. + + + + MB + MB + + + + Number of script &verification threads + Αριθμός script και γραμμές επαλήθευσης + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Διεύθυνση IP του διαμεσολαβητή (π.χ. 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Ελαχιστοποίηση αντί για έξοδο κατά το κλείσιμο του παραθύρου. Όταν αυτή η επιλογή είναι ενεργοποιημένη, η εφαρμογή θα κλείνει μόνο αν επιλεχθεί η Έξοδος στο μενού. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URLs από τρίτους (π.χ. ένας εξερευνητής μπλοκ) τα οποία εμφανίζονται στην καρτέλα συναλλαγών ως στοιχεία μενού. Το %s στα URL αντικαθιστάται από την τιμή της κατατεμαχισμένης συναλλαγής. + + + + Active command-line options that override above options: + Ενεργές επιλογές γραμμής-εντολών που παρακάμπτουν τις παραπάνω επιλογές: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Επαναφορα όλων των επιλογων του πελάτη σε default. + + + + &Reset Options + Επαναφορα ρυθμίσεων + + + + &Network + &Δίκτυο + + + + (0 = auto, <0 = leave that many cores free) + (0 = αυτόματο, <0 = ελεύθεροι πυρήνες) + + + + W&allet + Π&ορτοφόλι + + + + Expert + Έμπειρος + + + + Enable coin &control features + Επιλογή κατα πόσο να αναδείχνονται οι δυνατότητες ελέγχου κερμάτων. + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Εάν απενεργοποιήσετε το ξόδεμα μη επικυρωμένων ρέστων, τα ρέστα από μια συναλλαγή δεν μπορούν να χρησιμοποιηθούν έως ότου αυτή η συναλλαγή έχει έστω μια επικύρωση. Αυτό επίσης επηρεάζει το πως υπολογίζεται το υπόλοιπό σας. + + + + &Spend unconfirmed change + &Ξόδεμα μη επικυρωμένων ρέστων + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Αυτόματο άνοιγμα των θυρών Raven στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP. + + + + Map port using &UPnP + Απόδοση θυρών με χρήστη &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Σύνδεση στο Raven δίκτυο μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor) + + + + &Connect through SOCKS5 proxy (default proxy): + &Σύνδεση μέσω διαμεσολαβητή SOCKS5 (προεπιλεγμένος) + + + + + Proxy &IP: + &IP διαμεσολαβητή: + + + + + &Port: + &Θύρα: + + + + + Port of the proxy (e.g. 9050) + Θύρα διαμεσολαβητή + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Παράθυρο + + + + Show only a tray icon after minimizing the window. + Εμφάνιση μόνο εικονιδίου στην περιοχή ειδοποιήσεων κατά την ελαχιστοποίηση + + + + &Minimize to the tray instead of the taskbar + &Ελαχιστοποίηση στην περιοχή ειδοποιήσεων αντί της γραμμής εργασιών + + + + M&inimize on close + Ε&λαχιστοποίηση κατά το κλείσιμο + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Απεικόνιση + + + + User Interface &language: + Γλώσσα περιβάλλοντος εργασίας: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Μονάδα μέτρησης: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Διαλέξτε την προεπιλεγμένη υποδιαίρεση που θα εμφανίζεται όταν στέλνετε νομίσματα. + + + + Whether to show coin control features or not. + Επιλογή κατα πόσο να αναδείχνονται οι δυνατότητες ελέγχου κερμάτων. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &ΟΚ + + + + &Cancel + &Ακύρωση + + + + default + προεπιλογή + + + + none + κανένα + + + + Confirm options reset + Επιβεβαιώση των επιλογων επαναφοράς + + + + + Client restart required to activate changes. + Χρειάζεται επανεκκίνηση του προγράμματος για να ενεργοποιηθούν οι αλλαγές. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Η αλλαγή αυτή θα χρειαστεί επανεκκίνηση του προγράμματος + + + + The supplied proxy address is invalid. + Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή + + + + OverviewPage + + + Form + Φόρμα + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Raven μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. + + + + Watch-only: + Επίβλεψη μόνο: + + + + Available: + Διαθέσιμο: + + + + Your current spendable balance + Το τρέχον διαθέσιμο υπόλοιπο + + + + Pending: + Εκκρεμούν: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Το άθροισμα των συναλλαγών που δεν έχουν ακόμα επιβεβαιωθεί και δεν προσμετρώνται στο τρέχον διαθέσιμο υπόλοιπό σας + + + + Immature: + Ανώριμος + + + + Mined balance that has not yet matured + Εξορυγμενο υπόλοιπο που δεν έχει ακόμα ωριμάσει + + + + Total: + Σύνολο: + + + + Your current total balance + Το τρέχον συνολικό υπόλοιπο + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Το τρέχον υπόλοιπο σας σε διευθύνσεις παρακολούθησης μόνο + + + + Spendable: + Ξοδεμένα: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Πρόσφατες συναλλαγές + + + + Unconfirmed transactions to watch-only addresses + Μη επικυρωμένες συναλλαγές σε διευθύνσεις παρακολούθησης μόνο + + + + Mined balance in watch-only addresses that has not yet matured + Εξορυγμένο υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο που δεν έχει ωριμάσει ακόμα + + + + Current total balance in watch-only addresses + Το τρέχον συνολικό υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Ποσό + + + + Enter a Raven address (e.g. %1) + Εισάγετε μια διεύθυνση Raven (π.χ. %1) + + + + %1 d + %1 d + + + + %1 h + %1 ώ + + + + %1 m + %1 λ + + + + + %1 s + %1 s + + + + None + Κανένα + + + + N/A + Μη διαθέσιμο + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 και %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Μη διαθέσιμο + + + + Client version + Έκδοση Πελάτη + + + + &Information + &Πληροφορία + + + + Debug window + Παράθυρο αποσφαλμάτωσης + + + + General + Γενικά + + + + Using BerkeleyDB version + Χρήση BerkeleyDB έκδοσης + + + + Datadir + + + + + Startup time + Χρόνος εκκίνησης + + + + Network + Δίκτυο + + + + Name + Όνομα + + + + Number of connections + Αριθμός συνδέσεων + + + + Block chain + Αλυσίδα μπλοκ + + + + Current number of blocks + Τρέχον αριθμός μπλοκ + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Παραλήφθησαν + + + + + Sent + Αποστολή + + + + &Peers + &Χρήστες + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Επιλέξτε ένα χρήστη για να δείτε αναλυτικές πληροφορίες. + + + + Whitelisted + + + + + Direction + + + + + Version + Έκδοση + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Υπηρεσίες + + + + Ban Score + Σκορ αποκλησμού + + + + Connection Time + Χρόνος σύνδεσης + + + + Last Send + Τελευταία αποστολή + + + + Last Receive + Τελευταία λήψη + + + + Ping Time + Χρόνος καθυστέρησης + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Χρόνος τελευταίου μπλοκ + + + + &Open + &Άνοιγμα + + + + &Console + &Κονσόλα + + + + &Network Traffic + &Κίνηση δικτύου + + + + Totals + Σύνολα + + + + In: + Εισερχόμενα: + + + + Out: + Εξερχόμενα: + + + + Debug log file + Αρχείο καταγραφής εντοπισμού σφαλμάτων + + + + Clear console + Καθαρισμός κονσόλας + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Γράψτε <b>help</b> για μια επισκόπηση των διαθέσιμων εντολών + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + μέσω %1 + + + + + never + ποτέ + + + + Inbound + Εισερχόμενα + + + + Outbound + Εξερχόμενα + + + + Yes + + + + + No + + + + + + Unknown + Άγνωστο(α) + + + + RavenGUI + + + Sign &message... + Υπογραφή &Μηνύματος... + + + + Synchronizing with network... + Συγχρονισμός με το δίκτυο... + + + + &Overview + &Επισκόπηση + + + + Node + Κόμβος + + + + Show general overview of wallet + Εμφάνισε τη γενική εικόνα του πορτοφολιού + + + + &Transactions + &Συναλλαγές + + + + Browse transaction history + Περιήγηση στο ιστορικό συναλλαγών + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Έ&ξοδος + + + + Quit application + Εξοδος από την εφαρμογή + + + + &About %1 + &Περί %1 + + + + Show information about %1 + + + + + About &Qt + Σχετικά με &Qt + + + + Show information about Qt + Εμφάνισε πληροφορίες σχετικά με Qt + + + + &Options... + &Επιλογές... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Κρυπτογράφησε το πορτοφόλι + + + + &Backup Wallet... + &Αντίγραφο ασφαλείας του πορτοφολιού + + + + &Change Passphrase... + &Άλλαξε κωδικο πρόσβασης + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Διευθύνσεις αποστολής + + + + &Receiving addresses... + Διευθύνσεις λήψης + + + + Open &URI... + 'Ανοιγμα &URI + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + Η δραστηριότητα του δικτύου απενεργοποιήθηκε. + + + + Click to enable network activity again. + Κλικ για να ενεργοποιηθεί η δραστηριότητα δικτύου ξανά. + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Φόρτωση ευρετηρίου μπλοκ στον σκληρο δισκο... + + + + Send coins to a Raven address + Στείλε νομίσματα σε μια διεύθυνση raven + + + + Backup wallet to another location + Δημιουργία αντιγράφου ασφαλείας πορτοφολιού σε άλλη τοποθεσία + + + + Change the passphrase used for wallet encryption + Αλλαγή του κωδικού κρυπτογράφησης του πορτοφολιού + + + + Open debugging and diagnostic console + Άνοιγμα κονσόλας αποσφαλμάτωσης και διαγνωστικών + + + + &Verify message... + &Επιβεβαίωση μηνύματος + + + + Raven + Raven + + + + Wallet + Πορτοφόλι + + + + &Send + &Αποστολή + + + + &Receive + &Παραλαβή + + + + &Show / Hide + &Εμφάνισε/Κρύψε + + + + Show or hide the main Window + Εμφάνιση ή αποκρύψη του κεντρικου παράθυρου + + + + Encrypt the private keys that belong to your wallet + Κρυπτογραφήστε τα ιδιωτικά κλειδιά που ανήκουν στο πορτοφόλι σας + + + + Sign messages with your Raven addresses to prove you own them + Υπογράψτε ένα μήνυμα για να βεβαιώσετε πως είστε ο κάτοχος αυτής της διεύθυνσης + + + + Verify messages to ensure they were signed with specified Raven addresses + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως ανήκει μια συγκεκριμένη διεύθυνση Raven + + + + &File + &Αρχείο + + + + &Help + &Βοήθεια + + + + Request payments (generates QR codes and raven: URIs) + Αίτηση πληρωμών (δημιουργεί QR codes και διευθύνσεις raven: ) + + + + Show the list of used sending addresses and labels + Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών αποστολής + + + + Show the list of used receiving addresses and labels + Προβολή της λίστας των χρησιμοποιημένων διευθύνσεων και ετικετών λήψεως + + + + Open a raven: URI or payment request + Άνοιγμα raven: URI αίτησης πληρωμής + + + + &Command-line options + &Επιλογές γραμμής εντολών + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 πίσω + + + + Last received block was generated %1 ago. + Το τελευταίο μπλοκ που ελήφθη δημιουργήθηκε %1 πριν. + + + + Transactions after this will not yet be visible. + Οι συναλλαγές μετά από αυτό δεν θα είναι ακόμη ορατες. + + + + Error + Σφάλμα + + + + Warning + Προειδοποίηση + + + + Information + Πληροφορία + + + + Up to date + Ενημερωμένο + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Ενημέρωση... + + + + Date: %1 + + Ημερομηνία: %1 + + + + + + Amount: %1 + + Ποσό: %1 + + + + + Type: %1 + + Τύπος: %1 + + + + + Label: %1 + + Ετικέτα: %1 + + + + + Address: %1 + + Διεύθυνση: %1 + + + + + Sent transaction + Η συναλλαγή απεστάλη + + + + Incoming transaction + Εισερχόμενη συναλλαγή + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>ξεκλείδωτο</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Το πορτοφόλι είναι <b>κρυπτογραφημένο</b> και <b>κλειδωμένο</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Ποσό: + + + + &Label: + &Επιγραφή + + + + &Message: + &Μήνυμα: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + Ε&παναχρησιμοποίηση υπάρχουσας διεύθυνσης λήψης (δεν συνιστάται) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Καθαρισμός όλων των πεδίων της φόρμας. + + + + Clear + Καθαρισμός + + + + Requested payments history + + + + + &Request payment + &Αίτηση πληρωμής + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Εμφάνιση + + + + Remove the selected entries from the list + Αφαίρεση επιλεγμένων καταχωρίσεων από τη λίστα + + + + Remove + Αφαίρεση + + + + Copy URI + + + + + Copy label + Αντιγραφή ετικέτας + + + + Copy message + + + + + Copy amount + Αντιγραφή ποσού + + + + ReceiveRequestDialog + + + QR Code + Κώδικας QR + + + + Copy &URI + Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + + + + Copy &Address + Αντιγραφή &Διεύθυνσης + + + + &Save Image... + &Αποθήκευση εικόνας... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Διεύθυνση + + + + Amount + + + + + Label + Ετικέτα + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Ημερομήνια + + + + Label + Ετικέτα + + + + Message + + + + + (no label) + (χωρίς ετικέτα) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + Υπόλοιπο: + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + Συνολική ποσότητα + + + + + Units + Μονάδες + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + Η συναλλαγή του περιουσιαστικού στοιχείου στάλθηκε στο δίκτυο: + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Επιβεβαίωση προσαρμοσμένης αλλαγής διεύθυνσης + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Η διεύθυνση που επιλέξατε για αλλαγή δεν είναι μέρος αυτού του πορτοφολιού. Μερικά ή όλα τα κεφάλαια στο πορτοφόλι σας θα σταλούν σε αυτήν την διεύθυνση. Είστε σίγουροι; + + + + (no label) + + + + + Pay only the required fee of %1 + Πληρώστε μόνο τον απαιτούμενο τέλος των %1 + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + Λίστα διεύθυνσης + + + + Balance: + Υπόλοιπο: + + + + + Failed to create a change address + Απέτυχε η δημιουργία αλλαγής διεύθυνσης + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Αποστολή νομισμάτων + + + + Coin Control Features + Χαρακτηρηστικά επιλογής κερμάτων + + + + Inputs... + Εισροές... + + + + automatically selected + επιλεγμένο αυτόματα + + + + Insufficient funds! + Ανεπαρκές κεφάλαιο! + + + + Quantity: + Ποσότητα: + + + + Bytes: + Bytes: + + + + Amount: + Ποσό: + + + + Fee: + Ταρίφα + + + + After Fee: + Ταρίφα αλλαγής + + + + Change: + Ρέστα: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Όταν ενεργό, αλλά η διεύθυνση ρέστων είναι κενή ή άκυρη, τα ρέστα θα σταλούν σε μία πρόσφατα δημιουργημένη διεύθυνση. + + + + Custom change address + Προσαρμοσμένη διεύθυνση ρέστων + + + + Transaction Fee: + Τέλος συναλλαγής: + + + + Choose... + Επιλογή... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + ανά kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Απόκρυψη + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Προτεινόμενο: + + + + Custom: + Προσαρμογή: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Αποστολή σε πολλούς αποδέκτες ταυτόχρονα + + + + Add &Recipient + &Προσθήκη αποδέκτη + + + + Clear all fields of the form. + Καθαρισμός όλων των πεδίων της φόρμας. + + + + Dust: + Σκόνη + + + + Confirmation time target: + + + + + Clear &All + Καθαρισμός &Όλων + + + + Balance: + Υπόλοιπο: + + + + Confirm the send action + Επιβεβαίωση αποστολής + + + + S&end + Αποστολη + + + + Copy quantity + + + + + Copy amount + Αντιγραφή ποσού + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + Επιβεβαίωση ασποστολής νομισμάτων + + + + The recipient address is not valid. Please recheck. + Η διεύθυνση παραλήπτη δεν είναι έγκυρη. Παρακαλώ ξαναελέγξτε. + + + + The amount to pay must be larger than 0. + Το ποσό πληρωμής πρέπει να είναι μεγαλύτερο από 0. + + + + The amount exceeds your balance. + Το ποσό υπερβαίνει το υπόλοιπο σας. + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + Πληρώστε μόνο τον απαιτούμενο τέλος των %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + Επιβεβαίωση προσαρμοσμένης αλλαγής διεύθυνσης + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Η διεύθυνση που επιλέξατε για αλλαγή δεν είναι μέρος αυτού του πορτοφολιού. Μερικά ή όλα τα κεφάλαια στο πορτοφόλι σας θα σταλούν σε αυτήν την διεύθυνση. Είστε σίγουροι; + + + + (no label) + (χωρίς ετικέτα) + + + + SendCoinsEntry + + + + + A&mount: + &Ποσό: + + + + &Label: + &Επιγραφή + + + + Choose previously used address + Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί + + + + This is a normal payment. + Αυτή είναι μια απλή πληρωμή. + + + + The Raven address to send the payment to + Η διεύθυνση Raven που θα σταλεί η πληρωμή + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Επικόλληση διεύθυνσης από το βιβλίο διευθύνσεων + + + + Alt+P + Alt+P + + + + + + Remove this entry + Αφαίρεση αυτής της καταχώρησης + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Μήνυμα: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Εισάγεται μία ετικέτα για αυτή την διεύθυνση για να προστεθεί στη λίστα με τις χρησιμοποιημένες διευθύνσεις + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Σημείωση: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Μην απενεργοποιήσετε τον υπολογιστή μέχρι να κλείσει αυτό το παράθυρο. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Υπογραφές - Είσοδος / Επαλήθευση μήνυματος + + + + &Sign Message + &Υπογραφή Μηνύματος + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + Διεύθυνση Raven που θα σταλεί το μήνυμα + + + + + Choose previously used address + Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Επικόλληση διεύθυνσης από το βιβλίο διευθύνσεων + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Εισάγετε εδώ το μήνυμα που θέλετε να υπογράψετε + + + + Signature + Υπογραφή + + + + Copy the current signature to the system clipboard + Αντέγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + + + + Sign the message to prove you own this Raven address + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως σας ανήκει μια συγκεκριμένη διεύθυνση Raven + + + + Sign &Message + Υπογραφη μήνυματος + + + + Reset all sign message fields + Επαναφορά όλων των πεδίων μήνυματος + + + + + Clear &All + Καθαρισμός &Όλων + + + + &Verify Message + &Επιβεβαίωση μηνύματος + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + Διεύθυνση Raven η οποία το μήνυμα έχει υπογραφεί + + + + Verify the message to ensure it was signed with the specified Raven address + Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως υπογραφθηκε απο μια συγκεκριμένη διεύθυνση Raven + + + + Verify &Message + Επιβεβαίωση μηνύματος + + + + Reset all verify message fields + Επαναφορά όλων επαλήθευμενων πεδίων μήνυματος + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Ανοιχτό μέχρι %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/αποσυνδεδεμένο + + + + 0/unconfirmed, %1 + 0/ανεπιβεβαίωτο, %1 + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Ημερομηνία + + + + Source + Πηγή + + + + Generated + Παράχθηκε + + + + + + + + From + Από + + + + + unknown + Άγνωστο + + + + + + + + To + Προς + + + + + own address + δική σας διεύθυνση + + + + + + watch-only + παρακολούθηση-μόνο + + + + + label + ετικέτα + + + + + + + + + + Credit + Πίστωση + + + + matures in %n more block(s) + + + + + not accepted + μη έγκυρο + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + Συνολική πίστωση + + + + Transaction fee + Κόστος συναλλαγής + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Αυτό το παράθυρο δείχνει μια λεπτομερή περιγραφή της συναλλαγής + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Ημερομήνια + + + + Type + + + + + Label + Ετικέτα + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Ανοιχτό μέχρι %1 + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + παρακολούθηση-μόνο + + + + (n/a) + + + + + (no label) + (χωρίς ετικέτα) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + - FreespaceChecker + TransactionView - A new data directory will be created. - Θα δημιουργηθεί ένας νέος φάκελος δεδομένων. + + + All + - name - όνομα + + Today + - Directory already exists. Add %1 if you intend to create a new directory here. - Κατάλογος ήδη υπάρχει. Προσθήκη %1, αν σκοπεύετε να δημιουργήσετε έναν νέο κατάλογο εδώ. + + This week + - Path already exists, and is not a directory. - Η διαδρομή υπάρχει ήδη αλλά δεν είναι φάκελος + + This month + - Cannot create data directory here. - Δεν μπορεί να δημιουργηθεί φάκελος δεδομένων εδώ. + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Αντιγραφή διεύθυνσης + + + + Copy label + Αντιγραφή ετικέτας + + + + Copy amount + Αντιγραφή ποσού + + + + Copy transaction ID + Αντιγραφή ταυτότητας συναλλαγής + + + + Copy raw transaction + Αντιγραφή ανεπεξέργαστης συναλλαγής + + + + Copy full transaction details + + + + + Edit label + Επεξεργασία ετικέτας + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Αρχείο οριοθετημένο με κόμματα (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Ημερομήνια + + + + Type + + + + + Label + Ετικέτα + + + + Address + Διεύθυνση + + + + Asset + + + + + ID + + + + + Exporting Failed + Αποτυχία Εξαγωγής + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + - HelpMessageDialog + UnitDisplayStatusBarControl - version - έκδοση + + Unit to show amounts in. Click to select another unit. + Μονάδα μέτρησης προβολής ποσών. Κάντε κλικ για επιλογή άλλης μονάδας. + + + WalletFrame - (%1-bit) - (%1-bit) + + No wallet has been loaded. + + + + WalletModel - Command-line options - επιλογής γραμμής εντολών + + Send Coins + - Usage: - Χρήση: + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - command-line options - επιλογής γραμμής εντολών + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Επιλογές: + + + + Specify data directory + Ορισμός φακέλου δεδομένων + + + + Connect to a node to retrieve peer addresses, and disconnect + Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh + + + + Specify your own public address + Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. + + + + Accept command line and JSON-RPC commands + Αποδοχή εντολών κονσόλας και JSON-RPC + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + - - - Intro - Welcome - Καλώς ήρθατε + + Run in the background as a daemon and accept commands + Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών - Use the default data directory - Χρήση του προεπιλεγμένου φακέλου δεδομένων + + Unable to start HTTP server. See debug log for details. + - Use a custom data directory: - Προσαρμογή του φακέλου δεδομένων: + + Raven Core + Raven Core - Error: Specified data directory "%1" cannot be created. - Σφάλμα: Ο καθορισμένος φάκελος δεδομένων "%1" δεν μπορεί να δημιουργηθεί. + + The %s developers + - Error - Σφάλμα + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - - %n GB of free space available - %n GB ελεύθερου χώρου διαθέσιμα%n GB ελεύθερου χώρου διαθέσιμα + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - - (of %n GB needed) - (από το %n GB που απαιτείται)(από τα %n GB που απαιτούνται) + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - - - ModalOverlay - Form - Φόρμα + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Αποθηκευση σε συγκεκριμένη διεύθυνση. Χρησιμοποιήστε τα πλήκτρα [Host] : συμβολισμός θύρα για IPv6 - Last block time - Χρόνος τελευταίου μπλοκ + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Hide - Απόκρυψη + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - - - OpenURIDialog - Open URI - 'Ανοιγμα &URI + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Open payment request from URI or file - Ανοιχτό αίτημα πληρωμής από URI ή απο αρχείο + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - URI: - URI: + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - Select payment request file - Επιλέξτε πληρωμή αρχείου αίτησης + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - - - OptionsDialog - Options - Ρυθμίσεις + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - &Main - &Κύριο + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - Size of &database cache - Μέγεθος κρυφής μνήμης βάσης δεδομένων. + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - MB - MB + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Number of script &verification threads - Αριθμός script και γραμμές επαλήθευσης + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - Accept connections from outside - Αποδοχή συνδέσεων απο έξω + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Allow incoming connections - Αποδοχή εισερχόμενων συναλλαγών + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Διεύθυνση IP του διαμεσολαβητή (π.χ. 127.0.0.1 / IPv6: ::1) + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Ελαχιστοποίηση αντί για έξοδο κατά το κλείσιμο του παραθύρου. Όταν αυτή η επιλογή είναι ενεργοποιημένη, η εφαρμογή θα κλείνει μόνο αν επιλεχθεί η Έξοδος στο μενού. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URLs από τρίτους (π.χ. ένας εξερευνητής μπλοκ) τα οποία εμφανίζονται στην καρτέλα συναλλαγών ως στοιχεία μενού. Το %s στα URL αντικαθιστάται από την τιμή της κατατεμαχισμένης συναλλαγής. + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Third party transaction URLs - Διευθύνσεις τρίτων συναλλαγών. + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - Active command-line options that override above options: - Ενεργές επιλογές γραμμής-εντολών που παρακάμπτουν τις παραπάνω επιλογές: + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + - Reset all client options to default. - Επαναφορα όλων των επιλογων του πελάτη σε default. + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - &Reset Options - Επαναφορα ρυθμίσεων + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - &Network - &Δίκτυο + + This is the transaction fee you may discard if change is smaller than dust at this level + - (0 = auto, <0 = leave that many cores free) - (0 = αυτόματο, <0 = ελεύθεροι πυρήνες) + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - W&allet - Π&ορτοφόλι + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Expert - Έμπειρος + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Enable coin &control features - Επιλογή κατα πόσο να αναδείχνονται οι δυνατότητες ελέγχου κερμάτων. + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Εάν απενεργοποιήσετε το ξόδεμα μη επικυρωμένων ρέστων, τα ρέστα από μια συναλλαγή δεν μπορούν να χρησιμοποιηθούν έως ότου αυτή η συναλλαγή έχει έστω μια επικύρωση. Αυτό επίσης επηρεάζει το πως υπολογίζεται το υπόλοιπό σας. + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - &Spend unconfirmed change - &Ξόδεμα μη επικυρωμένων ρέστων + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Αυτόματο άνοιγμα των θυρών Raven στον δρομολογητή. Λειτουργεί μόνο αν ο δρομολογητής σας υποστηρίζει τη λειτουργία UPnP. + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Map port using &UPnP - Απόδοση θυρών με χρήστη &UPnP + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Connect to the Raven network through a SOCKS5 proxy. - Σύνδεση στο Raven δίκτυο μέσω διαμεσολαβητή SOCKS5 (π.χ. για σύνδεση μέσω Tor) + + %d of last 100 blocks have unexpected version + - &Connect through SOCKS5 proxy (default proxy): - &Σύνδεση μέσω διαμεσολαβητή SOCKS5 (προεπιλεγμένος) + + %s corrupt, salvage failed + - Proxy &IP: - &IP διαμεσολαβητή: + + -maxmempool must be at least %d MB + - &Port: - &Θύρα: + + <category> can be: + - Port of the proxy (e.g. 9050) - Θύρα διαμεσολαβητή + + Accept connections from outside (default: 1 if no -proxy or -connect) + - &Window - &Παράθυρο + + Append comment to the user agent string + - Show only a tray icon after minimizing the window. - Εμφάνιση μόνο εικονιδίου στην περιοχή ειδοποιήσεων κατά την ελαχιστοποίηση + + Attempt to recover private keys from a corrupt wallet on startup + - &Minimize to the tray instead of the taskbar - &Ελαχιστοποίηση στην περιοχή ειδοποιήσεων αντί της γραμμής εργασιών + + Block creation options: + Αποκλεισμός επιλογων δημιουργίας: - M&inimize on close - Ε&λαχιστοποίηση κατά το κλείσιμο + + Cannot resolve -%s address: '%s' + - &Display - &Απεικόνιση + + Chain selection options: + - User Interface &language: - Γλώσσα περιβάλλοντος εργασίας: + + Change index out of range + - &Unit to show amounts in: - &Μονάδα μέτρησης: + + Connection options: + Επιλογές σύνδεσης: - Choose the default subdivision unit to show in the interface and when sending coins. - Διαλέξτε την προεπιλεγμένη υποδιαίρεση που θα εμφανίζεται όταν στέλνετε νομίσματα. + + Copyright (C) %i-%i + - Whether to show coin control features or not. - Επιλογή κατα πόσο να αναδείχνονται οι δυνατότητες ελέγχου κερμάτων. - + + Corrupted block database detected + Εντοπισθηκε διεφθαρμενη βαση δεδομενων των μπλοκ - &OK - &ΟΚ + + Debugging/Testing options: + - &Cancel - &Ακύρωση + + Do not load the wallet and disable wallet RPC calls + - default - προεπιλογή + + Do you want to rebuild the block database now? + Θελετε να δημιουργηθει τωρα η βαση δεδομενων του μπλοκ? - none - κανένα + + Enable publish hash block in <address> + - Confirm options reset - Επιβεβαιώση των επιλογων επαναφοράς + + Enable publish hash transaction in <address> + - Client restart required to activate changes. - Χρειάζεται επανεκκίνηση του προγράμματος για να ενεργοποιηθούν οι αλλαγές. + + Enable publish raw block in <address> + - This change would require a client restart. - Η αλλαγή αυτή θα χρειαστεί επανεκκίνηση του προγράμματος + + Enable publish raw transaction in <address> + - The supplied proxy address is invalid. - Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή + + Enable transaction replacement in the memory pool (default: %u) + - - - OverviewPage - Form - Φόρμα + + Error initializing block database + Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων μπλοκ - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Οι πληροφορίες που εμφανίζονται μπορεί να είναι ξεπερασμένες. Το πορτοφόλι σας συγχρονίζεται αυτόματα με το δίκτυο Raven μετά από μια σύνδεση, αλλά αυτή η διαδικασία δεν έχει ακόμη ολοκληρωθεί. + + Error initializing wallet database environment %s! + Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων πορτοφόλιου %s! - Watch-only: - Επίβλεψη μόνο: + + Error loading %s + - Available: - Διαθέσιμο: + + Error loading %s: Wallet corrupted + - Your current spendable balance - Το τρέχον διαθέσιμο υπόλοιπο + + Error loading %s: Wallet requires newer version of %s + - Pending: - Εκκρεμούν: + + Error loading block database + Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Το άθροισμα των συναλλαγών που δεν έχουν ακόμα επιβεβαιωθεί και δεν προσμετρώνται στο τρέχον διαθέσιμο υπόλοιπό σας + + Error opening block database + Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ - Immature: - Ανώριμος + + Error: Disk space is low! + Προειδοποίηση: Χαμηλός χώρος στο δίσκο - Mined balance that has not yet matured - Εξορυγμενο υπόλοιπο που δεν έχει ακόμα ωριμάσει + + Failed to listen on any port. Use -listen=0 if you want this. + ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. - Balances - Υπόλοιπο: + + Importing... + ΕΙσαγωγή... - Total: - Σύνολο: + + Incorrect or no genesis block found. Wrong datadir for network? + - Your current total balance - Το τρέχον συνολικό υπόλοιπο + + Initialization sanity check failed. %s is shutting down. + - Your current balance in watch-only addresses - Το τρέχον υπόλοιπο σας σε διευθύνσεις παρακολούθησης μόνο + + Invalid amount for -%s=<amount>: '%s' + - Spendable: - Ξοδεμένα: + + Invalid amount for -discardfee=<amount>: '%s' + - Recent transactions - Πρόσφατες συναλλαγές + + Invalid amount for -fallbackfee=<amount>: '%s' + - Unconfirmed transactions to watch-only addresses - Μη επικυρωμένες συναλλαγές σε διευθύνσεις παρακολούθησης μόνο + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Mined balance in watch-only addresses that has not yet matured - Εξορυγμένο υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο που δεν έχει ωριμάσει ακόμα + + Loading P2P addresses... + - Current total balance in watch-only addresses - Το τρέχον συνολικό υπόλοιπο σε διευθύνσεις παρακολούθησης μόνο + + Loading banlist... + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Ποσό + + Location of the auth cookie (default: data dir) + - Enter a Raven address (e.g. %1) - Εισάγετε μια διεύθυνση Raven (π.χ. %1) + + Not enough file descriptors available. + Δεν ειναι αρκετες περιγραφες αρχείων διαθέσιμες. - %1 d - %1 d + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Μόνο σύνδεση σε κόμβους του δικτύου <net> (ipv4, ipv6 ή onion) - %1 h - %1 ώ + + Print this help message and exit + - %1 m - %1 λ + + Print version and exit + - %1 s - %1 s + + Prune cannot be configured with a negative value. + - None - Κανένα + + Prune mode is incompatible with -txindex. + - N/A - Μη διαθέσιμο + + Rebuild chain state and block index from the blk*.dat files on disk + - %1 ms - %1 ms + + Rebuild chain state from the currently indexed blocks + - %1 and %2 - %1 και %2 + + Replaying blocks... + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - Μη διαθέσιμο + + Rewinding blocks... + - Client version - Έκδοση Πελάτη + + Set database cache size in megabytes (%d to %d, default: %d) + - &Information - &Πληροφορία + + Specify wallet file (within data directory) + Επιλέξτε αρχείο πορτοφολιού (μέσα απο κατάλογο δεδομένων) - Debug window - Παράθυρο αποσφαλμάτωσης + + The source code is available from %s. + - General - Γενικά + + Transaction fee and change calculation failed + - Using BerkeleyDB version - Χρήση BerkeleyDB έκδοσης + + Unable to bind to %s on this computer. %s is probably already running. + - Startup time - Χρόνος εκκίνησης + + Unsupported argument -benchmark ignored, use -debug=bench. + - Network - Δίκτυο + + Unsupported argument -debugnet ignored, use -debug=net. + - Name - Όνομα + + Unsupported argument -tor found, use -onion. + - Number of connections - Αριθμός συνδέσεων + + Unsupported logging category %s=%s. + - Block chain - Αλυσίδα μπλοκ + + Upgrading UTXO database + - Current number of blocks - Τρέχον αριθμός μπλοκ + + Use UPnP to map the listening port (default: %u) + - Received - Παραλήφθησαν + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + - Sent - Αποστολή + + Verifying blocks... + Επαλήθευση των μπλοκ... - &Peers - &Χρήστες + + Wallet %s resides outside data directory %s + Το πορτοφόλι %s βρίσκεται έξω από το φάκελο δεδομένων %s - Select a peer to view detailed information. - Επιλέξτε ένα χρήστη για να δείτε αναλυτικές πληροφορίες. + + Wallet debugging/testing options: + - Version - Έκδοση + + Wallet needed to be rewritten: restart %s to complete + - Services - Υπηρεσίες + + Wallet options: + Επιλογές πορτοφολιού: - Ban Score - Σκορ αποκλησμού + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Connection Time - Χρόνος σύνδεσης + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Last Send - Τελευταία αποστολή + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Last Receive - Τελευταία λήψη + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Ping Time - Χρόνος καθυστέρησης + + Error: Listening for incoming connections failed (listen returned error %s) + - Last block time - Χρόνος τελευταίου μπλοκ + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - &Open - &Άνοιγμα + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - &Console - &Κονσόλα + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - &Network Traffic - &Κίνηση δικτύου + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - &Clear - &Εκκαθάριση + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Totals - Σύνολα + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - In: - Εισερχόμενα: + + The transaction amount is too small to send after the fee has been deducted + - Out: - Εξερχόμενα: + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Debug log file - Αρχείο καταγραφής εντοπισμού σφαλμάτων + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Clear console - Καθαρισμός κονσόλας + + (default: %u) + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Χρησιμοποιήστε το πάνω και κάτω βέλος για να περιηγηθείτε στο ιστορικο, και <b>Ctrl-L</b> για εκκαθαριση οθονης. + + Accept public REST requests (default: %u) + - Type <b>help</b> for an overview of available commands. - Γράψτε <b>help</b> για μια επισκόπηση των διαθέσιμων εντολών + + Automatically create Tor hidden service (default: %d) + - %1 B - %1 B + + Connect through SOCKS5 proxy + Σύνδεση μέσω διαμεσολαβητή SOCKS5 - %1 KB - %1 KB + + Error loading %s: You can't disable HD on an already existing HD wallet + - %1 MB - %1 MB + + Error reading from database, shutting down. + Σφάλμα ανάγνωσης από τη βάση δεδομένων, γίνεται τερματισμός. - %1 GB - %1 GB + + Error upgrading chainstate database + - via %1 - μέσω %1 + + Imports blocks from external blk000??.dat file on startup + - never - ποτέ + + Information + Πληροφορία - Inbound - Εισερχόμενα + + Invalid -onion address or hostname: '%s' + - Outbound - Εξερχόμενα + + Invalid -proxy address or hostname: '%s' + - Unknown - Άγνωστο(α) + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - - - ReceiveCoinsDialog - &Amount: - &Ποσό: + + Invalid netmask specified in -whitelist: '%s' + - &Label: - &Επιγραφή + + Keep at most <n> unconnectable transactions in memory (default: %u) + - &Message: - &Μήνυμα: + + Need to specify a port with -whitebind: '%s' + - R&euse an existing receiving address (not recommended) - Ε&παναχρησιμοποίηση υπάρχουσας διεύθυνσης λήψης (δεν συνιστάται) + + Node relay options: + Επιλογές αναμετάδοσης κόμβου: - Clear all fields of the form. - Καθαρισμός όλων των πεδίων της φόρμας. + + RPC server options: + Επιλογές διακομιστή RPC: - Clear - Καθαρισμός + + Reducing -maxconnections from %d to %d, because of system limitations. + - &Request payment - &Αίτηση πληρωμής + + Rescan the block chain for missing wallet transactions on startup + - Show - Εμφάνιση + + Send trace/debug info to console instead of debug.log file + Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log - Remove the selected entries from the list - Αφαίρεση επιλεγμένων καταχωρίσεων από τη λίστα + + Show all debugging options (usage: --help -help-debug) + Προβολή όλων των επιλογών εντοπισμού σφαλμάτων (χρήση: --help -help-debug) - Remove - Αφαίρεση + + Shrink debug.log file on client startup (default: 1 when no -debug) + Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) - Copy label - Αντιγραφή ετικέτας + + Signing transaction failed + Η υπογραφή συναλλαγής απέτυχε - Copy amount - Αντιγραφή ποσού + + The transaction amount is too small to pay the fee + - - - ReceiveRequestDialog - QR Code - Κώδικας QR + + This is experimental software. + Η εφαρμογή είναι σε πειραματικό στάδιο. - Copy &URI - Αντιγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + + Tor control port password (default: empty) + - Copy &Address - Αντιγραφή &Διεύθυνσης + + Tor control port to use if onion listening enabled (default: %s) + - &Save Image... - &Αποθήκευση εικόνας... + + Transaction amount too small + Το ποσό της συναλλαγής είναι πολύ μικρο - Address - Διεύθυνση + + Transaction too large for fee policy + - Label - Ετικέτα + + Transaction too large + Η συναλλαγή ειναι πολύ μεγάλη - - - RecentRequestsTableModel - Date - Ημερομήνια + + Unable to bind to %s on this computer (bind returned error %s) + - Label - Ετικέτα + + Upgrade wallet to latest format on startup + - (no label) - (χωρίς ετικέτα) + + Username for JSON-RPC connections + Όνομα χρήστη για τις συνδέσεις JSON-RPC - - - SendCoinsDialog - Send Coins - Αποστολή νομισμάτων + + Valid Verifier + - Coin Control Features - Χαρακτηρηστικά επιλογής κερμάτων + + Variable is not allow in the expression: ' + - Inputs... - Εισροές... + + Verifier String doesn't exist for asset: + - automatically selected - επιλεγμένο αυτόματα + + Verifier String for asset trasnfer, not found + - Insufficient funds! - Ανεπαρκές κεφάλαιο! + + Verifier not found for asset: + - Quantity: - Ποσότητα: + + Verifier string can not be empty. To default to true, use "true" + - Bytes: - Bytes: + + Verifier string is empty + - Amount: - Ποσό: + + Verifier string not found + - Fee: - Ταρίφα + + Verifying wallet(s)... + - After Fee: - Ταρίφα αλλαγής + + Warning + Προειδοποίηση - Change: - Ρέστα: + + Warning: unknown new rules activated (versionbit %i) + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Όταν ενεργό, αλλά η διεύθυνση ρέστων είναι κενή ή άκυρη, τα ρέστα θα σταλούν σε μία πρόσφατα δημιουργημένη διεύθυνση. + + Whether to operate in a blocks only mode (default: %u) + - Custom change address - Προσαρμοσμένη διεύθυνση ρέστων + + You need to rebuild the database using -reindex to change -txindex + - Transaction Fee: - Τέλος συναλλαγής: + + Zapping all transactions from wallet... + Μεταφορά όλων των συναλλαγών απο το πορτοφόλι - Choose... - Επιλογή... + + ZeroMQ notification options: + - per kilobyte - ανά kilobyte + + Password for JSON-RPC connections + Κωδικός για τις συνδέσεις JSON-RPC - Hide - Απόκρυψη + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) - total at least - συνολικά τουλάχιστον + + Allow DNS lookups for -addnode, -seednode and -connect + Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων - Recommended: - Προτεινόμενο: + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Custom: - Προσαρμογή: + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - normal - κανονικό + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - fast - Γρήγορο + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Send to multiple recipients at once - Αποστολή σε πολλούς αποδέκτες ταυτόχρονα + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Add &Recipient - &Προσθήκη αποδέκτη + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Clear all fields of the form. - Καθαρισμός όλων των πεδίων της φόρμας. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Dust: - Σκόνη + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Clear &All - Καθαρισμός &Όλων + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Balance: - Υπόλοιπο: + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Πόσο εξονυχιστική να είναι η επιβεβαίωση του μπλοκ (0-4, προεπιλογή: %u) - Confirm the send action - Επιβεβαίωση αποστολής + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - S&end - Αποστολη + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Copy amount - Αντιγραφή ποσού + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - (no label) - (χωρίς ετικέτα) + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - - - SendCoinsEntry - A&mount: - &Ποσό: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Pay &To: - Πληρωμή &σε: + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - &Label: - &Επιγραφή + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Choose previously used address - Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - This is a normal payment. - Αυτή είναι μια απλή πληρωμή. + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Διατηρήση ένος πλήρες ευρετήριου συναλλαγών (προεπιλογή: %u) - The Raven address to send the payment to - Η διεύθυνση Raven που θα σταλεί η πληρωμή + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Alt+A - Alt+A + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: %u) - Paste address from clipboard - Επικόλληση διεύθυνσης από το βιβλίο διευθύνσεων + + Output debugging information (default: %u, supplying <category> is optional) + - Alt+P - Alt+P + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Remove this entry - Αφαίρεση αυτής της καταχώρησης + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Message: - Μήνυμα: + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Enter a label for this address to add it to the list of used addresses - Εισάγεται μία ετικέτα για αυτή την διεύθυνση για να προστεθεί στη λίστα με τις χρησιμοποιημένες διευθύνσεις + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Pay To: - Πληρωμή σε: + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Memo: - Σημείωση: + + Support filtering of blocks and transaction with bloom filters (default: %u) + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Μην απενεργοποιήσετε τον υπολογιστή μέχρι να κλείσει αυτό το παράθυρο. + + The default height that is required before rewards are allowed to be sent out + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Υπογραφές - Είσοδος / Επαλήθευση μήνυματος + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - &Sign Message - &Υπογραφή Μηνύματος + + This address doesn't contain the correct tags to pass the verifier string check: + - The Raven address to sign the message with - Διεύθυνση Raven που θα σταλεί το μήνυμα + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Choose previously used address - Επιλογή διεύθυνσης που έχει ήδη χρησιμοποιηθεί + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Alt+A - Alt+A + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Paste address from clipboard - Επικόλληση διεύθυνσης από το βιβλίο διευθύνσεων + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Alt+P - Alt+P + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Enter the message you want to sign here - Εισάγετε εδώ το μήνυμα που θέλετε να υπογράψετε + + Unable to reissue asset: unit must be larger than current unit selection + - Signature - Υπογραφή + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Copy the current signature to the system clipboard - Αντέγραφη της επιλεγμενης διεύθυνσης στο πρόχειρο του συστηματος + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Sign the message to prove you own this Raven address - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως σας ανήκει μια συγκεκριμένη διεύθυνση Raven + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Sign &Message - Υπογραφη μήνυματος + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Reset all sign message fields - Επαναφορά όλων των πεδίων μήνυματος + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Clear &All - Καθαρισμός &Όλων + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - &Verify Message - &Επιβεβαίωση μηνύματος + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - The Raven address the message was signed with - Διεύθυνση Raven η οποία το μήνυμα έχει υπογραφεί + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Verify the message to ensure it was signed with the specified Raven address - Υπογράψτε ένα μήνυμα για ν' αποδείξετε πως υπογραφθηκε απο μια συγκεκριμένη διεύθυνση Raven + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Verify &Message - Επιβεβαίωση μηνύματος + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Reset all verify message fields - Επαναφορά όλων επαλήθευμενων πεδίων μήνυματος + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - - - SplashScreen - [testnet] - [testnet] + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - - - TrafficGraphWidget - KB/s - KB/s + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - - - TransactionDesc - Open until %1 - Ανοιχτό μέχρι %1 + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - %1/offline - %1/αποσυνδεδεμένο + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - 0/unconfirmed, %1 - 0/ανεπιβεβαίωτο, %1 + + %s is set very high! + - Date - Ημερομηνία + + ' doesn't exist in the database + - Source - Πηγή + + ' has already been used + - Generated - Παράχθηκε + + ' is not a valid character in the expression: + - From - Από + + ' the amount trying to reissue is to large + - unknown - Άγνωστο + + (default: %s) + - To - Προς + + A space separated list of 12-words used to import a bip44 wallet + - own address - δική σας διεύθυνση + + Always query for peer addresses via DNS lookup (default: %u) + - watch-only - παρακολούθηση-μόνο + + Asset Transfer amounts must be greater than 0 + - label - ετικέτα + + Asset doesn't exist: + - Credit - Πίστωση + + Asset must be a qualifier, sub qualifier, or a restricted asset + - not accepted - μη έγκυρο + + Asset name is not valid + - Total credit - Συνολική πίστωση + + Asset with this name is already in the mempool + - Transaction fee - Κόστος συναλλαγής + + Done Loading + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Αυτό το παράθυρο δείχνει μια λεπτομερή περιγραφή της συναλλαγής + + Enable publish raw asset messages in <address> + - - - TransactionTableModel - Date - Ημερομήνια + + Error creating %s: You can't create non-HD wallets with this version. + - Label - Ετικέτα + + Error loading wallet %s. -wallet filename must be a regular file. + - Open until %1 - Ανοιχτό μέχρι %1 + + Error loading wallet %s. Duplicate -wallet filename specified. + - watch-only - παρακολούθηση-μόνο + + Error loading wallet %s. Invalid characters in -wallet filename. + - (no label) - (χωρίς ετικέτα) + + Error not set + - - - TransactionView - Copy address - Αντιγραφή διεύθυνσης + + Error writing bip 39 passphrase to database + - Copy label - Αντιγραφή ετικέτας + + Error writing bip 39 vchseed to database + - Copy amount - Αντιγραφή ποσού + + Error writing bip 39 words to database + - Copy transaction ID - Αντιγραφή ταυτότητας συναλλαγής + + Every '(' must have a corresponding ')' in the expression: + - Copy raw transaction - Αντιγραφή ανεπεξέργαστης συναλλαγής + + Failed to extract destination from change script + - Edit label - Επεξεργασία ετικέτας + + Failed to find restricted asset change address from inputs + - Comma separated file (*.csv) - Αρχείο οριοθετημένο με κόμματα (*.csv) + + Failed to get asset data from script + - Date - Ημερομήνια + + Failed to get verifier string from output: + - Label - Ετικέτα + + Failed to load Assets Database + - Address - Διεύθυνση + + Flag must be 1 or 0 + - Exporting Failed - Αποτυχία Εξαγωγής + + How many blocks to check at startup (default: %u, 0 = all) + Πόσα μπλοκ να ελέγχθουν κατά την εκκίνηση (προεπιλογή: %u, 0 = όλα) - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Μονάδα μέτρησης προβολής ποσών. Κάντε κλικ για επιλογή άλλης μονάδας. + + Include IP addresses in debug output (default: %u) + Να συμπεριληφθεί η διεύθυνση IP στην αναφορά? (προεπιλογή: %u) - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Επιλογές: + + Init Message Channels - Scanning Asset Transactions + - Specify data directory - Ορισμός φακέλου δεδομένων + + Insufficient asset funds + - Connect to a node to retrieve peer addresses, and disconnect - Σύνδεση σε έναν κόμβο για την ανάκτηση διευθύνσεων από ομοτίμους, και αποσυνδέσh + + Invalid Qualifier Name: + - Specify your own public address - Διευκρινίστε τη δικιά σας δημόσια διεύθυνση. + + Invalid expressions in verifier string: + - Accept command line and JSON-RPC commands - Αποδοχή εντολών κονσόλας και JSON-RPC + + Invalid parameter: amount must be + - Run in the background as a daemon and accept commands - Εκτέλεση στο παρασκήνιο κι αποδοχή εντολών + + Invalid parameter: amount must be between + - Raven Core - Raven Core + + Invalid parameter: asset amount can't be equal to or less than zero. + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Αποθηκευση σε συγκεκριμένη διεύθυνση. Χρησιμοποιήστε τα πλήκτρα [Host] : συμβολισμός θύρα για IPv6 + + Invalid parameter: asset amount greater than max money: + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) + + Invalid parameter: asset_name ' + - Block creation options: - Αποκλεισμός επιλογων δημιουργίας: + + Invalid parameter: has_ipfs must be 0 or 1. + - Connection options: - Επιλογές σύνδεσης: + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Corrupted block database detected - Εντοπισθηκε διεφθαρμενη βαση δεδομενων των μπλοκ + + Invalid parameter: reissuable must be 0 or 1 + - Do you want to rebuild the block database now? - Θελετε να δημιουργηθει τωρα η βαση δεδομενων του μπλοκ? + + Invalid parameter: reissuable must be 0 + - Error initializing block database - Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων μπλοκ + + Invalid parameter: units must be + - Error initializing wallet database environment %s! - Σφάλμα κατά την ενεργοποίηση της βάσης δεδομένων πορτοφόλιου %s! + + Invalid parameter: units must be between 0-8. + - Error loading block database - Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ + + Invalid syntax: + - Error opening block database - Σφάλμα φορτωσης της βασης δεδομενων των μπλοκ + + Keypool ran out, please call keypoolrefill first + - Error: Disk space is low! - Προειδοποίηση: Χαμηλός χώρος στο δίσκο + + Length is to large. Please use a smaller length + - Failed to listen on any port. Use -listen=0 if you want this. - ταλαιπωρηθειτε για να ακούσετε σε οποιαδήποτε θύρα. Χρήση - ακούστε = 0 , αν θέλετε αυτό. + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Importing... - ΕΙσαγωγή... + + Listen for connections on <port> (default: %u or testnet: %u) + - Invalid -onion address: '%s' - Άκυρη διεύθυνση -onion : '%s' + + Maintain at most <n> connections to peers (default: %u) + Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: %u) - Not enough file descriptors available. - Δεν ειναι αρκετες περιγραφες αρχείων διαθέσιμες. + + Make the wallet broadcast transactions + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Μόνο σύνδεση σε κόμβους του δικτύου <net> (ipv4, ipv6 ή onion) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Set maximum block size in bytes (default: %d) - Ορίστε το μέγιστο μέγεθος block σε bytes (προεπιλογή: %d) + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Specify wallet file (within data directory) - Επιλέξτε αρχείο πορτοφολιού (μέσα απο κατάλογο δεδομένων) + + Mempool cleared + - Verifying blocks... - Επαλήθευση των μπλοκ... + + Multiple verifier strings found in transaction + - Verifying wallet... - Επαλήθευση πορτοφολιου... + + Passphrase securing your 12-word mnemonic word-list + - Wallet %s resides outside data directory %s - Το πορτοφόλι %s βρίσκεται έξω από το φάκελο δεδομένων %s + + Prepend debug output with timestamp (default: %u) + - Wallet options: - Επιλογές πορτοφολιού: + + Relay and mine data carrier transactions (default: %u) + - Connect through SOCKS5 proxy - Σύνδεση μέσω διαμεσολαβητή SOCKS5 + + Relay non-P2SH multisig (default: %u) + - Error reading from database, shutting down. - Σφάλμα ανάγνωσης από τη βάση δεδομένων, γίνεται τερματισμός. + + Restricted asset transfer from address that has been frozen + - Information - Πληροφορία + + Send transactions with full-RBF opt-in enabled (default: %u) + - Node relay options: - Επιλογές αναμετάδοσης κόμβου: + + Set key pool size to <n> (default: %u) + - RPC server options: - Επιλογές διακομιστή RPC: + + Set maximum BIP141 block weight (default: %d) + - Send trace/debug info to console instead of debug.log file - Αποστολή πληροφοριών εντοπισμού σφαλμάτων στην κονσόλα αντί του αρχείου debug.log + + Set the Maximum reorg depth (default: %u) + - Show all debugging options (usage: --help -help-debug) - Προβολή όλων των επιλογών εντοπισμού σφαλμάτων (χρήση: --help -help-debug) + + Set the number of threads to service RPC calls (default: %d) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Συρρίκνωση του αρχείο debug.log κατα την εκκίνηση του πελάτη (προεπιλογή: 1 όταν δεν-debug) + + Signing asset transaction failed + - Signing transaction failed - Η υπογραφή συναλλαγής απέτυχε + + Specify configuration file (default: %s) + Ορίστε αρχείο ρυθμίσεων (προεπιλογή: %s) - This is experimental software. - Η εφαρμογή είναι σε πειραματικό στάδιο. + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή: %d) - Transaction amount too small - Το ποσό της συναλλαγής είναι πολύ μικρο + + Specify pid file (default: %s) + Ορίστε αρχείο pid (προεπιλογή: %s) - Transaction too large - Η συναλλαγή ειναι πολύ μεγάλη + + Spend unconfirmed change when sending transactions (default: %u) + - Username for JSON-RPC connections - Όνομα χρήστη για τις συνδέσεις JSON-RPC + + Starting network threads... + - Warning - Προειδοποίηση + + The symbol: ' + - Zapping all transactions from wallet... - Μεταφορά όλων των συναλλαγών απο το πορτοφόλι + + The verifier string has two operators without a tag between them + - Password for JSON-RPC connections - Κωδικός για τις συνδέσεις JSON-RPC + + The wallet will avoid paying less than the minimum relay fee. + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Εκτέλεσε την εντολή όταν το καλύτερο μπλοκ αλλάξει(%s στην εντολή αντικαθίσταται από το hash του μπλοκ) + + This is the minimum transaction fee you pay on every transaction. + - Allow DNS lookups for -addnode, -seednode and -connect - Να επιτρέπονται οι έλεγχοι DNS για προσθήκη και σύνδεση κόμβων + + This is the transaction fee you will pay if you send a transaction. + - Loading addresses... - Φόρτωση διευθύνσεων... + + Threshold for disconnecting misbehaving peers (default: %u) + Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: %u) - How thorough the block verification of -checkblocks is (0-4, default: %u) - Πόσο εξονυχιστική να είναι η επιβεβαίωση του μπλοκ (0-4, προεπιλογή: %u) + + Transaction amounts must not be negative + - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Διατηρήση ένος πλήρες ευρετήριου συναλλαγών (προεπιλογή: %u) + + Transaction has too long of a mempool chain + - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Δευτερόλεπτα πριν επιτραπεί ξανά η σύνδεση των προβληματικών peers (προεπιλογή: %u) + + Transaction must have at least one recipient + - How many blocks to check at startup (default: %u, 0 = all) - Πόσα μπλοκ να ελέγχθουν κατά την εκκίνηση (προεπιλογή: %u, 0 = όλα) + + Turn off the databasing the messages sent with assets (default: %u) + - Include IP addresses in debug output (default: %u) - Να συμπεριληφθεί η διεύθυνση IP στην αναφορά? (προεπιλογή: %u) + + Unable to generate initial keys + - Invalid -proxy address: '%s' - Δεν είναι έγκυρη η διεύθυνση διαμεσολαβητή: '%s' + + Unable to get coin to verify restricted asset transfer from address + - Maintain at most <n> connections to peers (default: %u) - Μέγιστες αριθμός συνδέσεων με τους peers <n> (προεπιλογή: %u) + + Unable to reissue asset: amount must be 0 or larger + - Specify configuration file (default: %s) - Ορίστε αρχείο ρυθμίσεων (προεπιλογή: %s) + + Unable to reissue asset: asset_name ' + - Specify connection timeout in milliseconds (minimum: 1, default: %d) - Ορισμός λήξης χρονικού ορίου σε χιλιοστά του δευτερολέπτου(προεπιλογή: %d) + + Unable to reissue asset: reissuable is set to false + - Specify pid file (default: %s) - Ορίστε αρχείο pid (προεπιλογή: %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Threshold for disconnecting misbehaving peers (default: %u) - Όριο αποσύνδεσης προβληματικών peers (προεπιλογή: %u) + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + Άγνωστo δίκτυο ορίζεται σε onlynet: '%s' + Insufficient funds Ανεπαρκές κεφάλαιο + Loading block index... Φόρτωση ευρετηρίου μπλοκ... - Add a node to connect to and attempt to keep the connection open - Προσέθεσε ένα κόμβο για σύνδεση και προσπάθησε να κρατήσεις την σύνδεση ανοιχτή - - + Loading wallet... Φόρτωση πορτοφολιού... + Cannot downgrade wallet Δεν μπορώ να υποβαθμίσω το πορτοφόλι - Cannot write default address - Δεν μπορώ να γράψω την προεπιλεγμένη διεύθυνση - - + Rescanning... Ανίχνευση... - Done loading - Η φόρτωση ολοκληρώθηκε - - + Error Σφάλμα diff --git a/src/qt/locale/raven_en.ts b/src/qt/locale/raven_en.ts index 62f859c338..0a0eb91336 100644 --- a/src/qt/locale/raven_en.ts +++ b/src/qt/locale/raven_en.ts @@ -54,7 +54,7 @@ &Delete - + Choose the address to send coins to @@ -127,7 +127,7 @@ AddressTableModel - + Label @@ -137,7 +137,7 @@ - + (no label) @@ -165,7 +165,7 @@ Repeat new passphrase - + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. @@ -284,4764 +284,7820 @@ - BanTableModel + AssetControlDialog - - IP/Netmask + + Asset Selection - - Banned Until + + Quantity: - - - RavenGUI - - Sign &message... - Sign &message... + + Bytes: + - - Synchronizing with network... - Synchronizing with network... + + Amount: + - - &Overview - &Overview + + Dust: + - - Node + + Fee: - - Show general overview of wallet - Show general overview of wallet + + After Fee: + - - &Transactions - &Transactions + + Change: + - - Browse transaction history - Browse transaction history + + (un)select all + - - E&xit - E&xit + + Tree mode + - - Quit application - Quit application + + List mode + - - &About %1 + + View assets that you have the ownership asset for - - Show information about %1 + + View Administrator Assets - - About &Qt - About &Qt + + Asset + - - Show information about Qt - Show information about Qt + + Amount + Amount - - &Options... - &Options... + + Received with label + - - Modify configuration options for %1 + + Received with address - - &Encrypt Wallet... - &Encrypt Wallet... + + Date + Date - - &Backup Wallet... - &Backup Wallet... + + Confirmations + - - &Change Passphrase... - &Change Passphrase... + + Confirmed + Confirmed - - &Sending addresses... + + Copy address - - &Receiving addresses... + + Copy label - - Open &URI... + + + Copy amount - - Click to disable network activity. + + Copy transaction ID - - Network activity disabled. + + Lock unspent - - Click to enable network activity again. + + Unlock unspent - - Syncing Headers (%1%)... + + Copy quantity - - Reindexing blocks on disk... - Reindexing blocks on disk... + + Copy fee + - - Send coins to a Raven address - Send coins to a Raven address + + Copy after fee + - - Backup wallet to another location - Backup wallet to another location + + Copy bytes + - - Change the passphrase used for wallet encryption - Change the passphrase used for wallet encryption + + Copy dust + - - &Debug window - &Debug window + + Copy change + - - Open debugging and diagnostic console - Open debugging and diagnostic console + + (%1 locked) + - - &Verify message... - &Verify message... + + yes + - - Raven - Raven + + no + - - Wallet - Wallet + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - &Send - &Send + + Can vary +/- %1 satoshi(s) per input. + - - &Receive - &Receive + + + (no label) + - - &Show / Hide - &Show / Hide + + change from %1 (%2) + - Show or hide the main Window - Show or hide the main Window + (change) + + + + AssetTableModel - - Encrypt the private keys that belong to your wallet - Encrypt the private keys that belong to your wallet + + Name + - - Sign messages with your Raven addresses to prove you own them - Sign messages with your Raven addresses to prove you own them + + Quantity + + + + AssetsDialog - - Verify messages to ensure they were signed with specified Raven addresses - Verify messages to ensure they were signed with specified Raven addresses + + + Send Coins + Send Coins - - &File - &File + + Asset Control Features + - - &Settings - &Settings + + Inputs... + - - &Help - &Help + + automatically selected + - - Tabs toolbar - Tabs toolbar + + Insufficient funds! + - - Request payments (generates QR codes and raven: URIs) + + Quantity: - - Show the list of used sending addresses and labels + + Bytes: - - Show the list of used receiving addresses and labels + + Amount: - - Open a raven: URI or payment request + + Dust: - - &Command-line options + + Fee: - - - %n active connection(s) to Raven network - - %n active connection to Raven network - %n active connections to Raven network - - - - Indexing blocks on disk... + + After Fee: - - Processing blocks on disk... + + Change: - - - Processed %n block(s) of transaction history. - - Processed %n block of transaction history. - Processed %n blocks of transaction history. - + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - %1 behind - %1 behind + + Custom change address + - - Last received block was generated %1 ago. - Last received block was generated %1 ago. + + Transaction Fee: + - - Transactions after this will not yet be visible. - Transactions after this will not yet be visible. + + Choose... + - - Error - Error + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Warning + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + - Information - Information + Hide + - - Up to date - Up to date + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - Show the %1 help message to get a list with possible Raven command-line options + + per kilobyte - - %1 client + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - - Connecting to peers... + + (read the tooltip) - - Catching up... - Catching up... + + Recommended: + - - Date: %1 - + + Custom: - - Amount: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) - - Type: %1 - + + Confirmation time target: - - Label: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - - Address: %1 - + + Request Replace-By-Fee - - Sent transaction - Sent transaction + + Confirm the send action + Confirm the send action - - Incoming transaction - Incoming transaction + + S&end + S&end - - HD key generation is <b>enabled</b> + + Clear all fields of the form. - - HD key generation is <b>disabled</b> + + Clear &All + Clear &All + + + + Transfer to multiple recipients at once - - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + Add &Recipient + Add &Recipient - - Wallet is <b>encrypted</b> and currently <b>locked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> + + Balance: + Balance: - - A fatal error occurred. Raven can no longer continue safely and will quit. + + Copy quantity - - - CoinControlDialog - - Coin Selection + + Copy amount - - Quantity: + + Copy fee - - Bytes: + + Copy after fee - - Amount: + + Copy bytes - - Fee: + + Copy dust - - Dust: + + Copy change - - After Fee: + + %1 (%2 blocks) - - Change: + + + + + %1 to %2 - - (un)select all + + Are you sure you want to send? - - Tree mode + + added as transaction fee - List mode + Confirm send assets - - Amount - Amount - - - - Received with label + + The recipient address is not valid. Please recheck. - - Received with address + + The amount to pay must be larger than 0. - - Date - Date + + The amount exceeds your balance. + - - Confirmations + + The total exceeds your balance when the %1 transaction fee is included. - Confirmed - Confirmed + Duplicate address found: addresses should only be used once each. + - - Copy address + + Transaction creation failed! - - Copy label + + The transaction was rejected with the following reason: %1 - - - Copy amount + + A fee higher than %1 is considered an absurdly high fee. - - Copy transaction ID + + Payment request expired. - - Lock unspent + + Pay only the required fee of %1 + + + Estimated to begin confirmation within %n block(s). + + Estimated to begin confirmation within %n block. + Estimated to begin confirmation within %n blocks. + + - - Unlock unspent + + Warning: Invalid Raven address - - Copy quantity + + Warning: Unknown change address - - Copy fee + + Confirm custom change address - - Copy after fee + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - - Copy bytes + + (no label) + + + AssignQualifier - - Copy dust + + Frame - - Copy change + + Select Type: - - (%1 locked) + + Select Qualifier: - - yes + + Address: - - no + + IPFS / Hash: - - This label turns red if any recipient receives an amount smaller than the current dust threshold. + + Custom Change Address - - Can vary +/- %1 satoshi(s) per input. + + Check - - - (no label) + + Clear - - change from %1 (%2) + + Submit + + + + + Assign Qualifier - (change) + Remove Qualifier - - - EditAddressDialog - - Edit Address - Edit Address + + Data has been validated, You can now submit the qualifier request + - - &Label - &Label + + Must have a qualifier asset selected + - - The label associated with this address list entry + + Address already has the qualifier assigned to it - - The address associated with this address list entry. This can only be modified for sending addresses. + + Address doesn't have the qualifier, so we can't remove it - - &Address - &Address + + Unable to preform action at this time + + + + BanTableModel - - New receiving address + + IP/Netmask - - New sending address + + Banned Until + + + CoinControlDialog - - Edit receiving address + + Coin Selection - - Edit sending address + + Quantity: - - The entered address "%1" is not a valid Raven address. + + Bytes: - - The entered address "%1" is already in the address book. + + Amount: - - Could not unlock wallet. + + Fee: - - New key generation failed. + + Dust: - - - FreespaceChecker - - A new data directory will be created. - A new data directory will be created. + + After Fee: + - - name - name + + Change: + - - Directory already exists. Add %1 if you intend to create a new directory here. - Directory already exists. Add %1 if you intend to create a new directory here. + + (un)select all + - - Path already exists, and is not a directory. - Path already exists, and is not a directory. + + Tree mode + - - Cannot create data directory here. - Cannot create data directory here. + + List mode + - - - HelpMessageDialog - - version - version + + Amount + Amount - - (%1-bit) + Received with label - About %1 + Received with address - - Command-line options - + + Date + Date - - Usage: - Usage: + + Confirmations + - - command-line options - command-line options + + Confirmed + Confirmed - - UI Options: + + Copy address - - Choose data directory on startup (default: %u) + + Copy label - Set language, for example "de_DE" (default: system locale) + + Copy amount - - Start minimized + + Copy transaction ID - Set SSL root certificates for payment request (default: -system-) + Lock unspent - Show splash screen on startup (default: %u) + Unlock unspent - - Reset all settings changed in the GUI + + Copy quantity - - - Intro - - Welcome - Welcome + + Copy fee + - - Welcome to %1. + + Copy after fee - - As this is the first time the program is launched, you can choose where %1 will store its data. + + Copy bytes - - When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + Copy dust - - This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + Copy change - - If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + (%1 locked) - - Use the default data directory - Use the default data directory + + yes + - - Use a custom data directory: - Use a custom data directory: + + no + - - Raven - Raven + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - At least %1 GB of data will be stored in this directory, and it will grow over time. + + Can vary +/- %1 satoshi(s) per input. - - Approximately %1 GB of data will be stored in this directory. + + + (no label) - - %1 will download and store a copy of the Raven block chain. + + change from %1 (%2) - - The wallet will also be stored in this directory. + + (change) + + + CreateAssetDialog - - Error: Specified data directory "%1" cannot be created. + + Coin Control Features - - Error - Error - - - - %n GB of free space available - - %n GB of free space available - %n GB of free space available - - - - - (of %n GB needed) - - (of %n GB needed) - (of %n GB needed) - + + Inputs... + - - - ModalOverlay - - Form - Form + + automatically selected + - - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + Insufficient funds! - - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + Quantity: - - Number of blocks left + + Bytes: - - - - Unknown... + + Amount: - - Last block time - Last block time + + Dust: + - - Progress + + Fee: - - Progress increase per hour + + After Fee: - - - calculating... + + Change: - - Estimated time left until synced + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - - Hide + + Custom change address - - Unknown. Syncing Headers (%1)... + + Name: - - - OpenURIDialog - - Open URI + + A-Z 0-9 and . or _ as the second character - Open payment request from URI or file + The name of the asset you would like to create - - URI: + + Check Availabilty - - Select payment request file + + Address: - - Select payment request file to open + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. - - - OptionsDialog - - Options - Options + + Verifier String: + - - &Main - &Main + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - - Automatically start %1 after logging in to the system. + + Warning: - - &Start %1 on system login + + The number of assets that will be created - - Size of &database cache + + Units: - - MB + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) - - Number of script &verification threads + + e.g. 1 - - Accept connections from outside + + If the owner of this asset will be able to issue more assets in the future - Allow incoming connections + Reissuable - - - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + Does this asset have an ipfs hash to go with it - - - - Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + Add IPFS/Txid Hash - - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + The ipfs/txid hash that contains information about the asset - - - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) - - Third party transaction URLs + + ERROR TEXT - - Active command-line options that override above options: + + Transaction Fee: - - Open the %1 configuration file from the working directory. + + Choose... - - Open Configuration File + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - - - Reset all client options to default. - Reset all client options to default. - - &Reset Options - &Reset Options + Warning: Fee estimation is currently not possible. + - - &Network - &Network + + collapse fee-settings + - - (0 = auto, <0 = leave that many cores free) + + Hide - - W&allet + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - - Expert + + per kilobyte - - Enable coin &control features + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + (read the tooltip) - - &Spend unconfirmed change + + Recommended: - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + C&ustom: + - - Map port using &UPnP - Map port using &UPnP + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - Connect to the Raven network through a SOCKS5 proxy. + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - &Connect through SOCKS5 proxy (default proxy): + Request Replace-By-Fee - - - Proxy &IP: - Proxy &IP: + + Create Asset + - - - &Port: - &Port: + + Clear + - - - Port of the proxy (e.g. 9050) - Port of the proxy (e.g. 9050) + + Balance: + Balance: - - Used for reaching peers via: + + 123.456 RVN - - IPv4 + + Copy quantity - - IPv6 + + Copy amount - - Tor + + Copy fee - - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + Copy after fee - - Use separate SOCKS5 proxy to reach peers via Tor hidden services: + + Copy bytes - - &Window - &Window + + Copy dust + - - &Hide the icon from the system tray. + + Copy change - - Hide tray icon + + %1 (%2 blocks) - - Show only a tray icon after minimizing the window. - Show only a tray icon after minimizing the window. + + Main Asset + - - &Minimize to the tray instead of the taskbar - &Minimize to the tray instead of the taskbar + + Sub Asset + - - M&inimize on close - M&inimize on close + + Unique Asset + - - &Display - &Display + + Messaging Channel Asset + - - User Interface &language: - User Interface &language: + + Qualifier Asset + - - The user interface language can be set here. This setting will take effect after restarting %1. + + Sub Qualifier Asset - - &Unit to show amounts in: - &Unit to show amounts in: + + Restricted Asset + - - Choose the default subdivision unit to show in the interface and when sending coins. - Choose the default subdivision unit to show in the interface and when sending coins. + + Asset Type + - - Whether to show coin control features or not. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters - - &OK - &OK + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - - &Cancel - &Cancel + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - - default - default + + + + Warning: Invalid Raven address + - - none + + Warning: Restricted Assets Reissuance requires an address - - Confirm options reset - Confirm options reset + + Valid Asset + - - - Client restart required to activate changes. + + Invalid: Asset name already in use - - Client will be shut down. Do you want to proceed? + + Error: Asset Database not in sync - - Configuration options + + + %1 to %2 - - The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + Are you sure you want to send? - - Error - Error + + added as transaction fee + - - The configuration file could not be opened. + + Total Amount %1 - - This change would require a client restart. + + or - - The supplied proxy address is invalid. - The supplied proxy address is invalid. + + Confirm send assets + - - - OverviewPage - - Form - Form + + Invalid: + - - - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + Copy + - - Watch-only: + + Transaction ID Copied - - Available: + + Asset transaction sent to network: - - - Your current spendable balance - Your current spendable balance + + + Estimated to begin confirmation within %n block(s). + + Estimated to begin confirmation within %n block. + Estimated to begin confirmation within %n blocks. + - - Pending: + + Warning: Unknown change address - - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + Confirm custom change address + - - Immature: - Immature: + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - - Mined balance that has not yet matured - Mined balance that has not yet matured + + (no label) + - - Balances + + Pay only the required fee of %1 + + + EditAddressDialog - - Total: - Total: + + Edit Address + Edit Address - - Your current total balance - Your current total balance + + &Label + &Label - - Your current balance in watch-only addresses + + The label associated with this address list entry - - Spendable: + + The address associated with this address list entry. This can only be modified for sending addresses. - - Recent transactions - + + &Address + &Address - - Unconfirmed transactions to watch-only addresses + + New receiving address - - Mined balance in watch-only addresses that has not yet matured + + New sending address - - Current total balance in watch-only addresses + + Edit receiving address - - - PaymentServer - - - - - - - Payment request error + + Edit sending address - - Cannot start raven: click-to-pay handler + + The entered address "%1" is not a valid Raven address. - - - - URI handling + + The entered address "%1" is already in the address book. - - Payment request fetch URL is invalid: %1 + + Could not unlock wallet. - - Invalid payment address %1 + + New key generation failed. + + + FreespaceChecker - - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - + + A new data directory will be created. + A new data directory will be created. - - Payment request file handling - + + name + name - - Payment request file cannot be read! This can be caused by an invalid payment request file. - + + Directory already exists. Add %1 if you intend to create a new directory here. + Directory already exists. Add %1 if you intend to create a new directory here. - - - - - - - Payment request rejected - + + Path already exists, and is not a directory. + Path already exists, and is not a directory. - - Payment request network doesn't match client network. - + + Cannot create data directory here. + Cannot create data directory here. + + + FreezeAddress - - Payment request expired. + + Frame - - Payment request is not initialized. + + Restricted Asset: - - Unverified payment requests to custom payment scripts are unsupported. + + Address: - - - Invalid payment request. + + Custom Change Address - + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + version + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + Usage: + + + + command-line options + command-line options + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Welcome + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Use the default data directory + + + + Use a custom data directory: + Use a custom data directory: + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + %n GB of free space available + %n GB of free space available + + + + + (of %n GB needed) + + (of %n GB needed) + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Form + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Last block time + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + Date + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Options + + + + &Main + &Main + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reset all client options to default. + + + + &Reset Options + &Reset Options + + + + &Network + &Network + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + Map port using &UPnP + Map port using &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port of the proxy (e.g. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Window + + + + Show only a tray icon after minimizing the window. + Show only a tray icon after minimizing the window. + + + + &Minimize to the tray instead of the taskbar + &Minimize to the tray instead of the taskbar + + + + M&inimize on close + M&inimize on close + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Display + + + + User Interface &language: + User Interface &language: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unit to show amounts in: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Choose the default subdivision unit to show in the interface and when sending coins. + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancel + + + + default + default + + + + none + + + + + Confirm options reset + Confirm options reset + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + Error + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + The supplied proxy address is invalid. + + + + OverviewPage + + + Form + Form + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + Your current spendable balance + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + Immature: + Immature: + + + + Mined balance that has not yet matured + Mined balance that has not yet matured + + + + Total: + Total: + + + + Your current total balance + Your current total balance + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + Requested payment amount of %1 is too small (considered dust). - Refund from %1 + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Amount + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + %n second + %n seconds + + + + + %n minute(s) + + %n minute + %n minutes + + + + + %n hour(s) + + %n hour + %n hours + + + + + %n day(s) + + %n day + %n days + + + + + + %n week(s) + + %n week + %n weeks + + + + + %1 and %2 + + + + + %n year(s) + + %n year + %n years + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Client version + + + + &Information + &Information + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Startup time + + + + Network + Network + + + + Name + + + + + Number of connections + Number of connections + + + + Block chain + Block chain + + + + Current number of blocks + Current number of blocks + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Last block time + + + + &Open + &Open + + + + &Console + &Console + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + Debug log file + + + + Clear console + Clear console + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Type <b>help</b> for an overview of available commands. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Sign &message... + + + + Synchronizing with network... + Synchronizing with network... + + + + &Overview + &Overview + + + + Node + + + + + Show general overview of wallet + Show general overview of wallet + + + + &Transactions + &Transactions + + + + Browse transaction history + Browse transaction history + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + E&xit + + + + Quit application + Quit application + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + About &Qt + + + + Show information about Qt + Show information about Qt + + + + &Options... + &Options... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Encrypt Wallet... + + + + &Backup Wallet... + &Backup Wallet... + + + + &Change Passphrase... + &Change Passphrase... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexing blocks on disk... + + + + Send coins to a Raven address + Send coins to a Raven address + + + + Backup wallet to another location + Backup wallet to another location + + + + Change the passphrase used for wallet encryption + Change the passphrase used for wallet encryption + + + + Open debugging and diagnostic console + Open debugging and diagnostic console + + + + &Verify message... + &Verify message... + + + + Raven + Raven + + + + Wallet + Wallet + + + + &Send + &Send + + + + &Receive + &Receive + + + + &Show / Hide + &Show / Hide + + + + Show or hide the main Window + Show or hide the main Window + + + + Encrypt the private keys that belong to your wallet + Encrypt the private keys that belong to your wallet + + + + Sign messages with your Raven addresses to prove you own them + Sign messages with your Raven addresses to prove you own them + + + + Verify messages to ensure they were signed with specified Raven addresses + Verify messages to ensure they were signed with specified Raven addresses + + + + &File + &File + + + + &Help + &Help + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + %n active connection to Raven network + %n active connections to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + Processed %n block of transaction history. + Processed %n blocks of transaction history. + + + + + %1 behind + %1 behind + + + + Last received block was generated %1 ago. + Last received block was generated %1 ago. + + + + Transactions after this will not yet be visible. + Transactions after this will not yet be visible. + + + + Error + Error + + + + Warning + Warning + + + + Information + Information + + + + Up to date + Up to date + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Catching up... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Sent transaction + + + + Incoming transaction + Incoming transaction + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + &Label: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + Amount + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Date + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + Balance: + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or - - Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + Confirm reissue assets - - Error communicating with %1: %2 + + Copy - - Payment request cannot be parsed! + + Transaction ID Copied - - Bad response from server %1 + + Asset transaction sent to network: - - - Network request error - + + + Estimated to begin confirmation within %n block(s). + + Estimated to begin confirmation within %n block. + Estimated to begin confirmation within %n blocks. + - - Payment acknowledged + + Warning: Unknown change address - - - PeerTableModel - - User Agent + + Confirm custom change address - Node/Service + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - - NodeId + + (no label) - - Ping + + Pay only the required fee of %1 - QObject + RestrictedAssetsDialog - - Amount - Amount + + Send Coins + Send Coins - - Enter a Raven address (e.g. %1) + + Asset Balances - - %1 d + + + Search - - %1 h + + Address List - - %1 m - + + Balance: + Balance: - - - %1 s + + + Failed to create a change address - - None + + Failed to generate the correct transaction. Please try again - - N/A - N/A + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - - %1 ms + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> - - - %n second(s) - - %n second - %n seconds - - - - - %n minute(s) - - %n minute - %n minutes - - - - - %n hour(s) - - %n hour - %n hours - - - - - %n day(s) - - %n day - %n days - - - - - - %n week(s) - - %n week - %n weeks - + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - - %1 and %2 + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> - - - %n year(s) - - %n year - %n years - + + + + added as transaction fee + - - %1 didn't yet exit safely... + + + Total Amount %1 - - - QObject::QObject - - Error: Specified data directory "%1" does not exist. + + + or - - Error: Cannot parse configuration file: %1. Only use key=value syntax. + + Confirm adding restriction - - Error: %1 + + Confirm removing resetricton - - - QRImageWidget - - &Save Image... + + Adding qualifier <b>%1</b> to address <b>%2</b><br> - - &Copy Image + + Removing qualifier <b>%1</b> from address <b>%2</b><br> - Save QR Code + Confirm adding qualifier - - PNG Image (*.png) + + Confirm removing qualifier - RPCConsole - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - N/A - N/A - - - - Client version - Client version - + SendAssetsEntry - - &Information - &Information + + This is an asset payment + - - Debug window + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - - General + + + + Memo: - - Using BerkeleyDB version + + Amount: - - Datadir + + Enter a label for this address to add it to the list of used addresses - - Startup time - Startup time + + &Label: + &Label: - - Network - Network + + Asset: + - - Name + + The Raven address to send the payment to - - Number of connections - Number of connections + + Choose previously used address + - - Block chain - Block chain + + Alt+A + Alt+A - Current number of blocks - Current number of blocks + Paste address from clipboard + Paste address from clipboard - - Memory Pool - + + Alt+P + Alt+P - Current number of transactions - - - - - Memory usage + + + Remove this entry - - &Reset + + Message: - - - Received + + Transfer &To: - - - Sent + + Transfer Administrator Asset - - &Peers + + Put a IPFS or Txid hash here to be sent with the asset transfer - - Banned peers + + This is an unauthenticated payment request. - - - - Select a peer to view detailed information. + + + Transfer to: - - Whitelisted - + + + A&mount: + A&mount: - - Direction + + This is an authenticated payment request. - - Version + + Enter a label for this address to add it to your address book - - Starting Block + + Select to view administrator assets to transfer - - Synced Headers + + + Select an asset to transfer - - Synced Blocks + + Memos can only be added once RIP5 is voted in - - - User Agent + + This restricted asset has been frozen globally. No transfers can be sent on the network. - - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + Failed to get asset metadata for: - - Decrease font size + + The transaction in which the asset was issued must be mined into a block before you can transfer it - - Increase font size + + Failed to get asset outpoints from database - - Services + + Selected Balance - - Ban Score + + Wallet Balance - - Connection Time + + Select an administrator asset to transfer - - Last Send + + Warning: Transferring administrator asset + + + SendCoinsDialog - - Last Receive - + + + Send Coins + Send Coins - - Ping Time + + Coin Control Features - - The duration of a currently outstanding ping. + + Inputs... - - Ping Wait + + automatically selected - - Min Ping + + Insufficient funds! - - Time Offset + + Quantity: - - Last block time - Last block time + + Bytes: + - - &Open - &Open + + Amount: + - - &Console - &Console + + Fee: + - - &Network Traffic + + After Fee: - - Totals + + Change: - - In: + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - - Out: + + Custom change address - - Debug log file - Debug log file + + Transaction Fee: + - - Clear console - Clear console + + Choose... + - - 1 &hour + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - - 1 &day + + Warning: Fee estimation is currently not possible. - - 1 &week + + collapse fee-settings - - 1 &year + + per kilobyte - - &Disconnect + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - - - - - Ban for + + Hide - - &Unban + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - - Welcome to the %1 RPC console. + + (read the tooltip) - - Type <b>help</b> for an overview of available commands. - Type <b>help</b> for an overview of available commands. + + Recommended: + - - Use up and down arrows to navigate history, and %1 to clear screen. + + Custom: - - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + (Smart fee not initialized yet. This usually takes a few blocks...) - - Network activity disabled + + Request Replace-By-Fee - - %1 B + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - - %1 KB - + + Send to multiple recipients at once + Send to multiple recipients at once - - %1 MB - + + Add &Recipient + Add &Recipient - - %1 GB + + Clear all fields of the form. - - (node id: %1) + + Dust: - - via %1 + + Confirmation time target: - - - never - + + Clear &All + Clear &All - - Inbound - + + Balance: + Balance: - - Outbound - + + Confirm the send action + Confirm the send action - - Yes - + + S&end + S&end - - No + + Copy quantity - - - Unknown + + Copy amount - - - ReceiveCoinsDialog - - &Amount: + + Copy fee - - &Label: - &Label: + + Copy after fee + - - &Message: + + Copy bytes - - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + Copy dust - - R&euse an existing receiving address (not recommended) + + Copy change - - - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + %1 (%2 blocks) - - - An optional label to associate with the new receiving address. + + + + + %1 to %2 - - Use this form to request payments. All fields are <b>optional</b>. + + Are you sure you want to send? - - - An optional amount to request. Leave this empty or zero to not request a specific amount. + + added as transaction fee - - Clear all fields of the form. + + Total Amount %1 - Clear + or - - Requested payments history + + Confirm send coins - - &Request payment + + The recipient address is not valid. Please recheck. - - Show the selected request (does the same as double clicking an entry) + + The amount to pay must be larger than 0. - Show + The amount exceeds your balance. - - Remove the selected entries from the list + + The total exceeds your balance when the %1 transaction fee is included. - Remove + Duplicate address found: addresses should only be used once each. - - Copy URI + + Transaction creation failed! - - Copy label + + The transaction was rejected with the following reason: %1 - - Copy message + + A fee higher than %1 is considered an absurdly high fee. - - Copy amount + + Payment request expired. - - - ReceiveRequestDialog - - QR Code + + Pay only the required fee of %1 - - - Copy &URI - + + + Estimated to begin confirmation within %n block(s). + + Estimated to begin confirmation within %n block. + Estimated to begin confirmation within %n blocks. + - - Copy &Address + + Warning: Invalid Raven address - - &Save Image... + + Warning: Unknown change address - - Request payment to %1 + + Confirm custom change address - - Payment information + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - - URI + + (no label) + + + SendCoinsEntry - - Address - + + + + A&mount: + A&mount: - - Amount - Amount + + &Label: + &Label: - - Label + + Choose previously used address - - Message + + This is a normal payment. - - Resulting URI too long, try to reduce the text for label / message. + + The Raven address to send the payment to - - Error encoding URI into QR Code. - + + Alt+A + Alt+A - - - RecentRequestsTableModel - - Date - Date + + Paste address from clipboard + Paste address from clipboard - - Label - + + Alt+P + Alt+P - - Message + + + + Remove this entry - - (no label) + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - - (no message) + + S&ubtract fee from amount - - (no amount requested) + + Message: - - Requested + + Send &To: - - - SendCoinsDialog - - - Send Coins - Send Coins + + This is an unauthenticated payment request. + - - Coin Control Features + + + Send to: - - Inputs... + + This is an authenticated payment request. - - automatically selected + + Enter a label for this address to add it to the list of used addresses - - Insufficient funds! + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - - Quantity: + + + Memo: - - Bytes: + + Enter a label for this address to add it to your address book + + + SendConfirmationDialog - - Amount: + + + Yes + + + ShutdownWindow - - Fee: + + %1 is shutting down... - - After Fee: + + Do not shut down the computer until this window disappears. + + + SignVerifyMessageDialog - - Change: - + + Signatures - Sign / Verify a Message + Signatures - Sign / Verify a Message - - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - + + &Sign Message + &Sign Message - - Custom change address + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - - Transaction Fee: + + The Raven address to sign the message with - - Choose... + + + Choose previously used address - - Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - + + + Alt+A + Alt+A - - Warning: Fee estimation is currently not possible. - + + Paste address from clipboard + Paste address from clipboard - - collapse fee-settings - + + Alt+P + Alt+P - - per kilobyte - + + Enter the message you want to sign here + Enter the message you want to sign here - - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - + + Signature + Signature - - Hide - + + Copy the current signature to the system clipboard + Copy the current signature to the system clipboard - - - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - + + Sign the message to prove you own this Raven address + Sign the message to prove you own this Raven address - (read the tooltip) - + Sign &Message + Sign &Message - - Recommended: - + + Reset all sign message fields + Reset all sign message fields - - Custom: - + + + Clear &All + Clear &All - - (Smart fee not initialized yet. This usually takes a few blocks...) - + + &Verify Message + &Verify Message - - Request Replace-By-Fee + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - - Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + The Raven address the message was signed with - - Send to multiple recipients at once - Send to multiple recipients at once + + Verify the message to ensure it was signed with the specified Raven address + Verify the message to ensure it was signed with the specified Raven address - Add &Recipient - Add &Recipient + Verify &Message + Verify &Message - - Clear all fields of the form. - + + Reset all verify message fields + Reset all verify message fields - - Dust: + + Click "Sign Message" to generate signature - - Confirmation time target: + + + The entered address is invalid. - - Clear &All - Clear &All + + + + + Please check the address and try again. + - - Balance: - Balance: + + + The entered address does not refer to a key. + - - Confirm the send action - Confirm the send action + + Wallet unlock was cancelled. + - - S&end - S&end + + Private key for the entered address is not available. + - - Copy quantity + + Message signing failed. - - Copy amount + + Message signed. - - Copy fee + + The signature could not be decoded. - - Copy after fee + + + Please check the signature and try again. - - Copy bytes + + The signature did not match the message digest. - - Copy dust + + Message verification failed. - - Copy change + + Message verified. + + + SplashScreen - - %1 (%2 blocks) - + + [testnet] + [testnet] + + + TrafficGraphWidget - - - - - %1 to %2 + + KB/s + + + TransactionDesc + + + Open for %n more block(s) + + Open for %n more block + Open for %n more blocks + + - - Are you sure you want to send? + + Open until %1 - - added as transaction fee + + conflicted with a transaction with %1 confirmations - - Total Amount %1 + + %1/offline - - or + + 0/unconfirmed, %1 - - This transaction signals replaceability (optin-RBF). + + in memory pool - - Confirm send coins + + not in memory pool - - The recipient address is not valid. Please recheck. + + abandoned - - The amount to pay must be larger than 0. + + %1/unconfirmed - - The amount exceeds your balance. + + %1 confirmations - - The total exceeds your balance when the %1 transaction fee is included. + + + Status - - Duplicate address found: addresses should only be used once each. + + + , has not been successfully broadcast yet + + + + , broadcast through %n node(s) + + , broadcast through %n node + , broadcast through %n nodes + + - - Transaction creation failed! - + + + Date + Date - - The transaction was rejected with the following reason: %1 + + Source - - A fee higher than %1 is considered an absurdly high fee. + + Generated - - Payment request expired. + + + + + + From - - Pay only the required fee of %1 + + + unknown - - - Estimated to begin confirmation within %n block(s). - - Estimated to begin confirmation within %n block. - Estimated to begin confirmation within %n blocks. - - - - Warning: Invalid Raven address + + + + + + To - - Warning: Unknown change address + + + own address - - Confirm custom change address + + + + watch-only - - The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + label - - (no label) + + + + + + + + Credit - - - SendCoinsEntry - - - - - A&mount: - A&mount: + + + matures in %n more block(s) + + matures in %n more block + matures in %n more blocks + - - Pay &To: - Pay &To: + + not accepted + - - &Label: - &Label: + + + + + + Debit + - - Choose previously used address + + Total debit - - This is a normal payment. + + Total credit - - The Raven address to send the payment to + + Transaction fee - - Alt+A - Alt+A + + Net amount + - - Paste address from clipboard - Paste address from clipboard + + + + + Message + - - Alt+P - Alt+P + + + Comment + - - - - Remove this entry + + + Transaction ID - - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + Transaction total size - - S&ubtract fee from amount + + + Output index - - Message: + + + Merchant - - This is an unauthenticated payment request. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - - This is an authenticated payment request. + + Net RVN amount - - Enter a label for this address to add it to the list of used addresses + + Debug information - - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + Transaction - - - Pay To: + + Inputs - - - Memo: + + Amount + Amount + + + + + true - - Enter a label for this address to add it to your address book + + + false - SendConfirmationDialog + TransactionDescDialog - - - Yes + + This pane shows a detailed description of the transaction + This pane shows a detailed description of the transaction + + + + Details for %1 - ShutdownWindow + TransactionTableModel - - %1 is shutting down... - + + Date + Date - - Do not shut down the computer until this window disappears. + + Type - - - SignVerifyMessageDialog - - Signatures - Sign / Verify a Message - Signatures - Sign / Verify a Message + + Label + - - &Sign Message - &Sign Message + + Amount + Amount - - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + Asset + + + Open for %n more block(s) + + Open for %n more block + Open for %n more blocks + + - - The Raven address to sign the message with + + Open until %1 - - - Choose previously used address + + Offline - - - Alt+A - Alt+A + + Unconfirmed + - - Paste address from clipboard - Paste address from clipboard + + Abandoned + - - Alt+P - Alt+P + + Confirming (%1 of %2 recommended confirmations) + - - Enter the message you want to sign here - Enter the message you want to sign here + + Confirmed (%1 confirmations) + - - Signature - Signature + + Conflicted + - - Copy the current signature to the system clipboard - Copy the current signature to the system clipboard + + Immature (%1 confirmations, will be available after %2) + - - Sign the message to prove you own this Raven address - Sign the message to prove you own this Raven address + + This block was not received by any other nodes and will probably not be accepted! + - Sign &Message - Sign &Message + Generated but not accepted + - - Reset all sign message fields - Reset all sign message fields + + Received with + + + + + Received from + - - Clear &All - Clear &All + Sent to + - - &Verify Message - &Verify Message + + Payment to yourself + - - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Mined - - The Raven address the message was signed with + + Asset Issued - - Verify the message to ensure it was signed with the specified Raven address - Verify the message to ensure it was signed with the specified Raven address + + Asset Reissued + - - Verify &Message - Verify &Message + + Assets Received + - - Reset all verify message fields - Reset all verify message fields + + Assets Sent + - - Click "Sign Message" to generate signature + + watch-only - - - The entered address is invalid. + + (n/a) - - - - - Please check the address and try again. + + (no label) - - - The entered address does not refer to a key. + + Transaction status. Hover over this field to show number of confirmations. - - Wallet unlock was cancelled. + + Date and time that the transaction was received. - - Private key for the entered address is not available. + + Type of transaction. - - Message signing failed. + + Whether or not a watch-only address is involved in this transaction. - - Message signed. + + User-defined intent/purpose of the transaction. - - The signature could not be decoded. + + Amount removed from or added to balance. - - - Please check the signature and try again. + + The asset (or RVN) removed or added to balance. + + + TransactionView - - The signature did not match the message digest. + + + All - - Message verification failed. + + Today - - Message verified. + + This week - - - SplashScreen - - [testnet] - [testnet] + + This month + - - - TrafficGraphWidget - - KB/s + + Last month - - - TransactionDesc - - - Open for %n more block(s) - - Open for %n more block - Open for %n more blocks - + + + This year + - - Open until %1 + + Range... - - conflicted with a transaction with %1 confirmations + + Received with - %1/offline + Sent to - 0/unconfirmed, %1 + To yourself - - in memory pool + + Mined - - not in memory pool + + Other - - abandoned + + Enter address or label to search - - %1/unconfirmed + + Min amount - - %1 confirmations + + Asset name - - Status + + Abandon transaction - - , has not been successfully broadcast yet + + Copy address - - - , broadcast through %n node(s) - - , broadcast through %n node - , broadcast through %n nodes - - - - Date - Date + + Copy label + - - Source + + Copy amount - - Generated + + Copy transaction ID - - - - From + + Copy raw transaction - - unknown + + Copy full transaction details - - - To + Edit label - - own address + + Show transaction details - - - watch-only + + Browse with: - - label + + Export Transaction History - - - - - - Credit + + Comma separated file (*.csv) - - - matures in %n more block(s) - - matures in %n more block - matures in %n more blocks - + + + Confirmed + Confirmed - not accepted + Watch-only - - - - Debit + + Date + Date + + + + Type - - Total debit + + Label - Total credit + Address - - Transaction fee + + Asset - - Net amount + + ID - - - Message + + Exporting Failed - - Comment + + There was an error trying to save the transaction history to %1. - - Transaction ID + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued - Transaction total size + Asset Reissued - Output index + Asset Received - - Merchant + + Asset Sent - - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + Copy asset name + + + + + Range: - Debug information + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + WalletFrame - - Transaction + + No wallet has been loaded. + + + WalletModel + + + Send Coins + Send Coins + - - Inputs + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words - - Amount - Amount + + Error: Wallet locked + - - - true + + Words: - - - false + + Passphrase: - TransactionDescDialog + WalletView - - This pane shows a detailed description of the transaction - This pane shows a detailed description of the transaction + + &Export + &Export - - Details for %1 + + Export the data in the current tab to a file + Export the data in the current tab to a file + + + + Backup Wallet - - - TransactionTableModel - - Date - Date + + Wallet Data (*.dat) + - - Type + + Backup Failed - Label + There was an error trying to save the wallet data to %1. - - - Open for %n more block(s) - - Open for %n more block - Open for %n more blocks - - - - Open until %1 + + Backup Successful - - Offline + + The wallet data was successfully saved to %1. - - Unconfirmed + + Recovery information - - Abandoned + + No words available. - - Confirming (%1 of %2 recommended confirmations) + + This wallet is not a HD wallet, words not supported. + + + raven-core - - Confirmed (%1 confirmations) - + + Options: + Options: - - Conflicted - + + Specify data directory + Specify data directory - - Immature (%1 confirmations, will be available after %2) - + + Connect to a node to retrieve peer addresses, and disconnect + Connect to a node to retrieve peer addresses, and disconnect - - This block was not received by any other nodes and will probably not be accepted! - + + Specify your own public address + Specify your own public address - - Generated but not accepted - + + Accept command line and JSON-RPC commands + Accept command line and JSON-RPC commands - - Received with + + Distributed under the MIT software license, see the accompanying file %s or %s - - Received from + + If <category> is not supplied or if <category> = 1, output all debugging information. - - Sent to + + Prune configured below the minimum of %d MiB. Please use a higher number. - Payment to yourself + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - - Mined + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. - - watch-only + + Error: A fatal internal error occurred, see debug.log for details - - (n/a) + + Fee (in %s/kB) to add to transactions you send (default: %s) - - (no label) + + Pruning blockstore... - - Transaction status. Hover over this field to show number of confirmations. - + + Run in the background as a daemon and accept commands + Run in the background as a daemon and accept commands - - Date and time that the transaction was received. + + Unable to start HTTP server. See debug log for details. - - Type of transaction. - + + Raven Core + Raven Core - - Whether or not a watch-only address is involved in this transaction. + + The %s developers - - User-defined intent/purpose of the transaction. + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) - - Amount removed from or added to balance. + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) - - - TransactionView - - - All + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) - - Today - + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - - This week + + Cannot obtain a lock on data directory %s. %s is probably already running. - - This month + + Cannot provide specific connections and have addrman find outgoing connections at the same. - - Last month + + Change address can not be sent to because it doesn't have the correct qualifier tags - - This year + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) - - Range... + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - - Received with + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - - Sent to + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. - - To yourself - + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - - Mined + + Extra transactions to keep in memory for compact block reconstructions (default: %u) - - Other + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) - - Enter address or label to search + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) - - Min amount + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) - - Abandon transaction + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - - Increase transaction fee + + Please contribute if you find %s useful. Visit %s for further information about the software. - - Copy address + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) - - Copy label + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) - - Copy amount + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) - - Copy transaction ID + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - - Copy raw transaction + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - - Copy full transaction details + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level - - Edit label + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. - - Show transaction details + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain - - Export Transaction History + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) - - Comma separated file (*.csv) + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times - Confirmed - Confirmed + Wallet will not create transactions that violate mempool chain limits (default: %u) + - - Watch-only + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - - Date - Date + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - - Type + + Whether to save the mempool on shutdown and load on restart (default: %u) - - Label + + %d of last 100 blocks have unexpected version - Address + %s corrupt, salvage failed - - ID + + -maxmempool must be at least %d MB - - Exporting Failed + + <category> can be: - - There was an error trying to save the transaction history to %1. + + Accept connections from outside (default: 1 if no -proxy or -connect) - Exporting Successful + Append comment to the user agent string - - The transaction history was successfully saved to %1. + + Attempt to recover private keys from a corrupt wallet on startup - - Range: - + + Block creation options: + Block creation options: - - to + + Cannot resolve -%s address: '%s' - - - UnitDisplayStatusBarControl - - Unit to show amounts in. Click to select another unit. + + Chain selection options: - - - WalletFrame - - No wallet has been loaded. + + Change index out of range - - - WalletModel - - - Send Coins - Send Coins - - - - - Fee bump error + + Connection options: - - Increasing transaction fee failed + + Copyright (C) %i-%i - - Do you want to increase the fee? - + + Corrupted block database detected + Corrupted block database detected - - Current fee: + + Debugging/Testing options: - - Increase: + + Do not load the wallet and disable wallet RPC calls - - New fee: - + + Do you want to rebuild the block database now? + Do you want to rebuild the block database now? - - Confirm fee bump + + Enable publish hash block in <address> - - Can't sign transaction. + + Enable publish hash transaction in <address> - - Could not commit transaction + + Enable publish raw block in <address> - - - WalletView - - &Export - &Export + + Enable publish raw transaction in <address> + - Export the data in the current tab to a file - Export the data in the current tab to a file + Enable transaction replacement in the memory pool (default: %u) + - - Backup Wallet - + + Error initializing block database + Error initializing block database - Wallet Data (*.dat) - + Error initializing wallet database environment %s! + Error initializing wallet database environment %s! - - Backup Failed + + Error loading %s - - There was an error trying to save the wallet data to %1. + + Error loading %s: Wallet corrupted - - Backup Successful + + Error loading %s: Wallet requires newer version of %s - - The wallet data was successfully saved to %1. - + + Error loading block database + Error loading block database - - - raven-core - - Options: - Options: + + Error opening block database + Error opening block database - - Specify data directory - Specify data directory + + Error: Disk space is low! + Error: Disk space is low! - - Connect to a node to retrieve peer addresses, and disconnect - Connect to a node to retrieve peer addresses, and disconnect + + Failed to listen on any port. Use -listen=0 if you want this. + Failed to listen on any port. Use -listen=0 if you want this. - - Specify your own public address - Specify your own public address + + Importing... + - - Accept command line and JSON-RPC commands - Accept command line and JSON-RPC commands + + Incorrect or no genesis block found. Wrong datadir for network? + Incorrect or no genesis block found. Wrong datadir for network? - - Distributed under the MIT software license, see the accompanying file %s or %s + + Initialization sanity check failed. %s is shutting down. - - If <category> is not supplied or if <category> = 1, output all debugging information. + + Invalid amount for -%s=<amount>: '%s' - - Prune configured below the minimum of %d MiB. Please use a higher number. + + Invalid amount for -discardfee=<amount>: '%s' - - Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + Invalid amount for -fallbackfee=<amount>: '%s' - - Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + Keep the transaction memory pool below <n> megabytes (default: %u) - - Error: A fatal internal error occurred, see debug.log for details + + Loading P2P addresses... - - Fee (in %s/kB) to add to transactions you send (default: %s) + + Loading banlist... - - Pruning blockstore... + + Location of the auth cookie (default: data dir) - - Run in the background as a daemon and accept commands - Run in the background as a daemon and accept commands + + Not enough file descriptors available. + Not enough file descriptors available. - - Unable to start HTTP server. See debug log for details. + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) - - Raven Core - Raven Core + + Print this help message and exit + - The %s developers + Print version and exit - - A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + Prune cannot be configured with a negative value. - - Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + Prune mode is incompatible with -txindex. - - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - - - - Cannot obtain a lock on data directory %s. %s is probably already running. + + Rebuild chain state and block index from the blk*.dat files on disk - - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + Rebuild chain state from the currently indexed blocks - - Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + Replaying blocks... - - Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + Rewinding blocks... - - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + Set database cache size in megabytes (%d to %d, default: %d) + - - Extra transactions to keep in memory for compact block reconstructions (default: %u) - + + Specify wallet file (within data directory) + Specify wallet file (within data directory) - - If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + The source code is available from %s. - - Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + Transaction fee and change calculation failed - Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + Unable to bind to %s on this computer. %s is probably already running. - - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Unsupported argument -benchmark ignored, use -debug=bench. - - Please contribute if you find %s useful. Visit %s for further information about the software. + + Unsupported argument -debugnet ignored, use -debug=net. - - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + Unsupported argument -tor found, use -onion. - - Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + Unsupported logging category %s=%s. - - Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + Upgrading UTXO database - - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + Use UPnP to map the listening port (default: %u) - - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + Use the test chain - - This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + User Agent comment (%s) contains unsafe characters. - - This is the transaction fee you may discard if change is smaller than dust at this level - + + Verifying blocks... + Verifying blocks... - - Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. - + + Wallet %s resides outside data directory %s + Wallet %s resides outside data directory %s - - Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + Wallet debugging/testing options: - - Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + Wallet needed to be rewritten: restart %s to complete - - Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + Wallet options: - - Wallet will not create transactions that violate mempool chain limits (default: %u) + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - - Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - - Whether to save the mempool on shutdown and load on restart (default: %u) + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - - You need to rebuild the database using -reindex-chainstate to change -txindex + + Error: Listening for incoming connections failed (listen returned error %s) - - %d of last 100 blocks have unexpected version - + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - - %s corrupt, salvage failed + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) - - (press q to shutdown and continue later) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - - -maxmempool must be at least %d MB + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - - <category> can be: + + Maximum size of data in data carrier transactions we relay and mine (default: %u) - - Accept connections from outside (default: 1 if no -proxy or -connect) + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - - Append comment to the user agent string + + The transaction amount is too small to send after the fee has been deducted - - Attempt to recover private keys from a corrupt wallet on startup + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - - Block creation options: - Block creation options: + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - - Cannot resolve -%s address: '%s' + + (default: %u) - - Chain selection options: + + Accept public REST requests (default: %u) - - Change index out of range + + Automatically create Tor hidden service (default: %d) - - Connection options: + + Connect through SOCKS5 proxy - - Copyright (C) %i-%i + + Error loading %s: You can't disable HD on an already existing HD wallet - - Corrupted block database detected - Corrupted block database detected + + Error reading from database, shutting down. + - Debugging/Testing options: + Error upgrading chainstate database - - Do not load the wallet and disable wallet RPC calls + + Imports blocks from external blk000??.dat file on startup - - Do you want to rebuild the block database now? - Do you want to rebuild the block database now? + + Information + Information - - Enable publish hash block in <address> + + Invalid -onion address or hostname: '%s' - Enable publish hash transaction in <address> + Invalid -proxy address or hostname: '%s' - - Enable publish raw block in <address> + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - - Enable publish raw transaction in <address> + + Invalid netmask specified in -whitelist: '%s' - - Enable transaction replacement in the memory pool (default: %u) + + Keep at most <n> unconnectable transactions in memory (default: %u) - - Error initializing block database - Error initializing block database - - - - Error initializing wallet database environment %s! - Error initializing wallet database environment %s! - - - - Error loading %s + + Need to specify a port with -whitebind: '%s' - Error loading %s: Wallet corrupted + Node relay options: - - Error loading %s: Wallet requires newer version of %s + + RPC server options: - - Error loading block database - Error loading block database + + Reducing -maxconnections from %d to %d, because of system limitations. + - Error opening block database - Error opening block database + Rescan the block chain for missing wallet transactions on startup + - Error: Disk space is low! - Error: Disk space is low! + Send trace/debug info to console instead of debug.log file + Send trace/debug info to console instead of debug.log file + + + + Show all debugging options (usage: --help -help-debug) + - Failed to listen on any port. Use -listen=0 if you want this. - Failed to listen on any port. Use -listen=0 if you want this. + Shrink debug.log file on client startup (default: 1 when no -debug) + Shrink debug.log file on client startup (default: 1 when no -debug) - - Importing... - + + Signing transaction failed + Signing transaction failed - - Incorrect or no genesis block found. Wrong datadir for network? - Incorrect or no genesis block found. Wrong datadir for network? + + The transaction amount is too small to pay the fee + - - Initialization sanity check failed. %s is shutting down. + + This is experimental software. - Invalid amount for -%s=<amount>: '%s' + Tor control port password (default: empty) - Invalid amount for -discardfee=<amount>: '%s' + Tor control port to use if onion listening enabled (default: %s) - Invalid amount for -fallbackfee=<amount>: '%s' - + Transaction amount too small + Transaction amount too small - - Keep the transaction memory pool below <n> megabytes (default: %u) + + Transaction too large for fee policy - - Loading P2P addresses... - + + Transaction too large + Transaction too large - - Loading banlist... + + Unable to bind to %s on this computer (bind returned error %s) - - Location of the auth cookie (default: data dir) + + Upgrade wallet to latest format on startup - - Not enough file descriptors available. - Not enough file descriptors available. + + Username for JSON-RPC connections + Username for JSON-RPC connections - Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Valid Verifier - - Print this help message and exit + + Variable is not allow in the expression: ' - Print version and exit + Verifier String doesn't exist for asset: - Prune cannot be configured with a negative value. + Verifier String for asset trasnfer, not found - Prune mode is incompatible with -txindex. + Verifier not found for asset: - - Rebuild chain state and block index from the blk*.dat files on disk + + Verifier string can not be empty. To default to true, use "true" - Rebuild chain state from the currently indexed blocks + Verifier string is empty - - Replaying blocks... + + Verifier string not found - - Rewinding blocks... + + Verifying wallet(s)... - - Set database cache size in megabytes (%d to %d, default: %d) - + + Warning + Warning - - Set maximum block size in bytes (default: %d) + + Warning: unknown new rules activated (versionbit %i) - - Specify wallet file (within data directory) - Specify wallet file (within data directory) + + Whether to operate in a blocks only mode (default: %u) + - - The source code is available from %s. + + You need to rebuild the database using -reindex to change -txindex - - Transaction fee and change calculation failed + + Zapping all transactions from wallet... - - Unable to bind to %s on this computer. %s is probably already running. + + ZeroMQ notification options: - - Unsupported argument -benchmark ignored, use -debug=bench. - + + Password for JSON-RPC connections + Password for JSON-RPC connections - - Unsupported argument -debugnet ignored, use -debug=net. - + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Execute command when the best block changes (%s in cmd is replaced by block hash) - - Unsupported argument -tor found, use -onion. - + + Allow DNS lookups for -addnode, -seednode and -connect + Allow DNS lookups for -addnode, -seednode and -connect - - Unsupported logging category %s=%s. + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - - Upgrading UTXO database + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. - - Use UPnP to map the listening port (default: %u) + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) - - Use the test chain + + Do not keep transactions in the mempool longer than <n> hours (default: %u) - - User Agent comment (%s) contains unsafe characters. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) - Verifying blocks... - Verifying blocks... + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Wallet %s resides outside data directory %s - Wallet %s resides outside data directory %s + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - - Wallet debugging/testing options: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) - - Wallet needed to be rewritten: restart %s to complete + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) - - Wallet options: + + How thorough the block verification of -checkblocks is (0-4, default: %u) - - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset - - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. - - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length - - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash - - Error: Listening for incoming connections failed (listen returned error %s) + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. - - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - - Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) - - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) - - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - - Maximum size of data in data carrier transactions we relay and mine (default: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) - - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) - - The transaction amount is too small to send after the fee has been deducted + + Output debugging information (default: %u, supplying <category> is optional) - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight - - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) - - (default: %u) + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) - - Accept public REST requests (default: %u) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. - - Automatically create Tor hidden service (default: %d) + + Support filtering of blocks and transaction with bloom filters (default: %u) - Connect through SOCKS5 proxy + The default height that is required before rewards are allowed to be sent out - - Error loading %s: You can't disable HD on an already existing HD wallet + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target - - Error reading from database, shutting down. + + This address doesn't contain the correct tags to pass the verifier string check: - - Error upgrading chainstate database + + This is the transaction fee you may pay when fee estimates are not available. - - Imports blocks from external blk000??.dat file on startup + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. - Information - Information + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Invalid -onion address or hostname: '%s' + Unable to get restricted assets verifier string. Database out of sync. Reindex required - - Invalid -proxy address or hostname: '%s' + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset - - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + Unable to reissue asset: unit must be larger than current unit selection - - Invalid netmask specified in -whitelist: '%s' + + Unable to transfer restricted asset, this restricted asset has been globally frozen - - Keep at most <n> unconnectable transactions in memory (default: %u) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - - Need to specify a port with -whitebind: '%s' + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. - - Node relay options: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - - RPC server options: + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect - Reducing -maxconnections from %d to %d, because of system limitations. + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. - - Rescan the block chain for missing wallet transactions on startup + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) - - Send trace/debug info to console instead of debug.log file - Send trace/debug info to console instead of debug.log file + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - - Show all debugging options (usage: --help -help-debug) + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 - - Shrink debug.log file on client startup (default: 1 when no -debug) - Shrink debug.log file on client startup (default: 1 when no -debug) + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - - Signing transaction failed - Signing transaction failed + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - - The transaction amount is too small to pay the fee + + You need to rebuild the database using -reindex-chainstate to change -spentindex - - This is experimental software. + + You need to rebuild the database using -reindex-chainstate to change -timestampindex - - Tor control port password (default: empty) + + %s is set very high! - Tor control port to use if onion listening enabled (default: %s) + ' doesn't exist in the database - Transaction amount too small - Transaction amount too small + ' has already been used + - - Transaction too large for fee policy + + ' is not a valid character in the expression: - Transaction too large - Transaction too large + ' the amount trying to reissue is to large + - Unable to bind to %s on this computer (bind returned error %s) + (default: %s) - - Upgrade wallet to latest format on startup + + A space separated list of 12-words used to import a bip44 wallet - Username for JSON-RPC connections - Username for JSON-RPC connections + Always query for peer addresses via DNS lookup (default: %u) + - Verifying wallet(s)... + Asset Transfer amounts must be greater than 0 - - - Warning - Warning - - Warning: unknown new rules activated (versionbit %i) + Asset doesn't exist: - Whether to operate in a blocks only mode (default: %u) + Asset must be a qualifier, sub qualifier, or a restricted asset - Zapping all transactions from wallet... + Asset name is not valid - ZeroMQ notification options: + Asset with this name is already in the mempool - - Password for JSON-RPC connections - Password for JSON-RPC connections - - - - Execute command when the best block changes (%s in cmd is replaced by block hash) - Execute command when the best block changes (%s in cmd is replaced by block hash) + + Done Loading + - - Allow DNS lookups for -addnode, -seednode and -connect - Allow DNS lookups for -addnode, -seednode and -connect + + Enable publish raw asset messages in <address> + - - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + Error creating %s: You can't create non-HD wallets with this version. - - -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + Error loading wallet %s. -wallet filename must be a regular file. - - Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + Error loading wallet %s. Duplicate -wallet filename specified. - - Connect only to the specified node(s); -connect=0 disables automatic connections + + Error loading wallet %s. Invalid characters in -wallet filename. - - Do not keep transactions in the mempool longer than <n> hours (default: %u) + + Error not set - - Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + Error writing bip 39 passphrase to database - - Error loading %s: You can't enable HD on an already existing non-HD wallet + + Error writing bip 39 vchseed to database - - Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + Error writing bip 39 words to database - - Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + Every '(' must have a corresponding ')' in the expression: - - Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + Failed to extract destination from change script - - How thorough the block verification of -checkblocks is (0-4, default: %u) + + Failed to find restricted asset change address from inputs - - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + Failed to get asset data from script - - Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + Failed to get verifier string from output: - Output debugging information (default: %u, supplying <category> is optional) + Failed to load Assets Database - - Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + Flag must be 1 or 0 - - Support filtering of blocks and transaction with bloom filters (default: %u) + + How many blocks to check at startup (default: %u, 0 = all) - - The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + Include IP addresses in debug output (default: %u) - - This is the transaction fee you may pay when fee estimates are not available. + + Init Message Channels - Scanning Asset Transactions - This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + Insufficient asset funds - Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. - - - - - Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + Invalid Qualifier Name: - - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Invalid expressions in verifier string: - - Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + Invalid parameter: amount must be - - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + Invalid parameter: amount must be between - - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Invalid parameter: asset amount can't be equal to or less than zero. - - Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + Invalid parameter: asset amount greater than max money: - - Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + Invalid parameter: asset_name ' - - %s is set very high! + + Invalid parameter: has_ipfs must be 0 or 1. - (default: %s) + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes - - Always query for peer addresses via DNS lookup (default: %u) + + Invalid parameter: reissuable must be 0 or 1 - - Error loading wallet %s. -wallet filename must be a regular file. + + Invalid parameter: reissuable must be 0 - Error loading wallet %s. Duplicate -wallet filename specified. + Invalid parameter: units must be - Error loading wallet %s. Invalid characters in -wallet filename. + Invalid parameter: units must be between 0-8. - - How many blocks to check at startup (default: %u, 0 = all) + + Invalid syntax: - Include IP addresses in debug output (default: %u) + Keypool ran out, please call keypoolrefill first - - Keypool ran out, please call keypoolrefill first + + Length is to large. Please use a smaller length @@ -5075,7 +8131,22 @@ - + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) @@ -5090,7 +8161,12 @@ - + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) @@ -5105,12 +8181,22 @@ - + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) - + + Signing asset transaction failed + + + + Specify configuration file (default: %s) @@ -5135,7 +8221,17 @@ - + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. @@ -5170,52 +8266,77 @@ - + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + Unknown network specified in -onlynet: '%s' Unknown network specified in -onlynet: '%s' - + Insufficient funds Insufficient funds - + Loading block index... Loading block index... - - Add a node to connect to and attempt to keep the connection open - Add a node to connect to and attempt to keep the connection open - - - + Loading wallet... Loading wallet... - + Cannot downgrade wallet Cannot downgrade wallet - - Cannot write default address - Cannot write default address - - - + Rescanning... Rescanning... - - Done loading - Done loading - - - + Error Error diff --git a/src/qt/locale/raven_en_GB.ts b/src/qt/locale/raven_en_GB.ts index dab48173b4..aaa5f6c4df 100644 --- a/src/qt/locale/raven_en_GB.ts +++ b/src/qt/locale/raven_en_GB.ts @@ -1,104 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label Right-click to edit address or label + Create a new address Create a new address + &New &New + Copy the currently selected address to the system clipboard Copy the currently selected address to the system clipboard + &Copy &Copy + C&lose C&lose + Delete the currently selected address from the list Delete the currently selected address from the list + Export the data in the current tab to a file Export the data in the current tab to a file + &Export &Export + &Delete &Delete + Choose the address to send coins to Choose the address to send coins to + Choose the address to receive coins with Choose the address to receive coins with + C&hoose C&hoose + Sending addresses Sending addresses + Receiving addresses Receiving addresses + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address &Copy Address + Copy &Label Copy &Label + &Edit &Edit + Export Address List Export Address List + Comma separated file (*.csv) Comma separated file (*.csv) + Exporting Failed Exporting Failed - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Label + Address Address + (no label) (no label) @@ -106,2540 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Passphrase Dialog + Enter passphrase Enter passphrase + New passphrase New passphrase + Repeat new passphrase Repeat new passphrase - Encrypt wallet - Encrypt wallet - - - - BanTableModel - - IP/Netmask - IP/Netmask - - - Banned Until - Banned Until + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - - - RavenGUI - Sign &message... - Sign &message... + + Encrypt wallet + Encrypt wallet - Synchronizing with network... - Synchronising with network... + + This operation needs your wallet passphrase to unlock the wallet. + - &Overview - &Overview + + Unlock wallet + - Node - Node + + This operation needs your wallet passphrase to decrypt the wallet. + - Show general overview of wallet - Show general overview of wallet + + Decrypt wallet + - &Transactions - &Transactions + + Change passphrase + - Browse transaction history - Browse transaction history + + Enter the old passphrase and new passphrase to the wallet. + - E&xit - E&xit + + Confirm wallet encryption + - Quit application - Quit application + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &About %1 - &About %1 + + Are you sure you wish to encrypt your wallet? + - Show information about %1 - Show information about %1 + + + Wallet encrypted + - About &Qt - About &Qt + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Show information about Qt - Show information about Qt + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Options... - &Options... + + + + + Wallet encryption failed + - Modify configuration options for %1 - Modify configuration options for %1 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Encrypt Wallet... - &Encrypt Wallet... + + + The supplied passphrases do not match. + - &Backup Wallet... - &Backup Wallet... + + Wallet unlock failed + - &Change Passphrase... - &Change Passphrase... + + + + The passphrase entered for the wallet decryption was incorrect. + - &Sending addresses... - &Sending addresses... + + Wallet decryption failed + - &Receiving addresses... - &Receiving addresses... + + Wallet passphrase was successfully changed. + - Open &URI... - Open &URI... + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Reindexing blocks on disk... - Reindexing blocks on disk... + + Asset Selection + - Send coins to a Raven address - Send coins to a Raven address + + Quantity: + - Backup wallet to another location - Backup wallet to another location + + Bytes: + - Change the passphrase used for wallet encryption - Change the passphrase used for wallet encryption + + Amount: + - &Debug window - &Debug window + + Dust: + - Open debugging and diagnostic console - Open debugging and diagnostic console + + Fee: + - &Verify message... - &Verify message... + + After Fee: + - Raven - Raven + + Change: + - Wallet - Wallet + + (un)select all + - &Send - &Send + + Tree mode + - &Receive - &Receive + + List mode + - &Show / Hide - &Show / Hide + + View assets that you have the ownership asset for + - Show or hide the main Window - Show or hide the main Window + + View Administrator Assets + - Encrypt the private keys that belong to your wallet - Encrypt the private keys that belong to your wallet + + Asset + - Sign messages with your Raven addresses to prove you own them - Sign messages with your Raven addresses to prove you own them + + Amount + - Verify messages to ensure they were signed with specified Raven addresses - Verify messages to ensure they were signed with specified Raven addresses + + Received with label + - &File - &File + + Received with address + - &Settings - &Settings + + Date + - &Help - &Help + + Confirmations + - Tabs toolbar - Tabs toolbar + + Confirmed + - Request payments (generates QR codes and raven: URIs) - Request payments (generates QR codes and raven: URIs) + + Copy address + - Show the list of used sending addresses and labels - Show the list of used sending addresses and labels + + Copy label + - Show the list of used receiving addresses and labels - Show the list of used receiving addresses and labels + + + Copy amount + - Open a raven: URI or payment request - Open a raven: URI or payment request + + Copy transaction ID + - &Command-line options - &Command-line options - - - %n active connection(s) to Raven network - %n active connection to Raven network%n active connections to Raven network + + Lock unspent + - Indexing blocks on disk... - Indexing blocks on disk... + + Unlock unspent + - Processing blocks on disk... - Processing blocks on disk... - - - Processed %n block(s) of transaction history. - Processed %n block of transaction history.Processed %n blocks of transaction history. + + Copy quantity + - %1 behind - %1 behind + + Copy fee + - Last received block was generated %1 ago. - Last received block was generated %1 ago. + + Copy after fee + - Transactions after this will not yet be visible. - Transactions after this will not yet be visible. + + Copy bytes + - Error - Error + + Copy dust + - Warning - Warning + + Copy change + - Information - Information + + (%1 locked) + - Up to date - Up to date + + yes + - Show the %1 help message to get a list with possible Raven command-line options - Show the %1 help message to get a list with possible Raven command-line options + + no + - %1 client - %1 client + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Catching up... - Catching up... + + Can vary +/- %1 satoshi(s) per input. + - Date: %1 - - Date: %1 - + + + (no label) + - Amount: %1 - - Amount: %1 - + + change from %1 (%2) + - Type: %1 - - Type: %1 - + + (change) + + + + AssetTableModel - Label: %1 - - Label: %1 - + + Name + - Address: %1 - - Address: %1 - + + Quantity + + + + AssetsDialog - Sent transaction - Sent transaction + + + Send Coins + - Incoming transaction - Incoming transaction + + Asset Control Features + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + Inputs... + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Wallet is <b>encrypted</b> and currently <b>locked</b> + + automatically selected + - - - CoinControlDialog - Coin Selection - Coin Selection + + Insufficient funds! + + Quantity: - Quantity: + + Bytes: - Bytes: + + Amount: - Amount: + - Fee: - Fee: + + Dust: + - Dust: - Dust: + + Fee: + + After Fee: - After Fee: + + Change: - Change: + - (un)select all - (un)select all + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - Tree mode + + Custom change address + - List mode - List mode + + Transaction Fee: + - Amount - Amount + + Choose... + - Received with label - Received with label + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Received with address - Received with address + + Warning: Fee estimation is currently not possible. + - Date - Date + + collapse fee-settings + - Confirmations - Confirmations + + Hide + - Confirmed - Confirmed + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - (no label) - (no label) + + per kilobyte + - - - EditAddressDialog - Edit Address - Edit Address + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Label - &Label + + (read the tooltip) + - The label associated with this address list entry - The label associated with this address list entry + + Recommended: + - The address associated with this address list entry. This can only be modified for sending addresses. - The address associated with this address list entry. This can only be modified for sending addresses. + + Custom: + - &Address - &Address + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - FreespaceChecker - A new data directory will be created. - A new data directory will be created. + + Confirmation time target: + - name - name + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Directory already exists. Add %1 if you intend to create a new directory here. - Directory already exists. Add %1 if you intend to create a new directory here. + + Request Replace-By-Fee + - Path already exists, and is not a directory. - Path already exists, and is not a directory. + + Confirm the send action + - Cannot create data directory here. - Cannot create data directory here. + + S&end + - - - HelpMessageDialog - version - version + + Clear all fields of the form. + - (%1-bit) - (%1-bit) + + Clear &All + - About %1 - About %1 + + Transfer to multiple recipients at once + - Command-line options - Command-line options + + Add &Recipient + - Usage: - Usage: + + Balance: + - command-line options - command-line options + + Copy quantity + - UI Options: - UI Options: + + Copy amount + - Choose data directory on startup (default: %u) - Choose data directory on startup (default: %u) + + Copy fee + - Set language, for example "de_DE" (default: system locale) - Set language, for example "de_DE" (default: system locale) + + Copy after fee + - Start minimized - Start minimised + + Copy bytes + - Set SSL root certificates for payment request (default: -system-) - Set SSL root certificates for payment request (default: -system-) + + Copy dust + - Show splash screen on startup (default: %u) - Show splash screen on startup (default: %u) + + Copy change + - Reset all settings changed in the GUI - Reset all settings changed in the GUI + + %1 (%2 blocks) + - - - Intro - Welcome - Welcome + + + + + %1 to %2 + - Welcome to %1. - Welcome to %1. + + Are you sure you want to send? + - As this is the first time the program is launched, you can choose where %1 will store its data. - As this is the first time the program is launched, you can choose where %1 will store its data. + + added as transaction fee + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. + + Confirm send assets + - Use the default data directory - Use the default data directory + + The recipient address is not valid. Please recheck. + - Use a custom data directory: - Use a custom data directory: + + The amount to pay must be larger than 0. + - Error: Specified data directory "%1" cannot be created. - Error: Specified data directory "%1" cannot be created. + + The amount exceeds your balance. + - Error - Error - - - %n GB of free space available - %n GB of free space available%n GB of free space available + + The total exceeds your balance when the %1 transaction fee is included. + - - (of %n GB needed) - (of %n GB needed)(of %n GB needed) + + + Duplicate address found: addresses should only be used once each. + - - - ModalOverlay - Form - Form + + Transaction creation failed! + - Last block time - Last block time + + The transaction was rejected with the following reason: %1 + - Hide - Hide + + A fee higher than %1 is considered an absurdly high fee. + - - - OpenURIDialog - Open URI - Open URI + + Payment request expired. + - Open payment request from URI or file - Open payment request from URI or file + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - URI: - URI: + + Warning: Invalid Raven address + - Select payment request file - Select payment request file + + Warning: Unknown change address + - - - OptionsDialog - Options - Options + + Confirm custom change address + - &Main - &Main + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Automatically start %1 after logging in to the system. - Automatically start %1 after logging in to the system. + + (no label) + + + + AssignQualifier - &Start %1 on system login - &Start %1 on system login + + Frame + - Size of &database cache - Size of &database cache + + Select Type: + - MB - MB + + Select Qualifier: + - Number of script &verification threads - Number of script &verification threads + + Address: + - Accept connections from outside - Accept connections from outside + + IPFS / Hash: + - Allow incoming connections - Allow incoming connections + + Custom Change Address + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + Check + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimise instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + Clear + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + Submit + - Third party transaction URLs - Third party transaction URLs + + Assign Qualifier + - Active command-line options that override above options: - Active command-line options that override above options: + + Remove Qualifier + - Reset all client options to default. - Reset all client options to default. + + Data has been validated, You can now submit the qualifier request + - &Reset Options - &Reset Options + + Must have a qualifier asset selected + - &Network - &Network + + Address already has the qualifier assigned to it + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = leave that many cores free) + + Address doesn't have the qualifier, so we can't remove it + - W&allet - W&allet + + Unable to preform action at this time + + + + BanTableModel - Expert - Expert + + IP/Netmask + IP/Netmask - Enable coin &control features - Enable coin &control features + + Banned Until + Banned Until + + + CoinControlDialog - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + Coin Selection + Coin Selection - &Spend unconfirmed change - &Spend unconfirmed change + + Quantity: + Quantity: - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + Bytes: + Bytes: - Map port using &UPnP - Map port using &UPnP + + Amount: + Amount: - Connect to the Raven network through a SOCKS5 proxy. - Connect to the Raven network through a SOCKS5 proxy. + + Fee: + Fee: - &Connect through SOCKS5 proxy (default proxy): - &Connect through SOCKS5 proxy (default proxy): + + Dust: + Dust: - Proxy &IP: - Proxy &IP: + + After Fee: + After Fee: - &Port: - &Port: + + Change: + Change: - Port of the proxy (e.g. 9050) - Port of the proxy (e.g. 9050) + + (un)select all + (un)select all - Used for reaching peers via: - Used for reaching peers via: + + Tree mode + Tree mode - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + List mode + List mode - IPv4 - IPv4 + + Amount + Amount - IPv6 - IPv6 + + Received with label + Received with label - Tor - Tor + + Received with address + Received with address - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + Date + Date - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Use separate SOCKS5 proxy to reach peers via Tor hidden services: + + Confirmations + Confirmations - &Window - &Window + + Confirmed + Confirmed - &Hide the icon from the system tray. - &Hide the icon from the system tray. + + Copy address + - Hide tray icon - Hide tray icon + + Copy label + - Show only a tray icon after minimizing the window. - Show on a tray icon after minimising the window. + + + Copy amount + - &Minimize to the tray instead of the taskbar - &Minimise to the tray instead of the task bar + + Copy transaction ID + - M&inimize on close - M&inimise on close + + Lock unspent + - &Display - &Display + + Unlock unspent + - User Interface &language: - User Interface &language: + + Copy quantity + - The user interface language can be set here. This setting will take effect after restarting %1. - The user interface language can be set here. This setting will take effect after restarting %1. + + Copy fee + - &Unit to show amounts in: - &Unit to show amounts in: + + Copy after fee + - Choose the default subdivision unit to show in the interface and when sending coins. - Choose the default subdivision unit to show in the interface and when sending coins. + + Copy bytes + - Whether to show coin control features or not. - Whether to show coin control features or not. + + Copy dust + - &OK - &OK + + Copy change + - &Cancel - &Cancel + + (%1 locked) + - default - default + + yes + - none - none + + no + - Confirm options reset - Confirm options reset + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Client restart required to activate changes. - Client restart required to activate changes. + + Can vary +/- %1 satoshi(s) per input. + - Client will be shut down. Do you want to proceed? - Client will be shut down. Do you want to proceed? + + + (no label) + (no label) - This change would require a client restart. - This change would require a client restart. + + change from %1 (%2) + - The supplied proxy address is invalid. - The supplied proxy address is invalid. + + (change) + - OverviewPage + CreateAssetDialog - Form - Form + + Coin Control Features + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - The displayed information may be out of date. Your Wallet automatically synchronises with the Raven Network after a connection is established, but this process has not been completed yet. + + Inputs... + - Watch-only: - Watch-only: + + automatically selected + - Available: - Available: + + Insufficient funds! + - Your current spendable balance - Your current spendable balance + + + Quantity: + - Pending: - Pending: + + Bytes: + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + Amount: + - Immature: - Immature: + + Dust: + - Mined balance that has not yet matured - Mined balance that has not yet matured + + Fee: + - Balances - Balances + + After Fee: + - Total: - Total: + + Change: + - Your current total balance - Your current total balance + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Your current balance in watch-only addresses - Your current balance in watch-only addresses + + Custom change address + - Spendable: - Spendable: + + Name: + - Recent transactions - Recent transactions + + A-Z 0-9 and . or _ as the second character + - Unconfirmed transactions to watch-only addresses - Unconfirmed transactions to watch-only addresses + + The name of the asset you would like to create + - Mined balance in watch-only addresses that has not yet matured - Mined balance in watch-only addresses that has not yet matured + + Check Availabilty + - Current total balance in watch-only addresses - Current total balance in watch-only addresses + + Address: + - - - PaymentServer - - - PeerTableModel - User Agent - User Agent + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Node/Service - Node/Service + + Verifier String: + - - - QObject - Amount - Amount + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Enter a Raven address (e.g. %1) - Enter a Raven address (e.g. %1) + + Warning: + - %1 d - %1 d + + The number of assets that will be created + - %1 h - %1 h + + Units: + - %1 m - %1 m + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - %1 s - %1 s + + e.g. 1 + - None - None + + If the owner of this asset will be able to issue more assets in the future + - N/A - N/A + + Reissuable + - %1 ms - %1 ms + + Does this asset have an ipfs hash to go with it + - %1 and %2 - %1 and %2 + + Add IPFS/Txid Hash + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + The ipfs/txid hash that contains information about the asset + - Client version - Client version + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - &Information - &Information + + ERROR TEXT + - Debug window - Debug window + + Transaction Fee: + - General - General + + Choose... + - Using BerkeleyDB version - Using BerkeleyDB version + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Datadir - Datadir + + Warning: Fee estimation is currently not possible. + - Startup time - Startup time + + collapse fee-settings + - Network - Network + + Hide + - Name - Name + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Number of connections - Number of connections + + per kilobyte + - Block chain - Block chain + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Current number of blocks - Current number of blocks + + (read the tooltip) + - Memory Pool - Memory Pool + + Recommended: + - Current number of transactions - Current number of transactions + + C&ustom: + - Memory usage - Memory usage + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Received - Received + + Confirmation time target: + - Sent - Sent + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - &Peers - &Peers + + Request Replace-By-Fee + - Banned peers - Banned peers + + Create Asset + - Select a peer to view detailed information. - Select a peer to view detailed information. + + Clear + - Whitelisted - Whitelisted + + Balance: + - Direction - Direction + + 123.456 RVN + - Version - Version + + Copy quantity + - Starting Block - Starting Block + + Copy amount + - Synced Headers - Synced Headers + + Copy fee + - Synced Blocks - Synced Blocks + + Copy after fee + - User Agent - User Agent + + Copy bytes + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + Copy dust + - Decrease font size - Decrease font size + + Copy change + - Increase font size - Increase font size + + %1 (%2 blocks) + - Services - Services + + Main Asset + - Ban Score - Ban Score + + Sub Asset + - Connection Time - Connection Time + + Unique Asset + - Last Send - Last Send + + Messaging Channel Asset + - Last Receive - Last Receive + + Qualifier Asset + - Ping Time - Ping Time + + Sub Qualifier Asset + - The duration of a currently outstanding ping. - The duration of a currently outstanding ping. + + Restricted Asset + - Ping Wait - Ping Wait + + Asset Type + - Time Offset - Time Offset + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Last block time - Last block time + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Open - &Open + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Console - &Console + + + + Warning: Invalid Raven address + - &Network Traffic - &Network Traffic + + Warning: Restricted Assets Reissuance requires an address + - &Clear - &Clear + + Valid Asset + - Totals - Totals + + Invalid: Asset name already in use + - In: - In: + + Error: Asset Database not in sync + - Out: - Out: + + + %1 to %2 + - Debug log file - Debug log file + + Are you sure you want to send? + - Clear console - Clear console + + added as transaction fee + - 1 &hour - 1 &hour + + Total Amount %1 + - 1 &day - 1 &day + + or + - 1 &week - 1 &week + + Confirm send assets + - 1 &year - 1 &year + + Invalid: + - Welcome to the %1 RPC console. - Welcome to the %1 RPC console. + + Copy + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. + + Transaction ID Copied + - Type <b>help</b> for an overview of available commands. - Type <b>help</b> for an overview of available commands. + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - %1 B - %1 B + + Warning: Unknown change address + - %1 KB - %1 KB + + Confirm custom change address + - %1 MB - %1 MB + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - %1 GB - %1 GB + + (no label) + - (node id: %1) - (node id: %1) + + Pay only the required fee of %1 + + + + EditAddressDialog - via %1 - via %1 + + Edit Address + Edit Address - never - never + + &Label + &Label - Inbound - Inbound + + The label associated with this address list entry + The label associated with this address list entry - Outbound - Outbound + + The address associated with this address list entry. This can only be modified for sending addresses. + The address associated with this address list entry. This can only be modified for sending addresses. - Yes - Yes + + &Address + &Address - No - No + + New receiving address + - Unknown - Unknown + + New sending address + - - - ReceiveCoinsDialog - &Amount: - &Amount: + + Edit receiving address + - &Label: - &Label: + + Edit sending address + - &Message: - &Message: + + The entered address "%1" is not a valid Raven address. + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + The entered address "%1" is already in the address book. + - R&euse an existing receiving address (not recommended) - R&euse an existing receiving address (not recommended) + + Could not unlock wallet. + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + New key generation failed. + + + + FreespaceChecker - An optional label to associate with the new receiving address. - An optional label to associate with the new receiving address. + + A new data directory will be created. + A new data directory will be created. - Use this form to request payments. All fields are <b>optional</b>. - Use this form to request payments. All fields are <b>optional</b>. + + name + name - An optional amount to request. Leave this empty or zero to not request a specific amount. - An optional amount to request. Leave this empty or zero to not request a specific amount. + + Directory already exists. Add %1 if you intend to create a new directory here. + Directory already exists. Add %1 if you intend to create a new directory here. - Clear all fields of the form. - Clear all fields of the form. + + Path already exists, and is not a directory. + Path already exists, and is not a directory. + + + + Cannot create data directory here. + Cannot create data directory here. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + Check + + + + Clear - Clear + - Requested payments history - Requested payments history + + Submit + - &Request payment - &Request payment + + Data has been validated, You can now submit the restriction transaction + - Show the selected request (does the same as double clicking an entry) - Show the selected request (does the same as double clicking an entry) + + Must have a restricted asset selected + - Show - Show + + Address is already frozen + - Remove the selected entries from the list - Remove the selected entries from the list + + Address is not frozen + - Remove - Remove + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + - + - ReceiveRequestDialog + GUIUtil::SyncWarningMessage - QR Code - QR Code + + Warning: transaction while syncing wallet! + - Copy &URI - Copy &URI + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - Copy &Address - Copy &Address + + version + version - &Save Image... - &Save Image... + + + (%1-bit) + (%1-bit) - Address - Address + + About %1 + About %1 - Label - Label + + Command-line options + Command-line options + + + + Usage: + Usage: + + + + command-line options + command-line options + + + + UI Options: + UI Options: + + + + Choose data directory on startup (default: %u) + Choose data directory on startup (default: %u) + + + + Set language, for example "de_DE" (default: system locale) + Set language, for example "de_DE" (default: system locale) + + + + Start minimized + Start minimised + + + + Set SSL root certificates for payment request (default: -system-) + Set SSL root certificates for payment request (default: -system-) + + + + Show splash screen on startup (default: %u) + Show splash screen on startup (default: %u) + + + + Reset all settings changed in the GUI + Reset all settings changed in the GUI - + - RecentRequestsTableModel + Intro - Label - Label + + Welcome + Welcome - (no label) - (no label) + + Welcome to %1. + Welcome to %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Use the default data directory + + + + Use a custom data directory: + Use a custom data directory: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Error: Specified data directory "%1" cannot be created. + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + - SendCoinsDialog + MnemonicDialog - Send Coins - Send Coins + + HD Wallet Setup + + + + MnemonicDialog1 - Coin Control Features - Coin Control Features + + HD Wallet Setup + - Inputs... - Inputs... + + Select the type of wallet to create. + - automatically selected - automatically selected + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Insufficient funds! - Insufficient funds! + + Please choose what you would like to do: + - Quantity: - Quantity: + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Bytes: - Bytes: + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Amount: - Amount: + + Accept + - Fee: - Fee: + + You are choosing to create a new wallet using new seed words. + - After Fee: - After Fee: + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - Change: - Change: + + New HD Wallet Creation + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + BIP39 Compliant Seed Words: + - Custom change address - Custom change address + + Generate New Seed Words + - Transaction Fee: - Transaction Fee: + + These 12 generated seed words will be used. + - Choose... - Choose... + + Passphrase: + - collapse fee-settings - collapse fee-settings + + Enter a Passphrase to protect your seed words (optional). + - per kilobyte - per kilobyte + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Form + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Last block time + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Hide + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Open URI + + + + Open payment request from URI or file + Open payment request from URI or file + + + + URI: + URI: + + + + Select payment request file + Select payment request file + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Options + + + + &Main + &Main + + + + Automatically start %1 after logging in to the system. + Automatically start %1 after logging in to the system. + + + + &Start %1 on system login + &Start %1 on system login + + + + Size of &database cache + Size of &database cache + + + + MB + MB + + + + Number of script &verification threads + Number of script &verification threads + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimise instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + Active command-line options that override above options: + Active command-line options that override above options: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reset all client options to default. + + + + &Reset Options + &Reset Options + + + + &Network + &Network + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = leave that many cores free) + + + + W&allet + W&allet + + + + Expert + Expert + + + + Enable coin &control features + Enable coin &control features + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + &Spend unconfirmed change + &Spend unconfirmed change + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + Map port using &UPnP + Map port using &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Connect to the Raven network through a SOCKS5 proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + &Connect through SOCKS5 proxy (default proxy): + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port of the proxy (e.g. 9050) + + + + Used for reaching peers via: + Used for reaching peers via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + &Window + &Window + + + + Show only a tray icon after minimizing the window. + Show on a tray icon after minimising the window. + + + + &Minimize to the tray instead of the taskbar + &Minimise to the tray instead of the task bar + + + + M&inimize on close + M&inimise on close + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Display + + + + User Interface &language: + User Interface &language: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + The user interface language can be set here. This setting will take effect after restarting %1. + + + + &Unit to show amounts in: + &Unit to show amounts in: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Choose the default subdivision unit to show in the interface and when sending coins. + + + + Whether to show coin control features or not. + Whether to show coin control features or not. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancel + + + + default + default + + + + none + none + + + + Confirm options reset + Confirm options reset + + + + + Client restart required to activate changes. + Client restart required to activate changes. + + + + Client will be shut down. Do you want to proceed? + Client will be shut down. Do you want to proceed? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + This change would require a client restart. + + + + The supplied proxy address is invalid. + The supplied proxy address is invalid. + + + + OverviewPage + + + Form + Form + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + The displayed information may be out of date. Your Wallet automatically synchronises with the Raven Network after a connection is established, but this process has not been completed yet. + + + + Watch-only: + Watch-only: + + + + Available: + Available: + + + + Your current spendable balance + Your current spendable balance + + + + Pending: + Pending: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + Immature: + Immature: + + + + Mined balance that has not yet matured + Mined balance that has not yet matured + + + + Total: + Total: + + + + Your current total balance + Your current total balance + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Your current balance in watch-only addresses + + + + Spendable: + Spendable: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Recent transactions + + + + Unconfirmed transactions to watch-only addresses + Unconfirmed transactions to watch-only addresses + + + + Mined balance in watch-only addresses that has not yet matured + Mined balance in watch-only addresses that has not yet matured + + + + Current total balance in watch-only addresses + Current total balance in watch-only addresses + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Node/Service + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Amount + + + + Enter a Raven address (e.g. %1) + Enter a Raven address (e.g. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + None + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 and %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Client version + + + + &Information + &Information + + + + Debug window + Debug window + + + + General + General + + + + Using BerkeleyDB version + Using BerkeleyDB version + + + + Datadir + Datadir + + + + Startup time + Startup time + + + + Network + Network + + + + Name + Name + + + + Number of connections + Number of connections + + + + Block chain + Block chain + + + + Current number of blocks + Current number of blocks + + + + Memory Pool + Memory Pool + + + + Current number of transactions + Current number of transactions + + + + Memory usage + Memory usage + + + + &Reset + + + + + + Received + Received + + + + + Sent + Sent + + + + &Peers + &Peers + + + + Banned peers + Banned peers + + + + + + Select a peer to view detailed information. + Select a peer to view detailed information. + + + + Whitelisted + Whitelisted + + + + Direction + Direction + + + + Version + Version + + + + Starting Block + Starting Block + + + + Synced Headers + Synced Headers + + + + Synced Blocks + Synced Blocks + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + Decrease font size + Decrease font size + + + + Increase font size + Increase font size + + + + Services + Services + + + + Ban Score + Ban Score + + + + Connection Time + Connection Time + + + + Last Send + Last Send + + + + Last Receive + Last Receive + + + + Ping Time + Ping Time + + + + The duration of a currently outstanding ping. + The duration of a currently outstanding ping. + + + + Ping Wait + Ping Wait + + + + Min Ping + + + + + Time Offset + Time Offset + + + + Last block time + Last block time + + + + &Open + &Open + + + + &Console + &Console + + + + &Network Traffic + &Network Traffic + + + + Totals + Totals + + + + In: + In: + + + + Out: + Out: + + + + Debug log file + Debug log file + + + + Clear console + Clear console + + + + 1 &hour + 1 &hour + + + + 1 &day + 1 &day + + + + 1 &week + 1 &week + + + + 1 &year + 1 &year + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Welcome to the %1 RPC console. + + + + Type <b>help</b> for an overview of available commands. + Type <b>help</b> for an overview of available commands. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (node id: %1) + + + + via %1 + via %1 + + + + + never + never + + + + Inbound + Inbound + + + + Outbound + Outbound + + + + Yes + Yes + + + + No + No + + + + + Unknown + Unknown + + + + RavenGUI + + + Sign &message... + Sign &message... + + + + Synchronizing with network... + Synchronising with network... + + + + &Overview + &Overview + + + + Node + Node + + + + Show general overview of wallet + Show general overview of wallet + + + + &Transactions + &Transactions + + + + Browse transaction history + Browse transaction history + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + E&xit + + + + Quit application + Quit application + + + + &About %1 + &About %1 + + + + Show information about %1 + Show information about %1 + + + + About &Qt + About &Qt + + + + Show information about Qt + Show information about Qt + + + + &Options... + &Options... + + + + Modify configuration options for %1 + Modify configuration options for %1 + + + + &Encrypt Wallet... + &Encrypt Wallet... + + + + &Backup Wallet... + &Backup Wallet... + + + + &Change Passphrase... + &Change Passphrase... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Sending addresses... + + + + &Receiving addresses... + &Receiving addresses... + + + + Open &URI... + Open &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexing blocks on disk... + + + + Send coins to a Raven address + Send coins to a Raven address + + + + Backup wallet to another location + Backup wallet to another location + + + + Change the passphrase used for wallet encryption + Change the passphrase used for wallet encryption + + + + Open debugging and diagnostic console + Open debugging and diagnostic console + + + + &Verify message... + &Verify message... + + + + Raven + Raven + + + + Wallet + Wallet + + + + &Send + &Send + + + + &Receive + &Receive + + + + &Show / Hide + &Show / Hide + + + + Show or hide the main Window + Show or hide the main Window + + + + Encrypt the private keys that belong to your wallet + Encrypt the private keys that belong to your wallet + + + + Sign messages with your Raven addresses to prove you own them + Sign messages with your Raven addresses to prove you own them + + + + Verify messages to ensure they were signed with specified Raven addresses + Verify messages to ensure they were signed with specified Raven addresses + + + + &File + &File + + + + &Help + &Help + + + + Request payments (generates QR codes and raven: URIs) + Request payments (generates QR codes and raven: URIs) + + + + Show the list of used sending addresses and labels + Show the list of used sending addresses and labels + + + + Show the list of used receiving addresses and labels + Show the list of used receiving addresses and labels + + + + Open a raven: URI or payment request + Open a raven: URI or payment request + + + + &Command-line options + &Command-line options + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexing blocks on disk... + + + + Processing blocks on disk... + Processing blocks on disk... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 behind + + + + Last received block was generated %1 ago. + Last received block was generated %1 ago. + + + + Transactions after this will not yet be visible. + Transactions after this will not yet be visible. + + + + Error + Error + + + + Warning + Warning + + + + Information + Information + + + + Up to date + Up to date + + + + Show the %1 help message to get a list with possible Raven command-line options + Show the %1 help message to get a list with possible Raven command-line options + + + + %1 client + %1 client + + + + Connecting to peers... + + + + + Catching up... + Catching up... + + + + Date: %1 + + Date: %1 + + + + + + Amount: %1 + + Amount: %1 + + + + + Type: %1 + + Type: %1 + + + + + Label: %1 + + Label: %1 + + + + + Address: %1 + + Address: %1 + + + + + Sent transaction + Sent transaction + + + + Incoming transaction + Incoming transaction + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Amount: + + + + &Label: + &Label: + + + + &Message: + &Message: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + R&euse an existing receiving address (not recommended) + R&euse an existing receiving address (not recommended) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + An optional label to associate with the new receiving address. + An optional label to associate with the new receiving address. + + + + Use this form to request payments. All fields are <b>optional</b>. + Use this form to request payments. All fields are <b>optional</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + Clear all fields of the form. + Clear all fields of the form. + + + + Clear + Clear + + + + Requested payments history + Requested payments history + + + + &Request payment + &Request payment + + + + Show the selected request (does the same as double clicking an entry) + Show the selected request (does the same as double clicking an entry) + + + + Show + Show + + + + Remove the selected entries from the list + Remove the selected entries from the list + + + + Remove + Remove + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + Copy &URI + + + + Copy &Address + Copy &Address + + + + &Save Image... + &Save Image... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Address + + + + Amount + + + + + Label + Label + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Label + + + + Message + + + + + (no label) + (no label) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Send Coins + + + + Coin Control Features + Coin Control Features + + + + Inputs... + Inputs... + + + + automatically selected + automatically selected + + + + Insufficient funds! + Insufficient funds! + + + + Quantity: + Quantity: + + + + Bytes: + Bytes: + + + + Amount: + Amount: + + + + Fee: + Fee: + + + + After Fee: + After Fee: + + + + Change: + Change: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + Custom change address + Custom change address + + + + Transaction Fee: + Transaction Fee: + + + + Choose... + Choose... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + collapse fee-settings + + + + per kilobyte + per kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + Hide + Hide + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + (read the tooltip) + (read the tooltip) + + + + Recommended: + Recommended: + + + + Custom: + Custom: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smart fee not initialised yet. This usually takes a few blocks...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Send to multiple recipients at once + + + + Add &Recipient + Add &Recipient + + + + Clear all fields of the form. + Clear all fields of the form. + + + + Dust: + Dust: + + + + Confirmation time target: + + + + + Clear &All + Clear &All + + + + Balance: + Balance: + + + + Confirm the send action + Confirm the send action + + + + S&end + S&end + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (no label) + + + + SendCoinsEntry + + + + + A&mount: + A&mount: + + + + &Label: + &Label: + + + + Choose previously used address + Choose previously used address + + + + This is a normal payment. + This is a normal payment. + + + + The Raven address to send the payment to + The Raven address to send the payment to + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Paste address from clipboard + + + + Alt+P + Alt+P + + + + + + Remove this entry + Remove this entry + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + S&ubtract fee from amount + S&ubtract fee from amount + + + + Message: + Message: + + + + Send &To: + + + + + This is an unauthenticated payment request. + This is an unauthenticated payment request. + + + + + Send to: + + + + + This is an authenticated payment request. + This is an authenticated payment request. + + + + Enter a label for this address to add it to the list of used addresses + Enter a label for this address to add it to the list of used addresses + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + %1 is shutting down... + + + + Do not shut down the computer until this window disappears. + Do not shut down the computer until this window disappears. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatures - Sign / Verify a Message + + + + &Sign Message + &Sign Message + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + The Raven address to sign the message with + The Raven address to sign the message with + + + + + Choose previously used address + Choose previously used address + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Paste address from clipboard + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Enter the message you want to sign here + + + + Signature + Signature + + + + Copy the current signature to the system clipboard + Copy the current signature to the system clipboard + + + + Sign the message to prove you own this Raven address + Sign the message to prove you own this Raven address + + + + Sign &Message + Sign &Message + + + + Reset all sign message fields + Reset all sign message fields + + + + + Clear &All + Clear &All + + + + &Verify Message + &Verify Message + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + The Raven address the message was signed with + The Raven address the message was signed with + + + + Verify the message to ensure it was signed with the specified Raven address + Verify the message to ensure it was signed with the specified Raven address + + + + Verify &Message + Verify &Message + + + + Reset all verify message fields + Reset all verify message fields + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + This pane shows a detailed description of the transaction + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Label + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + Mined + - Hide - Hide + + Asset Issued + - total at least - total at least + + Asset Reissued + - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + Assets Received + - (read the tooltip) - (read the tooltip) + + Assets Sent + - Recommended: - Recommended: + + watch-only + - Custom: - Custom: + + (n/a) + - (Smart fee not initialized yet. This usually takes a few blocks...) - (Smart fee not initialised yet. This usually takes a few blocks...) + + (no label) + (no label) - normal - normal + + Transaction status. Hover over this field to show number of confirmations. + - fast - fast + + Date and time that the transaction was received. + - Send to multiple recipients at once - Send to multiple recipients at once + + Type of transaction. + - Add &Recipient - Add &Recipient + + Whether or not a watch-only address is involved in this transaction. + - Clear all fields of the form. - Clear all fields of the form. + + User-defined intent/purpose of the transaction. + - Dust: - Dust: + + Amount removed from or added to balance. + - Clear &All - Clear &All + + The asset (or RVN) removed or added to balance. + + + + TransactionView - Balance: - Balance: + + + All + - Confirm the send action - Confirm the send action + + Today + - S&end - S&end + + This week + - (no label) - (no label) + + This month + - - - SendCoinsEntry - A&mount: - A&mount: + + Last month + - Pay &To: - Pay &To: + + This year + - &Label: - &Label: + + Range... + - Choose previously used address - Choose previously used address + + Received with + - This is a normal payment. - This is a normal payment. + + Sent to + - The Raven address to send the payment to - The Raven address to send the payment to + + To yourself + - Alt+A - Alt+A + + Mined + - Paste address from clipboard - Paste address from clipboard + + Other + - Alt+P - Alt+P + + Enter address or label to search + - Remove this entry - Remove this entry + + Min amount + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + Asset name + - S&ubtract fee from amount - S&ubtract fee from amount + + Abandon transaction + - Message: - Message: + + Copy address + - This is an unauthenticated payment request. - This is an unauthenticated payment request. + + Copy label + - This is an authenticated payment request. - This is an authenticated payment request. + + Copy amount + - Enter a label for this address to add it to the list of used addresses - Enter a label for this address to add it to the list of used addresses + + Copy transaction ID + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + Copy raw transaction + - Pay To: - Pay To: + + Copy full transaction details + - Memo: - Memo: + + Edit label + - - - SendConfirmationDialog - - - ShutdownWindow - %1 is shutting down... - %1 is shutting down... + + Show transaction details + - Do not shut down the computer until this window disappears. - Do not shut down the computer until this window disappears. + + Browse with: + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signatures - Sign / Verify a Message + + Export Transaction History + - &Sign Message - &Sign Message + + Comma separated file (*.csv) + Comma separated file (*.csv) - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + Confirmed + - The Raven address to sign the message with - The Raven address to sign the message with + + Watch-only + - Choose previously used address - Choose previously used address + + Date + - Alt+A - Alt+A + + Type + - Paste address from clipboard - Paste address from clipboard + + Label + Label - Alt+P - Alt+P + + Address + Address - Enter the message you want to sign here - Enter the message you want to sign here + + Asset + - Signature - Signature + + ID + - Copy the current signature to the system clipboard - Copy the current signature to the system clipboard + + Exporting Failed + Exporting Failed - Sign the message to prove you own this Raven address - Sign the message to prove you own this Raven address + + There was an error trying to save the transaction history to %1. + - Sign &Message - Sign &Message + + Exporting Successful + - Reset all sign message fields - Reset all sign message fields + + The transaction history was successfully saved to %1. + - Clear &All - Clear &All + + Asset Issued + - &Verify Message - &Verify Message + + Asset Reissued + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Asset Received + - The Raven address the message was signed with - The Raven address the message was signed with + + Asset Sent + - Verify the message to ensure it was signed with the specified Raven address - Verify the message to ensure it was signed with the specified Raven address + + Copy asset name + - Verify &Message - Verify &Message + + Range: + - Reset all verify message fields - Reset all verify message fields + + to + - + - SplashScreen + UnitDisplayStatusBarControl - [testnet] - [testnet] + + Unit to show amounts in. Click to select another unit. + Unit to show amounts in. Click to select another unit. - TrafficGraphWidget + WalletFrame - KB/s - KB/s + + No wallet has been loaded. + - TransactionDesc - - - TransactionDescDialog + WalletModel - This pane shows a detailed description of the transaction - This pane shows a detailed description of the transaction + + Send Coins + - - - TransactionTableModel - Label - Label + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - (no label) - (no label) + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + - + - TransactionView + WalletView - Comma separated file (*.csv) - Comma separated file (*.csv) + + &Export + - Label - Label + + Export the data in the current tab to a file + - Address - Address + + Backup Wallet + - Exporting Failed - Exporting Failed + + Wallet Data (*.dat) + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Unit to show amounts in. Click to select another unit. + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + - - WalletFrame - - - WalletModel - - - WalletView - raven-core + Options: Options: + Specify data directory Specify data directory + Connect to a node to retrieve peer addresses, and disconnect Connect to a node to retrieve peer addresses, and disconnect + Specify your own public address Specify your own public address + Accept command line and JSON-RPC commands Accept command line and JSON-RPC commands + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. If <category> is not supplied or if <category> = 1, output all debugging information. + Prune configured below the minimum of %d MiB. Please use a higher number. Prune configured below the minimum of %d MiB. Please use a higher number. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + Error: A fatal internal error occurred, see debug.log for details Error: A fatal internal error occurred, see debug.log for details + Fee (in %s/kB) to add to transactions you send (default: %s) Fee (in %s/kB) to add to transactions you send (default: %s) + Pruning blockstore... Pruning blockstore... + Run in the background as a daemon and accept commands Run in the background as a daemon and accept commands + Unable to start HTTP server. See debug log for details. Unable to start HTTP server. See debug log for details. + Raven Core Raven Core + The %s developers The %s developers + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. Cannot obtain a lock on data directory %s. %s is probably already running. - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Error loading %s: You can't enable HD on a already existing non-HD wallet - Error loading %s: You can't enable HD on a already existing non-HD wallet + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + Please contribute if you find %s useful. Visit %s for further information about the software. Please contribute if you find %s useful. Visit %s for further information about the software. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Unable to rewind the database to a pre-fork state. You will need to re-download the blockchain + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Use UPnP to map the listening port (default: 1 when listening and no -proxy) - You need to rebuild the database using -reindex-chainstate to change -txindex - You need to rebuild the database using -reindex-chainstate to change -txindex + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrupt, salvage failed + -maxmempool must be at least %d MB -maxmempool must be at least %d MB + <category> can be: <category> can be: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Append comment to the user agent string + Attempt to recover private keys from a corrupt wallet on startup Attempt to recover private keys from a corrupt wallet on startup + Block creation options: Block creation options: - Cannot resolve -%s address: '%s' - Cannot resolve -%s address: '%s' + + Cannot resolve -%s address: '%s' + Cannot resolve -%s address: '%s' + + + + Chain selection options: + + Change index out of range Change index out of range + Connection options: Connection options: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Corrupted block database detected + Debugging/Testing options: Debugging/Testing options: + Do not load the wallet and disable wallet RPC calls Do not load the wallet and disable wallet RPC calls + Do you want to rebuild the block database now? Do you want to rebuild the block database now? + Enable publish hash block in <address> Enable publish hash block in <address> + Enable publish hash transaction in <address> Enable publish hash transaction in <address> + Enable publish raw block in <address> Enable publish raw block in <address> + Enable publish raw transaction in <address> Enable publish raw transaction in <address> + Enable transaction replacement in the memory pool (default: %u) Enable transaction replacement in the memory pool (default: %u) + Error initializing block database Error initialising block database + Error initializing wallet database environment %s! Error initialising wallet database environment %s! + Error loading %s Error loading %s + Error loading %s: Wallet corrupted Error loading %s: Wallet corrupted + Error loading %s: Wallet requires newer version of %s Error loading %s: Wallet requires newer version of %s - Error loading %s: You can't disable HD on a already existing HD wallet - Error loading %s: You can't disable HD on a already existing HD wallet - - + Error loading block database Error loading block database + Error opening block database Error opening block database + Error: Disk space is low! Error: Disk space is low! + Failed to listen on any port. Use -listen=0 if you want this. Failed to listen on any port. Use -listen=0 if you want this. + Importing... Importing... + Incorrect or no genesis block found. Wrong datadir for network? Incorrect or no genesis block found. Wrong datadir for network? + Initialization sanity check failed. %s is shutting down. Initialisation sanity check failed. %s is shutting down. - Invalid -onion address: '%s' - Invalid -onion address: '%s' + + Invalid amount for -%s=<amount>: '%s' + Invalid amount for -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Invalid amount for -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Invalid amount for -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Keep the transaction memory pool below <n> megabytes (default: %u) + + Loading P2P addresses... + + + + Loading banlist... Loading banlist... + Location of the auth cookie (default: data dir) Location of the auth cookie (default: data dir) + Not enough file descriptors available. Not enough file descriptors available. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Print this help message and exit Print this help message and exit + Print version and exit Print version and exit + Prune cannot be configured with a negative value. Prune cannot be configured with a negative value. + Prune mode is incompatible with -txindex. Prune mode is incompatible with -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Rebuild chain state and block index from the blk*.dat files on disk + Rebuild chain state from the currently indexed blocks Rebuild chain state from the currently indexed blocks + + Replaying blocks... + + + + Rewinding blocks... Rewinding blocks... + Set database cache size in megabytes (%d to %d, default: %d) Set database cache size in megabytes (%d to %d, default: %d) - Set maximum block size in bytes (default: %d) - Set maximum block size in bytes (default: %d) - - + Specify wallet file (within data directory) Specify wallet file (within data directory) + The source code is available from %s. The source code is available from %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Unable to bind to %s on this computer. %s is probably already running. + Unsupported argument -benchmark ignored, use -debug=bench. Unsupported argument -benchmark ignored, use -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Unsupported argument -debugnet ignored, use -debug=net. + Unsupported argument -tor found, use -onion. Unsupported argument -tor found, use -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Use UPnP to map the listening port (default: %u) + + Use the test chain + + + + User Agent comment (%s) contains unsafe characters. User Agent comment (%s) contains unsafe characters. + Verifying blocks... Verifying blocks... - Verifying wallet... - Verifying wallet... - - + Wallet %s resides outside data directory %s Wallet %s resides outside data directory %s + Wallet debugging/testing options: Wallet debugging/testing options: + Wallet needed to be rewritten: restart %s to complete Wallet needed to be rewritten: restart %s to complete + Wallet options: Wallet options: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Error: Listening for incoming connections failed (listen returned error %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximum size of data in data carrier transactions we relay and mine (default: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Randomise credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - - + The transaction amount is too small to send after the fee has been deducted The transaction amount is too small to send after the fee has been deducted - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + (default: %u) (default: %u) + Accept public REST requests (default: %u) Accept public REST requests (default: %u) + Automatically create Tor hidden service (default: %d) Automatically create Tor hidden service (default: %d) + Connect through SOCKS5 proxy Connect through SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Error reading from database, shutting down. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Imports blocks from external blk000??.dat file on startup + Information Information - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Invalid netmask specified in -whitelist: '%s' - Invalid netmask specified in -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' + Invalid netmask specified in -whitelist: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) Keep at most <n> unconnectable transactions in memory (default: %u) - Need to specify a port with -whitebind: '%s' - Need to specify a port with -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Need to specify a port with -whitebind: '%s' + Node relay options: Node relay options: + RPC server options: RPC server options: + Reducing -maxconnections from %d to %d, because of system limitations. Reducing -maxconnections from %d to %d, because of system limitations. + Rescan the block chain for missing wallet transactions on startup Rescan the block chain for missing wallet transactions on startup + Send trace/debug info to console instead of debug.log file Send trace/debug info to console instead of debug.log file - Send transactions as zero-fee transactions if possible (default: %u) - Send transactions as zero-fee transactions if possible (default: %u) - - + Show all debugging options (usage: --help -help-debug) Show all debugging options (usage: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Shrink debug.log file on client startup (default: 1 when no -debug) + Signing transaction failed Signing transaction failed + The transaction amount is too small to pay the fee The transaction amount is too small to pay the fee + This is experimental software. This is experimental software. + Tor control port password (default: empty) Tor control port password (default: empty) + Tor control port to use if onion listening enabled (default: %s) Tor control port to use if onion listening enabled (default: %s) + Transaction amount too small Transaction amount too small + Transaction too large for fee policy Transaction too large for fee policy + Transaction too large Transaction too large + Unable to bind to %s on this computer (bind returned error %s) Unable to bind to %s on this computer (bind returned error %s) + Upgrade wallet to latest format on startup Upgrade wallet to latest format on startup + Username for JSON-RPC connections Username for JSON-RPC connections + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Warning + Warning: unknown new rules activated (versionbit %i) Warning: unknown new rules activated (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Whether to operate in a blocks only mode (default: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Zapping all transactions from wallet... + ZeroMQ notification options: ZeroMQ notification options: + Password for JSON-RPC connections Password for JSON-RPC connections + Execute command when the best block changes (%s in cmd is replaced by block hash) Execute command when the best block changes (%s in cmd is replaced by block hash) + Allow DNS lookups for -addnode, -seednode and -connect Allow DNS lookups for -addnode, -seednode and -connect - Loading addresses... - Loading addresses... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Do not keep transactions in the mempool longer than <n> hours (default: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) How thorough the block verification of -checkblocks is (0-4, default: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Output debugging information (default: %u, supplying <category> is optional) Output debugging information (default: %u, supplying <category> is optional) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Support filtering of blocks and transaction with bloom filters (default: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (default: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Always query for peer addresses via DNS lookup (default: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) How many blocks to check at startup (default: %u, 0 = all) + Include IP addresses in debug output (default: %u) Include IP addresses in debug output (default: %u) - Invalid -proxy address: '%s' - Invalid -proxy address: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Listen for connections on <port> (default: %u or testnet: %u) + Maintain at most <n> connections to peers (default: %u) Maintain at most <n> connections to peers (default: %u) + Make the wallet broadcast transactions Make the wallet broadcast transactions + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Prepend debug output with timestamp (default: %u) + Relay and mine data carrier transactions (default: %u) Relay and mine data carrier transactions (default: %u) + Relay non-P2SH multisig (default: %u) Relay non-P2SH multisig (default: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Set key pool size to <n> (default: %u) + Set maximum BIP141 block weight (default: %d) Set maximum BIP141 block weight (default: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Set the number of threads to service RPC calls (default: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Specify configuration file (default: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Specify connection timeout in milliseconds (minimum: 1, default: %d) + Specify pid file (default: %s) Specify pid file (default: %s) + Spend unconfirmed change when sending transactions (default: %u) Spend unconfirmed change when sending transactions (default: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Threshold for disconnecting misbehaving peers (default: %u) - Unknown network specified in -onlynet: '%s' - Unknown network specified in -onlynet: '%s' + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Unknown network specified in -onlynet: '%s' + + + Insufficient funds Insufficient funds + Loading block index... Loading block index... - Add a node to connect to and attempt to keep the connection open - Add a node to connect to and attempt to keep the connection open - - + Loading wallet... Loading wallet... + Cannot downgrade wallet Cannot downgrade wallet - Cannot write default address - Cannot write default address - - + Rescanning... Rescanning... - Done loading - Done loading - - + Error Error diff --git a/src/qt/locale/raven_eo.ts b/src/qt/locale/raven_eo.ts index 484dab5c7e..9488e1d18d 100644 --- a/src/qt/locale/raven_eo.ts +++ b/src/qt/locale/raven_eo.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Dekstre-klaku por redakti adreson aŭ etikedon + Create a new address Krei novan adreson + &New &Nova + Copy the currently selected address to the system clipboard Kopii elektitan adreson al la tondejo + &Copy &Kopii + C&lose &Fermi + Delete the currently selected address from the list Forigi la elektitan adreson el la listo + Export the data in the current tab to a file Eksporti la datumojn el la aktuala langeto al dosiero + &Export &Eksporti + &Delete &Forigi + Choose the address to send coins to Elekti la adreson por sendi monerojn + Choose the address to receive coins with Elekti la adreson ricevi monerojn kun + C&hoose &Elekti + Sending addresses Sendaj adresoj + Receiving addresses Ricevaj adresoj + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Jen viaj Bitmon-adresoj por sendi pagojn. Zorge kontrolu la sumon kaj la alsendan adreson antaŭ ol sendi. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Jen viaj bitmonaj adresoj por ricevi pagojn. Estas konsilinde uzi apartan ricevan adreson por ĉiu transakcio. + &Copy Address &Kopii Adreson + Copy &Label Kopii &Etikedon + &Edit &Redakti + Export Address List Eksporti Adresliston + Comma separated file (*.csv) Perkome disigita dosiero (*.csv) + Exporting Failed ekspotado malsukcesinta + There was an error trying to save the address list to %1. Please try again. Okazis eraron dum konservo de adreslisto al %1. Bonvolu provi denove. @@ -103,14 +125,17 @@ AddressTableModel + Label Etikedo + Address Adreso + (no label) (neniu etikedo) @@ -118,1408 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Dialogo pri pasfrazo + Enter passphrase Enigu pasfrazon + New passphrase Nova pasfrazo + Repeat new passphrase Ripetu la novan pasfrazon - - - BanTableModel - - - RavenGUI - Sign &message... - Subskribi &mesaĝon... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Synchronizing with network... - Sinkronigante kun reto... + + Encrypt wallet + - &Overview - &Superrigardo + + This operation needs your wallet passphrase to unlock the wallet. + - Node - Nodo + + Unlock wallet + - Show general overview of wallet - Vidigi ĝeneralan superrigardon de la monujo + + This operation needs your wallet passphrase to decrypt the wallet. + - &Transactions - &Transakcioj + + Decrypt wallet + - Browse transaction history - Esplori historion de transakcioj + + Change passphrase + - E&xit - &Eliri + + Enter the old passphrase and new passphrase to the wallet. + - Quit application - Eliri la aplikaĵon + + Confirm wallet encryption + - About &Qt - Pri &Qt + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Show information about Qt - Vidigi informojn pri Qt + + Are you sure you wish to encrypt your wallet? + - &Options... - &Agordoj... + + + Wallet encrypted + - &Encrypt Wallet... - Ĉifri &Monujon... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - &Backup Wallet... - &Krei sekurkopion de la monujo... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Change Passphrase... - Ŝanĝi &Pasfrazon... + + + + + Wallet encryption failed + - &Sending addresses... - &Sendaj adresoj... + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Receiving addresses... - &Ricevaj adresoj... + + + The supplied passphrases do not match. + - Open &URI... - Malfermi &URI-on... + + Wallet unlock failed + - Reindexing blocks on disk... - Reindeksado de blokoj sur disko... + + + + The passphrase entered for the wallet decryption was incorrect. + - Send coins to a Raven address - Sendi monon al Bitmon-adreso + + Wallet decryption failed + - Backup wallet to another location - Krei alilokan sekurkopion de monujo + + Wallet passphrase was successfully changed. + - Change the passphrase used for wallet encryption - Ŝanĝi la pasfrazon por ĉifri la monujon + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Debug window - Sen&cimiga fenestro + + Asset Selection + - Open debugging and diagnostic console - Malfermi konzolon de sencimigo kaj diagnozo + + Quantity: + - &Verify message... - &Kontroli mesaĝon... + + Bytes: + - Raven - Bitmono + + Amount: + - Wallet - Monujo + + Dust: + - &Send - &Sendi + + Fee: + - &Receive - &Ricevi + + After Fee: + - &Show / Hide - &Montri / Kaŝi + + Change: + - Show or hide the main Window - Montri aŭ kaŝi la ĉefan fenestron + + (un)select all + - Encrypt the private keys that belong to your wallet - Ĉifri la privatajn ŝlosilojn de via monujo + + Tree mode + - Sign messages with your Raven addresses to prove you own them - Subskribi mesaĝojn per via Bitmon-adresoj por pravigi, ke vi estas la posedanto + + List mode + - Verify messages to ensure they were signed with specified Raven addresses - Kontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Bitmon-adresoj + + View assets that you have the ownership asset for + - &File - &Dosiero + + View Administrator Assets + - &Settings - &Agordoj + + Asset + - &Help - &Helpo + + Amount + - Tabs toolbar - Langeto-breto + + Received with label + - Request payments (generates QR codes and raven: URIs) - Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso raven:) + + Received with address + - Show the list of used sending addresses and labels - Vidigi la liston de uzitaj sendaj adresoj kaj etikedoj + + Date + - Show the list of used receiving addresses and labels - Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj + + Confirmations + - Open a raven: URI or payment request - Malfermi raven:-URI-on aŭ pagpeton + + Confirmed + - &Command-line options - &Komandliniaj agordaĵoj + + Copy address + - %1 behind - mankas %1 + + Copy label + - Last received block was generated %1 ago. - Lasta ricevita bloko kreiĝis antaŭ %1. + + + Copy amount + - Transactions after this will not yet be visible. - Transakcioj por tio ankoraŭ ne videblas. + + Copy transaction ID + - Error - Eraro + + Lock unspent + - Warning - Averto + + Unlock unspent + - Information - Informoj + + Copy quantity + - Up to date - Ĝisdata + + Copy fee + - Catching up... - Ĝisdatigante... + + Copy after fee + - Date: %1 - - Dato: %1 - + + Copy bytes + - Amount: %1 - - Sumo: %1 - + + Copy dust + - Type: %1 - - Tipo: %1 - + + Copy change + - Label: %1 - - Etikedo: %1 - + + (%1 locked) + - Address: %1 - - Adreso: %1 - + + yes + - Sent transaction - Sendita transakcio + + no + - Incoming transaction - Envenanta transakcio + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Monujo estas <b>ĉifrita</b> kaj aktuale <b>malŝlosita</b> + + Can vary +/- %1 satoshi(s) per input. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + AssetTableModel + + + Name + - + + + Quantity + + + - CoinControlDialog + AssetsDialog + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + Quantity: - Kvanto: + + Bytes: - Bajtoj: + + Amount: - Sumo: + - Fee: - Krompago: + + Dust: + - Dust: - Polvo: + + Fee: + + After Fee: - Post krompago: + + Change: - Restmono: + - (un)select all - (mal)elekti ĉion + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - Arboreĝimo + + Custom change address + - List mode - Listreĝimo + + Transaction Fee: + - Amount - Sumo + + Choose... + - Received with label - Ricevita kun etikedo + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Received with address - Ricevita kun adreso + + Warning: Fee estimation is currently not possible. + - Date - Dato + + collapse fee-settings + - Confirmations - Konfirmoj + + Hide + - Confirmed - Konfirmita + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - (no label) - (neniu etikedo) + + per kilobyte + - - - EditAddressDialog - Edit Address - Redakti Adreson + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Label - &Etikedo + + (read the tooltip) + - The label associated with this address list entry - La etikedo ligita al tiu ĉi adreslistero + + Recommended: + - The address associated with this address list entry. This can only be modified for sending addresses. - La adreso ligita al tiu ĉi adreslistero. Eblas modifi tion nur por sendaj adresoj. + + Custom: + - &Address - &Adreso + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - FreespaceChecker - A new data directory will be created. - Kreiĝos nova dosierujo por la datumoj. + + Confirmation time target: + - name - nomo + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Directory already exists. Add %1 if you intend to create a new directory here. - Tiu dosierujo jam ekzistas. Aldonu %1 si vi volas krei novan dosierujon ĉi tie. + + Request Replace-By-Fee + - Path already exists, and is not a directory. - Vojo jam ekzistas, kaj ne estas dosierujo. + + Confirm the send action + - Cannot create data directory here. - Ne eblas krei dosierujon por datumoj ĉi tie. + + S&end + - - - HelpMessageDialog - version - versio + + Clear all fields of the form. + - Command-line options - Komandliniaj agordaĵoj + + Clear &All + - Usage: - Uzado: + + Transfer to multiple recipients at once + - command-line options - komandliniaj agordaĵoj + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Kvanto: + + + + Bytes: + Bajtoj: + + + + Amount: + Sumo: + + + + Fee: + Krompago: + + + + Dust: + Polvo: + + + + After Fee: + Post krompago: + + + + Change: + Restmono: + + + + (un)select all + (mal)elekti ĉion + + + + Tree mode + Arboreĝimo + + + + List mode + Listreĝimo + + + + Amount + Sumo + + + + Received with label + Ricevita kun etikedo + + + + Received with address + Ricevita kun adreso + + + + Date + Dato + + + + Confirmations + Konfirmoj + + + + Confirmed + Konfirmita + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (neniu etikedo) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Redakti Adreson + + + + &Label + &Etikedo + + + + The label associated with this address list entry + La etikedo ligita al tiu ĉi adreslistero + + + + The address associated with this address list entry. This can only be modified for sending addresses. + La adreso ligita al tiu ĉi adreslistero. Eblas modifi tion nur por sendaj adresoj. + + + + &Address + &Adreso + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Kreiĝos nova dosierujo por la datumoj. + + + + name + nomo + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Tiu dosierujo jam ekzistas. Aldonu %1 si vi volas krei novan dosierujon ĉi tie. + + + + Path already exists, and is not a directory. + Vojo jam ekzistas, kaj ne estas dosierujo. + + + + Cannot create data directory here. + Ne eblas krei dosierujon por datumoj ĉi tie. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versio + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Komandliniaj agordaĵoj + + + + Usage: + Uzado: + + + + command-line options + komandliniaj agordaĵoj + + + + UI Options: + Uzantinterfaco ebloj: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bonvenon + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Uzi la defaŭltan dosierujon por datumoj + + + + Use a custom data directory: + Uzi alian dosierujon por datumoj: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Eraro + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formularo + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Horo de la lasta bloko + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Malfermi URI-on + + + + Open payment request from URI or file + Malfermi pagpeton el URI aŭ dosiero + + + + URI: + URI: + + + + Select payment request file + Elektu la dosieron de la pagpeto + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Agordaĵoj + + + + &Main + Ĉ&efa + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Dosiergrando de &datumbasa kaŝmemoro + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reagordi ĉion al defaŭlataj valoroj. + + + + &Reset Options + &Rekomenci agordadon + + + + &Network + &Reto + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Monujo + + + + Expert + Fakulo + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Aŭtomate malfermi la kursilan pordon por Bitmono. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita. + + + + Map port using &UPnP + Mapigi pordon per &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Prokurila &IP: + + + + + &Port: + &Pordo: + + + + + Port of the proxy (e.g. 9050) + la pordo de la prokurilo (ekz. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Fenestro + + + + Show only a tray icon after minimizing the window. + Montri nur sistempletan piktogramon post minimumigo de la fenestro. + + + + &Minimize to the tray instead of the taskbar + &Minimumigi al la sistempleto anstataŭ al la taskopleto + + + + M&inimize on close + M&inimumigi je fermo + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Aspekto + + + + User Interface &language: + &Lingvo de la fasado: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unuo por vidigi sumojn: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Elekti la defaŭltan manieron por montri bitmonajn sumojn en la interfaco, kaj kiam vi sendos bitmonon. + + + + Whether to show coin control features or not. + Ĉu montri detalan adres-regilon, aŭ ne. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Bone + + + + &Cancel + &Nuligi + + + + default + defaŭlta + + + + none + neniu + + + + Confirm options reset + Konfirmi reŝargo de agordoj + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + La prokurila adreso estas malvalida. + + + + OverviewPage + + + Form + Formularo + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la bitmona reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + via aktuala elspezebla saldo + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + la sumo de transakcioj ankoraŭ ne konfirmitaj, kiuj ankoraŭ ne elspezeblas + + + + Immature: + Nematura: + + + + Mined balance that has not yet matured + Minita saldo, kiu ankoraŭ ne maturiĝis + + + + Total: + Totalo: + + + + Your current total balance + via aktuala totala saldo + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + Elspezebla: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Lastaj transakcioj + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Uzanto Agento + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Sumo + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + + + + + None + Neniu + + + + N/A + neaplikebla + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 kaj %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + neaplikebla + + + + Client version + Versio de kliento + + + + &Information + &Informoj + + + + Debug window + Sencimiga fenestro + + + + General + Ĝenerala + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Horo de lanĉo + + + + Network + Reto + + + + Name + Nomo + + + + Number of connections + Nombro de konektoj + + + + Block chain + Blokĉeno + + + + Current number of blocks + Aktuala nombro de blokoj + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Ricevita + + + + + Sent + Sendita + + + + &Peers + &Samuloj + + + + Banned peers + Malpermesita samuloj. + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + Versio + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Uzanto Agento + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Servoj + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Horo de la lasta bloko + + + + &Open + &Malfermi + + + + &Console + &Konzolo + + + + &Network Traffic + &Reta Trafiko + + + + Totals + Totaloj + + + + In: + En: + + + + Out: + El: + + + + Debug log file + Sencimiga protokoldosiero + + + + Clear console + Malplenigi konzolon + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Tajpu <b>help</b> por superrigardo de la disponeblaj komandoj. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Subskribi &mesaĝon... + + + + Synchronizing with network... + Sinkronigante kun reto... + + + + &Overview + &Superrigardo + + + + Node + Nodo + + + + Show general overview of wallet + Vidigi ĝeneralan superrigardon de la monujo + + + + &Transactions + &Transakcioj + + + + Browse transaction history + Esplori historion de transakcioj + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Eliri + + + + Quit application + Eliri la aplikaĵon + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Pri &Qt + + + + Show information about Qt + Vidigi informojn pri Qt + + + + &Options... + &Agordoj... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Ĉifri &Monujon... + + + + &Backup Wallet... + &Krei sekurkopion de la monujo... + + + + &Change Passphrase... + Ŝanĝi &Pasfrazon... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Sendaj adresoj... + + + + &Receiving addresses... + &Ricevaj adresoj... + + + + Open &URI... + Malfermi &URI-on... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindeksado de blokoj sur disko... + + + + Send coins to a Raven address + Sendi monon al Bitmon-adreso + + + + Backup wallet to another location + Krei alilokan sekurkopion de monujo + + + + Change the passphrase used for wallet encryption + Ŝanĝi la pasfrazon por ĉifri la monujon + + + + Open debugging and diagnostic console + Malfermi konzolon de sencimigo kaj diagnozo + + + + &Verify message... + &Kontroli mesaĝon... + + + + Raven + Bitmono + + + + Wallet + Monujo + + + + &Send + &Sendi + + + + &Receive + &Ricevi + + + + &Show / Hide + &Montri / Kaŝi + + + + Show or hide the main Window + Montri aŭ kaŝi la ĉefan fenestron + + + + Encrypt the private keys that belong to your wallet + Ĉifri la privatajn ŝlosilojn de via monujo + + + + Sign messages with your Raven addresses to prove you own them + Subskribi mesaĝojn per via Bitmon-adresoj por pravigi, ke vi estas la posedanto + + + + Verify messages to ensure they were signed with specified Raven addresses + Kontroli mesaĝojn por kontroli ĉu ili estas subskribitaj per specifaj Bitmon-adresoj + + + + &File + &Dosiero + + + + &Help + &Helpo + + + + Request payments (generates QR codes and raven: URIs) + Peti pagon (kreas QR-kodojn kaj URI-ojn kun prefikso raven:) + + + + Show the list of used sending addresses and labels + Vidigi la liston de uzitaj sendaj adresoj kaj etikedoj + + + + Show the list of used receiving addresses and labels + Vidigi la liston de uzitaj ricevaj adresoj kaj etikedoj + + + + Open a raven: URI or payment request + Malfermi raven:-URI-on aŭ pagpeton + + + + &Command-line options + &Komandliniaj agordaĵoj + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + mankas %1 + + + + Last received block was generated %1 ago. + Lasta ricevita bloko kreiĝis antaŭ %1. + + + + Transactions after this will not yet be visible. + Transakcioj por tio ankoraŭ ne videblas. + + + + Error + Eraro + + + + Warning + Averto + + + + Information + Informoj + + + + Up to date + Ĝisdata + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Ĝisdatigante... + + + + Date: %1 + + Dato: %1 + + + + + + Amount: %1 + + Sumo: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Etikedo: %1 + + + + + Address: %1 + + Adreso: %1 + + + + + Sent transaction + Sendita transakcio + + + + Incoming transaction + Envenanta transakcio + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Monujo estas <b>ĉifrita</b> kaj aktuale <b>malŝlosita</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Monujo estas <b>ĉifrita</b> kaj aktuale <b>ŝlosita</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Kvanto: + + + + &Label: + &Etikedo: + + + + &Message: + &Mesaĝo: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reuzi unu el la jam uzitaj ricevaj adresoj. Reuzo de adresoj povas krei problemojn pri sekureco kaj privateco. Ne uzu tiun ĉi funkcion krom por rekrei antaŭe faritan pagopeton. + + + + R&euse an existing receiving address (not recommended) + R&euzi ekzistantan ricevan adreson (malrekomendinda) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Malplenigi ĉiujn kampojn de la formularo. + + + + Clear + Forigi + + + + Requested payments history + + + + + &Request payment + &Peti pagon + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Vidigi + + + + Remove the selected entries from the list + + + + + Remove + Forigi + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR-kodo + + + + Copy &URI + Kopii &URI + + + + Copy &Address + Kopii &Adreson + + + + &Save Image... + &Konservi Bildon... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Adreso + + + + Amount + + + + + Label + Etikedo + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Etikedo + + + + Message + + + + + (no label) + (neniu etikedo) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Sendi Bitmonon + + + + Coin Control Features + Monregaj Opcioj + + + + Inputs... + Enigoj... + + + + automatically selected + + + + + Insufficient funds! + Nesufiĉa mono! + + + + Quantity: + Kvanto: + + + + Bytes: + Bajtoj: + + + + Amount: + Sumo: + + + + Fee: + Krompago: + + + + After Fee: + Post krompago: + + + + Change: + Restmono: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Krompago: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Sendi samtempe al pluraj ricevantoj + + + + Add &Recipient + Aldoni &Ricevonton + + + + Clear all fields of the form. + Malplenigi ĉiujn kampojn de la formularo. + + + + Dust: + Polvo: + + + + Confirmation time target: + + + + + Clear &All + &Forigi Ĉion + + + + Balance: + Saldo: + + + + Confirm the send action + Konfirmi la sendon + + + + S&end + Ŝendi + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (neniu etikedo) + + + + SendCoinsEntry + + + + + A&mount: + &Sumo: + + + + &Label: + &Etikedo: + + + + Choose previously used address + Elektu la jam uzitan adreson + + + + This is a normal payment. + Tio estas normala pago. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Alglui adreson de tondejo + + + + Alt+P + Alt+P + + + + + + Remove this entry + Forigu ĉi tiun enskribon + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mesaĝo: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Tajpu etikedon por tiu ĉi adreso por aldoni ĝin al la listo de uzitaj adresoj + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Memorando: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Ne sistemfermu ĝis ĉi tiu fenestro malaperas. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Subskriboj - Subskribi / Kontroli mesaĝon + + + + &Sign Message + &Subskribi Mesaĝon + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Elektu la jam uzitan adreson + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Alglui adreson de tondejo + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Tajpu la mesaĝon, kiun vi volas sendi, cîi tie + + + + Signature + Subskribo + + + + Copy the current signature to the system clipboard + Kopii la aktualan subskribon al la tondejo + + + + Sign the message to prove you own this Raven address + Subskribi la mesaĝon por pravigi, ke vi estas la posedanto de tiu Bitmon-adreso + + + + Sign &Message + Subskribi &Mesaĝon + + + + Reset all sign message fields + Reagordigi ĉiujn prisubskribajn kampojn + + + + + Clear &All + &Forigi Ĉion + + + + &Verify Message + &Kontroli Mesaĝon + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Kontroli la mesaĝon por pravigi, ke ĝi ja estas subskribita per la specifa Bitmon-adreso + + + + Verify &Message + Kontroli &Mesaĝon + + + + Reset all verify message fields + Reagordigi ĉiujn prikontrolajn kampojn + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Tiu ĉi panelo montras detalan priskribon de la transakcio + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Etikedo + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (neniu etikedo) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Perkome disigita dosiero (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Etikedo + + + + Address + Adreso + + + + Asset + + + + + ID + + + + + Exporting Failed + ekspotado malsukcesinta + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Agordoj: + + + + Specify data directory + Specifi dosieron por datumoj + + + + Connect to a node to retrieve peer addresses, and disconnect + Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti + + + + Specify your own public address + Specifi vian propran publikan adreson + + + + Accept command line and JSON-RPC commands + Akcepti komandojn JSON-RPC kaj el komandlinio + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Ruli fone kiel demono kaj akcepti komandojn + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Kerno de Bitmono + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Bindi al donita adreso kaj ĉiam aŭskulti per ĝi. Uzu la formaton [gastigo]:pordo por IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <category> povas esti: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Blok-kreaj agordaĵoj: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Difektita blokdatumbazo trovita + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + Ĉu vi volas rekonstrui la blokdatumbazon nun? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Eraro dum pravalorizado de blokdatumbazo + + + + Error initializing wallet database environment %s! + Eraro dum pravalorizado de monuj-datumbaza ĉirkaŭaĵo %s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Eraro dum ŝargado de blokdatumbazo + + + + Error opening block database + Eraro dum malfermado de blokdatumbazo + + + + Error: Disk space is low! + Eraro: restas malmulte da diskospaco! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Ne sukcesis aŭskulti ajnan pordon. Uzu -listen=0 se tion vi volas. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + Geneza bloko aŭ netrovita aŭ neĝusta. Ĉu eble la datadir de la reto malĝustas? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + Nesufiĉa nombro de dosierpriskribiloj disponeblas. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + Specifi monujan dosieron (ene de dosierujo por datumoj) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + - UI Options: - Uzantinterfaco ebloj: + + Use UPnP to map the listening port (default: %u) + - - - Intro - Welcome - Bonvenon + + Use the test chain + - Use the default data directory - Uzi la defaŭltan dosierujon por datumoj + + User Agent comment (%s) contains unsafe characters. + - Use a custom data directory: - Uzi alian dosierujon por datumoj: + + Verifying blocks... + Kontrolado de blokoj... - Error - Eraro + + Wallet %s resides outside data directory %s + Monujo %s troviĝas ekster la dosierujo por datumoj %s - - %n GB of free space available - %n gigabajto de libera loko disponeble%n gigabajtoj de libera loko disponebla. + + + Wallet debugging/testing options: + - - - ModalOverlay - Form - Formularo + + Wallet needed to be rewritten: restart %s to complete + - Last block time - Horo de la lasta bloko + + Wallet options: + Monujaj opcioj: - - - OpenURIDialog - Open URI - Malfermi URI-on + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Open payment request from URI or file - Malfermi pagpeton el URI aŭ dosiero + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - URI: - URI: + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Select payment request file - Elektu la dosieron de la pagpeto + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - - - OptionsDialog - Options - Agordaĵoj + + Error: Listening for incoming connections failed (listen returned error %s) + - &Main - Ĉ&efa + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Plenumi komandon kiam rilata alerto riceviĝas, aŭ kiam ni vidas tre longan forkon (%s en cms anstataŭiĝas per mesaĝo) - Size of &database cache - Dosiergrando de &datumbasa kaŝmemoro + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - MB - MB + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Accept connections from outside - Akcepti konektojn el ekstere + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Allow incoming connections - Permesi envenantajn konektojn + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Reset all client options to default. - Reagordi ĉion al defaŭlataj valoroj. + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Reset Options - &Rekomenci agordadon + + The transaction amount is too small to send after the fee has been deducted + - &Network - &Reto + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - W&allet - Monujo + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Expert - Fakulo + + (default: %u) + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Aŭtomate malfermi la kursilan pordon por Bitmono. Tio funkcias nur se via kursilo havas la UPnP-funkcion, kaj se tiu ĉi estas ŝaltita. + + Accept public REST requests (default: %u) + - Map port using &UPnP - Mapigi pordon per &UPnP + + Automatically create Tor hidden service (default: %d) + - Proxy &IP: - Prokurila &IP: + + Connect through SOCKS5 proxy + - &Port: - &Pordo: + + Error loading %s: You can't disable HD on an already existing HD wallet + - Port of the proxy (e.g. 9050) - la pordo de la prokurilo (ekz. 9050) + + Error reading from database, shutting down. + - IPv4 - IPv4 + + Error upgrading chainstate database + - IPv6 - IPv6 + + Imports blocks from external blk000??.dat file on startup + - &Window - &Fenestro + + Information + Informoj - Show only a tray icon after minimizing the window. - Montri nur sistempletan piktogramon post minimumigo de la fenestro. + + Invalid -onion address or hostname: '%s' + - &Minimize to the tray instead of the taskbar - &Minimumigi al la sistempleto anstataŭ al la taskopleto + + Invalid -proxy address or hostname: '%s' + - M&inimize on close - M&inimumigi je fermo + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Display - &Aspekto + + Invalid netmask specified in -whitelist: '%s' + - User Interface &language: - &Lingvo de la fasado: + + Keep at most <n> unconnectable transactions in memory (default: %u) + - &Unit to show amounts in: - &Unuo por vidigi sumojn: + + Need to specify a port with -whitebind: '%s' + - Choose the default subdivision unit to show in the interface and when sending coins. - Elekti la defaŭltan manieron por montri bitmonajn sumojn en la interfaco, kaj kiam vi sendos bitmonon. + + Node relay options: + - Whether to show coin control features or not. - Ĉu montri detalan adres-regilon, aŭ ne. + + RPC server options: + - &OK - &Bone + + Reducing -maxconnections from %d to %d, because of system limitations. + - &Cancel - &Nuligi + + Rescan the block chain for missing wallet transactions on startup + - default - defaŭlta + + Send trace/debug info to console instead of debug.log file + Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log - none - neniu + + Show all debugging options (usage: --help -help-debug) + - Confirm options reset - Konfirmi reŝargo de agordoj + + Shrink debug.log file on client startup (default: 1 when no -debug) + Malpligrandigi la sencimigan protokol-dosieron kiam kliento lanĉiĝas (defaŭlte: 1 kiam mankas -debug) - The supplied proxy address is invalid. - La prokurila adreso estas malvalida. + + Signing transaction failed + Subskriba transakcio fiaskis - - - OverviewPage - Form - Formularo + + The transaction amount is too small to pay the fee + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Eblas, ke la informoj videblaj ĉi tie estas eksdataj. Via monujo aŭtomate sinkoniĝas kun la bitmona reto kiam ili konektiĝas, sed tiu procezo ankoraŭ ne finfariĝis. + + This is experimental software. + ĝi estas eksperimenta programo - Your current spendable balance - via aktuala elspezebla saldo + + Tor control port password (default: empty) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - la sumo de transakcioj ankoraŭ ne konfirmitaj, kiuj ankoraŭ ne elspezeblas + + Tor control port to use if onion listening enabled (default: %s) + - Immature: - Nematura: + + Transaction amount too small + Transakcia sumo tro malgranda - Mined balance that has not yet matured - Minita saldo, kiu ankoraŭ ne maturiĝis + + Transaction too large for fee policy + - Balances - Saldoj + + Transaction too large + Transakcio estas tro granda - Total: - Totalo: + + Unable to bind to %s on this computer (bind returned error %s) + - Your current total balance - via aktuala totala saldo + + Upgrade wallet to latest format on startup + - Spendable: - Elspezebla: + + Username for JSON-RPC connections + Salutnomo por konektoj JSON-RPC - Recent transactions - Lastaj transakcioj + + Valid Verifier + - - - PaymentServer - - - PeerTableModel - User Agent - Uzanto Agento + + Variable is not allow in the expression: ' + - - - QObject - Amount - Sumo + + Verifier String doesn't exist for asset: + - %1 h - %1 h + + Verifier String for asset trasnfer, not found + - %1 m - %1 m + + Verifier not found for asset: + - None - Neniu + + Verifier string can not be empty. To default to true, use "true" + - N/A - neaplikebla + + Verifier string is empty + - %1 and %2 - %1 kaj %2 + + Verifier string not found + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - neaplikebla + + Verifying wallet(s)... + - Client version - Versio de kliento + + Warning + Averto - &Information - &Informoj + + Warning: unknown new rules activated (versionbit %i) + - Debug window - Sencimiga fenestro + + Whether to operate in a blocks only mode (default: %u) + - General - Ĝenerala + + You need to rebuild the database using -reindex to change -txindex + - Startup time - Horo de lanĉo + + Zapping all transactions from wallet... + - Network - Reto + + ZeroMQ notification options: + - Name - Nomo + + Password for JSON-RPC connections + Pasvorto por konektoj JSON-RPC - Number of connections - Nombro de konektoj + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Plenumi komandon kiam plej bona bloko ŝanĝiĝas (%s en cmd anstataŭiĝas per bloka haketaĵo) - Block chain - Blokĉeno + + Allow DNS lookups for -addnode, -seednode and -connect + Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect - Current number of blocks - Aktuala nombro de blokoj + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Received - Ricevita + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Sent - Sendita + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - &Peers - &Samuloj + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Banned peers - Malpermesita samuloj. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Version - Versio + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - User Agent - Uzanto Agento + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Services - Servoj + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Last block time - Horo de la lasta bloko + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - &Open - &Malfermi + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - &Console - &Konzolo + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - &Network Traffic - &Reta Trafiko + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - &Clear - &Forigi ĉion + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Totals - Totaloj + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - In: - En: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Out: - El: + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Debug log file - Sencimiga protokoldosiero + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Clear console - Malplenigi konzolon + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Uzu la sagojn supran kaj malsupran por esplori la historion, kaj <b>stir-L</b> por malplenigi la ekranon. + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Type <b>help</b> for an overview of available commands. - Tajpu <b>help</b> por superrigardo de la disponeblaj komandoj. + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - %1 B - %1 B + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - %1 KB - %1 KB + + Output debugging information (default: %u, supplying <category> is optional) + - %1 MB - %1 MB + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - %1 GB - %1 GB + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - - - ReceiveCoinsDialog - &Amount: - &Kvanto: + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - &Label: - &Etikedo: + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - &Message: - &Mesaĝo: + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reuzi unu el la jam uzitaj ricevaj adresoj. Reuzo de adresoj povas krei problemojn pri sekureco kaj privateco. Ne uzu tiun ĉi funkcion krom por rekrei antaŭe faritan pagopeton. + + Support filtering of blocks and transaction with bloom filters (default: %u) + - R&euse an existing receiving address (not recommended) - R&euzi ekzistantan ricevan adreson (malrekomendinda) + + The default height that is required before rewards are allowed to be sent out + - Clear all fields of the form. - Malplenigi ĉiujn kampojn de la formularo. + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Clear - Forigi + + This address doesn't contain the correct tags to pass the verifier string check: + - &Request payment - &Peti pagon + + This is the transaction fee you may pay when fee estimates are not available. + - Show - Vidigi + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Remove - Forigi + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - - - ReceiveRequestDialog - QR Code - QR-kodo + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Copy &URI - Kopii &URI + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Copy &Address - Kopii &Adreson + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - &Save Image... - &Konservi Bildon... + + Unable to reissue asset: unit must be larger than current unit selection + - Address - Adreso + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Label - Etikedo + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - - - RecentRequestsTableModel - Label - Etikedo + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - (no label) - (neniu etikedo) + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - - - SendCoinsDialog - Send Coins - Sendi Bitmonon + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Coin Control Features - Monregaj Opcioj + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Inputs... - Enigoj... + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Insufficient funds! - Nesufiĉa mono! + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Quantity: - Kvanto: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Bytes: - Bajtoj: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Amount: - Sumo: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Fee: - Krompago: + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - After Fee: - Post krompago: + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Change: - Restmono: + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Transaction Fee: - Krompago: + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Send to multiple recipients at once - Sendi samtempe al pluraj ricevantoj + + %s is set very high! + - Add &Recipient - Aldoni &Ricevonton + + ' doesn't exist in the database + - Clear all fields of the form. - Malplenigi ĉiujn kampojn de la formularo. + + ' has already been used + - Dust: - Polvo: + + ' is not a valid character in the expression: + - Clear &All - &Forigi Ĉion + + ' the amount trying to reissue is to large + - Balance: - Saldo: + + (default: %s) + - Confirm the send action - Konfirmi la sendon + + A space separated list of 12-words used to import a bip44 wallet + - S&end - Ŝendi + + Always query for peer addresses via DNS lookup (default: %u) + - (no label) - (neniu etikedo) + + Asset Transfer amounts must be greater than 0 + - - - SendCoinsEntry - A&mount: - &Sumo: + + Asset doesn't exist: + - Pay &To: - &Ricevonto: + + Asset must be a qualifier, sub qualifier, or a restricted asset + - &Label: - &Etikedo: + + Asset name is not valid + - Choose previously used address - Elektu la jam uzitan adreson + + Asset with this name is already in the mempool + - This is a normal payment. - Tio estas normala pago. + + Done Loading + - Alt+A - Alt+A + + Enable publish raw asset messages in <address> + - Paste address from clipboard - Alglui adreson de tondejo + + Error creating %s: You can't create non-HD wallets with this version. + - Alt+P - Alt+P + + Error loading wallet %s. -wallet filename must be a regular file. + - Remove this entry - Forigu ĉi tiun enskribon + + Error loading wallet %s. Duplicate -wallet filename specified. + - Message: - Mesaĝo: + + Error loading wallet %s. Invalid characters in -wallet filename. + - Enter a label for this address to add it to the list of used addresses - Tajpu etikedon por tiu ĉi adreso por aldoni ĝin al la listo de uzitaj adresoj + + Error not set + - Pay To: - Pagi Al: + + Error writing bip 39 passphrase to database + - Memo: - Memorando: + + Error writing bip 39 vchseed to database + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Ne sistemfermu ĝis ĉi tiu fenestro malaperas. + + Error writing bip 39 words to database + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Subskriboj - Subskribi / Kontroli mesaĝon + + Every '(' must have a corresponding ')' in the expression: + - &Sign Message - &Subskribi Mesaĝon + + Failed to extract destination from change script + - Choose previously used address - Elektu la jam uzitan adreson + + Failed to find restricted asset change address from inputs + - Alt+A - Alt+A + + Failed to get asset data from script + - Paste address from clipboard - Alglui adreson de tondejo + + Failed to get verifier string from output: + - Alt+P - Alt+P + + Failed to load Assets Database + - Enter the message you want to sign here - Tajpu la mesaĝon, kiun vi volas sendi, cîi tie + + Flag must be 1 or 0 + - Signature - Subskribo + + How many blocks to check at startup (default: %u, 0 = all) + - Copy the current signature to the system clipboard - Kopii la aktualan subskribon al la tondejo + + Include IP addresses in debug output (default: %u) + - Sign the message to prove you own this Raven address - Subskribi la mesaĝon por pravigi, ke vi estas la posedanto de tiu Bitmon-adreso + + Init Message Channels - Scanning Asset Transactions + - Sign &Message - Subskribi &Mesaĝon + + Insufficient asset funds + - Reset all sign message fields - Reagordigi ĉiujn prisubskribajn kampojn + + Invalid Qualifier Name: + - Clear &All - &Forigi Ĉion + + Invalid expressions in verifier string: + - &Verify Message - &Kontroli Mesaĝon + + Invalid parameter: amount must be + - Verify the message to ensure it was signed with the specified Raven address - Kontroli la mesaĝon por pravigi, ke ĝi ja estas subskribita per la specifa Bitmon-adreso + + Invalid parameter: amount must be between + - Verify &Message - Kontroli &Mesaĝon + + Invalid parameter: asset amount can't be equal to or less than zero. + - Reset all verify message fields - Reagordigi ĉiujn prikontrolajn kampojn + + Invalid parameter: asset amount greater than max money: + - - - SplashScreen - [testnet] - [testnet] + + Invalid parameter: asset_name ' + - - - TrafficGraphWidget - KB/s - KB/s + + Invalid parameter: has_ipfs must be 0 or 1. + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Tiu ĉi panelo montras detalan priskribon de la transakcio + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - - - TransactionTableModel - Label - Etikedo + + Invalid parameter: reissuable must be 0 or 1 + - (no label) - (neniu etikedo) + + Invalid parameter: reissuable must be 0 + - - - TransactionView - Comma separated file (*.csv) - Perkome disigita dosiero (*.csv) + + Invalid parameter: units must be + - Label - Etikedo + + Invalid parameter: units must be between 0-8. + - Address - Adreso + + Invalid syntax: + - Exporting Failed - ekspotado malsukcesinta + + Keypool ran out, please call keypoolrefill first + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Agordoj: + + Length is to large. Please use a smaller length + - Specify data directory - Specifi dosieron por datumoj + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Connect to a node to retrieve peer addresses, and disconnect - Konekti al nodo por ricevi adresojn de samtavolanoj, kaj malkonekti + + Listen for connections on <port> (default: %u or testnet: %u) + - Specify your own public address - Specifi vian propran publikan adreson + + Maintain at most <n> connections to peers (default: %u) + - Accept command line and JSON-RPC commands - Akcepti komandojn JSON-RPC kaj el komandlinio + + Make the wallet broadcast transactions + - Run in the background as a daemon and accept commands - Ruli fone kiel demono kaj akcepti komandojn + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Raven Core - Kerno de Bitmono + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Bindi al donita adreso kaj ĉiam aŭskulti per ĝi. Uzu la formaton [gastigo]:pordo por IPv6 + + Mempool cleared + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Plenumi komandon kiam monuja transakcio ŝanĝiĝas (%s en cmd anstataŭiĝas per TxID) + + Multiple verifier strings found in transaction + - <category> can be: - <category> povas esti: + + Passphrase securing your 12-word mnemonic word-list + - Block creation options: - Blok-kreaj agordaĵoj: + + Prepend debug output with timestamp (default: %u) + - Corrupted block database detected - Difektita blokdatumbazo trovita + + Relay and mine data carrier transactions (default: %u) + - Do you want to rebuild the block database now? - Ĉu vi volas rekonstrui la blokdatumbazon nun? + + Relay non-P2SH multisig (default: %u) + - Error initializing block database - Eraro dum pravalorizado de blokdatumbazo + + Restricted asset transfer from address that has been frozen + - Error initializing wallet database environment %s! - Eraro dum pravalorizado de monuj-datumbaza ĉirkaŭaĵo %s! + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error loading block database - Eraro dum ŝargado de blokdatumbazo + + Set key pool size to <n> (default: %u) + - Error opening block database - Eraro dum malfermado de blokdatumbazo + + Set maximum BIP141 block weight (default: %d) + - Error: Disk space is low! - Eraro: restas malmulte da diskospaco! + + Set the Maximum reorg depth (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - Ne sukcesis aŭskulti ajnan pordon. Uzu -listen=0 se tion vi volas. + + Set the number of threads to service RPC calls (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - Geneza bloko aŭ netrovita aŭ neĝusta. Ĉu eble la datadir de la reto malĝustas? + + Signing asset transaction failed + - Invalid -onion address: '%s' - Nevalida -onion-adreso: '%s' + + Specify configuration file (default: %s) + - Not enough file descriptors available. - Nesufiĉa nombro de dosierpriskribiloj disponeblas. + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Specify wallet file (within data directory) - Specifi monujan dosieron (ene de dosierujo por datumoj) + + Specify pid file (default: %s) + - Verifying blocks... - Kontrolado de blokoj... + + Spend unconfirmed change when sending transactions (default: %u) + - Verifying wallet... - Kontrolado de monujo... + + Starting network threads... + - Wallet %s resides outside data directory %s - Monujo %s troviĝas ekster la dosierujo por datumoj %s + + The symbol: ' + - Wallet options: - Monujaj opcioj: + + The verifier string has two operators without a tag between them + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Plenumi komandon kiam rilata alerto riceviĝas, aŭ kiam ni vidas tre longan forkon (%s en cms anstataŭiĝas per mesaĝo) + + The wallet will avoid paying less than the minimum relay fee. + - Information - Informoj + + This is the minimum transaction fee you pay on every transaction. + - Send trace/debug info to console instead of debug.log file - Sendi spurajn/sencimigajn informojn al la konzolo anstataŭ al dosiero debug.log + + This is the transaction fee you will pay if you send a transaction. + - Shrink debug.log file on client startup (default: 1 when no -debug) - Malpligrandigi la sencimigan protokol-dosieron kiam kliento lanĉiĝas (defaŭlte: 1 kiam mankas -debug) + + Threshold for disconnecting misbehaving peers (default: %u) + - Signing transaction failed - Subskriba transakcio fiaskis + + Transaction amounts must not be negative + - This is experimental software. - ĝi estas eksperimenta programo + + Transaction has too long of a mempool chain + - Transaction amount too small - Transakcia sumo tro malgranda + + Transaction must have at least one recipient + - Transaction too large - Transakcio estas tro granda + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - Salutnomo por konektoj JSON-RPC + + Unable to generate initial keys + - Warning - Averto + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Pasvorto por konektoj JSON-RPC + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Plenumi komandon kiam plej bona bloko ŝanĝiĝas (%s en cmd anstataŭiĝas per bloka haketaĵo) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Permesi DNS-elserĉojn por -addnote, -seednote kaj -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Ŝarĝante adresojn... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Nevalid adreso -proxy: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Nekonata reto specifita en -onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + Nekonata reto specifita en -onlynet: '%s' + Insufficient funds Nesufiĉa mono + Loading block index... Ŝarĝante blok-indekson... - Add a node to connect to and attempt to keep the connection open - Aldoni nodon por alkonekti kaj provi daŭrigi la malferman konekton - - + Loading wallet... Ŝargado de monujo... + Cannot downgrade wallet Ne eblas malpromocii monujon - Cannot write default address - Ne eblas skribi defaŭltan adreson - - + Rescanning... Reskanado... - Done loading - Ŝargado finiĝis - - + Error Eraro diff --git a/src/qt/locale/raven_es.ts b/src/qt/locale/raven_es.ts index 7254c9244f..ff55378aa4 100644 --- a/src/qt/locale/raven_es.ts +++ b/src/qt/locale/raven_es.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Haz clic derecho para editar la dirección o etiqueta + Create a new address Crear una nueva dirección + &New &Nuevo + Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema + &Copy &Copiar + C&lose C&errar + Delete the currently selected address from the list Eliminar la dirección seleccionada de la lista + Export the data in the current tab to a file Exportar los datos en la ficha actual a un archivo + &Export &Exportar + &Delete &Eliminar + Choose the address to send coins to Seleccione la dirección a la que enviar monedas + Choose the address to receive coins with Seleccione la dirección de la que recibir monedas + C&hoose E&scoger + Sending addresses Direcciones de envío + Receiving addresses Direcciones de recepción + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Estas son sus direcciones Raven para enviar pagos. Verifique siempre la cantidad y la dirección de recepción antes de enviar ravens. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estas son sus direcciones Raven para recibir pagos. Se recomienda utilizar una nueva dirección de recepción para cada transacción + &Copy Address &Copiar Dirección + Copy &Label Copiar &Etiqueta + &Edit &Editar + Export Address List Exportar lista de direcciones + Comma separated file (*.csv) Archivo separado de coma (*.csv) + Exporting Failed Falló la exportación + There was an error trying to save the address list to %1. Please try again. Había un error intentando guardar la lista de direcciones en %1. Por favor inténtelo de nuevo. @@ -103,14 +125,17 @@ AddressTableModel + Label Etiqueta + Address Dirección + (no label) (sin etiqueta) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Diálogo de contraseña + Enter passphrase Introducir contraseña + New passphrase Nueva contraseña + Repeat new passphrase Repita la nueva contraseña + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Introduzca la nueva contraseña del monedero. <br/>Por favor utilice una contraseña de <b>diez o más carácteres aleatorios</b>, o <b>ocho o más palabras</b>. + Encrypt wallet Cifrar monedero + This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita su contraseña de monedero para desbloquear el monedero. + Unlock wallet Desbloquear monedero + This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita su contraseña para descifrar el monedero. + Decrypt wallet Descifrar monedero + Change passphrase Cambiar contraseña + Enter the old passphrase and new passphrase to the wallet. Introduzca la contraseña antigua y la nueva para el monedero. + Confirm wallet encryption Confirmar cifrado del monedero + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Advertencia: Si cifra su monedero y pierde su contraseña<b>¡PERDERÁ TODOS SUS RAVENS!</b> + Are you sure you wish to encrypt your wallet? ¿Seguro que desea cifrar su monedero? + + Wallet encrypted Monedero cifrado + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 se cerrará ahora para terminar el proceso de cifrado. Recuerde que cifrar su monedero no puede proteger completamente su monedero de ser robado por malware que infecte su ordenador. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Cualquier copia de seguridad anterior que haya hecho en su archivo de monedero debería ser reemplazada con el archivo de monedero cifrado generado recientemente. Por razones de seguridad, las copias de seguridad anteriores del archivo de monedero descifrado serán inútiles en cuanto empiece a utilizar el nuevo monedero cifrado. + + + + Wallet encryption failed Fracasó el cifrado del monedero + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Falló el cifrado del monedero debido a un error interno. Su monedero no fue cifrado. + + The supplied passphrases do not match. La contraseña introducida no coincide. + Wallet unlock failed Fracasó el desbloqueo del monedero + + + The passphrase entered for the wallet decryption was incorrect. La contraseña introducida para el cifrado del monedero es incorrecta. + Wallet decryption failed Fracasó el cifrado del monedero + Wallet passphrase was successfully changed. La contraseña del monedero se ha cambiado con éxito. + + Warning: The Caps Lock key is on! Alerta: ¡La clave de bloqueo Caps está activa! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Máscara + + Asset Selection + Selección de activo - Banned Until - Bloqueado Hasta + + Quantity: + Cantidad: - - - RavenGUI - Sign &message... - Firmar &mensaje... + + Bytes: + Bytes: - Synchronizing with network... - Sincronizando con la red… + + Amount: + Monto: - &Overview - &Vista general + + Dust: + - Node - Nodo + + Fee: + Cargo: - Show general overview of wallet - Mostrar vista general del monedero + + After Fee: + Después de aplicar la comisión: - &Transactions - &Transacciones + + Change: + Cambio: - Browse transaction history - Examinar el historial de transacciones + + (un)select all + (de)seleccionar todo - E&xit - S&alir + + Tree mode + Modo árbol - Quit application - Salir de la aplicación + + List mode + Modo lista - &About %1 - &Acerca de %1 + + View assets that you have the ownership asset for + Ver los Activos de su propiedad - Show information about %1 - Mostrar información acerca de %1 + + View Administrator Assets + Ver los Activos del Administrador - About &Qt - Acerca de &Qt + + Asset + Activo - Show information about Qt - Mostrar información acerca de Qt + + Amount + Monto - &Options... - &Opciones... + + Received with label + Recibido con etiqueta - Modify configuration options for %1 - Modificar las opciones de configuración para %1 + + Received with address + Recibido con dirección - &Encrypt Wallet... - &Cifrar monedero… + + Date + Fecha - &Backup Wallet... - &Guardar copia del monedero... + + Confirmations + Confirmaciones - &Change Passphrase... - &Cambiar la contraseña… + + Confirmed + Confirmado - &Sending addresses... - Direcciones de &envío... + + Copy address + Copiar dirección - &Receiving addresses... - Direcciones de &recepción... + + Copy label + Copiar etiqueta - Open &URI... - Abrir &URI... + + + Copy amount + Copiar cantidad - Click to disable network activity. - Pulsar para deshabilitar la actividad de red. + + Copy transaction ID + Copiar ID de transacción - Network activity disabled. - Actividad de red deshabilitada. + + Lock unspent + Bloquear lo no gastado - Click to enable network activity again. - Pulsar para volver a habilitar la actividad de red. + + Unlock unspent + Desbloquear lo no gastado - Syncing Headers (%1%)... - Sincronizando cabeceras (%1%) + + Copy quantity + Copiar cantidad - Reindexing blocks on disk... - Reindexando bloques en disco... + + Copy fee + Copiar comisión - Send coins to a Raven address - Enviar ravens a una dirección Raven + + Copy after fee + - Backup wallet to another location - Copia de seguridad del monedero en otra ubicación + + Copy bytes + Copiar bytes - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para el cifrado del monedero + + Copy dust + - &Debug window - &Ventana de depuración + + Copy change + Copiar cambio - Open debugging and diagnostic console - Abrir la consola de depuración y diagnóstico + + (%1 locked) + (%1 bloqueado) - &Verify message... - &Verificar mensaje... + + yes + - Raven - Raven + + no + no - Wallet - Monedero + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Esta etiqueta se vuelve roja si algún destinatario recibe una cantidad inferior a la actual puerta polvorienta. - &Send - &Enviar + + Can vary +/- %1 satoshi(s) per input. + Puede variar +/- %1 satoshi(s) por entrada. - &Receive - &Recibir + + + (no label) + (sin etiqueta) - &Show / Hide - &Mostrar / Ocultar + + change from %1 (%2) + cambia desde %1 (%2) - Show or hide the main Window - Mostrar u ocultar la ventana principal + + (change) + (cambio) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Cifrar las claves privadas de su monedero + + Name + Nombre - Sign messages with your Raven addresses to prove you own them - Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + Quantity + Cantidad: + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + Send Coins + Enviar ravens - &File - &Archivo + + Asset Control Features + Características de control de activos - &Settings - &Configuración + + Inputs... + Entradas... - &Help - &Ayuda + + automatically selected + seleccionado automáticamente - Tabs toolbar - Barra de pestañas + + Insufficient funds! + Fondos insuficientes! - Request payments (generates QR codes and raven: URIs) - Solicitar pagos (generando códigos QR e identificadores URI "raven:") + + Quantity: + Cantidad: - Show the list of used sending addresses and labels - Mostrar la lista de direcciones de envío y etiquetas + + Bytes: + Bytes: - Show the list of used receiving addresses and labels - Muestra la lista de direcciones de recepción y etiquetas + + Amount: + Monto: - Open a raven: URI or payment request - Abrir un identificador URI "raven:" o una petición de pago + + Dust: + - &Command-line options - &Opciones de consola de comandos + + Fee: + - - %n active connection(s) to Raven network - %n conexión activa hacia la red Raven%n conexiones activas hacia la red Raven + + + After Fee: + - Indexing blocks on disk... - Indexando bloques en disco... + + Change: + Cambio: - Processing blocks on disk... - Procesando bloques en disco... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Si se marca esta opción pero la dirección de cambio está vacía o es inválida, el cambio se enviará a una nueva dirección recién generada. - - Processed %n block(s) of transaction history. - %n bloque procesado del historial de transacciones.%n bloques procesados del historial de transacciones. + + + Custom change address + Cambio de dirección personalizada - %1 behind - %1 atrás + + Transaction Fee: + Comisión de Transacción: - Last received block was generated %1 ago. - El último bloque recibido fue generado hace %1. + + Choose... + Elija... - Transactions after this will not yet be visible. - Las transacciones posteriores aún no están visibles. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Error + + Warning: Fee estimation is currently not possible. + Advertencia: la estimación de la comisión no es posible. - Warning - Aviso + + collapse fee-settings + Colapsar ajustes de comisión. - Information - Información + + Hide + Ocultar - Up to date - Actualizado + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Raven + + per kilobyte + por kilobyte - %1 client - %1 cliente + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Conectando a pares... + + (read the tooltip) + (leer la sugerencia) - Catching up... - Actualizando... + + Recommended: + Recomendado: - Date: %1 - - Fecha: %1 - + + Custom: + Personalizado: - Amount: %1 - - Amount: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Comisión inteligente todavía no inicial izada. Esto usualmente suele tomar unos pocos bloques...) - Type: %1 - - Tipo: %1 - + + Confirmation time target: + Confirmación de tiempo al objetivo: - Label: %1 - - Etiqueta: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indica que quien envía tal vez desee reemplazar esta transacción con una nueva pagando comisiones mas altas (primeramente siendo confirmado) - Address: %1 - - Dirección: %1 - + + Request Replace-By-Fee + Requerir reemplazo-por-comisión - Sent transaction - Transacción enviada + + Confirm the send action + Confirmar la acción de enviar - Incoming transaction - Transacción entrante + + S&end + - HD key generation is <b>enabled</b> - La generación de clave HD está <b>habilitada</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - La generación de clave HD está <b>deshabilitada</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Ha ocurrido un error fatal. Raven no puede seguir seguro y se cerrará. + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Máscara + + + + Banned Until + Bloqueado Hasta CoinControlDialog + Coin Selection Selección de la moneda + Quantity: Cantidad: + Bytes: Bytes: + Amount: Cuantía: + Fee: Tasa: + Dust: Polvo: + After Fee: Después de aplicar la comisión: + Change: Cambio: + (un)select all (des)marcar todos + Tree mode Modo árbol + List mode Modo lista + Amount Cantidad + Received with label Recibido con etiqueta + Received with address Recibido con dirección + Date Fecha + Confirmations Confirmaciones + Confirmed Confirmado + Copy address Copiar ubicación + Copy label Copiar etiqueta + + Copy amount Copiar cantidad + Copy transaction ID Copiar ID de transacción + Lock unspent Bloquear lo no gastado + Unlock unspent Desbloquear lo no gastado + Copy quantity Copiar cantidad + Copy fee Copiar comisión + Copy after fee Copiar después de couta + Copy bytes Copiar bytes + Copy dust Copiar polvo + Copy change Copiar cambio + (%1 locked) (%1 bloqueado) + yes + no no + This label turns red if any recipient receives an amount smaller than the current dust threshold. Esta etiqueta se vuelve roja si algún destinatario recibe una cantidad inferior a la actual puerta polvorienta. + Can vary +/- %1 satoshi(s) per input. Puede variar +/- %1 satoshi(s) por entrada. + + (no label) (sin etiqueta) + change from %1 (%2) cambia desde %1 (%2) + (change) (cambio) - EditAddressDialog + CreateAssetDialog - Edit Address - Editar Dirección + + Coin Control Features + - &Label - &Etiqueta + + Inputs... + - The label associated with this address list entry - La etiqueta asociada con esta entrada de la lista de direcciones + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. + + Insufficient funds! + - &Address - &Dirección + + + Quantity: + - New receiving address - Nueva dirección de recivimiento + + Bytes: + - New sending address - Nueva dirección de envío + + Amount: + - Edit receiving address - Editar dirección de recivimiento + + Dust: + - Edit sending address - Editar dirección de envío + + Fee: + - The entered address "%1" is not a valid Raven address. - La dirección introducida "%1" no es una dirección Raven válida. + + After Fee: + - The entered address "%1" is already in the address book. - La dirección introducida "%1" está ya en la agenda. + + Change: + - Could not unlock wallet. - Podría no desbloquear el monedero. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Falló la generación de la nueva clave. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Se creará un nuevo directorio de datos. + + Name: + - name - nombre + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - El directorio ya existe. Añada %1 si pretende crear un directorio nuevo. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - La ruta ya existe y no es un directorio. + + Check Availabilty + - Cannot create data directory here. - No se puede crear un directorio de datos aquí. + + Address: + - - - HelpMessageDialog - version - versión + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Acerda de %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opciones de la línea de órdenes + + Warning: + - Usage: - Uso: + + The number of assets that will be created + - command-line options - opciones de la consola de comandos + + Units: + - UI Options: - Opciones de interfaz de usuario: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Elegir directorio de datos al iniciar (predeterminado: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Arrancar minimizado + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Establecer los certificados raíz SSL para solicitudes de pago (predeterminado: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostrar pantalla de bienvenida en el inicio (predeterminado: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reiniciar todos los ajustes modificados en el GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Bienvenido + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Bienvenido a %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Al ser la primera vez que se ejecuta el programa, puede elegir donde %1 almacenará sus datos. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 va a descargar y almacenar una copia de la cadena de bloques de Raven. Al menos %2GB de datos seran almacenados en este directorio, que ira creciendo con el tiempo. El monedero se guardara tambien en ese directorio. + + Choose... + - Use the default data directory - Utilizar el directorio de datos predeterminado + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Utilizar un directorio de datos personalizado: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Error: no ha podido crearse el directorio de datos especificado "%1". + + collapse fee-settings + - Error - Error - - - %n GB of free space available - %n GB de espacio libre%n GB de espacio disponible + + Hide + - - (of %n GB needed) - (de %n GB necesitados)(de %n GB requeridos) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Formulario + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Las transacciones recientes aún no pueden ser visibles, y por lo tanto el saldo de su monedero podría ser incorrecto. Esta información será correcta cuando su monedero haya terminado de sincronizarse con la red de raven, como se detalla abajo. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - La red no aceptará el intentar gastar ravens que están afectados por transacciones aún no mostradas. + + (read the tooltip) + - Number of blocks left - Número de bloques restantes + + Recommended: + - Unknown... - Desconocido... + + C&ustom: + - Last block time - Hora del último bloque + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - Progreso + + Confirmation time target: + - Progress increase per hour - Avance del progreso por hora + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - calculando... + + Request Replace-By-Fee + Solicita "Reemplazo-por-fee" - Estimated time left until synced - Tiempo estimado restante hasta la sincronización + + Create Asset + Crear activo - Hide - Ocultar + + Clear + Vaciar - Unknown. Syncing Headers (%1)... - Desconocido. Sincronizando cabeceras (%1)... + + Balance: + - - - OpenURIDialog - Open URI - Abrir URI... + + 123.456 RVN + - Open payment request from URI or file - Abrir solicitud de pago a partir de un identificador URI o de un archivo + + Copy quantity + - URI: - URI: + + Copy amount + - Select payment request file - Seleccionar archivo de sulicitud de pago + + Copy fee + - Select payment request file to open - Seleccionar el archivo de solicitud de pago para abrir + + Copy after fee + - - - OptionsDialog - Options - Opciones + + Copy bytes + - &Main - &Principal + + Copy dust + - Automatically start %1 after logging in to the system. - Iniciar automaticamente %1 al encender el sistema. + + Copy change + - &Start %1 on system login - &Iniciar %1 al iniciar el sistema + + %1 (%2 blocks) + - Size of &database cache - Tamaño del cache de la &base de datos + + Main Asset + - MB - MB + + Sub Asset + - Number of script &verification threads - Número de hilos de &verificación de scripts + + Unique Asset + - Accept connections from outside - Aceptar conexiones desde el exterior + + Messaging Channel Asset + - Allow incoming connections - Aceptar conexiones entrantes + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Dirección IP del proxy (p. ej. IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizar en lugar de salir de la aplicación cuando la ventana está cerrada. Cuando se activa esta opción, la aplicación sólo se cerrará después de seleccionar Salir en el menú. + + Restricted Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Identificadores URL de terceros (por ejemplo, un explorador de bloques) que aparecen en la pestaña de transacciones como elementos del menú contextual. El %s en la URL es reemplazado por el valor hash de la transacción. Se pueden separar URL múltiples por una barra vertical |. + + Asset Type + - Third party transaction URLs - Identificadores URL de transacciones de terceros + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Active command-line options that override above options: - Opciones activas de consola de comandos que tienen preferencia sobre las opciones anteriores: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Reset all client options to default. - Restablecer todas las opciones predeterminadas del cliente. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Reset Options - &Restablecer opciones + + + + Warning: Invalid Raven address + - &Network - &Red + + Warning: Restricted Assets Reissuance requires an address + - (0 = auto, <0 = leave that many cores free) - (0 = automático, <0 = dejar libres ese número de núcleos) + + Valid Asset + - W&allet - &Monedero + + Invalid: Asset name already in use + - Expert - Experto + + Error: Asset Database not in sync + - Enable coin &control features - Habilitar funcionalidad de &Coin Control + + + %1 to %2 + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si desactiva el gasto del cambio no confirmado, no se podrá usar el cambio de una transacción hasta que se alcance al menos una confirmación. Esto afecta también a cómo se calcula su saldo. + + Are you sure you want to send? + - &Spend unconfirmed change - &Gastar cambio no confirmado + + added as transaction fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + Total Amount %1 + - Map port using &UPnP - Mapear el puerto mediante &UPnP + + or + - Connect to the Raven network through a SOCKS5 proxy. - Conectarse a la red Raven a través de un proxy SOCKS5. + + Confirm send assets + - &Connect through SOCKS5 proxy (default proxy): - &Conectarse a través de proxy SOCKS5 (proxy predeterminado): + + Invalid: + - Proxy &IP: - Dirección &IP del proxy: + + Copy + - &Port: - &Puerto: + + Transaction ID Copied + - Port of the proxy (e.g. 9050) - Puerto del servidor proxy (ej. 9050) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Usado para alcanzar compañeros via: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Muestra si el proxy SOCKS5 predeterminado es utilizado para llegar a los pares a traves de este tipo de red. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Conectar a la red Raven mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor. + + Edit Address + Editar Dirección - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Usar distintos proxys SOCKS5 para comunicarse vía Tor de forma anónima: + + &Label + &Etiqueta - &Window - &Ventana + + The label associated with this address list entry + La etiqueta asociada con esta entrada de la lista de direcciones - &Hide the icon from the system tray. - &Ocultar el icono de la barra de tareas + + The address associated with this address list entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. - Hide tray icon - Ocultar barra de tareas + + &Address + &Dirección - Show only a tray icon after minimizing the window. - Minimizar la ventana a la bandeja de iconos del sistema. + + New receiving address + Nueva dirección de recivimiento - &Minimize to the tray instead of the taskbar - &Minimizar a la bandeja en vez de a la barra de tareas + + New sending address + Nueva dirección de envío - M&inimize on close - M&inimizar al cerrar + + Edit receiving address + Editar dirección de recivimiento - &Display - &Interfaz + + Edit sending address + Editar dirección de envío - User Interface &language: - I&dioma de la interfaz de usuario + + The entered address "%1" is not a valid Raven address. + La dirección introducida "%1" no es una dirección Raven válida. - The user interface language can be set here. This setting will take effect after restarting %1. - El idioma de la interfaz de usuario puede establecerse aquí. Esta configuración tendrá efecto tras reiniciar %1. + + The entered address "%1" is already in the address book. + La dirección introducida "%1" está ya en la agenda. - &Unit to show amounts in: - &Unidad en la cual mostrar las cantidades: + + Could not unlock wallet. + Podría no desbloquear el monedero. - Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían ravens. + + New key generation failed. + Falló la generación de la nueva clave. + + + FreespaceChecker - Whether to show coin control features or not. - Mostrar o no funcionalidad de Coin Control + + A new data directory will be created. + Se creará un nuevo directorio de datos. - &OK - &Aceptar + + name + nombre - &Cancel - &Cancelar + + Directory already exists. Add %1 if you intend to create a new directory here. + El directorio ya existe. Añada %1 si pretende crear un directorio nuevo. - default - predeterminado + + Path already exists, and is not a directory. + La ruta ya existe y no es un directorio. - none - Ninguna + + Cannot create data directory here. + No se puede crear un directorio de datos aquí. + + + FreezeAddress - Confirm options reset - Confirme el restablecimiento de las opciones + + Frame + - Client restart required to activate changes. - Se necesita reiniciar el cliente para activar los cambios. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - El cliente se cerrará. ¿Desea continuar? + + Address: + - This change would require a client restart. - Este cambio exige el reinicio del cliente. + + Custom Change Address + - The supplied proxy address is invalid. - La dirección proxy indicada es inválida. + + IPFS / Hash: + - - - OverviewPage - Form - Formulario + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + Global Options + - Watch-only: - De observación: + + Free&ze trading on this address + - Available: - Disponible: + + Unfreeze tradin&g on this address + - Your current spendable balance - Su saldo disponible actual + + Freeze all &trading for the selected restricted asset + - Pending: - Pendiente: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transacciones pendientes de confirmar y que aún no contribuye al saldo disponible + + Check + - Immature: - No madurado: + + Clear + - Mined balance that has not yet matured - Saldo recién minado que aún no ha madurado. + + Submit + - Balances - Saldos + + Data has been validated, You can now submit the restriction transaction + - Total: - Total: + + Must have a restricted asset selected + - Your current total balance - Su saldo actual total + + Address is already frozen + - Your current balance in watch-only addresses - Su saldo actual en direcciones watch-only + + Address is not frozen + - Spendable: - Gastable: + + Restricted asset is already frozen globally + - Recent transactions - Transacciones recientes + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Transacciones sin confirmar en direcciones watch-only + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Saldo minado en direcciones watch-only que aún no ha madurado + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Saldo total en las direcciones watch-only + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Fallo en la solicitud de pago + + version + versión + + + + + (%1-bit) + (%1-bit) + + + + About %1 + Acerda de %1 + + + + Command-line options + Opciones de la línea de órdenes + + + + Usage: + Uso: + + + + command-line options + opciones de la consola de comandos + + + + UI Options: + Opciones de interfaz de usuario: + + + + Choose data directory on startup (default: %u) + Elegir directorio de datos al iniciar (predeterminado: %u) + + + + Set language, for example "de_DE" (default: system locale) + Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) + + + + Start minimized + Arrancar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Establecer los certificados raíz SSL para solicitudes de pago (predeterminado: -system-) + + + + Show splash screen on startup (default: %u) + Mostrar pantalla de bienvenida en el inicio (predeterminado: %u) + + + + Reset all settings changed in the GUI + Reiniciar todos los ajustes modificados en el GUI + + + + Intro + + + Welcome + Bienvenido + + + + Welcome to %1. + Bienvenido a %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Al ser la primera vez que se ejecuta el programa, puede elegir donde %1 almacenará sus datos. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utilizar el directorio de datos predeterminado + + + + Use a custom data directory: + Utilizar un directorio de datos personalizado: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Error: no ha podido crearse el directorio de datos especificado "%1". + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Las transacciones recientes aún no pueden ser visibles, y por lo tanto el saldo de su monedero podría ser incorrecto. Esta información será correcta cuando su monedero haya terminado de sincronizarse con la red de raven, como se detalla abajo. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + La red no aceptará el intentar gastar ravens que están afectados por transacciones aún no mostradas. + + + + Number of blocks left + Número de bloques restantes + + + + + + Unknown... + Desconocido... + + + + Last block time + Hora del último bloque + + + + Progress + Progreso + + + + Progress increase per hour + Avance del progreso por hora + + + + + calculating... + calculando... + + + + Estimated time left until synced + Tiempo estimado restante hasta la sincronización + + + + Hide + Ocultar + + + + Unknown. Syncing Headers (%1)... + Desconocido. Sincronizando cabeceras (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI... + + + + Open payment request from URI or file + Abrir solicitud de pago a partir de un identificador URI o de un archivo + + + + URI: + URI: + + + + Select payment request file + Seleccionar archivo de sulicitud de pago + + + + Select payment request file to open + Seleccionar el archivo de solicitud de pago para abrir + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + Iniciar automaticamente %1 al encender el sistema. + + + + &Start %1 on system login + &Iniciar %1 al iniciar el sistema + + + + Size of &database cache + Tamaño del cache de la &base de datos + + + + MB + MB + + + + Number of script &verification threads + Número de hilos de &verificación de scripts + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Dirección IP del proxy (p. ej. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizar en lugar de salir de la aplicación cuando la ventana está cerrada. Cuando se activa esta opción, la aplicación sólo se cerrará después de seleccionar Salir en el menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Identificadores URL de terceros (por ejemplo, un explorador de bloques) que aparecen en la pestaña de transacciones como elementos del menú contextual. El %s en la URL es reemplazado por el valor hash de la transacción. Se pueden separar URL múltiples por una barra vertical |. + + + + Active command-line options that override above options: + Opciones activas de consola de comandos que tienen preferencia sobre las opciones anteriores: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Restablecer todas las opciones predeterminadas del cliente. + + + + &Reset Options + &Restablecer opciones + + + + &Network + &Red + + + + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = dejar libres ese número de núcleos) + + + + W&allet + &Monedero + + + + Expert + Experto + + + + Enable coin &control features + Habilitar funcionalidad de &Coin Control + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si desactiva el gasto del cambio no confirmado, no se podrá usar el cambio de una transacción hasta que se alcance al menos una confirmación. Esto afecta también a cómo se calcula su saldo. + + + + &Spend unconfirmed change + &Gastar cambio no confirmado + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + + + Map port using &UPnP + Mapear el puerto mediante &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Conectarse a la red Raven a través de un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Conectarse a través de proxy SOCKS5 (proxy predeterminado): + + + + + Proxy &IP: + Dirección &IP del proxy: + + + + + &Port: + &Puerto: + + + + + Port of the proxy (e.g. 9050) + Puerto del servidor proxy (ej. 9050) + + + + Used for reaching peers via: + Usado para alcanzar compañeros via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Conectar a la red Raven mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor. + + + + &Window + &Ventana + + + + Show only a tray icon after minimizing the window. + Minimizar la ventana a la bandeja de iconos del sistema. + + + + &Minimize to the tray instead of the taskbar + &Minimizar a la bandeja en vez de a la barra de tareas + + + + M&inimize on close + M&inimizar al cerrar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Interfaz + + + + User Interface &language: + I&dioma de la interfaz de usuario + + + + The user interface language can be set here. This setting will take effect after restarting %1. + El idioma de la interfaz de usuario puede establecerse aquí. Esta configuración tendrá efecto tras reiniciar %1. + + + + &Unit to show amounts in: + &Unidad en la cual mostrar las cantidades: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían ravens. + + + + Whether to show coin control features or not. + Mostrar o no funcionalidad de Coin Control + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Aceptar + + + + &Cancel + &Cancelar + + + + default + predeterminado + + + + none + Ninguna + + + + Confirm options reset + Confirme el restablecimiento de las opciones + + + + + Client restart required to activate changes. + Se necesita reiniciar el cliente para activar los cambios. + + + + Client will be shut down. Do you want to proceed? + El cliente se cerrará. ¿Desea continuar? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Este cambio exige el reinicio del cliente. + + + + The supplied proxy address is invalid. + La dirección proxy indicada es inválida. + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + + + Watch-only: + De observación: + + + + Available: + Disponible: + + + + Your current spendable balance + Su saldo disponible actual + + + + Pending: + Pendiente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transacciones pendientes de confirmar y que aún no contribuye al saldo disponible + + + + Immature: + No madurado: + + + + Mined balance that has not yet matured + Saldo recién minado que aún no ha madurado. + + + + Total: + Total: + + + + Your current total balance + Su saldo actual total + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Su saldo actual en direcciones watch-only + + + + Spendable: + Gastable: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transacciones recientes + + + + Unconfirmed transactions to watch-only addresses + Transacciones sin confirmar en direcciones watch-only + + + + Mined balance in watch-only addresses that has not yet matured + Saldo minado en direcciones watch-only que aún no ha madurado + + + + Current total balance in watch-only addresses + Saldo total en las direcciones watch-only + + + + Send Asset + Enviar Activo + + + + Copy Amount + Copiar Monto + + + + Copy Name + Copiar nombre + + + + Copy Hash + Copiar Hash + + + + Issue Sub Asset + Emitir Sub Activo + + + + Issue Unique Asset + Emitir Activo Único + + + + Reissue Asset + Re-emitir Activo + + + + Open IPFS in Browser + Abrir el navegador IPFS + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fallo en la solicitud de pago + + + + Cannot start raven: click-to-pay handler + No se puede iniciar raven: encargado click-para-pagar + + + + + + URI handling + Manejo de URI + + + + Payment request fetch URL is invalid: %1 + La búsqueda de solicitud de pago URL es válida: %1 + + + + Invalid payment address %1 + Dirección de pago inválida %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI no puede ser analizado! Esto puede ser causado por una dirección Raven inválida o parametros URI mal formados. + + + + Payment request file handling + Manejo del archivo de solicitud de pago + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + ¡El archivo de solicitud de pago no puede ser leído! Esto puede ser causado por un archivo de solicitud de pago inválido. + + + + + + + + + Payment request rejected + Solicitud de pago rechazada + + + + Payment request network doesn't match client network. + La red de solicitud de pago no cimbina la red cliente. + + + + Payment request expired. + Solicitud de pago caducada. + + + + Payment request is not initialized. + La solicitud de pago no se ha iniciado. + + + + Unverified payment requests to custom payment scripts are unsupported. + Solicitudes de pago sin verificar a scripts de pago habitual no se soportan. + + + + + Invalid payment request. + Solicitud de pago inválida. + + + + Requested payment amount of %1 is too small (considered dust). + Cantidad de pago solicitada de %1 es demasiado pequeña (considerado polvo). + + + + Refund from %1 + Reembolsar desde %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Solicitud de pago de %1 es demasiado grande (%2 bytes, permitidos %3 bytes). + + + + Error communicating with %1: %2 + Fallo al comunicar con %1: %2 + + + + Payment request cannot be parsed! + ¡La solicitud de pago no puede ser analizada! + + + + Bad response from server %1 + Mala respuesta desde el servidor %1 + + + + Network request error + Fallo de solicitud de red + + + + Payment acknowledged + Pago declarado + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Nodo/Servicio + + + + NodeId + ID de nodo + + + + Ping + Sonido + + + + Sent + Enviado + + + + Received + Recibido + + + + QObject + + + Amount + Cantidad + + + + Enter a Raven address (e.g. %1) + Introducir una dirección Raven (p. ej. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ninguno + + + + N/A + N/D + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 y %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 no se ha cerrado de forma segura todavía... + + + + unknown + desconocido + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Error: El directorio de datos «%1» especificado no existe. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Error: No se puede analizar el archivo de configuración: %1. Utilice únicamente la sintaxis clave=valor. + + + + Error: %1 + Error: %1 + + + + QRImageWidget + + + &Save Image... + &Guardar imagen... + + + + &Copy Image + &Copiar imagen + + + + Save QR Code + Guardar código QR + + + + PNG Image (*.png) + Imagen PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versión del cliente + + + + &Information + &Información + + + + Debug window + Ventana de depuración + + + + General + General + + + + Using BerkeleyDB version + Utilizando la versión de BerkeleyDB + + + + Datadir + Datadir + + + + Startup time + Hora de inicio + + + + Network + Red + + + + Name + Nombre + + + + Number of connections + Número de conexiones + + + + Block chain + Cadena de bloques + + + + Current number of blocks + Número actual de bloques + + + + Memory Pool + Piscina de Memoria + + + + Current number of transactions + Número actual de transacciones + + + + Memory usage + Uso de memoria + + + + &Reset + &Reset + + + + + Received + Recibido + + + + + Sent + Enviado + + + + &Peers + &Pares + + + + Banned peers + Peers Bloqueados + + + + + + Select a peer to view detailed information. + Seleccionar un par para ver su información detallada. + + + + Whitelisted + En la lista blanca + + + + Direction + Dirección + + + + Version + Versión + + + + Starting Block + Importando bloques... + + + + Synced Headers + Sincronizar Cabeceras + + + + Synced Blocks + Bloques Sincronizados + + + + &Wallet Repair + &Reparación de billetera + + + + Wallet Repair Options + Opciones de reparación de billetera + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + Los botones inferiores reiniciarán la billetera con las opciones de la linea de comando para recuperar las transacciones faltantes o reconstruir los ficheros corruptos del blockchain. + + + + Wallet Path + Ruta a la billetera + + + + Rescan blockchain files + Re-escanear archivos del blockchain + + + + Recover transactions + Recuperar transacciones + + + + Rebuild index + Reconstruir índice + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + -rescan: Re-escanear los archivos del blockchain almacenados en el disco para las transacciones faltantes en la billetera. (Proceso corto) + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Abrir el archivo de depuración %1 desde el directorio de datos actual. Puede tardar unos segundos para ficheros de gran tamaño. + + + + Decrease font size + Disminuir tamaño de letra + + + + Increase font size + Aumentar tamaño de letra + + + + Services + Servicios + + + + Ban Score + Puntuación de bloqueo + + + + Connection Time + Duración de la conexión + + + + Last Send + Ultimo envío + + + + Last Receive + Ultima recepción + + + + Ping Time + Ping + + + + The duration of a currently outstanding ping. + La duración de un ping actualmente en proceso. + + + + Ping Wait + Espera de Ping + + + + Min Ping + Sonido Mínimo + + + + Time Offset + Desplazamiento de tiempo + + + + Last block time + Hora del último bloque + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + &Tráfico de Red + + + + Totals + Total: + + + + In: + Entrante: + + + + Out: + Saliente: + + + + Debug log file + Archivo de registro de depuración + + + + Clear console + Borrar consola + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &día + + + + 1 &week + 1 &semana + + + + 1 &year + 1 &año + + + + &Disconnect + &Desconectar + + + + + + + Ban for + Prohibir para + + + + &Unban + &Unbano + + + + Are you sure you want to reindex? + ¿Está seguro que desea re-indexar? + + + + Confirm reindex + Confirmar re-indexar + + + + Welcome to the %1 RPC console. + Bienvenido a la consola RPC %1. + + + + Type <b>help</b> for an overview of available commands. + Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + Use las flechas "arriba" y "abajo" para navegar el historia, y %1 para limpiar la pantalla. + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Actividad de red deshabilitada + + + + (node id: %1) + (nodo: %1) + + + + via %1 + via %1 + + + + + never + nunca + + + + Inbound + Entrante + + + + Outbound + Saliente + + + + Yes + + + + + No + No + + + + + Unknown + Desconocido + + + + RavenGUI + + + Sign &message... + Firmar &mensaje... + + + + Synchronizing with network... + Sincronizando con la red… + + + + &Overview + &Vista general + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar vista general del monedero + + + + &Transactions + &Transacciones + + + + Browse transaction history + Examinar el historial de transacciones + + + + &Create Assets + &Crear Activo + + + + + Create new main/sub/unique assets + Crear nuevo principal/sub/único Activo + + + + &Transfer Assets + &Transferir Activos + + + + + Transfer assets to RVN addresses + Transferir Activos a la dirección RVN + + + + &Manage Assets + &Administrar Activo + + + + Manage assets you are the administrator of + + + + + &Messaging + &Mensajería + + + + + Coming Soon + Próximamente + + + + &Voting + &Votando + + + + &Restricted Assets + &Activo restringido + + + + + Manage restricted assets + Administrar Activo restringido + + + + E&xit + S&alir + + + + Quit application + Salir de la aplicación + + + + &About %1 + &Acerca de %1 + + + + Show information about %1 + Mostrar información acerca de %1 + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones... + + + + Modify configuration options for %1 + Modificar las opciones de configuración para %1 + + + + &Encrypt Wallet... + &Cifrar monedero… + + + + &Backup Wallet... + &Guardar copia del monedero... + + + + &Change Passphrase... + &Cambiar la contraseña… + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + &Ventana de depuración + + + + &Wallet Repair + &Reparación de monedero + + + + Open wallet repair options + Opciones de reparación de monedero abierto + + + + &Sending addresses... + Direcciones de &envío... + + + + &Receiving addresses... + Direcciones de &recepción... + + + + Open &URI... + Abrir &URI... + + + + &Wallet + &Monedero + + + + Ravencoin Market Price + Precio de mercado de Ravencoin + + + + Brought to you by binance.com + Patrocinado por binance.com + + + + Click to disable network activity. + Pulsar para deshabilitar la actividad de red. + + + + Network activity disabled. + Actividad de red deshabilitada. + + + + Click to enable network activity again. + Pulsar para volver a habilitar la actividad de red. + + + + Syncing Headers (%1%)... + Sincronizando cabeceras (%1%) + + + + Reindexing blocks on disk... + Reindexando bloques en disco... + + + + Send coins to a Raven address + Enviar ravens a una dirección Raven + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + Open debugging and diagnostic console + Abrir la consola de depuración y diagnóstico + + + + &Verify message... + &Verificar mensaje... + + + + Raven + Raven + + + + Wallet + Monedero + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Mostrar / Ocultar + + + + Show or hide the main Window + Mostrar u ocultar la ventana principal + + + + Encrypt the private keys that belong to your wallet + Cifrar las claves privadas de su monedero + + + + Sign messages with your Raven addresses to prove you own them + Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + Solicitar pagos (generando códigos QR e identificadores URI "raven:") + + + + Show the list of used sending addresses and labels + Mostrar la lista de direcciones de envío y etiquetas + + + + Show the list of used receiving addresses and labels + Muestra la lista de direcciones de recepción y etiquetas + + + + Open a raven: URI or payment request + Abrir un identificador URI "raven:" o una petición de pago + + + + &Command-line options + &Opciones de consola de comandos + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexando bloques en disco... + + + + Processing blocks on disk... + Procesando bloques en disco... + + + + Processed %n block(s) of transaction history. + - Cannot start raven: click-to-pay handler - No se puede iniciar raven: encargado click-para-pagar + + %1 behind + %1 atrás - URI handling - Manejo de URI + + Last received block was generated %1 ago. + El último bloque recibido fue generado hace %1. - Payment request fetch URL is invalid: %1 - La búsqueda de solicitud de pago URL es válida: %1 + + Transactions after this will not yet be visible. + Las transacciones posteriores aún no están visibles. - Invalid payment address %1 - Dirección de pago inválida %1 + + Error + Error - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI no puede ser analizado! Esto puede ser causado por una dirección Raven inválida o parametros URI mal formados. + + Warning + Aviso + + + + Information + Información + + + + Up to date + Actualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Raven + + + + %1 client + %1 cliente + + + + Connecting to peers... + Conectando a pares... + + + + Catching up... + Actualizando... + + + + Date: %1 + + Fecha: %1 + + + + + + Amount: %1 + + Amount: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Dirección: %1 + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + Activos todavía no activos + + + + Restricted Assets not yet active + Activo restringido todavía no activo + + + + HD key generation is <b>enabled</b> + La generación de clave HD está <b>habilitada</b> + + + + HD key generation is <b>disabled</b> + La generación de clave HD está <b>deshabilitada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ha ocurrido un error fatal. Raven no puede seguir seguro y se cerrará. + + + + ReceiveCoinsDialog + + + &Amount: + Cantidad + + + + &Label: + &Etiqueta: + + + + &Message: + Mensaje: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + + + R&euse an existing receiving address (not recommended) + R&eutilizar una dirección existente para recibir (no recomendado) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Raven. + + + + + An optional label to associate with the new receiving address. + Etiqueta opcional para asociar con la nueva dirección de recepción. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilice este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Para solicitar una cantidad opcional. Deje este vacío o cero para no solicitar una cantidad específica. + + + + Clear all fields of the form. + Vaciar todos los campos del formulario. + + + + Clear + Vaciar + + + + Requested payments history + Historial de pagos solicitados + + + + &Request payment + &Solicitar pago + + + + Show the selected request (does the same as double clicking an entry) + Muestra la petición seleccionada (También doble clic) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Borrar de la lista las direcciónes actualmente seleccionadas + + + + Remove + Eliminar + + + + Copy URI + Copiar URI + + + + Copy label + Copiar capa + + + + Copy message + Copiar imagen + + + + Copy amount + Copiar cantidad + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + Copiar &Dirección + + + + &Save Image... + Guardar Imagen... + + + + Request payment to %1 + Solicitar pago a %1 + + + + Payment information + Información de pago + + + + URI + URI + + + + Address + Dirección + + + + Amount + Cantidad + + + + Label + Etiqueta + + + + Message + Mensaje + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultante demasiado grande, trate de reducir el texto de etiqueta / mensaje. + + + + Error encoding URI into QR Code. + Fallo al codificar URI en código QR. + + + + RecentRequestsTableModel + + + Date + Fecha - Payment request file handling - Manejo del archivo de solicitud de pago + + Label + Etiqueta - Payment request file cannot be read! This can be caused by an invalid payment request file. - ¡El archivo de solicitud de pago no puede ser leído! Esto puede ser causado por un archivo de solicitud de pago inválido. + + Message + Mensaje - Payment request rejected - Solicitud de pago rechazada + + (no label) + (sin etiqueta) - Payment request network doesn't match client network. - La red de solicitud de pago no cimbina la red cliente. + + (no message) + (no hay mensaje) - Payment request expired. - Solicitud de pago caducada. + + (no amount requested) + (no hay solicitud de cantidad) - Payment request is not initialized. - La solicitud de pago no se ha iniciado. + + Requested + Solicitado + + + ReissueAssetDialog - Unverified payment requests to custom payment scripts are unsupported. - Solicitudes de pago sin verificar a scripts de pago habitual no se soportan. + + Coin Control Features + Características de control de moneda - Invalid payment request. - Solicitud de pago inválida. + + Inputs... + Entradas... - Requested payment amount of %1 is too small (considered dust). - Cantidad de pago solicitada de %1 es demasiado pequeña (considerado polvo). + + automatically selected + Seleccionado automáticamente - Refund from %1 - Reembolsar desde %1 + + Insufficient funds! + Fondos insuficientes! - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Solicitud de pago de %1 es demasiado grande (%2 bytes, permitidos %3 bytes). + + + Quantity: + Cantidad: - Error communicating with %1: %2 - Fallo al comunicar con %1: %2 + + Bytes: + Bytes: - Payment request cannot be parsed! - ¡La solicitud de pago no puede ser analizada! + + Amount: + Monto - Bad response from server %1 - Mala respuesta desde el servidor %1 + + Dust: + - Network request error - Fallo de solicitud de red + + Fee: + - Payment acknowledged - Pago declarado + + After Fee: + - - - PeerTableModel - User Agent - User Agent + + Change: + - Node/Service - Nodo/Servicio + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - NodeId - ID de nodo + + Custom change address + - Ping - Sonido + + + Reissue Asset + - - - QObject - Amount - Cantidad + + Select an asset to reissue: + - Enter a Raven address (e.g. %1) - Introducir una dirección Raven (p. ej. %1) + + Address: + - %1 d - %1 d + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 h - %1 h + + Verifier String: + - %1 m - %1 m + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 s - %1 s + + Warning: + - None - Ninguno + + The number of assets that will be created + - N/A - N/D + + Unit: + - %1 ms - %1 ms + + e.g. 1.00000000 + - - %n second(s) - %n segundo%n segundos - - - %n minute(s) - %n minuto%n minutos + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n hora%n horas + + + Reissuable + - - %n day(s) - %n dia%n dias + + + Change IPFS/Txid Hash + - - %n week(s) - %n semana%n semanas + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 y %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n año%n años + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 no se ha cerrado de forma segura todavía... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Error: El directorio de datos «%1» especificado no existe. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Error: No se puede analizar el archivo de configuración: %1. Utilice únicamente la sintaxis clave=valor. + + Transaction Fee: + - Error: %1 - Error: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Guardar imagen... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Copiar imagen + + Warning: Fee estimation is currently not possible. + - Save QR Code - Guardar código QR + + collapse fee-settings + - PNG Image (*.png) - Imagen PNG (*.png) + + Hide + - - - RPCConsole - N/A - N/D + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Versión del cliente + + per kilobyte + - &Information - &Información + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Ventana de depuración + + (read the tooltip) + - General - General + + Recommended: + - Using BerkeleyDB version - Utilizando la versión de BerkeleyDB + + Cus&tom: + - Datadir - Datadir + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Hora de inicio + + Confirmation time target: + - Network - Red + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Nombre + + Request Replace-By-Fee + - Number of connections - Número de conexiones + + Clear + - Block chain - Cadena de bloques + + Balance: + - Current number of blocks - Número actual de bloques + + 123.456 RVN + - Memory Pool - Piscina de Memoria + + Copy quantity + - Current number of transactions - Número actual de transacciones + + Copy amount + - Memory usage - Uso de memoria + + Copy fee + - Received - Recibido + + Copy after fee + - Sent - Enviado + + Copy bytes + - &Peers - &Pares + + Copy dust + - Banned peers - Peers Bloqueados + + Copy change + - Select a peer to view detailed information. - Seleccionar un par para ver su información detallada. + + Select an asset to reissue.. + - Whitelisted - En la lista blanca + + Select the asset you want to reissue. + - Direction - Dirección + + %1 (%2 blocks) + - Version - Versión + + Cost + - Starting Block - Importando bloques... + + Asset data couldn't be found + - Synced Headers - Sincronizar Cabeceras + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Bloques Sincronizados + + Invalid Raven Destination Address + - User Agent - User Agent + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Abrir el archivo de depuración %1 desde el directorio de datos actual. Puede tardar unos segundos para ficheros de gran tamaño. + + + Warning: Invalid Raven address + - Decrease font size - Disminuir tamaño de letra + + + Yes + - Increase font size - Aumentar tamaño de letra + + No + - Services - Servicios + + + Name + - Ban Score - Puntuación de bloqueo + + + Total Quantity + - Connection Time - Duración de la conexión + + + Units + - Last Send - Ultimo envío + + + Can Reisssue + - Last Receive - Ultima recepción + + + + IPFS Hash + - Ping Time - Ping + + + + Txid Hash + - The duration of a currently outstanding ping. - La duración de un ping actualmente en proceso. + + Verifier String + - Ping Wait - Espera de Ping + + + Current Verifier String + - Min Ping - Sonido Mínimo + + Please select a asset from the menu to display the assets current settings + - Time Offset - Desplazamiento de tiempo + + Please select a asset from the menu to display the assets updated settings + - Last block time - Hora del último bloque + + Current Quantity + - &Open - &Abrir + + Current Units + - &Console - &Consola + + Can Reissue + - &Network Traffic - &Tráfico de Red + + Unknown data hash type + - &Clear - &Vaciar + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Total: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Entrante: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Saliente: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Archivo de registro de depuración + + + %1 to %2 + - Clear console - Borrar consola + + Are you sure you want to send? + - 1 &hour - 1 &hora + + added as transaction fee + - 1 &day - 1 &día + + Total Amount %1 + - 1 &week - 1 &semana + + or + - 1 &year - 1 &año + + Confirm reissue assets + - &Disconnect - &Desconectar + + Copy + - Ban for - Prohibir para + + Transaction ID Copied + - &Unban - &Unbano + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Bienvenido a la consola RPC %1. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para vaciar la pantalla. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - ADVERTENCIA: Hay estafadores activos diciendo a los usuarios que escriban comandos aquí y robando el contenido de sus monederos. No utilice esta consola sin entender completamente la repercusión de un comando. + + (no label) + - Network activity disabled - Actividad de red deshabilitada + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (nodo: %1) + + Balance: + - via %1 - via %1 + + + Failed to create a change address + - never - nunca + + Failed to generate the correct transaction. Please try again + - Inbound - Entrante + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Saliente + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - No + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Desconocido + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - Cantidad + + + Total Amount %1 + - &Label: - &Etiqueta: + + + or + - &Message: - Mensaje: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - R&eutilizar una dirección existente para recibir (no recomendado) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Etiqueta opcional para asociar con la nueva dirección de recepción. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Utilice este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Para solicitar una cantidad opcional. Deje este vacío o cero para no solicitar una cantidad específica. + + This is an asset payment + - Clear all fields of the form. - Vaciar todos los campos del formulario. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Vaciar + + + + Memo: + - Requested payments history - Historial de pagos solicitados + + Amount: + - &Request payment - &Solicitar pago + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Muestra la petición seleccionada (También doble clic) + + &Label: + - Show - Mostrar + + Asset: + - Remove the selected entries from the list - Borrar de la lista las direcciónes actualmente seleccionadas + + The Raven address to send the payment to + - Remove - Eliminar + + Choose previously used address + - Copy URI - Copiar URI + + Alt+A + - Copy label - Copiar capa + + Paste address from clipboard + - Copy message - Copiar imagen + + Alt+P + - Copy amount - Copiar cantidad + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Código QR + + Message: + - Copy &URI - Copiar &URI + + Transfer &To: + - Copy &Address - Copiar &Dirección + + Transfer Administrator Asset + - &Save Image... - Guardar Imagen... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Solicitar pago a %1 + + This is an unauthenticated payment request. + - Payment information - Información de pago + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Dirección + + This is an authenticated payment request. + - Amount - Cantidad + + Enter a label for this address to add it to your address book + - Label - Etiqueta + + Select to view administrator assets to transfer + - Message - Mensaje + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI resultante demasiado grande, trate de reducir el texto de etiqueta / mensaje. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Fallo al codificar URI en código QR. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Fecha + + Failed to get asset metadata for: + - Label - Etiqueta + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Mensaje + + Failed to get asset outpoints from database + - (no label) - (sin etiqueta) + + Selected Balance + - (no message) - (no hay mensaje) + + Wallet Balance + - (no amount requested) - (no hay solicitud de cantidad) + + Select an administrator asset to transfer + - Requested - Solicitado + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Enviar ravens + Coin Control Features Características de Coin Control + Inputs... Entradas... + automatically selected Seleccionado automáticamente + Insufficient funds! Fondos insuficientes! + Quantity: Cantidad: + Bytes: Bytes: + Amount: Cuantía: + Fee: Tasa: + After Fee: Después de tasas: + Change: Cambio: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Si se marca esta opción pero la dirección de cambio está vacía o es inválida, el cambio se enviará a una nueva dirección recién generada. + Custom change address Dirección propia + Transaction Fee: Comisión de Transacción: + Choose... Elija... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Colapsar ajustes de comisión. + per kilobyte por kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Si la comisión se establece en 1000 satoshis y la transacción está a sólo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "el mínimo total" pagaría 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la comisión se establece en 1000 satoshis y la transacción está a sólo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "el mínimo total" pagaría 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte + Hide Ocultar - total at least - total por lo menos - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Pagar solamente la comisión mínima es correcto, siempre y cuando haya menos volumen de transacciones que el espacio en los bloques. Pero tenga en cuenta que esto puede terminar en una transacción nunca confirmada, una vez que haya más demanda para transacciones Raven que la red pueda procesar. + (read the tooltip) (leer la sugerencia) + Recommended: Recomendada: + Custom: Personalizada: + (Smart fee not initialized yet. This usually takes a few blocks...) (Aún no se ha inicializado la Comisión Inteligente. Esto generalmente tarda pocos bloques...) - normal - normal + + Request Replace-By-Fee + - fast - rápido + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Enviar a múltiples destinatarios de una vez + Add &Recipient Añadir &destinatario + Clear all fields of the form. Vaciar todos los campos del formulario + Dust: Polvo: + Confirmation time target: Objetivo de tiempo de confirmación + Clear &All Vaciar &todo + Balance: Saldo: + Confirm the send action Confirmar el envío + S&end &Enviar + Copy quantity Copiar cantidad + Copy amount Copiar cantidad + Copy fee Copiar comisión + Copy after fee Copiar después de couta + Copy bytes Copiar bytes + Copy dust Copiar polvo + Copy change Copiar cambio + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 a %2 + Are you sure you want to send? ¿Seguro que quiere enviar? + added as transaction fee añadido como comisión de transacción + Total Amount %1 Cantidad total %1 + or o + Confirm send coins Confirmar enviar monedas + The recipient address is not valid. Please recheck. La dirección de destinatario no es válida. Por favor revísela. + The amount to pay must be larger than 0. La cantidad a pagar debe de ser mayor que 0. + The amount exceeds your balance. La cantidad excede su saldo. + The total exceeds your balance when the %1 transaction fee is included. El total excede su saldo cuando la comisión de transacción de %1 es incluida. + Duplicate address found: addresses should only be used once each. Dirección duplicada encontrada: la dirección sólo debería ser utilizada una vez por cada uso. + Transaction creation failed! ¡Falló la creación de transacción! + The transaction was rejected with the following reason: %1 Se ha rechazado la transacción por la siguiente razón: %1 + A fee higher than %1 is considered an absurdly high fee. Una comisión mayor que %1 se considera una cuota irracionalmente alta. + Payment request expired. Solicitud de pago caducada. - - %n block(s) - %n bloque%n bloques - + Pay only the required fee of %1 Pagar únicamente la comisión solicitada de %1 + Estimated to begin confirmation within %n block(s). - Estimado para empezar la confirmación dentro de %n bloque.Estimado para empezar la confirmación dentro de %n bloques. + + Warning: Invalid Raven address Alerta: dirección Raven inválida + Warning: Unknown change address Alerta: dirección cambiada desconocida + Confirm custom change address Confirmar dirección de cambio personalizada + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? La dirección que ha seleccionado para cambiar no es parte de este monedero. ninguno o todos los fondos de su monedero pueden ser enviados a esta dirección. ¿Está seguro? + (no label) (sin etiqueta) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: Ca&ntidad: - Pay &To: - &Pagar a: - - + &Label: &Etiqueta: + Choose previously used address Escoger direcciones previamente usadas + This is a normal payment. Esto es un pago ordinario. + The Raven address to send the payment to Dirección Raven a la que enviar el pago + Alt+A Alt+A + Paste address from clipboard Pegar dirección desde portapapeles + Alt+P Alt+P + + + Remove this entry Eliminar esta transacción + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. La comisión será deducida de la cantidad que sea mandada. El destinatario recibirá menos ravens de la cantidad introducida en el campo Cantidad. Si hay varios destinatarios, la comisión será distribuida a partes iguales. + S&ubtract fee from amount Restar comisiones de la cantidad. + Message: Mensaje: + + Send &To: + + + + This is an unauthenticated payment request. Esta es una petición de pago no autentificada. + + + Send to: + + + + This is an authenticated payment request. Esta es una petición de pago autentificada. + Enter a label for this address to add it to the list of used addresses Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Un mensaje que se adjuntó a la raven: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Raven. - Pay To: - Paga a: - - + + Memo: Memo: + Enter a label for this address to add it to your address book Introduzca una etiqueta para esta dirección para añadirla a su lista de direcciones. @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes @@ -2316,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 se esta cerrando... + Do not shut down the computer until this window disappears. No apague el equipo hasta que desaparezca esta ventana. @@ -2327,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Firmas - Firmar / verificar un mensaje + &Sign Message &Firmar mensaje + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puede firmar los mensajes con sus direcciones para demostrar que las posee. Tenga cuidado de no firmar cualquier cosa de manera vaga o aleatoria, pues los ataques de phishing pueden tratar de engañarle firmando su identidad a través de ellos. Sólo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. + The Raven address to sign the message with Dirección Raven con la que firmar el mensaje + + Choose previously used address Escoger dirección previamente usada + + Alt+A Alt+A + Paste address from clipboard Pegar dirección desde portapapeles + Alt+P Alt+P + Enter the message you want to sign here Introduzca el mensaje que desea firmar aquí + Signature Firma + Copy the current signature to the system clipboard Copiar la firma actual al portapapeles del sistema + Sign the message to prove you own this Raven address Firmar el mensaje para demostrar que se posee esta dirección Raven + Sign &Message Firmar &mensaje + Reset all sign message fields Vaciar todos los campos de la firma de mensaje + + Clear &All Vaciar &todo + &Verify Message &Verificar mensaje - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. + The Raven address the message was signed with La dirección Raven con la que se firmó el mensaje + Verify the message to ensure it was signed with the specified Raven address Verificar el mensaje para comprobar que fue firmado con la dirección Raven indicada + Verify &Message Verificar &mensaje + Reset all verify message fields Vaciar todos los campos de la verificación de mensaje - Click "Sign Message" to generate signature - Click en "Fírmar mensaje" para generar una firma + + Click "Sign Message" to generate signature + Click en "Fírmar mensaje" para generar una firma + + The entered address is invalid. La dirección introducida no es válida. + + + + Please check the address and try again. Por favor revise la dirección e inténtelo de nuevo. + + The entered address does not refer to a key. La dirección introducida no remite a una clave. + Wallet unlock was cancelled. El desbloqueo del monedero fue cancelado. + Private key for the entered address is not available. La clave privada de la dirección introducida no está disponible. + Message signing failed. Falló la firma del mensaje. + Message signed. Mensaje firmado. + The signature could not be decoded. La firma no pudo descodificarse. + + Please check the signature and try again. Por favor compruebe la firma y pruebe de nuevo. + The signature did not match the message digest. La firma no se combinó con el mensaje. + Message verification failed. Falló la verificación del mensaje. + Message verified. Mensaje verificado. @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Abrir para %n bloque másAbrir para %n bloques más + + Open until %1 Abierto hasta %1 + conflicted with a transaction with %1 confirmations Hay un conflicto con la traducción de las confirmaciones %1 + %1/offline %1/sin conexión + 0/unconfirmed, %1 0/no confirmado, %1 + in memory pool en el equipo de memoria + not in memory pool no en el equipo de memoria + abandoned abandonado + %1/unconfirmed %1/no confirmado + %1 confirmations confirmaciones %1 + + Status Estado + + , has not been successfully broadcast yet , no ha sido emitido con éxito aún + + , broadcast through %n node(s) - , transmitir a través de %n nodo, transmitir a través de %n nodos + + + Date Fecha + Source Fuente + Generated Generado + + + + + From Desde + + unknown desconocido + + + + + To Para + + own address dirección propia + + + watch-only de observación + + label etiqueta + + + + + + + Credit Credito + matures in %n more block(s) - disponible en %n bloque másdisponible en %n bloques más + + not accepted no aceptada + + + + + Debit Enviado + Total debit Total enviado + Total credit Total recibido + Transaction fee Comisión de transacción + Net amount Cantidad neta + + + + Message Mensaje + + Comment Comentario + + Transaction ID Identificador de transacción (ID) + + Transaction total size Tamaño total de transacción + + Output index Indice de salida + + Merchant Vendedor - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Los ravens generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Los ravens generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + + + + Net RVN amount + + Debug information Información de depuración + Transaction Transacción + Inputs entradas + Amount Cantidad + + true verdadero + + false falso @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Esta ventana muestra información detallada sobre la transacción + Details for %1 Detalles para %1 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date Fecha + Type Tipo + Label Etiqueta + + + Amount + + + + + Asset + + + Open for %n more block(s) - Abrir para %n bloque másAbrir para %n bloques más + + Open until %1 Abierto hasta %1 + Offline Sin conexion + Unconfirmed Sin confirmar + Abandoned Abandonado + Confirming (%1 of %2 recommended confirmations) Confirmando (%1 de %2 confirmaciones recomendadas) + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) + Conflicted En conflicto + Immature (%1 confirmations, will be available after %2) No disponible (%1 confirmaciones. Estarán disponibles al cabo de %2) + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado! + Generated but not accepted Generado pero no aceptado + Received with Recibido con + Received from Recibidos de + Sent to Enviado a + Payment to yourself Pago proprio + Mined Minado + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only de observación + (n/a) (nd) + (no label) (sin etiqueta) + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el ratón sobre este campo para ver el número de confirmaciones. + Date and time that the transaction was received. Fecha y hora en que se recibió la transacción. + Type of transaction. Tipo de transacción. + Whether or not a watch-only address is involved in this transaction. Si una dirección watch-only está involucrada en esta transacción o no. + User-defined intent/purpose of the transaction. Descripción de la transacción definido por el usuario. + Amount removed from or added to balance. Cantidad retirada o añadida al saldo. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Todo + Today Hoy + This week Esta semana + This month Este mes + Last month Mes pasado + This year Este año + Range... Rango... + Received with Recibido con + Sent to Enviado a + To yourself A usted mismo + Mined Minado + Other Otra + Enter address or label to search Introduzca una dirección o etiqueta que buscar + Min amount Cantidad mínima + + Asset name + + + + Abandon transaction Transacción abandonada + Copy address Copiar ubicación + Copy label Copiar capa + Copy amount Copiar cantidad + Copy transaction ID Copiar ID de transacción + Copy raw transaction Copiar transacción raw + Copy full transaction details Copiar todos los detalles de la transacción + Edit label Editar etiqueta + Show transaction details Mostrar detalles de la transacción + + Browse with: + + + + Export Transaction History Exportar historial de transacciones + Comma separated file (*.csv) Archivo separado de coma (*.csv) + Confirmed Confirmado + Watch-only De observación + Date Fecha + Type Tipo + Label Etiqueta + Address Dirección + + Asset + + + + ID ID + Exporting Failed Falló la exportación + There was an error trying to save the transaction history to %1. Ha habido un error al intentar guardar la transacción con %1. + Exporting Successful Exportación finalizada + The transaction history was successfully saved to %1. La transacción ha sido guardada en %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Rango: + to para @@ -2936,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Unidad en la que se muestran las cantidades. Haga clic para seleccionar otra unidad. @@ -2943,6 +6521,7 @@ WalletFrame + No wallet has been loaded. No se ha cargado ningún monedero @@ -2950,974 +6529,1769 @@ WalletModel + Send Coins Enviar + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportar + Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña + Backup Wallet Copia de seguridad del monedero + Wallet Data (*.dat) Datos de monedero (*.dat) + Backup Failed La copia de seguridad ha fallado + There was an error trying to save the wallet data to %1. Ha habido un error al intentar guardar los datos del monedero en %1. + Backup Successful Se ha completado con éxito la copia de respaldo + The wallet data was successfully saved to %1. Los datos del monedero se han guardado con éxito en %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opciones: + Specify data directory Especificar directorio para los datos + Connect to a node to retrieve peer addresses, and disconnect Conectar a un nodo para obtener direcciones de pares y desconectar + Specify your own public address Especifique su propia dirección pública + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Aceptar conexiones desde el exterior (predeterminado: 1 si no -proxy o -connect/-desconectar) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Conectar sólo al nodo(s) especificado; -no conectar or -conectar=solo 0 para deshabilitar conexiones automáticas - - + Distributed under the MIT software license, see the accompanying file %s or %s Distribuido bajo la licencia de software MIT, vea el archivo adjunto %s o %s + If <category> is not supplied or if <category> = 1, output all debugging information. Si <category> no es proporcionado o si <category> =1, muestra toda la información de depuración. + Prune configured below the minimum of %d MiB. Please use a higher number. La Poda se ha configurado por debajo del minimo de %d MiB. Por favor utiliza un valor mas alto. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Poda: la ultima sincronizacion del monedero sobrepasa los datos podados. Necesitas reindexar con -reindex (o descargar la cadena de bloques de nuevo en el caso de un nodo podado) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Nos es posible re-escanear en modo podado.Necesitas utilizar -reindex el cual descargara la cadena de bloques al completo de nuevo. + Error: A fatal internal error occurred, see debug.log for details Un error interno fatal ocurrió, ver debug.log para detalles + Fee (in %s/kB) to add to transactions you send (default: %s) Comisión (en %s/KB) para agregar a las transacciones que envíe (por defecto: %s) + Pruning blockstore... Poda blockstore ... + Run in the background as a daemon and accept commands Ejecutar en segundo plano como daemon y aceptar comandos + Unable to start HTTP server. See debug log for details. No se ha podido comenzar el servidor HTTP. Ver debug log para detalles. + Raven Core Raven Core + The %s developers Los desarrolladores de %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Una comision (en %s/kB) que sera usada cuando las estimacion de comision no disponga de suficientes datos (predeterminado: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Aceptar transacciones retransmitidas recibidas desde nodos en la lista blanca incluso cuando no estés retransmitiendo transacciones (predeterminado: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + No se puede bloquear el directorio %s. %s ya se está ejecutando. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - No se puede bloquear el directorio %s. %s ya se está ejecutando. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Borrar todas las transacciones del monedero y sólo recuperar aquellas partes de la cadena de bloques por medio de -rescan on startup. - Error loading %s: You can't enable HD on a already existing non-HD wallet - Error cargando %s: No puede habilitar HD en un monedero existente que no es HD - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Error leyendo %s!. Todas las claves se han leido correctamente, pero los datos de transacciones o la libreta de direcciones pueden faltar o ser incorrectos. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Transacciones extra a mantener en la memoria para reconstrucciones de bloque compacto (predeterminado: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Si este bloque está en la cadena asuma que sus predecesores y él son válidos y potencialmente se saltan su script de verificación (0 para verificar todo, predeterminado: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Ajuste máximo permitido del tiempo offset medio de pares. La perspectiva local de tiempo se verá influenciada por los pares anteriores y posteriores a esta cantidad. (Por defecto: %u segundos) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Máximas comisiones totales (en %s) para utilizar en una sola transacción del monedero; establecer esto demasiado bajo puede abortar grandes transacciones (predeterminado: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Por favor, compruebe si la fecha y hora en su computadora son correctas! Si su reloj esta mal, %s no trabajara correctamente. + Please contribute if you find %s useful. Visit %s for further information about the software. Contribuya si encuentra %s de utilidad. Visite %s para mas información acerca del programa. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Reducir los requerimientos de almacenamiento habilitando la poda (eliminación) de los bloques viejos. Esto permite que la cadena de bloqueo RPC sea llamada para eliminar bloques específicos, y habilita la poda automática de bloques viejos si se provee el tamaño de un objetivo en MiB. Este modo es incompatible con -txindex and -rescan. Precaución: Revertir este ajuste requiere volver a descargar la cadena de bloqueo completa. (predefinido: 0 = deshabilita bloques de poda, 1 = permite la poda manual mediante RPC, >%u = elimina automáticamente los archivos de bloqueo para permanecer bajo el tamaño del objetivo especificado en MiB) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Establecer la tasa más baja (en %s/kB) por transacciones para incluirse en la creación de bloque. (predeterminado: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Establecer el número de hilos (threads) de verificación de scripts (entre %u y %d, 0 = automático, <0 = dejar libres ese número de núcleos; predeterminado: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct La base de datos de bloques contiene un bloque que parece ser del futuro. Esto puede ser porque la fecha y hora de tu ordenador están mal ajustados. Reconstruye la base de datos de bloques solo si estas seguro de que la fecha y hora de tu ordenador estan ajustados correctamente. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Esta es una versión de prueba prelanzada - utilícelo a su propio riesgo - no lo utilice para aplicaciones de minería o comerciales + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain No es posible reconstruir la base de datos a un estado anterior. Debe descargar de nuevo la cadena de bloques. + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Utiliza UPnP para asignar el puerto de escucha (predeterminado: 1 cuando esta escuchando sin -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Nombre de usuario y contraseña numerada para conexiones JSON-RPC. El campo <userpw> viene en el formato: <USERNAME>:<SALT>$<HASH>. Un script canónico de python está incluído en compartir/usuario rpc. Entonces el cliente se conecta normalmente utilizando la pareja de argumentos usuario rpc=<USERNAME>/contraseña rpc=<PASSWORD>. Esta opción puede ser especificada múltiples veces + Wallet will not create transactions that violate mempool chain limits (default: %u) El monedero no creará transacciones que violen los límites de la cadena mempool (predeterminado: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Advertencia: ¡La red no parece coincidir del todo! Algunos mineros parecen estar experimentando problemas. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Advertencia: ¡No parecemos estar del todo con nuestros pares! Puede que necesite actualizarse, o puede que otros nodos necesiten actualizarse. - You need to rebuild the database using -reindex-chainstate to change -txindex - Necesita reconstruir la base de datos usando -reindex-chainstate para cambiar -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + %s corrupt, salvage failed %s corrupto. Fracasó la recuperacion + -maxmempool must be at least %d MB -maxmempool debe ser por lo menos de %d MB + <category> can be: <category> puede ser: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Adjunta un comentario a la linea de agente de usuario + Attempt to recover private keys from a corrupt wallet on startup Intento de recuperar claves privadas de un monedero corrupto en arranque + Block creation options: Opciones de creación de bloques: - Cannot resolve -%s address: '%s' - No se puede resolver -%s direccion: '%s' + + Cannot resolve -%s address: '%s' + No se puede resolver -%s direccion: '%s' + Chain selection options: Opciones de selección en cadena: + Change index out of range Cambio de indice fuera de rango + Connection options: Opciones de conexión: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Corrupción de base de datos de bloques detectada. + Debugging/Testing options: Opciones de depuración/pruebas: + Do not load the wallet and disable wallet RPC calls No cargar el monedero y desactivar las llamadas RPC del monedero + Do you want to rebuild the block database now? ¿Quieres reconstruir la base de datos de bloques ahora? + Enable publish hash block in <address> Activar publicar bloque .hash en <.Address> + Enable publish hash transaction in <address> Activar publicar transacción .hash en <.Address> + Enable publish raw block in <address> Habilita la publicacion de bloques en bruto en <direccion> + Enable publish raw transaction in <address> Habilitar publicar transacción en rama en <dirección> + Enable transaction replacement in the memory pool (default: %u) Habilita el reemplazamiento de transacciones en la piscina de memoria (predeterminado: %u) + Error initializing block database Error al inicializar la base de datos de bloques + Error initializing wallet database environment %s! Error al inicializar el entorno de la base de datos del monedero %s + Error loading %s Error cargando %s + Error loading %s: Wallet corrupted Error cargando %s: Monedero dañado + Error loading %s: Wallet requires newer version of %s Error cargando %s: Monedero requiere un versión mas reciente de %s - Error loading %s: You can't disable HD on a already existing HD wallet - Error cargando %s: No puede deshabilitar HD en un monedero existente que ya es HD - - + Error loading block database Error cargando base de datos de bloques + Error opening block database Error al abrir base de datos de bloques. + Error: Disk space is low! Error: ¡Espacio en disco bajo! + Failed to listen on any port. Use -listen=0 if you want this. Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. + Importing... Importando... + Incorrect or no genesis block found. Wrong datadir for network? Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? + Initialization sanity check failed. %s is shutting down. La inicialización de la verificación de validez falló. Se está apagando %s. - Invalid -onion address: '%s' - Dirección -onion inválida: '%s' + + Invalid amount for -%s=<amount>: '%s' + Cantidad no valida para -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Cantidad no valida para -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Cantidad inválida para -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Cantidad inválida para -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Mantener la memoria de transacciones por debajo de <n> megabytes (predeterminado: %u) + + Loading P2P addresses... + + + + Loading banlist... Cargando banlist... + Location of the auth cookie (default: data dir) Ubicación de la cookie de autenticación (default: data dir) + Not enough file descriptors available. No hay suficientes descriptores de archivo disponibles. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Sólo conectar a nodos en redes <net> (ipv4, ipv6 o onion) + Print this help message and exit Imprimir este mensaje de ayuda y salir + Print version and exit Imprimir versión y salir + Prune cannot be configured with a negative value. Pode no se puede configurar con un valor negativo. + Prune mode is incompatible with -txindex. El modo recorte es incompatible con -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Reconstruir el estado de la cadena e indice de bloques a partir de los ficheros blk*.dat en disco + Rebuild chain state from the currently indexed blocks Reconstruir el estado de la cadena a partir de los bloques indexados + + Replaying blocks... + + + + Rewinding blocks... Verificando bloques... + Set database cache size in megabytes (%d to %d, default: %d) Asignar tamaño del cache en megabytes (entre %d y %d; predeterminado: %d) - Set maximum block size in bytes (default: %d) - Establecer tamaño máximo de bloque en bytes (predeterminado: %d) - - + Specify wallet file (within data directory) Especificar archivo de monedero (dentro del directorio de datos) + The source code is available from %s. El código fuente esta disponible desde %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. No se ha podido conectar con %s en este equipo. %s es posible que este todavia en ejecución. + Unsupported argument -benchmark ignored, use -debug=bench. El argumento -benchmark no es soportado y ha sido ignorado, utiliza -debug=bench + Unsupported argument -debugnet ignored, use -debug=net. Parámetros no compatibles -debugnet ignorados , use -debug = red. + Unsupported argument -tor found, use -onion. Parámetros no compatibles -tor encontrados, use -onion . + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Usar UPnP para asignar el puerto de escucha (predeterminado:: %u) + Use the test chain Utilice la cadena de prueba + User Agent comment (%s) contains unsafe characters. El comentario del Agente de Usuario (%s) contiene caracteres inseguros. + Verifying blocks... Verificando bloques... - Verifying wallet... - Verificando monedero... - - + Wallet %s resides outside data directory %s El monedero %s se encuentra fuera del directorio de datos %s + Wallet debugging/testing options: Opciones de depuración/pruebas de monedero: + Wallet needed to be rewritten: restart %s to complete Es necesario reescribir el monedero: reiniciar %s para completar + Wallet options: Opciones de monedero: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Permitir conexiones JSON-RPC de origen especificado. Válido para son una sola IP (por ejemplo 1.2.3.4), una red/máscara de red (por ejemplo 1.2.3.4/255.255.255.0) o una red/CIDR (e.g. 1.2.3.4/24). Esta opción se puede especificar varias veces + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Ligar a las direcciones especificadas y poner en lista blanca a los equipos conectados a ellas. Usar la notación para IPv6 [host]:puerto. - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Ligar a las direcciones especificadas para escuchar por conexiones JSON-RPC. Usar la notación para IPv6 [host]:puerto. Esta opción se puede especificar múltiples veces (por defecto: ligar a todas las interfaces) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Crear nuevos archivos con permisos por defecto del sistema, en lugar de umask 077 (sólo efectivo con la funcionalidad de monedero desactivada) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Descubra direcciones IP propias (por defecto: 1 cuando se escucha y nadie -externalip o -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Error: la escucha para conexiones entrantes falló (la escucha regresó el error %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Ejecutar un comando cuando se reciba una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Las comisiones (en %s/kB) mas pequeñas que esto se consideran como cero comisión para la retransmisión, minería y creación de la transacción (predeterminado: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Si el pago de comisión no está establecido, incluir la cuota suficiente para que las transacciones comiencen la confirmación en una media de n bloques ( por defecto :%u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Cantidad no válida para -maxtxfee=<amount>: '%s' (debe ser por lo menos la comisión mínima de %s para prevenir transacciones atascadas) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Cantidad no válida para -maxtxfee=<amount>: '%s' (debe ser por lo menos la comisión mínima de %s para prevenir transacciones atascadas) + Maximum size of data in data carrier transactions we relay and mine (default: %u) El tamaño máximo de los datos en las operaciones de transporte de datos que transmitimos y el mio (default: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Aleatorizar las credenciales para cada conexión proxy. Esto habilita la Tor stream isolation (por defecto: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Establecer tamaño máximo de las transacciones de alta prioridad/baja comisión en bytes (predeterminado: %d) - - + The transaction amount is too small to send after the fee has been deducted Monto de transacción muy pequeña luego de la deducción por comisión - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Usar tras BIP32 la generación de llave determinística jerárquica (HD) . Solo tiene efecto durante el primer inicio/generación del monedero - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway A los equipos en lista blanca no se les pueden prohibir los ataques DoS y sus transacciones siempre son retransmitidas, incluso si ya están en el mempool, es útil por ejemplo para un gateway. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Necesitas reconstruir la base de datos utilizando -reindex para volver al modo sin recorte. Esto volverá a descargar toda la cadena de bloques + (default: %u) (por defecto: %u) + Accept public REST requests (default: %u) Aceptar solicitudes públicas en FERIADOS (por defecto: %u) + Automatically create Tor hidden service (default: %d) Automáticamente crea el servicio Tor oculto (por defecto: %d) + Connect through SOCKS5 proxy Conectar usando SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Error al leer la base de datos, cerrando. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importa los bloques desde un archivo externo blk000?.dat + Information Información - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Cantidad inválida para -paytxfee=<amount>: '%s' (debe ser por lo menos %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Cantidad inválida para -paytxfee=<amount>: '%s' (debe ser por lo menos %s) - Invalid netmask specified in -whitelist: '%s' - Máscara de red inválida especificada en -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' + Máscara de red inválida especificada en -whitelist: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) Mantener como máximo <n> transacciones no conectables en memoria (por defecto: %u) - Need to specify a port with -whitebind: '%s' - Necesita especificar un puerto con -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Necesita especificar un puerto con -whitebind: '%s' + Node relay options: Opciones de nodos de retransmisión: + RPC server options: Opciones de servidor RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Reduciendo -maxconnections de %d a %d, debido a limitaciones del sistema. + Rescan the block chain for missing wallet transactions on startup Rescanea la cadena de bloques para buscar transacciones perdidas del monedero + Send trace/debug info to console instead of debug.log file Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Mandar transacciones como comisión-cero si es posible (por defecto: %u) - - + Show all debugging options (usage: --help -help-debug) Muestra todas las opciones de depuración (uso: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) + Signing transaction failed Transacción falló + The transaction amount is too small to pay the fee Cantidad de la transacción demasiado pequeña para pagar la comisión + This is experimental software. Este software es experimental. + Tor control port password (default: empty) Contraseña del puerto de control de Tor (predeterminado: vacio) + Tor control port to use if onion listening enabled (default: %s) Puerto de control de Tor a utilizar si la escucha de onion esta activada (predeterminado: %s) + Transaction amount too small Cantidad de la transacción demasiado pequeña + Transaction too large for fee policy Operación demasiado grande para la política de tasas + Transaction too large Transacción demasiado grande, intenta dividirla en varias. + Unable to bind to %s on this computer (bind returned error %s) No es posible conectar con %s en este sistema (bind ha dado el error %s) + Upgrade wallet to latest format on startup Actualizar el monedero al último formato al inicio + Username for JSON-RPC connections Nombre de usuario para las conexiones JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Aviso + Warning: unknown new rules activated (versionbit %i) Advertencia: nuevas reglas desconocidas activadas (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Si se debe o no operar en un modo de solo bloques (predeterminado: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Eliminando todas las transacciones del monedero... + ZeroMQ notification options: Opciones de notificación ZeroQM: + Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) + Allow DNS lookups for -addnode, -seednode and -connect Permitir búsquedas DNS para -addnode, -seednode y -connect - Loading addresses... - Cargando direcciones... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = mantener los meta datos de transacción, por ejemplo: propietario e información de pago, 2 = omitir los metadatos) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee tiene un ajuste muy elevado! Comisiones muy grandes podrían ser pagadas en una única transaccion. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) No mantener transacciones en la memoria mas de <n> horas (predeterminado: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Bytes equivalentes por sigop en transacciones para retrasmisión y minado (predeterminado: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Las comisiones (en %s/kB) menores que esto son consideradas de cero comision para la creacion de transacciones (predeterminado: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Fuerza la retransmisión de transacciones desde nodos en la lista blanca incluso si violan la política de retransmisiones local (predeterminado: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Nivel de rigor en la verificación de bloques de -checkblocks (0-4; predeterminado: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Mantener el índice completo de transacciones, usado por la llamada rpc de getrawtransaction (por defecto: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Número de segundos en que se evita la reconexión de pares con mal comportamiento (predeterminado: %u) + Output debugging information (default: %u, supplying <category> is optional) Mostrar depuración (por defecto: %u, proporcionar <category> es opcional) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Preguntar por direcciones pares al buscar DNS, si baja en las direcciones (predeterminado: 1 a menos que -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) https://www.transifex.com/joyful-world/breaking-english/ Establecer la serialización de las transacciones sin procesar o el bloque hex devuelto en non-verbose mode, non-segwit(O) o segwit(1) (default: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Admite filtrado de bloques, y transacciones con filtros Bloom. Reduce la carga de red. ( por defecto :%u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Esta es la tarifa de cuota que debe pagar cuando las estimaciones de tarifas no estén disponibles. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Este producto incluye software desarrollado por el Proyecto OpenSSL para utilizarlo en el juego de herramientas OpenSSL %s y software criptográfico escrito por Eric Young y software UPnP escrito por Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. La longitud total de la cadena de versión de red ( %i ) supera la longitud máxima ( %i ) . Reducir el número o tamaño de uacomments . + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Intenta de mantener el Tráfico de salida , bajo el Objetivo Determinado (en MiB por 24h) , 0 = sin limite (Por Defecto :%d ) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Error: argumento -socks encontrado. El ajuste de la versión SOCKS ya no es posible, sólo proxies SOCKS5 son compatibles. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. El argumento no soportado -whitelistalwaysrelay ha sido ignorado, utiliza -whitelistrelay y/o -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Usar distintos proxys SOCKS5 para comunicarse vía Tor de forma anónima (Por defecto: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Advertencia: Se están minando versiones de bloques desconocidas! Es posible que normas desconocidas estén activas + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Aviso: fichero de monedero corrupto, datos recuperados! Original %s guardado como %s en %s; si su balance de transacciones es incorrecto, debe restaurar desde una copia de seguridad. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Los pares de listas blancas que se conectan desde la dirección IP dada (por ejemplo, 1.2.3.4) o la red marcada CIDR (por ejemplo, 1.2.3.0/24). Se puede especificar varias veces. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! ¡%s se establece muy alto! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (predeterminado: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Siempre consultar direcciones de otros equipos por medio de DNS lookup (por defecto: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Cuántos bloques comprobar al iniciar (predeterminado: %u, 0 = todos) + Include IP addresses in debug output (default: %u) Incluir direcciones IP en la salida de depuración (por defecto: %u) - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Keypool se ha agotado, llame a keypoolrefill primero + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escuchar conexiones JSON-RPC en <puerto> (predeterminado: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escuchar conexiones en <puerto> (predeterminado: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Mantener como máximo <n> conexiones a pares (predeterminado: %u) + Make the wallet broadcast transactions Realiza las operaciones de difusión del monedero + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Búfer de recepción máximo por conexión, <n>*1000 bytes (por defecto: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Búfer de recepción máximo por conexión, , <n>*1000 bytes (por defecto: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Anteponer marca temporal a la información de depuración (por defecto: %u) + Relay and mine data carrier transactions (default: %u) Retransmitir y minar transacciones de transporte de datos (por defecto: %u) + Relay non-P2SH multisig (default: %u) Relay non-P2SH multisig (default: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Enviar transacciones con full-RBF opt-in habilitado (predeterminado: %u) + Set key pool size to <n> (default: %u) Ajustar el número de claves en reserva <n> (predeterminado: %u) + Set maximum BIP141 block weight (default: %d) Establecer peso máximo bloque BIP141 (predeterminado: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Establecer el número de procesos para llamadas del servicio RPC (por defecto: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especificar archivo de configuración (por defecto: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Especificar tiempo de espera de la conexión (mínimo: 1, por defecto: %d) + Specify pid file (default: %s) Especificar archivo pid (predeterminado: %s) + Spend unconfirmed change when sending transactions (default: %u) Usar cambio aún no confirmado al enviar transacciones (predeterminado: %u) + Starting network threads... Iniciando funciones de red... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. El monedero evitará pagar menos que la cuota de retransmisión mínima. + This is the minimum transaction fee you pay on every transaction. Esta es la tarifa mínima de transacción que usted paga en cada transacción. + This is the transaction fee you will pay if you send a transaction. Esta es la cuota de transacción que pagará si envía una transacción. + Threshold for disconnecting misbehaving peers (default: %u) Umbral para la desconexión de pares con mal comportamiento (predeterminado: %u) + Transaction amounts must not be negative Las cantidades de transacción no deben ser negativa + Transaction has too long of a mempool chain La transacción tiene demasiado tiempo de una cadena de mempool + Transaction must have at least one recipient La transacción debe de tener al menos un receptor - Unknown network specified in -onlynet: '%s' - La red especificada en -onlynet '%s' es desconocida + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + La red especificada en -onlynet '%s' es desconocida + + + Insufficient funds Fondos insuficientes + Loading block index... Cargando el índice de bloques... - Add a node to connect to and attempt to keep the connection open - Añadir un nodo al que conectarse y tratar de mantener la conexión abierta - - + Loading wallet... Cargando monedero... + Cannot downgrade wallet No se puede cambiar a una versión mas antigua el monedero - Cannot write default address - No se puede escribir la dirección predeterminada - - + Rescanning... Reexplorando... - Done loading - Se terminó de cargar - - + Error Error diff --git a/src/qt/locale/raven_es_AR.ts b/src/qt/locale/raven_es_AR.ts index 1b1c5ced65..f0e16616e7 100644 --- a/src/qt/locale/raven_es_AR.ts +++ b/src/qt/locale/raven_es_AR.ts @@ -1,177 +1,8288 @@ - - - + AddressBookPage + Right-click to edit address or label Hacé click para editar la dirección o etiqueta + Create a new address Crear una nueva dirección + &New &Nuevo + Copy the currently selected address to the system clipboard Copiá la dirección que seleccionaste al portapapeles + &Copy &Copiar + C&lose C&lose + Delete the currently selected address from the list Borrar de la lista la dirección seleccionada + Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo + &Export &Exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Diálogo de Frase de Contraseña + Enter passphrase Ingresar la Frase de Contraseña + New passphrase Nueva Frase de Contraseña + Repeat new passphrase Repetí la nueva Frase de Contraseña - - - BanTableModel - - - RavenGUI - - - CoinControlDialog - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - WalletModel - + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView - + AssetTableModel + + + Name + + + + + Quantity + + + - raven-core - + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_es_CL.ts b/src/qt/locale/raven_es_CL.ts index b1c4bf9dd4..f2ec814521 100644 --- a/src/qt/locale/raven_es_CL.ts +++ b/src/qt/locale/raven_es_CL.ts @@ -1,858 +1,8297 @@ - - - + AddressBookPage + Right-click to edit address or label Haga clic para editar la dirección o etiqueta + Create a new address Crea una nueva dirección + &New y nueva + Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles + &Copy y copiar + C&lose C y perder + Delete the currently selected address from the list Eliminar la dirección seleccionada de la lista + Export the data in the current tab to a file Exportar los datos de la pestaña actual a un archivo + &Export y exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Introduce contraseña actual + New passphrase Nueva contraseña + Repeat new passphrase Repite nueva contraseña - - - BanTableModel - - - RavenGUI - Sign &message... - Firmar &Mensaje... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Synchronizing with network... - Sincronizando con la red... + + Encrypt wallet + - &Overview - &Vista general + + This operation needs your wallet passphrase to unlock the wallet. + - Show general overview of wallet - Muestra una vista general de la billetera + + Unlock wallet + - &Transactions - &Transacciones + + This operation needs your wallet passphrase to decrypt the wallet. + - Browse transaction history - Explora el historial de transacciónes + + Decrypt wallet + - E&xit - &Salir + + Change passphrase + - Quit application - Salir del programa + + Enter the old passphrase and new passphrase to the wallet. + - &About %1 - S&obre %1 + + Confirm wallet encryption + - About &Qt - Acerca de + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Show information about Qt - Mostrar Información sobre Qt + + Are you sure you wish to encrypt your wallet? + - &Options... - &Opciones + + + Wallet encrypted + - &Encrypt Wallet... - &Codificar la billetera... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - &Backup Wallet... - &Respaldar billetera... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Change Passphrase... - &Cambiar la contraseña... + + + + + Wallet encryption failed + - &Sending addresses... - Mandando direcciones + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Receiving addresses... - Recibiendo direcciones + + + The supplied passphrases do not match. + - Open &URI... - Abrir y url... + + Wallet unlock failed + - Reindexing blocks on disk... - Cargando el index de bloques... + + + + The passphrase entered for the wallet decryption was incorrect. + - Send coins to a Raven address - Enviar monedas a una dirección raven + + Wallet decryption failed + - Backup wallet to another location - Respaldar billetera en otra ubicación + + Wallet passphrase was successfully changed. + - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para la codificación de la billetera + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Debug window - Ventana &Debug + + Asset Selection + - Open debugging and diagnostic console - Abre consola de depuración y diagnóstico + + Quantity: + - &Verify message... - Verificar mensaje.... + + Bytes: + - Raven - Raven + + Amount: + - Wallet - Cartera + + Dust: + - &Send - &Envía + + Fee: + - &Receive - y recibir + + After Fee: + - &Show / Hide - &Mostrar/Ocultar + + Change: + - Sign messages with your Raven addresses to prove you own them - Firmar un mensaje para provar que usted es dueño de esta dirección + + (un)select all + - &File - &Archivo + + Tree mode + - &Settings - &Configuración + + List mode + - &Help - &Ayuda + + View assets that you have the ownership asset for + - Tabs toolbar - Barra de pestañas + + View Administrator Assets + - Request payments (generates QR codes and raven: URIs) - Pide pagos (genera codigos QR and raven: URls) + + Asset + - Error - Error + + Amount + - Warning - Atención + + Received with label + - Information - Información + + Received with address + - Up to date - Actualizado + + Date + - Catching up... - Recuperando... + + Confirmations + - Sent transaction - Transacción enviada + + Confirmed + - Incoming transaction - Transacción entrante + + Copy address + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> + + Copy label + - Wallet is <b>encrypted</b> and currently <b>locked</b> - La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - CoinControlDialog + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + Amount: - Cantidad: + + + + + Dust: + + Fee: - comisión: - + - Amount - Cantidad + + After Fee: + - Date - Fecha + + Change: + - Confirmations - Confirmaciones + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Confirmed - Confirmado + + Custom change address + - - - EditAddressDialog - Edit Address - Editar dirección + + Transaction Fee: + - &Label - &Etiqueta + + Choose... + - &Address - &Dirección + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - - FreespaceChecker - name - Nombre + + Warning: Fee estimation is currently not possible. + - - - HelpMessageDialog - version - versión + + collapse fee-settings + - Command-line options - opciones de linea de comando + + Hide + - Usage: - Uso: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - Intro - Welcome - bienvenido + + per kilobyte + - Error - Error + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - - - ModalOverlay - Form - Formulario + + (read the tooltip) + - - - OpenURIDialog - URI: - url: + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Cantidad: + + + + Fee: + comisión: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Cantidad + + + + Received with label + + + + + Received with address + + + + + Date + Fecha + + + + Confirmations + Confirmaciones + + + + Confirmed + Confirmado + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editar dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Dirección + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + Nombre + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versión + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + opciones de linea de comando + + + + Usage: + Uso: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + bienvenido + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + url: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reestablece todas las opciones. + + + + &Reset Options + + + + + &Network + &Red + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Cartera + + + + Expert + experto + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abre automáticamente el puerto del cliente Raven en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. + + + + Map port using &UPnP + Direcciona el puerto usando &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + &IP Proxy: + + + + + &Port: + &Puerto: + + + + + Port of the proxy (e.g. 9050) + Puerto del servidor proxy (ej. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + y windows + + + + + Show only a tray icon after minimizing the window. + Muestra solo un ícono en la bandeja después de minimizar la ventana + + + + &Minimize to the tray instead of the taskbar + &Minimiza a la bandeja en vez de la barra de tareas + + + + M&inimize on close + M&inimiza a la bandeja al cerrar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Mostrado + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unidad en la que mostrar cantitades: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancela + + + + default + predeterminado + + + + none + + + + + Confirm options reset + Confirmar reestablecimiento de las opciones + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Total: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantidad + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 y %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versión del Cliente + + + + &Information + &Información + + + + Debug window + Ventana Debug + + + + General + General + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Tiempo de inicio + + + + Network + Red + + + + Name + Nombre + + + + Number of connections + Número de conexiones + + + + Block chain + Bloquea cadena + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + + + + + Totals + Total: + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + Limpiar Consola + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Firmar &Mensaje... + + + + Synchronizing with network... + Sincronizando con la red... + + + + &Overview + &Vista general + + + + Node + + + + + Show general overview of wallet + Muestra una vista general de la billetera + + + + &Transactions + &Transacciones + + + + Browse transaction history + Explora el historial de transacciónes + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Salir + + + + Quit application + Salir del programa + + + + &About %1 + S&obre %1 + + + + Show information about %1 + + + + + About &Qt + Acerca de + + + + Show information about Qt + Mostrar Información sobre Qt + + + + &Options... + &Opciones + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Codificar la billetera... + + + + &Backup Wallet... + &Respaldar billetera... + + + + &Change Passphrase... + &Cambiar la contraseña... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Mandando direcciones + + + + &Receiving addresses... + Recibiendo direcciones + + + + Open &URI... + Abrir y url... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Cargando el index de bloques... + + + + Send coins to a Raven address + Enviar monedas a una dirección raven + + + + Backup wallet to another location + Respaldar billetera en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para la codificación de la billetera + + + + Open debugging and diagnostic console + Abre consola de depuración y diagnóstico + + + + &Verify message... + Verificar mensaje.... + + + + Raven + Raven + + + + Wallet + Cartera + + + + &Send + &Envía + + + + &Receive + y recibir + + + + &Show / Hide + &Mostrar/Ocultar + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + Firmar un mensaje para provar que usted es dueño de esta dirección + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + Pide pagos (genera codigos QR and raven: URls) + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Error + + + + Warning + Atención + + + + Information + Información + + + + Up to date + Actualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Recuperando... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La billetera esta <b>codificada</b> y actualmente <b>desbloqueda</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + La billetera esta <b>codificada</b> y actualmente <b>bloqueda</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Cantidad: + + + + &Label: + &Etiqueta: + + + + &Message: + &mensaje + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + + + + + Copy &Address + &Copia dirección + + + + &Save Image... + Guardar imagen... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Enviar monedas + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Fondos insuficientes + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Cantidad: + + + + Fee: + comisión: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Comisión transacción: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios + + + + Add &Recipient + &Agrega destinatario + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + &Borra todos + + + + Balance: + Balance: + + + + Confirm the send action + Confirma el envio + + + + S&end + &Envía + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Cantidad: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pega dirección desde portapapeles + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mensaje: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &Firmar Mensaje + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pega dirección desde portapapeles + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Escriba el mensaje que desea firmar + + + + Signature + Firma + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + Firmar un mensjage para probar que usted es dueño de esta dirección + + + + Sign &Message + Firmar Mensaje + + + + Reset all sign message fields + + + + + + Clear &All + &Borra todos + + + + &Verify Message + &Firmar Mensaje + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + &Firmar Mensaje + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [red-de-pruebas] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Esta ventana muestra información detallada sobre la transacción + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opciones: + + + + + Specify data directory + Especifica directorio para los datos + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Correr como demonio y acepta comandos + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + raven core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Error cargando blkindex.dat + + + + Error opening block database + + + + + Error: Disk space is low! + Atención: Poco espacio en el disco duro + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Usuario para las conexiones JSON-RPC + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Atención + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permite búsqueda DNS para addnode y connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - - - OptionsDialog - Options - Opciones + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - &Main - &Principal + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Reset all client options to default. - Reestablece todas las opciones. + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - &Network - &Red + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - W&allet - Cartera + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Expert - experto + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abre automáticamente el puerto del cliente Raven en el router. Esto funciona solo cuando tu router es compatible con UPnP y está habilitado. + + %s is set very high! + - Map port using &UPnP - Direcciona el puerto usando &UPnP + + ' doesn't exist in the database + - Proxy &IP: - &IP Proxy: + + ' has already been used + - &Port: - &Puerto: + + ' is not a valid character in the expression: + - Port of the proxy (e.g. 9050) - Puerto del servidor proxy (ej. 9050) + + ' the amount trying to reissue is to large + - &Window - y windows - + + (default: %s) + - Show only a tray icon after minimizing the window. - Muestra solo un ícono en la bandeja después de minimizar la ventana + + A space separated list of 12-words used to import a bip44 wallet + - &Minimize to the tray instead of the taskbar - &Minimiza a la bandeja en vez de la barra de tareas + + Always query for peer addresses via DNS lookup (default: %u) + - M&inimize on close - M&inimiza a la bandeja al cerrar + + Asset Transfer amounts must be greater than 0 + - &Display - &Mostrado + + Asset doesn't exist: + - &Unit to show amounts in: - &Unidad en la que mostrar cantitades: + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Choose the default subdivision unit to show in the interface and when sending coins. - Elige la subdivisión por defecto para mostrar cantidaded en la interfaz cuando se envien monedas + + Asset name is not valid + - &OK - &OK + + Asset with this name is already in the mempool + - &Cancel - &Cancela + + Done Loading + - default - predeterminado + + Enable publish raw asset messages in <address> + - Confirm options reset - Confirmar reestablecimiento de las opciones + + Error creating %s: You can't create non-HD wallets with this version. + - - - OverviewPage - Form - Formulario + + Error loading wallet %s. -wallet filename must be a regular file. + - Total: - Total: + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Cantidad + + Error loading wallet %s. Invalid characters in -wallet filename. + - N/A - N/A + + Error not set + - %1 and %2 - %1 y %2 + + Error writing bip 39 passphrase to database + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + Error writing bip 39 vchseed to database + - Client version - Versión del Cliente + + Error writing bip 39 words to database + - &Information - &Información + + Every '(' must have a corresponding ')' in the expression: + - Debug window - Ventana Debug + + Failed to extract destination from change script + - General - General + + Failed to find restricted asset change address from inputs + - Startup time - Tiempo de inicio + + Failed to get asset data from script + - Network - Red + + Failed to get verifier string from output: + - Name - Nombre + + Failed to load Assets Database + - Number of connections - Número de conexiones + + Flag must be 1 or 0 + - Block chain - Bloquea cadena + + How many blocks to check at startup (default: %u, 0 = all) + - Version - version - + + Include IP addresses in debug output (default: %u) + - &Open - &Abrir + + Init Message Channels - Scanning Asset Transactions + - &Console - &Consola + + Insufficient asset funds + - Totals - Total: + + Invalid Qualifier Name: + - Clear console - Limpiar Consola + + Invalid expressions in verifier string: + - - - ReceiveCoinsDialog - &Amount: - Cantidad: + + Invalid parameter: amount must be + - &Label: - &Etiqueta: + + Invalid parameter: amount must be between + - &Message: - &mensaje + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - ReceiveRequestDialog - QR Code - Código QR + + Invalid parameter: asset amount greater than max money: + - Copy &Address - &Copia dirección + + Invalid parameter: asset_name ' + - &Save Image... - Guardar imagen... + + Invalid parameter: has_ipfs must be 0 or 1. + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Enviar monedas + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Insufficient funds! - Fondos insuficientes + + Invalid parameter: reissuable must be 0 or 1 + - Amount: - Cantidad: + + Invalid parameter: reissuable must be 0 + - Fee: - comisión: - + + Invalid parameter: units must be + - Transaction Fee: - Comisión transacción: + + Invalid parameter: units must be between 0-8. + - normal - normal + + Invalid syntax: + - fast - rapido + + Keypool ran out, please call keypoolrefill first + - Send to multiple recipients at once - Enviar a múltiples destinatarios + + Length is to large. Please use a smaller length + - Add &Recipient - &Agrega destinatario + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Clear &All - &Borra todos + + Listen for connections on <port> (default: %u or testnet: %u) + - Balance: - Balance: + + Maintain at most <n> connections to peers (default: %u) + - Confirm the send action - Confirma el envio + + Make the wallet broadcast transactions + - S&end - &Envía + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - - - SendCoinsEntry - A&mount: - Cantidad: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Pay &To: - &Pagar a: + + Mempool cleared + - &Label: - &Etiqueta: + + Multiple verifier strings found in transaction + - Alt+A - Alt+A + + Passphrase securing your 12-word mnemonic word-list + - Paste address from clipboard - Pega dirección desde portapapeles + + Prepend debug output with timestamp (default: %u) + - Alt+P - Alt+P + + Relay and mine data carrier transactions (default: %u) + - Message: - Mensaje: + + Relay non-P2SH multisig (default: %u) + - Pay To: - Pagar a: + + Restricted asset transfer from address that has been frozen + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - &Sign Message - &Firmar Mensaje + + Send transactions with full-RBF opt-in enabled (default: %u) + - Alt+A - Alt+A + + Set key pool size to <n> (default: %u) + - Paste address from clipboard - Pega dirección desde portapapeles + + Set maximum BIP141 block weight (default: %d) + - Alt+P - Alt+P + + Set the Maximum reorg depth (default: %u) + - Enter the message you want to sign here - Escriba el mensaje que desea firmar + + Set the number of threads to service RPC calls (default: %d) + - Signature - Firma + + Signing asset transaction failed + - Sign the message to prove you own this Raven address - Firmar un mensjage para probar que usted es dueño de esta dirección + + Specify configuration file (default: %s) + - Sign &Message - Firmar Mensaje + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Clear &All - &Borra todos + + Specify pid file (default: %s) + - &Verify Message - &Firmar Mensaje + + Spend unconfirmed change when sending transactions (default: %u) + - Verify &Message - &Firmar Mensaje + + Starting network threads... + - - - SplashScreen - [testnet] - [red-de-pruebas] + + The symbol: ' + - - - TrafficGraphWidget - KB/s - KB/s + + The verifier string has two operators without a tag between them + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Esta ventana muestra información detallada sobre la transacción + + The wallet will avoid paying less than the minimum relay fee. + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opciones: - + + This is the minimum transaction fee you pay on every transaction. + - Specify data directory - Especifica directorio para los datos - + + This is the transaction fee you will pay if you send a transaction. + - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + + Threshold for disconnecting misbehaving peers (default: %u) + - Run in the background as a daemon and accept commands - Correr como demonio y acepta comandos - + + Transaction amounts must not be negative + - Raven Core - raven core + + Transaction has too long of a mempool chain + - Error loading block database - Error cargando blkindex.dat + + Transaction must have at least one recipient + - Error: Disk space is low! - Atención: Poco espacio en el disco duro + + Turn off the databasing the messages sent with assets (default: %u) + - Information - Información + + Unable to generate initial keys + - Send trace/debug info to console instead of debug.log file - Enviar informacion de seguimiento a la consola en vez del archivo debug.log + + Unable to get coin to verify restricted asset transfer from address + - Username for JSON-RPC connections - Usuario para las conexiones JSON-RPC - + + Unable to reissue asset: amount must be 0 or larger + - Warning - Atención + + Unable to reissue asset: asset_name ' + - Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC - + + Unable to reissue asset: reissuable is set to false + - Allow DNS lookups for -addnode, -seednode and -connect - Permite búsqueda DNS para addnode y connect - + + Unable to reissue asset: reissuable must be 0 or 1 + - Loading addresses... - Cargando direcciónes... + + Unable to reissue asset: unit must be between 8 and -1 + - Invalid -proxy address: '%s' - Dirección -proxy invalida: '%s' + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Fondos insuficientes + Loading block index... Cargando el index de bloques... - Add a node to connect to and attempt to keep the connection open - Agrega un nodo para conectarse and attempt to keep the connection open - - + Loading wallet... Cargando cartera... + Cannot downgrade wallet No es posible desactualizar la billetera - Cannot write default address - No se pudo escribir la dirección por defecto - - + Rescanning... Rescaneando... - Done loading - Carga completa - - + Error Error diff --git a/src/qt/locale/raven_es_CO.ts b/src/qt/locale/raven_es_CO.ts index dd877f5c9d..7134217b01 100644 --- a/src/qt/locale/raven_es_CO.ts +++ b/src/qt/locale/raven_es_CO.ts @@ -1,327 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label Click derecho para editar la dirección o etiqueta + Create a new address Crear una nueva dirección + &New &Nuevo + Copy the currently selected address to the system clipboard Copiar la dirección actualmente seleccionada al sistema de portapapeles + &Copy &Copiar + C&lose C&errar + Delete the currently selected address from the list Borrar la dirección actualmente seleccionada de la lista + + Export the data in the current tab to a file + + + + &Export &Exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Diálogo de contraseña + Enter passphrase Poner contraseña + New passphrase Nueva contraseña + Repeat new passphrase Repetir nueva contraseña - - - BanTableModel - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - RavenGUI + AssetControlDialog - Synchronizing with network... - Sincronizando con la red... + + Asset Selection + - Node - Nodo + + Quantity: + - Show general overview of wallet - Mostrar vista general de la billetera + + Bytes: + - &Transactions - &Transacciones + + Amount: + - E&xit - S&alir + + Dust: + - Quit application - Salir de la aplicación + + Fee: + - About &Qt - Acerca de &Qt + + After Fee: + - Show information about Qt - Mostrar información sobre Qt + + Change: + - &Options... - &Opciones + + (un)select all + - &Encrypt Wallet... - &Billetera Encriptada + + Tree mode + - &Backup Wallet... - &Billetera Copia de seguridad... + + List mode + - &Change Passphrase... - &Cambiar contraseña... + + View assets that you have the ownership asset for + - &Sending addresses... - &Enviando Direcciones... + + View Administrator Assets + - &Receiving addresses... - &Recibiendo Direcciones... + + Asset + - Open &URI... - Abrir &URL... + + Amount + - Send coins to a Raven address - Enviando monedas a una dirección de Raven + + Received with label + - Change the passphrase used for wallet encryption - Cambiar la contraseña usando la encriptación de la billetera + + Received with address + - &Debug window - &Ventana desarrollador + + Date + - Open debugging and diagnostic console - Abrir consola de diagnóstico y desarrollo + + Confirmations + - &Verify message... - &Verificar Mensaje... + + Confirmed + - Raven - Raven + + Copy address + - Wallet - Billetera + + Copy label + - &Send - &Enviar + + + Copy amount + - &Receive - &Recibir + + Copy transaction ID + - &Show / Hide - &Mostrar / Ocultar + + Lock unspent + - Show or hide the main Window - Mostrar u ocultar la Ventana Principal + + Unlock unspent + - &File - &Archivo + + Copy quantity + - &Settings - &Configuraciones + + Copy fee + - &Help - &Ayuda + + Copy after fee + - Error - Error + + Copy bytes + - - - CoinControlDialog - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Welcome - bienvenido + + Copy dust + - Error - Error + + Copy change + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView - + AssetTableModel + + + Name + + + + + Quantity + + + - raven-core + AssetsDialog - Raven Core - Raven Core + + + Send Coins + - Insufficient funds - Fondos Insuficientes + + Asset Control Features + - Loading wallet... - Cargando billetera... + + Inputs... + - Cannot write default address - No se puede escribir la dirección por defecto + + automatically selected + - Rescanning... - Reescaneando + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + - Done loading - Listo Cargando + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + bienvenido + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Sincronizando con la red... + + + + &Overview + + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar vista general de la billetera + + + + &Transactions + &Transacciones + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&alir + + + + Quit application + Salir de la aplicación + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información sobre Qt + + + + &Options... + &Opciones + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Billetera Encriptada + + + + &Backup Wallet... + &Billetera Copia de seguridad... + + + + &Change Passphrase... + &Cambiar contraseña... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Enviando Direcciones... + + + + &Receiving addresses... + &Recibiendo Direcciones... + + + + Open &URI... + Abrir &URL... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + Enviando monedas a una dirección de Raven + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña usando la encriptación de la billetera + + + + Open debugging and diagnostic console + Abrir consola de diagnóstico y desarrollo + + + + &Verify message... + &Verificar Mensaje... + + + + Raven + Raven + + + + Wallet + Billetera + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Mostrar / Ocultar + + + + Show or hide the main Window + Mostrar u ocultar la Ventana Principal + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Error + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Fondos Insuficientes + + + + Loading block index... + + + + + Loading wallet... + Cargando billetera... + + + + Cannot downgrade wallet + + + + + Rescanning... + Reescaneando + Error Error diff --git a/src/qt/locale/raven_es_DO.ts b/src/qt/locale/raven_es_DO.ts index 44696bf314..2b252dc7bb 100644 --- a/src/qt/locale/raven_es_DO.ts +++ b/src/qt/locale/raven_es_DO.ts @@ -1,1320 +1,8291 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Crear una nueva dirección + &New Nuevo + Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema + &Copy &Copiar + C&lose &Cerrar + Delete the currently selected address from the list Borrar de la lista la dirección seleccionada + Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña + &Export &Exportar + &Delete &Eliminar - - - AddressTableModel - - - AskPassphraseDialog - Passphrase Dialog - Diálogo de contraseña + + Choose the address to send coins to + - Enter passphrase - Introducir contraseña + + Choose the address to receive coins with + - New passphrase - Nueva contraseña + + C&hoose + - Repeat new passphrase - Repita la nueva contraseña + + Sending addresses + - - - BanTableModel - - - RavenGUI - Sign &message... - Firmar &mensaje... + + Receiving addresses + - Synchronizing with network... - Sincronizando con la red… + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - &Overview - &Vista general + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - Node - Nodo + + &Copy Address + - Show general overview of wallet - Mostrar vista general del monedero + + Copy &Label + - &Transactions - &Transacciones + + &Edit + - Browse transaction history - Examinar el historial de transacciones + + Export Address List + - E&xit - &Salir + + Comma separated file (*.csv) + - Quit application - Salir de la aplicación + + Exporting Failed + - About &Qt - Acerca de &Qt + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - Show information about Qt - Mostrar información acerca de Qt + + Label + - &Options... - &Opciones... + + Address + - &Encrypt Wallet... - &Cifrar monedero… + + (no label) + + + + AskPassphraseDialog - &Backup Wallet... - Copia de &respaldo del monedero... + + Passphrase Dialog + Diálogo de contraseña - &Change Passphrase... - &Cambiar la contraseña… + + Enter passphrase + Introducir contraseña - &Sending addresses... - $Enviando dirección... + + New passphrase + Nueva contraseña - &Receiving addresses... - &Recibiendo dirección + + Repeat new passphrase + Repita la nueva contraseña - Open &URI... - Abrir URI... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Reindexing blocks on disk... - Reindexando bloques en disco... + + Encrypt wallet + - Send coins to a Raven address - Enviar monedas a una dirección Raven + + This operation needs your wallet passphrase to unlock the wallet. + - Backup wallet to another location - Copia de seguridad del monedero en otra ubicación + + Unlock wallet + - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para el cifrado del monedero + + This operation needs your wallet passphrase to decrypt the wallet. + - &Debug window - Ventana de &depuración + + Decrypt wallet + - Open debugging and diagnostic console - Abrir la consola de depuración y diagnóstico + + Change passphrase + - &Verify message... - &Verificar mensaje... + + Enter the old passphrase and new passphrase to the wallet. + - Raven - Raven + + Confirm wallet encryption + - Wallet - Monedero + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Send - &Enviar + + Are you sure you wish to encrypt your wallet? + - &Receive - &Recibir + + + Wallet encrypted + - &Show / Hide - Mo&strar/ocultar + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Show or hide the main Window - Mostrar u ocultar la ventana principal + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Encrypt the private keys that belong to your wallet - Cifrar las claves privadas de su monedero + + + + + Wallet encryption failed + - Sign messages with your Raven addresses to prove you own them - Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + The supplied passphrases do not match. + - &File - &Archivo + + Wallet unlock failed + - &Settings - &Configuración + + + + The passphrase entered for the wallet decryption was incorrect. + - &Help - A&yuda + + Wallet decryption failed + - Tabs toolbar - Barra de pestañas + + Wallet passphrase was successfully changed. + - Request payments (generates QR codes and raven: URIs) - Solicitar pagos (genera codigo QR y URL's de Raven) + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Show the list of used sending addresses and labels - Mostrar la lista de direcciones de envío y etiquetas + + Asset Selection + - Show the list of used receiving addresses and labels - Muestra la lista de direcciones de recepción y etiquetas + + Quantity: + - Open a raven: URI or payment request - Abrir un raven: URI o petición de pago + + Bytes: + - &Command-line options - &Opciones de linea de comando + + Amount: + - %1 behind - %1 atrás + + Dust: + - Last received block was generated %1 ago. - El último bloque recibido fue generado hace %1. + + Fee: + - Transactions after this will not yet be visible. - Las transacciones posteriores aún no están visibles. + + After Fee: + - Error - Error + + Change: + - Warning - Aviso + + (un)select all + - Information - Información + + Tree mode + - Up to date - Actualizado + + List mode + - Catching up... - Actualizando... + + View assets that you have the ownership asset for + - Sent transaction - Transacción enviada + + View Administrator Assets + - Incoming transaction - Transacción entrante + + Asset + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + Amount + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + Received with label + - - - CoinControlDialog - Quantity: - Cantidad: + + Received with address + - Bytes: - Bytes: + + Date + - Amount: - Cuantía: + + Confirmations + - Fee: - Tasa: + + Confirmed + - After Fee: - Después de tasas: + + Copy address + - Change: - Cambio: + + Copy label + - (un)select all - (des)selecciona todos + + + Copy amount + - Tree mode - Modo arbol + + Copy transaction ID + - List mode - Modo lista + + Lock unspent + - Amount - Cantidad + + Unlock unspent + - Date - Fecha + + Copy quantity + - Confirmations - Confirmaciones + + Copy fee + - Confirmed - Confirmado + + Copy after fee + - - - EditAddressDialog - Edit Address - Editar Dirección + + Copy bytes + - &Label - &Etiqueta + + Copy dust + - The label associated with this address list entry - La etiqueta asociada con esta entrada de la lista de direcciones + + Copy change + - The address associated with this address list entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. + + (%1 locked) + - &Address - &Dirección + + yes + - - - FreespaceChecker - A new data directory will be created. - Se creará un nuevo directorio de datos. + + no + - name - nombre + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Directory already exists. Add %1 if you intend to create a new directory here. - El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. + + Can vary +/- %1 satoshi(s) per input. + - Path already exists, and is not a directory. - La ruta ya existe y no es un directorio. + + + (no label) + - Cannot create data directory here. - No se puede crear un directorio de datos aquí. + + change from %1 (%2) + + + + + (change) + - HelpMessageDialog + AssetTableModel - version - versión + + Name + - Command-line options - Opciones de la línea de órdenes + + Quantity + + + + AssetsDialog - Usage: - Uso: + + + Send Coins + - command-line options - opciones de la línea de órdenes + + Asset Control Features + - - - Intro - Welcome - Bienvenido + + Inputs... + - Use the default data directory - Utilizar el directorio de datos predeterminado + + automatically selected + - Use a custom data directory: - Utilice un directorio de datos personalizado: + + Insufficient funds! + - Error - Error + + Quantity: + - - - ModalOverlay - Form - Desde + + Bytes: + - Last block time - Hora del último bloque + + Amount: + - - - OpenURIDialog - Open URI - Abrir URI... + + Dust: + - Open payment request from URI or file - El pago requiere una URI o archivo + + Fee: + - URI: - URI: + + After Fee: + - Select payment request file - Seleccione archivo de sulicitud de pago + + Change: + - - - OptionsDialog - Options - Opciones + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - &Main - &Principal + + Custom change address + - MB - MB + + Transaction Fee: + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Dirección IP del proxy (ej. IPv4: 127.0.0.1 / IPv6: ::1) + + Choose... + - Reset all client options to default. - Restablecer todas las opciones del cliente a las predeterminadas. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Reset Options - &Restablecer opciones + + Warning: Fee estimation is currently not possible. + - &Network - &Red + + collapse fee-settings + - W&allet - Monedero + + Hide + - Expert - Experto + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + per kilobyte + - Map port using &UPnP - Mapear el puerto usando &UPnP + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Proxy &IP: - Dirección &IP del proxy: + + (read the tooltip) + - &Port: - &Puerto: + + Recommended: + - Port of the proxy (e.g. 9050) - Puerto del servidor proxy (ej. 9050) + + Custom: + - &Window - &Ventana + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Show only a tray icon after minimizing the window. - Minimizar la ventana a la bandeja de iconos del sistema. + + Confirmation time target: + - &Minimize to the tray instead of the taskbar - &Minimizar a la bandeja en vez de a la barra de tareas + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - M&inimize on close - M&inimizar al cerrar + + Request Replace-By-Fee + - &Display - &Interfaz + + Confirm the send action + - User Interface &language: - I&dioma de la interfaz de usuario + + S&end + - &Unit to show amounts in: - Mostrar las cantidades en la &unidad: + + Clear all fields of the form. + - Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían monedas. + + Clear &All + - Whether to show coin control features or not. - Mostrar o no características de control de moneda + + Transfer to multiple recipients at once + - &OK - &Aceptar + + Add &Recipient + - &Cancel - &Cancelar + + Balance: + - default - predeterminado + + Copy quantity + - none - ninguno + + Copy amount + - Confirm options reset - Confirme el restablecimiento de las opciones + + Copy fee + - Client restart required to activate changes. - Reinicio del cliente para activar cambios. + + Copy after fee + - This change would require a client restart. - Este cambio requiere reinicio por parte del cliente. + + Copy bytes + - The supplied proxy address is invalid. - La dirección proxy indicada es inválida. + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - OverviewPage + AssignQualifier - Form - Desde + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + Select Type: + - Your current spendable balance - Su balance actual gastable + + Select Qualifier: + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transacciones que deben ser confirmadas, y que no cuentan con el balance gastable necesario + + Address: + - Immature: - No disponible: + + IPFS / Hash: + - Mined balance that has not yet matured - Saldo recién minado que aún no está disponible. + + Custom Change Address + - Total: - Total: + + Check + - Your current total balance - Su balance actual total + + Clear + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Cantidad + + Submit + - %1 h - %1 h + + Assign Qualifier + - %1 m - %1 m + + Remove Qualifier + - N/A - N/D + + Data has been validated, You can now submit the qualifier request + - - - QObject::QObject - + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - QRImageWidget - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - RPCConsole + CoinControlDialog - N/A - N/D + + Coin Selection + - Client version - Versión del cliente + + Quantity: + Cantidad: - &Information - Información + + Bytes: + Bytes: - Debug window - Ventana de depuración + + Amount: + Cuantía: - General - General + + Fee: + Tasa: - Startup time - Hora de inicio + + Dust: + - Network - Red + + After Fee: + Después de tasas: - Name - Nombre + + Change: + Cambio: - Number of connections - Número de conexiones + + (un)select all + (des)selecciona todos - Block chain - Cadena de bloques + + Tree mode + Modo arbol - Current number of blocks - Número actual de bloques + + List mode + Modo lista - Last block time - Hora del último bloque + + Amount + Cantidad - &Open - &Abrir + + Received with label + - &Console - &Consola + + Received with address + - &Network Traffic - &Tráfico de Red + + Date + Fecha - &Clear - &Limpiar + + Confirmations + Confirmaciones - Totals - Total: + + Confirmed + Confirmado - In: - Dentro: + + Copy address + - Out: - Fuera: + + Copy label + - Debug log file - Archivo de registro de depuración + + + Copy amount + - Clear console - Borrar consola + + Copy transaction ID + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para limpiar la pantalla. + + Lock unspent + - Type <b>help</b> for an overview of available commands. - Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + Unlock unspent + - %1 B - %1 B + + Copy quantity + - %1 KB - %1 KB + + Copy fee + - %1 MB - %1 MB + + Copy after fee + - %1 GB - %1 GB + + Copy bytes + - - - ReceiveCoinsDialog - &Amount: - Cantidad + + Copy dust + - &Label: - &Etiqueta: + + Copy change + - &Message: - Mensaje: + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editar Dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + La etiqueta asociada con esta entrada de la lista de direcciones + + + + The address associated with this address list entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. + + + + &Address + &Dirección + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Se creará un nuevo directorio de datos. + + + + name + nombre + + + + Directory already exists. Add %1 if you intend to create a new directory here. + El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. + + + + Path already exists, and is not a directory. + La ruta ya existe y no es un directorio. + + + + Cannot create data directory here. + No se puede crear un directorio de datos aquí. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versión + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Opciones de la línea de órdenes + + + + Usage: + Uso: + + + + command-line options + opciones de la línea de órdenes + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bienvenido + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utilizar el directorio de datos predeterminado + + + + Use a custom data directory: + Utilice un directorio de datos personalizado: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Desde + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Hora del último bloque + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI... + + + + Open payment request from URI or file + El pago requiere una URI o archivo + + + + URI: + URI: + + + + Select payment request file + Seleccione archivo de sulicitud de pago + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Dirección IP del proxy (ej. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Restablecer todas las opciones del cliente a las predeterminadas. + + + + &Reset Options + &Restablecer opciones + + + + &Network + &Red + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Monedero + + + + Expert + Experto + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + + + Map port using &UPnP + Mapear el puerto usando &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Dirección &IP del proxy: + + + + + &Port: + &Puerto: + + + + + Port of the proxy (e.g. 9050) + Puerto del servidor proxy (ej. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Ventana + + + + Show only a tray icon after minimizing the window. + Minimizar la ventana a la bandeja de iconos del sistema. + + + + &Minimize to the tray instead of the taskbar + &Minimizar a la bandeja en vez de a la barra de tareas + + + + M&inimize on close + M&inimizar al cerrar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Interfaz + + + + User Interface &language: + I&dioma de la interfaz de usuario + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + Mostrar las cantidades en la &unidad: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían monedas. + + + + Whether to show coin control features or not. + Mostrar o no características de control de moneda + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Aceptar + + + + &Cancel + &Cancelar + + + + default + predeterminado + + + + none + ninguno + + + + Confirm options reset + Confirme el restablecimiento de las opciones + + + + + Client restart required to activate changes. + Reinicio del cliente para activar cambios. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Este cambio requiere reinicio por parte del cliente. + + + + The supplied proxy address is invalid. + La dirección proxy indicada es inválida. + + + + OverviewPage + + + Form + Desde + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + Su balance actual gastable + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transacciones que deben ser confirmadas, y que no cuentan con el balance gastable necesario + + + + Immature: + No disponible: + + + + Mined balance that has not yet matured + Saldo recién minado que aún no está disponible. + + + + Total: + Total: + + + + Your current total balance + Su balance actual total + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantidad + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + + + + + None + + + + + N/A + N/D + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versión del cliente + + + + &Information + Información + + + + Debug window + Ventana de depuración + + + + General + General + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Hora de inicio + + + + Network + Red + + + + Name + Nombre + + + + Number of connections + Número de conexiones + + + + Block chain + Cadena de bloques + + + + Current number of blocks + Número actual de bloques + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Hora del último bloque + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + &Tráfico de Red + + + + Totals + Total: + + + + In: + Dentro: + + + + Out: + Fuera: + + + + Debug log file + Archivo de registro de depuración + + + + Clear console + Borrar consola + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Firmar &mensaje... + + + + Synchronizing with network... + Sincronizando con la red… + + + + &Overview + &Vista general + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar vista general del monedero + + + + &Transactions + &Transacciones + + + + Browse transaction history + Examinar el historial de transacciones + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Salir + + + + Quit application + Salir de la aplicación + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Cifrar monedero… + + + + &Backup Wallet... + Copia de &respaldo del monedero... + + + + &Change Passphrase... + &Cambiar la contraseña… + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + $Enviando dirección... + + + + &Receiving addresses... + &Recibiendo dirección + + + + Open &URI... + Abrir URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexando bloques en disco... + + + + Send coins to a Raven address + Enviar monedas a una dirección Raven + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + Open debugging and diagnostic console + Abrir la consola de depuración y diagnóstico + + + + &Verify message... + &Verificar mensaje... + + + + Raven + Raven + + + + Wallet + Monedero + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + Mo&strar/ocultar + + + + Show or hide the main Window + Mostrar u ocultar la ventana principal + + + + Encrypt the private keys that belong to your wallet + Cifrar las claves privadas de su monedero + + + + Sign messages with your Raven addresses to prove you own them + Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + + &File + &Archivo + + + + &Help + A&yuda + + + + Request payments (generates QR codes and raven: URIs) + Solicitar pagos (genera codigo QR y URL's de Raven) + + + + Show the list of used sending addresses and labels + Mostrar la lista de direcciones de envío y etiquetas + + + + Show the list of used receiving addresses and labels + Muestra la lista de direcciones de recepción y etiquetas + + + + Open a raven: URI or payment request + Abrir un raven: URI o petición de pago + + + + &Command-line options + &Opciones de linea de comando + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 atrás + + + + Last received block was generated %1 ago. + El último bloque recibido fue generado hace %1. + + + + Transactions after this will not yet be visible. + Las transacciones posteriores aún no están visibles. + + + + Error + Error + + + + Warning + Aviso + + + + Information + Información + + + + Up to date + Actualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Actualizando... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Cantidad + + + + &Label: + &Etiqueta: + + + + &Message: + Mensaje: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + + + R&euse an existing receiving address (not recommended) + R&eutilizar una dirección existente para recibir (no recomendado) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Limpiar todos los campos del formulario + + + + Clear + Limpiar + + + + Requested payments history + + + + + &Request payment + &Solicitar pago + + + + Show the selected request (does the same as double clicking an entry) + Muestra la petición seleccionada (También doble clic) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Borrar de la lista las direcciónes actualmente seleccionadas + + + + Remove + Eliminar + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + Copiar &Dirección + + + + &Save Image... + Guardar Imagen... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Enviar monedas + + + + Coin Control Features + Características de control de la moneda + + + + Inputs... + Entradas... + + + + automatically selected + Seleccionado automaticamente + + + + Insufficient funds! + Fondos insuficientes! + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + Cuantía: + + + + Fee: + Tasa: + + + + After Fee: + Después de tasas: + + + + Change: + Cambio: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Al activarse, si la dirección esta vacía o es inválida, las monedas serán enviadas a una nueva dirección generada. + + + + Custom change address + Dirección propia + + + + Transaction Fee: + Comisión de transacción: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Enviar a múltiples destinatarios de una vez + + + + Add &Recipient + Añadir &destinatario + + + + Clear all fields of the form. + Limpiar todos los campos del formulario + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + Limpiar &todo + + + + Balance: + Saldo: + + + + Confirm the send action + Confirmar el envío + + + + S&end + &Enviar + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Ca&ntidad: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + Escoger dirección previamente usada + + + + This is a normal payment. + Esto es un pago ordinario. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección desde portapapeles + + + + Alt+P + Alt+P + + + + + + Remove this entry + Eliminar esta transacción + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mensaje: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Firmas - Firmar / verificar un mensaje + + + + &Sign Message + &Firmar mensaje + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Escoger dirección previamente usada + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección desde portapapeles + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduzca el mensaje que desea firmar aquí + + + + Signature + Firma + + + + Copy the current signature to the system clipboard + Copiar la firma actual al portapapeles del sistema + + + + Sign the message to prove you own this Raven address + Firmar el mensaje para demostrar que se posee esta dirección Raven + + + + Sign &Message + Firmar &mensaje + + + + Reset all sign message fields + Limpiar todos los campos de la firma de mensaje + + + + + Clear &All + Limpiar &todo + + + + &Verify Message + &Verificar mensaje + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Verificar el mensaje para comprobar que fue firmado con la dirección Raven indicada + + + + Verify &Message + Verificar &mensaje + + + + Reset all verify message fields + Limpiar todos los campos de la verificación de mensaje + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Esta ventana muestra información detallada sobre la transacción + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opciones: + + + + + Specify data directory + Especificar directorio para los datos + + + + Connect to a node to retrieve peer addresses, and disconnect + Conectar a un nodo para obtener direcciones de pares y desconectar + + + + Specify your own public address + Especifique su propia dirección pública + + + + Accept command line and JSON-RPC commands + Aceptar comandos consola y JSON-RPC + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Ejecutar en segundo plano como daemon y aceptar comandos + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Núcleo de Raven + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <category> puede ser: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Opciones de creación de bloques: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Corrupción de base de datos de bloques detectada. + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + ¿Quieres reconstruir la base de datos de bloques ahora? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Error al inicializar la base de datos de bloques + + + + Error initializing wallet database environment %s! + Error al inicializar el entorno de la base de datos del monedero %s + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Error cargando base de datos de bloques + + + + Error opening block database + Error al abrir base de datos de bloques. + + + + Error: Disk space is low! + Error: ¡Espacio en disco bajo! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + No hay suficientes descriptores de archivo disponibles. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + Especificar archivo de monedero (dentro del directorio de datos) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Verificando bloques... + + + + Wallet %s resides outside data directory %s + El monedero %s se encuentra fuera del directorio de datos %s + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Ejecutar un comando cuando se reciba una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + Opciones del sservidor RPC: + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log + + + + Show all debugging options (usage: --help -help-debug) + Mostrar todas las opciones de depuración (uso: --help -help-debug) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) + + + + Signing transaction failed + Transacción falló + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + Monto de la transacción muy pequeño + + + + Transaction too large for fee policy + + + + + Transaction too large + Transacción demasiado grande + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Nombre de usuario para las conexiones JSON-RPC + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Aviso + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Contraseña para las conexiones JSON-RPC + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir búsquedas DNS para -addnode, -seednode y -connect + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - R&euse an existing receiving address (not recommended) - R&eutilizar una dirección existente para recibir (no recomendado) + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Clear all fields of the form. - Limpiar todos los campos del formulario + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Clear - Limpiar + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - &Request payment - &Solicitar pago + + Unable to reissue asset: unit must be larger than current unit selection + - Show the selected request (does the same as double clicking an entry) - Muestra la petición seleccionada (También doble clic) + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Show - Mostrar + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Remove the selected entries from the list - Borrar de la lista las direcciónes actualmente seleccionadas + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Remove - Eliminar + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - - - ReceiveRequestDialog - QR Code - Código QR + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Copy &URI - Copiar &URI + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Copy &Address - Copiar &Dirección + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - &Save Image... - Guardar Imagen... + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Enviar monedas + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Coin Control Features - Características de control de la moneda + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Inputs... - Entradas... + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - automatically selected - Seleccionado automaticamente + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Insufficient funds! - Fondos insuficientes! + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Quantity: - Cantidad: + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Bytes: - Bytes: + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Amount: - Cuantía: + + %s is set very high! + - Fee: - Tasa: + + ' doesn't exist in the database + - After Fee: - Después de tasas: + + ' has already been used + - Change: - Cambio: + + ' is not a valid character in the expression: + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Al activarse, si la dirección esta vacía o es inválida, las monedas serán enviadas a una nueva dirección generada. + + ' the amount trying to reissue is to large + - Custom change address - Dirección propia + + (default: %s) + - Transaction Fee: - Comisión de transacción: + + A space separated list of 12-words used to import a bip44 wallet + - Send to multiple recipients at once - Enviar a múltiples destinatarios de una vez + + Always query for peer addresses via DNS lookup (default: %u) + - Add &Recipient - Añadir &destinatario + + Asset Transfer amounts must be greater than 0 + - Clear all fields of the form. - Limpiar todos los campos del formulario + + Asset doesn't exist: + - Clear &All - Limpiar &todo + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Balance: - Saldo: + + Asset name is not valid + - Confirm the send action - Confirmar el envío + + Asset with this name is already in the mempool + - S&end - &Enviar + + Done Loading + - - - SendCoinsEntry - A&mount: - Ca&ntidad: + + Enable publish raw asset messages in <address> + - Pay &To: - &Pagar a: + + Error creating %s: You can't create non-HD wallets with this version. + - &Label: - &Etiqueta: + + Error loading wallet %s. -wallet filename must be a regular file. + - Choose previously used address - Escoger dirección previamente usada + + Error loading wallet %s. Duplicate -wallet filename specified. + - This is a normal payment. - Esto es un pago ordinario. + + Error loading wallet %s. Invalid characters in -wallet filename. + - Alt+A - Alt+A + + Error not set + - Paste address from clipboard - Pegar dirección desde portapapeles + + Error writing bip 39 passphrase to database + - Alt+P - Alt+P + + Error writing bip 39 vchseed to database + - Remove this entry - Eliminar esta transacción + + Error writing bip 39 words to database + - Message: - Mensaje: + + Every '(' must have a corresponding ')' in the expression: + - Enter a label for this address to add it to the list of used addresses - Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas + + Failed to extract destination from change script + - Pay To: - Paga a: + + Failed to find restricted asset change address from inputs + - Memo: - Memo: + + Failed to get asset data from script + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Firmas - Firmar / verificar un mensaje + + Failed to get verifier string from output: + - &Sign Message - &Firmar mensaje + + Failed to load Assets Database + - Choose previously used address - Escoger dirección previamente usada + + Flag must be 1 or 0 + - Alt+A - Alt+A + + How many blocks to check at startup (default: %u, 0 = all) + - Paste address from clipboard - Pegar dirección desde portapapeles + + Include IP addresses in debug output (default: %u) + - Alt+P - Alt+P + + Init Message Channels - Scanning Asset Transactions + - Enter the message you want to sign here - Introduzca el mensaje que desea firmar aquí + + Insufficient asset funds + - Signature - Firma + + Invalid Qualifier Name: + - Copy the current signature to the system clipboard - Copiar la firma actual al portapapeles del sistema + + Invalid expressions in verifier string: + - Sign the message to prove you own this Raven address - Firmar el mensaje para demostrar que se posee esta dirección Raven + + Invalid parameter: amount must be + - Sign &Message - Firmar &mensaje + + Invalid parameter: amount must be between + - Reset all sign message fields - Limpiar todos los campos de la firma de mensaje + + Invalid parameter: asset amount can't be equal to or less than zero. + - Clear &All - Limpiar &todo + + Invalid parameter: asset amount greater than max money: + - &Verify Message - &Verificar mensaje + + Invalid parameter: asset_name ' + - Verify the message to ensure it was signed with the specified Raven address - Verificar el mensaje para comprobar que fue firmado con la dirección Raven indicada + + Invalid parameter: has_ipfs must be 0 or 1. + - Verify &Message - Verificar &mensaje + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Reset all verify message fields - Limpiar todos los campos de la verificación de mensaje + + Invalid parameter: reissuable must be 0 or 1 + - - - SplashScreen - [testnet] - [testnet] + + Invalid parameter: reissuable must be 0 + - - - TrafficGraphWidget - KB/s - KB/s + + Invalid parameter: units must be + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Esta ventana muestra información detallada sobre la transacción + + Invalid parameter: units must be between 0-8. + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opciones: - + + Invalid syntax: + - Specify data directory - Especificar directorio para los datos + + Keypool ran out, please call keypoolrefill first + - Connect to a node to retrieve peer addresses, and disconnect - Conectar a un nodo para obtener direcciones de pares y desconectar + + Length is to large. Please use a smaller length + - Specify your own public address - Especifique su propia dirección pública + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Accept command line and JSON-RPC commands - Aceptar comandos consola y JSON-RPC - + + Listen for connections on <port> (default: %u or testnet: %u) + - Run in the background as a daemon and accept commands - Ejecutar en segundo plano como daemon y aceptar comandos - + + Maintain at most <n> connections to peers (default: %u) + - Raven Core - Núcleo de Raven + + Make the wallet broadcast transactions + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - <category> can be: - <category> puede ser: + + Mempool cleared + - Block creation options: - Opciones de creación de bloques: + + Multiple verifier strings found in transaction + - Corrupted block database detected - Corrupción de base de datos de bloques detectada. + + Passphrase securing your 12-word mnemonic word-list + - Do you want to rebuild the block database now? - ¿Quieres reconstruir la base de datos de bloques ahora? + + Prepend debug output with timestamp (default: %u) + - Error initializing block database - Error al inicializar la base de datos de bloques + + Relay and mine data carrier transactions (default: %u) + - Error initializing wallet database environment %s! - Error al inicializar el entorno de la base de datos del monedero %s + + Relay non-P2SH multisig (default: %u) + - Error loading block database - Error cargando base de datos de bloques + + Restricted asset transfer from address that has been frozen + - Error opening block database - Error al abrir base de datos de bloques. + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error: Disk space is low! - Error: ¡Espacio en disco bajo! + + Set key pool size to <n> (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. + + Set maximum BIP141 block weight (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? + + Set the Maximum reorg depth (default: %u) + - Invalid -onion address: '%s' - Dirección -onion inválida: '%s' + + Set the number of threads to service RPC calls (default: %d) + - Not enough file descriptors available. - No hay suficientes descriptores de archivo disponibles. + + Signing asset transaction failed + - Set maximum block size in bytes (default: %d) - Establecer tamaño máximo de bloque en bytes (por defecto: %d) + + Specify configuration file (default: %s) + - Specify wallet file (within data directory) - Especificar archivo de monedero (dentro del directorio de datos) + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verifying blocks... - Verificando bloques... + + Specify pid file (default: %s) + - Verifying wallet... - Verificando monedero... + + Spend unconfirmed change when sending transactions (default: %u) + - Wallet %s resides outside data directory %s - El monedero %s se encuentra fuera del directorio de datos %s + + Starting network threads... + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Ejecutar un comando cuando se reciba una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) + + The symbol: ' + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Establecer tamaño máximo de las transacciones de alta prioridad/comisión baja en bytes (por defecto: %d) + + The verifier string has two operators without a tag between them + - Information - Información + + The wallet will avoid paying less than the minimum relay fee. + - RPC server options: - Opciones del sservidor RPC: + + This is the minimum transaction fee you pay on every transaction. + - Send trace/debug info to console instead of debug.log file - Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log + + This is the transaction fee you will pay if you send a transaction. + - Show all debugging options (usage: --help -help-debug) - Mostrar todas las opciones de depuración (uso: --help -help-debug) + + Threshold for disconnecting misbehaving peers (default: %u) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) + + Transaction amounts must not be negative + - Signing transaction failed - Transacción falló + + Transaction has too long of a mempool chain + - Transaction amount too small - Monto de la transacción muy pequeño + + Transaction must have at least one recipient + - Transaction too large - Transacción demasiado grande + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - Nombre de usuario para las conexiones JSON-RPC - + + Unable to generate initial keys + - Warning - Aviso + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Contraseña para las conexiones JSON-RPC - + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Permitir búsquedas DNS para -addnode, -seednode y -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Cargando direcciones... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - La red especificada en -onlynet '%s' es desconocida + + Unknown network specified in -onlynet: '%s' + La red especificada en -onlynet '%s' es desconocida + Insufficient funds Fondos insuficientes + Loading block index... Cargando el índice de bloques... - Add a node to connect to and attempt to keep the connection open - Añadir un nodo al que conectarse y tratar de mantener la conexión abierta - - + Loading wallet... Cargando monedero... + Cannot downgrade wallet No se puede rebajar el monedero - Cannot write default address - No se puede escribir la dirección predeterminada - - + Rescanning... Reexplorando... - Done loading - Generado pero no aceptado - - + Error Error diff --git a/src/qt/locale/raven_es_ES.ts b/src/qt/locale/raven_es_ES.ts index 9ce3f630c4..5dbc51bc47 100644 --- a/src/qt/locale/raven_es_ES.ts +++ b/src/qt/locale/raven_es_ES.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Haz clic derecho para editar la dirección o etiqueta + Create a new address Crear una nueva dirección + &New &Nuevo + Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema + &Copy &Copiar + C&lose C&errar + Delete the currently selected address from the list Eliminar la dirección seleccionada de la lista + Export the data in the current tab to a file Exportar los datos en la ficha actual a un archivo + &Export &Exportar + &Delete &Eliminar + Choose the address to send coins to Seleccione la dirección a la que enviar monedas + Choose the address to receive coins with Seleccione la dirección de la que recibir monedas + C&hoose E&scoger + Sending addresses Enviando direcciones + Receiving addresses Recibiendo direcciones + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Estas son sus direcciones Raven para enviar pagos. Verifique siempre la cantidad y la dirección de recibimiento antes de enviar monedas. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estas son sus direcciones Raven para recibir pagos. Se recomienda utilizar una nueva dirección de recibimiento para cada transacción + &Copy Address &Copiar Dirección + Copy &Label Copiar &Etiqueta + &Edit &Editar + Export Address List Exportar lista de direcciones + Comma separated file (*.csv) Archivo separado de coma (*.csv) + Exporting Failed Falló la exportación + There was an error trying to save the address list to %1. Please try again. Había un error intentando guardar la lista de direcciones en %1. Por favor inténtelo de nuevo. @@ -103,14 +125,17 @@ AddressTableModel + Label Etiqueta + Address Dirección + (no label) (sin etiqueta) @@ -118,2015 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Diálogo de contraseña + Enter passphrase Introducir contraseña + New passphrase Nueva contraseña + Repeat new passphrase Repita la nueva contraseña + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Introduzca la nueva frase clave del monedero. <br/>Por favor utilice una frase clave de <b>diez o más carácteres aleatorios</b>, o <b>ocho o más palabras</b>. + Encrypt wallet Monedero encriptado + This operation needs your wallet passphrase to unlock the wallet. Esta operación necesita su frase clave de monedero para desbloquear el monedero. + Unlock wallet Desbloquear monedero + This operation needs your wallet passphrase to decrypt the wallet. Esta operación necesita su frase clave de cartera para desencriptar el monedero. + Decrypt wallet Desencriptar monedero + Change passphrase Cambiar frase clave + Enter the old passphrase and new passphrase to the wallet. Introduzca la vieja frase clave y la nueva flase clave para el monedero. + Confirm wallet encryption Confirmar encriptación del monedero + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Advertencia: Si encripta su monedero y pierde su frase clave <b>PERDERÁ TODOS SUS RAVENS</b>! + Are you sure you wish to encrypt your wallet? ¿Seguro que desea encriptar su monedero? + + Wallet encrypted Monedero encriptado + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 se cerrará ahora para terminar el proceso de encriptación. Recuerde que encriptar su monedero no puede proteger completamente su monedero de ser robado por malware que infecte su ordenador. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Cualquier copia de seguridad anterior que haya hecho en su archivo de monedero debería ser reemplazada con el archivo de monedero encriptado generado recientemente. Por razones de seguridad, las copias de seguridad anteriores del archivo de monedero desencriptado serán inútiles en cuanto empiece a utilizar el nuevo monedero encriptado. + + + + Wallet encryption failed Fracasó la encriptación de monedero + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Falló la encriptación del monedero debido a un error interno. Su monedero no fue encriptado. + + The supplied passphrases do not match. La frase clave introducida no coincide. + Wallet unlock failed Fracasó el desbloqueo del monedero + + + The passphrase entered for the wallet decryption was incorrect. La frase clave introducida para la encriptación del monedero es incorrecta. + Wallet decryption failed Fracasó la encriptación del monedero + Wallet passphrase was successfully changed. La frase clave del monedero se ha cambiado con éxito. + + Warning: The Caps Lock key is on! Alerta: ¡La clave de bloqueo Caps está activa! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Máscara + + Asset Selection + - Banned Until - Bloqueado Hasta + + Quantity: + - - - RavenGUI - Sign &message... - Firmar &mensaje... + + Bytes: + - Synchronizing with network... - Sincronizando con la red… + + Amount: + - &Overview - &Vista general + + Dust: + - Node - Nodo + + Fee: + - Show general overview of wallet - Mostrar vista general del monedero + + After Fee: + - &Transactions - &Transacciones + + Change: + - Browse transaction history - Examinar el historial de transacciones + + (un)select all + - E&xit - S&alir + + Tree mode + - Quit application - Salir de la aplicación + + List mode + - &About %1 - &Acerca de %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mostrar información acerca de %1 + + View Administrator Assets + - About &Qt - Acerca de &Qt + + Asset + - Show information about Qt - Mostrar información acerca de Qt + + Amount + - &Options... - &Opciones... + + Received with label + - Modify configuration options for %1 - Modificar las opciones de configuración para %1 + + Received with address + - &Encrypt Wallet... - &Cifrar monedero… + + Date + - &Backup Wallet... - &Guardar copia del monedero... + + Confirmations + - &Change Passphrase... - &Cambiar la contraseña… + + Confirmed + - &Sending addresses... - Direcciones de &envío... + + Copy address + - &Receiving addresses... - Direcciones de &recepción... + + Copy label + - Open &URI... - Abrir &URI... + + + Copy amount + - Click to disable network activity. - Haz click para desactivar la actividad de red. + + Copy transaction ID + - Network activity disabled. - Actividad de red desactivada. + + Lock unspent + - Click to enable network activity again. - Haz click para reactivar la actividad de red. + + Unlock unspent + - Syncing Headers (%1%)... - Sincronizando cabeceras (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Reindexando bloques en disco... + + Copy fee + - Send coins to a Raven address - Enviar ravens a una dirección Raven + + Copy after fee + - Backup wallet to another location - Copia de seguridad del monedero en otra ubicación + + Copy bytes + - Change the passphrase used for wallet encryption - Cambiar la contraseña utilizada para el cifrado del monedero + + Copy dust + - &Debug window - &Ventana de depuración + + Copy change + - Open debugging and diagnostic console - Abrir la consola de depuración y diagnóstico + + (%1 locked) + - &Verify message... - &Verificar mensaje... + + yes + - Raven - Raven + + no + - Wallet - Monedero + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Enviar + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Recibir + + + (no label) + - &Show / Hide - &Mostrar / Ocultar + + change from %1 (%2) + - Show or hide the main Window - Mostrar u ocultar la ventana principal + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Cifrar las claves privadas de su monedero + + Name + - Sign messages with your Raven addresses to prove you own them - Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + Send Coins + - &File - &Archivo + + Asset Control Features + - &Settings - &Configuración + + Inputs... + - &Help - &Ayuda + + automatically selected + - Tabs toolbar - Barra de pestañas + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Solicitar pagos (generando códigos QR e identificadores URI "raven:") + + Quantity: + - Show the list of used sending addresses and labels - Mostrar la lista de direcciones de envío y etiquetas + + Bytes: + - Show the list of used receiving addresses and labels - Muestra la lista de direcciones de recepción y etiquetas + + Amount: + - Open a raven: URI or payment request - Abrir un identificador URI "raven:" o una petición de pago + + Dust: + - &Command-line options - &Opciones de consola de comandos - - - %n active connection(s) to Raven network - %n conexión activa hacia la red Raven%n conexiones activas hacia la red Raven + + Fee: + - Indexing blocks on disk... - Indexando bloques en disco... + + After Fee: + - Processing blocks on disk... - Procesando bloques en disco... - - - Processed %n block(s) of transaction history. - %n bloque procesado del historial de transacciones.%n bloques procesados del historial de transacciones. + + Change: + - %1 behind - %1 atrás + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - El último bloque recibido fue generado hace %1. + + Custom change address + - Transactions after this will not yet be visible. - Las transacciones posteriores aún no están visibles. + + Transaction Fee: + - Error - Error + + Choose... + - Warning - Aviso + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - Información + + Warning: Fee estimation is currently not possible. + - Up to date - Actualizado + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Raven + + Hide + - %1 client - %1 cliente + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Connecting to peers... - Conectando a pares... + + per kilobyte + - Catching up... - Actualizando... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Date: %1 - - Fecha: %1 - + + (read the tooltip) + - Amount: %1 - - Amount: %1 - + + Recommended: + - Type: %1 - - Tipo: %1 - + + Custom: + - Label: %1 - - Etiqueta: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Address: %1 - - Dirección: %1 - + + Confirmation time target: + - Sent transaction - Transacción enviada + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Incoming transaction - Transacción entrante + + Request Replace-By-Fee + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + Confirm the send action + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + S&end + - A fatal error occurred. Raven can no longer continue safely and will quit. - Ha ocurrido un error fatal. Raven no puede continuar de manera segura y se cerrará. + + Clear all fields of the form. + - - - CoinControlDialog - Coin Selection - Selección de la moneda + + Clear &All + - Quantity: - Cantidad: + + Transfer to multiple recipients at once + - Bytes: - Bytes: + + Add &Recipient + - Amount: - Cuantía: + + Balance: + - Fee: - Tasa: + + Copy quantity + - Dust: - Polvo: + + Copy amount + - After Fee: - Después de aplicar la comisión: + + Copy fee + - Change: - Cambio: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Máscara + + + + Banned Until + Bloqueado Hasta + + + + CoinControlDialog + + + Coin Selection + Selección de la moneda + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + Cuantía: + + + + Fee: + Tasa: + + + + Dust: + Polvo: + + + + After Fee: + Después de aplicar la comisión: + + + + Change: + Cambio: + + + (un)select all (des)marcar todos + Tree mode Modo árbol + List mode Modo lista + Amount Cantidad + Received with label Recibido con etiqueta + Received with address Recibido con dirección + Date Fecha + Confirmations Confirmaciones + Confirmed Confirmado + Copy address Copiar ubicación + Copy label Copiar etiqueta + + Copy amount Copiar cantidad + Copy transaction ID Copiar ID de transacción + Lock unspent Bloquear lo no gastado + Unlock unspent Desbloquear lo no gastado + Copy quantity Copiar cantidad + Copy fee Copiar cuota + Copy after fee Copiar después de couta + Copy bytes Copiar bytes + Copy dust Copiar polvo + Copy change Copiar cambio + (%1 locked) (%1 bloqueado) + yes + no no + This label turns red if any recipient receives an amount smaller than the current dust threshold. Esta etiqueta se vuelve roja si algún destinatario recibe una cantidad inferior a la actual puerta polvorienta. + Can vary +/- %1 satoshi(s) per input. Puede variar +/- %1 satoshi(s) por entrada. + + (no label) (sin etiqueta) + change from %1 (%2) cambia desde %1 (%2) + (change) (cambio) - EditAddressDialog + CreateAssetDialog - Edit Address - Editar Dirección + + Coin Control Features + - &Label - &Etiqueta + + Inputs... + - The label associated with this address list entry - La etiqueta asociada con esta entrada de la lista de direcciones + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. + + Insufficient funds! + - &Address - &Dirección + + + Quantity: + - New receiving address - Nueva dirección de recivimiento + + Bytes: + - New sending address - Nueva dirección de envío + + Amount: + - Edit receiving address - Editar dirección de recivimiento + + Dust: + - Edit sending address - Editar dirección de envío + + Fee: + - The entered address "%1" is not a valid Raven address. - La dirección introducida "%1" no es una dirección Raven válida. + + After Fee: + - The entered address "%1" is already in the address book. - La dirección introducida "%1" está ya en la agenda. + + Change: + - Could not unlock wallet. - Podría no desbloquear el monedero. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Falló la generación de la nueva clave. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Se creará un nuevo directorio de datos. + + Name: + - name - nombre + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - La ruta ya existe y no es un directorio. + + Check Availabilty + - Cannot create data directory here. - No se puede crear un directorio de datos aquí. + + Address: + - - - HelpMessageDialog - version - versión + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Acerda de %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opciones de la línea de órdenes + + Warning: + - Usage: - Uso: + + The number of assets that will be created + - command-line options - opciones de la consola de comandos + + Units: + - UI Options: - Opciones de interfaz de usuario: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Elegir directorio de datos al iniciar (predeterminado: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Arrancar minimizado + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Establecer los certificados raíz SSL para solicitudes de pago (predeterminado: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostrar pantalla de bienvenida en el inicio (predeterminado: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reiniciar todos los ajustes modificados en el GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Bienvenido + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Bienvenido a %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Al ser la primera vez que se ejecuta el programa, puede elegir donde %1 almacenara sus datos + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 va a descargar y almacenar una copia de la cadena de bloques de Raven. Al menos %2GB de datos seran almacenados en este directorio, que ira creciendo con el tiempo. El monedero se guardara tambien en ese directorio. + + Choose... + - Use the default data directory - Utilizar el directorio de datos predeterminado + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Utilizar un directorio de datos personalizado: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Error: no ha podido crearse el directorio de datos especificado "%1". + + collapse fee-settings + - Error - Error - - - %n GB of free space available - %n GB de espacio libre%n GB de espacio disponible - - - (of %n GB needed) - (de %n GB necesitados)(de %n GB requeridos) + + Hide + - - - ModalOverlay - Form - Formulario + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Number of blocks left - Número de bloques restantes + + per kilobyte + - Unknown... - Desconocido... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Last block time - Hora del último bloque + + (read the tooltip) + - Progress - Progreso + + Recommended: + - Progress increase per hour - Incremento del progreso por hora + + C&ustom: + - calculating... - calculando... + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Estimated time left until synced - Tiempo estimado restante hasta sincronización completa + + Confirmation time target: + - Hide - Ocultar + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Unknown. Syncing Headers (%1)... - Desconocido. Sincronizando cabeceras (%1)... + + Request Replace-By-Fee + - - - OpenURIDialog - Open URI - Abrir URI... + + Create Asset + - Open payment request from URI or file - Abrir solicitud de pago a partir de un identificador URI o de un archivo + + Clear + - URI: - URI: + + Balance: + - Select payment request file - Seleccionar archivo de sulicitud de pago + + 123.456 RVN + - Select payment request file to open - Seleccionar el archivo de solicitud de pago para abrir + + Copy quantity + - - - OptionsDialog - Options - Opciones + + Copy amount + - &Main - &Principal + + Copy fee + - Automatically start %1 after logging in to the system. - Iniciar automaticamente %1 al encender el sistema. + + Copy after fee + - &Start %1 on system login - &Iniciar %1 al iniciar el sistema + + Copy bytes + - Size of &database cache - Tamaño de cache de la &base de datos + + Copy dust + - MB - MB + + Copy change + - Number of script &verification threads - Número de hilos de &verificación de scripts + + %1 (%2 blocks) + - Accept connections from outside - Aceptar conexiones desde el exterior + + Main Asset + - Allow incoming connections - Aceptar conexiones entrantes + + Sub Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Dirección IP del proxy (p. ej. IPv4: 127.0.0.1 / IPv6: ::1) + + Unique Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizar en lugar de salir de la aplicación cuando la ventana está cerrada. Cuando se activa esta opción, la aplicación sólo se cerrará después de seleccionar Salir en el menú. + + Messaging Channel Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Identificadores URL de terceros (por ejemplo, un explorador de bloques) que aparecen en la pestaña de transacciones como elementos del menú contextual. El %s en la URL es reemplazado por el valor hash de la transacción. Se pueden separar URL múltiples por una barra vertical |. + + Qualifier Asset + - Third party transaction URLs - Identificadores URL de transacciones de terceros + + Sub Qualifier Asset + - Active command-line options that override above options: - Opciones activas de consola de comandos que tienen preferencia sobre las opciones anteriores: + + Restricted Asset + - Reset all client options to default. - Restablecer todas las opciones predeterminadas del cliente. + + Asset Type + - &Reset Options - &Restablecer opciones + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - &Network - &Red + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - (0 = auto, <0 = leave that many cores free) - (0 = automático, <0 = dejar libres ese número de núcleos) + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - W&allet - &Monedero + + + + Warning: Invalid Raven address + - Expert - Experto + + Warning: Restricted Assets Reissuance requires an address + - Enable coin &control features - Habilitar funcionalidad de &coin control + + Valid Asset + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si desactiva el gasto del cambio no confirmado, no se podrá usar el cambio de una transacción hasta que se alcance al menos una confirmación. Esto afecta también a cómo se calcula su saldo. + + Invalid: Asset name already in use + - &Spend unconfirmed change - &Gastar cambio no confirmado + + Error: Asset Database not in sync + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + + %1 to %2 + - Map port using &UPnP - Mapear el puerto mediante &UPnP + + Are you sure you want to send? + - Connect to the Raven network through a SOCKS5 proxy. - Conectarse a la red Raven a través de un proxy SOCKS5. + + added as transaction fee + - &Connect through SOCKS5 proxy (default proxy): - &Conectarse a través de proxy SOCKS5 (proxy predeterminado): + + Total Amount %1 + - Proxy &IP: - Dirección &IP del proxy: + + or + - &Port: - &Puerto: + + Confirm send assets + - Port of the proxy (e.g. 9050) - Puerto del servidor proxy (ej. 9050) + + Invalid: + - Used for reaching peers via: - Usado para alcanzar compañeros via: + + Copy + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Muestra si el proxy SOCKS5 predeterminado es utilizado para llegar a los pares a traves de este tipo de red. + + Transaction ID Copied + - IPv4 - IPv4 + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - IPv6 - IPv6 + + Warning: Unknown change address + - Tor - Tor + + Confirm custom change address + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Conectar a la red Raven mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Usar distintos proxys SOCKS5 para comunicarse vía Tor de forma anónima: + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - &Ventana + + Edit Address + Editar Dirección - &Hide the icon from the system tray. - &Ocultar el icono de la barra de tareas + + &Label + &Etiqueta - Hide tray icon - Ocultar barra de tareas + + The label associated with this address list entry + La etiqueta asociada con esta entrada de la lista de direcciones - Show only a tray icon after minimizing the window. - Minimizar la ventana a la bandeja de iconos del sistema. + + The address associated with this address list entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada de la lista de direcciones. Solo puede ser modificada para direcciones de envío. - &Minimize to the tray instead of the taskbar - &Minimizar a la bandeja en vez de a la barra de tareas + + &Address + &Dirección - M&inimize on close - M&inimizar al cerrar + + New receiving address + Nueva dirección de recivimiento - &Display - &Interfaz + + New sending address + Nueva dirección de envío - User Interface &language: - I&dioma de la interfaz de usuario + + Edit receiving address + Editar dirección de recivimiento - The user interface language can be set here. This setting will take effect after restarting %1. - El idioma de la interfaz de usuario puede establecerse aquí. Esta configuración tendrá efecto tras reiniciar %1. + + Edit sending address + Editar dirección de envío - &Unit to show amounts in: - Mostrar las cantidades en la &unidad: + + The entered address "%1" is not a valid Raven address. + La dirección introducida "%1" no es una dirección Raven válida. - Choose the default subdivision unit to show in the interface and when sending coins. - Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían ravens. + + The entered address "%1" is already in the address book. + La dirección introducida "%1" está ya en la agenda. - Whether to show coin control features or not. - Mostrar o no funcionalidad de Coin Control + + Could not unlock wallet. + Podría no desbloquear el monedero. - &OK - &Aceptar + + New key generation failed. + Falló la generación de la nueva clave. + + + FreespaceChecker - &Cancel - &Cancelar + + A new data directory will be created. + Se creará un nuevo directorio de datos. - default - predeterminado + + name + nombre - none - ninguna + + Directory already exists. Add %1 if you intend to create a new directory here. + El directorio ya existe. Añada %1 si pretende crear aquí un directorio nuevo. - Confirm options reset - Confirme el restablecimiento de las opciones + + Path already exists, and is not a directory. + La ruta ya existe y no es un directorio. - Client restart required to activate changes. - Se necesita reiniciar el cliente para activar los cambios. + + Cannot create data directory here. + No se puede crear un directorio de datos aquí. + + + FreezeAddress - Client will be shut down. Do you want to proceed? - El cliente se cerrará. ¿Desea continuar? + + Frame + - This change would require a client restart. - Este cambio exige el reinicio del cliente. + + Restricted Asset: + - The supplied proxy address is invalid. - La dirección proxy indicada es inválida. + + Address: + - - - OverviewPage - Form - Formulario + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + IPFS / Hash: + - Watch-only: - De observación: + + Single Address Options + - Available: - Disponible: + + Global Options + - Your current spendable balance - Su saldo disponible actual + + Free&ze trading on this address + - Pending: - Pendiente: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transacciones pendientes de confirmar y que aún no contribuye al saldo disponible + + Freeze all &trading for the selected restricted asset + - Immature: - No madurado: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - Saldo recién minado que aún no ha madurado. + + Check + - Balances - Saldos + + Clear + - Total: - Total: + + Submit + - Your current total balance - Su saldo actual total + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - Su saldo actual en direcciones watch-only + + Must have a restricted asset selected + - Spendable: - Gastable: + + Address is already frozen + - Recent transactions - Transacciones recientes + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - Transacciones sin confirmar en direcciones watch-only + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - Saldo minado en direcciones watch-only que aún no ha madurado + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - Saldo total en las direcciones watch-only + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - Fallo en la solicitud de pago + + Warning: transaction while syncing wallet! + - Cannot start raven: click-to-pay handler - No se puede iniciar raven: encargado click-para-pagar + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI handling - Manejo de URI + + version + versión - Payment request fetch URL is invalid: %1 - La búsqueda de solicitud de pago URL es válida: %1 + + + (%1-bit) + (%1-bit) + + + + About %1 + Acerda de %1 + + + + Command-line options + Opciones de la línea de órdenes + + + + Usage: + Uso: + + + + command-line options + opciones de la consola de comandos + + + + UI Options: + Opciones de interfaz de usuario: + + + + Choose data directory on startup (default: %u) + Elegir directorio de datos al iniciar (predeterminado: %u) + + + + Set language, for example "de_DE" (default: system locale) + Establecer el idioma, por ejemplo, "es_ES" (predeterminado: configuración regional del sistema) + + + + Start minimized + Arrancar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Establecer los certificados raíz SSL para solicitudes de pago (predeterminado: -system-) + + + + Show splash screen on startup (default: %u) + Mostrar pantalla de bienvenida en el inicio (predeterminado: %u) + + + + Reset all settings changed in the GUI + Reiniciar todos los ajustes modificados en el GUI + + + + Intro + + + Welcome + Bienvenido + + + + Welcome to %1. + Bienvenido a %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Al ser la primera vez que se ejecuta el programa, puede elegir donde %1 almacenara sus datos + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utilizar el directorio de datos predeterminado + + + + Use a custom data directory: + Utilizar un directorio de datos personalizado: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Error: no ha podido crearse el directorio de datos especificado "%1". + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + Número de bloques restantes + + + + + + Unknown... + Desconocido... + + + + Last block time + Hora del último bloque + + + + Progress + Progreso + + + + Progress increase per hour + Incremento del progreso por hora + + + + + calculating... + calculando... + + + + Estimated time left until synced + Tiempo estimado restante hasta sincronización completa + + + + Hide + Ocultar + + + + Unknown. Syncing Headers (%1)... + Desconocido. Sincronizando cabeceras (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI... + + + + Open payment request from URI or file + Abrir solicitud de pago a partir de un identificador URI o de un archivo + + + + URI: + URI: + + + + Select payment request file + Seleccionar archivo de sulicitud de pago + + + + Select payment request file to open + Seleccionar el archivo de solicitud de pago para abrir + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + Iniciar automaticamente %1 al encender el sistema. + + + + &Start %1 on system login + &Iniciar %1 al iniciar el sistema + + + + Size of &database cache + Tamaño de cache de la &base de datos + + + + MB + MB + + + + Number of script &verification threads + Número de hilos de &verificación de scripts + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Dirección IP del proxy (p. ej. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizar en lugar de salir de la aplicación cuando la ventana está cerrada. Cuando se activa esta opción, la aplicación sólo se cerrará después de seleccionar Salir en el menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Identificadores URL de terceros (por ejemplo, un explorador de bloques) que aparecen en la pestaña de transacciones como elementos del menú contextual. El %s en la URL es reemplazado por el valor hash de la transacción. Se pueden separar URL múltiples por una barra vertical |. + + + + Active command-line options that override above options: + Opciones activas de consola de comandos que tienen preferencia sobre las opciones anteriores: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Restablecer todas las opciones predeterminadas del cliente. + + + + &Reset Options + &Restablecer opciones + + + + &Network + &Red + + + + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = dejar libres ese número de núcleos) + + + + W&allet + &Monedero + + + + Expert + Experto + + + + Enable coin &control features + Habilitar funcionalidad de &coin control + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si desactiva el gasto del cambio no confirmado, no se podrá usar el cambio de una transacción hasta que se alcance al menos una confirmación. Esto afecta también a cómo se calcula su saldo. + + + + &Spend unconfirmed change + &Gastar cambio no confirmado + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente el puerto del cliente Raven en el router. Esta opción solo funciona si el router admite UPnP y está activado. + + + + Map port using &UPnP + Mapear el puerto mediante &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Conectarse a la red Raven a través de un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Conectarse a través de proxy SOCKS5 (proxy predeterminado): + + + + + Proxy &IP: + Dirección &IP del proxy: + + + + + &Port: + &Puerto: + + + + + Port of the proxy (e.g. 9050) + Puerto del servidor proxy (ej. 9050) + + + + Used for reaching peers via: + Usado para alcanzar compañeros via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Conectar a la red Raven mediante un proxy SOCKS5 por separado para los servicios ocultos de Tor. + + + + &Window + &Ventana + + + + Show only a tray icon after minimizing the window. + Minimizar la ventana a la bandeja de iconos del sistema. + + + + &Minimize to the tray instead of the taskbar + &Minimizar a la bandeja en vez de a la barra de tareas + + + + M&inimize on close + M&inimizar al cerrar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Interfaz + + + + User Interface &language: + I&dioma de la interfaz de usuario + + + + The user interface language can be set here. This setting will take effect after restarting %1. + El idioma de la interfaz de usuario puede establecerse aquí. Esta configuración tendrá efecto tras reiniciar %1. + + + + &Unit to show amounts in: + Mostrar las cantidades en la &unidad: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Elegir la subdivisión predeterminada para mostrar cantidades en la interfaz y cuando se envían ravens. + + + + Whether to show coin control features or not. + Mostrar o no funcionalidad de Coin Control + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Aceptar + + + + &Cancel + &Cancelar + + + + default + predeterminado + + + + none + ninguna + + + + Confirm options reset + Confirme el restablecimiento de las opciones + + + + + Client restart required to activate changes. + Se necesita reiniciar el cliente para activar los cambios. + + + + Client will be shut down. Do you want to proceed? + El cliente se cerrará. ¿Desea continuar? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Este cambio exige el reinicio del cliente. + + + + The supplied proxy address is invalid. + La dirección proxy indicada es inválida. + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + La información mostrada puede estar desactualizada. Su monedero se sincroniza automáticamente con la red Raven después de que se haya establecido una conexión, pero este proceso aún no se ha completado. + + + + Watch-only: + De observación: + + + + Available: + Disponible: + + + + Your current spendable balance + Su saldo disponible actual + + + + Pending: + Pendiente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transacciones pendientes de confirmar y que aún no contribuye al saldo disponible + + + + Immature: + No madurado: + + + + Mined balance that has not yet matured + Saldo recién minado que aún no ha madurado. + + + + Total: + Total: + + + + Your current total balance + Su saldo actual total + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Su saldo actual en direcciones watch-only + + + + Spendable: + Gastable: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transacciones recientes + + + + Unconfirmed transactions to watch-only addresses + Transacciones sin confirmar en direcciones watch-only + + + + Mined balance in watch-only addresses that has not yet matured + Saldo minado en direcciones watch-only que aún no ha madurado + + + + Current total balance in watch-only addresses + Saldo total en las direcciones watch-only + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fallo en la solicitud de pago + + + + Cannot start raven: click-to-pay handler + No se puede iniciar raven: encargado click-para-pagar + + + + + + URI handling + Manejo de URI + + + + Payment request fetch URL is invalid: %1 + La búsqueda de solicitud de pago URL es válida: %1 + + + + Invalid payment address %1 + Dirección de pago inválida %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI no puede ser analizado! Esto puede ser causado por una dirección Raven inválida o parametros URI mal formados. + + + + Payment request file handling + Manejo del archivo de solicitud de pago + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + ¡El archivo de solicitud de pago no puede ser leído! Esto puede ser causado por un archivo de solicitud de pago inválido. + + + + + + + + + Payment request rejected + Solicitud de pago rechazada + + + + Payment request network doesn't match client network. + La red de solicitud de pago no cimbina la red cliente. + + + + Payment request expired. + Solicitud de pago caducada. + + + + Payment request is not initialized. + La solicitud de pago no se ha iniciado. + + + + Unverified payment requests to custom payment scripts are unsupported. + Solicitudes de pago sin verificar a scripts de pago habitual no se soportan. + + + + + Invalid payment request. + Solicitud de pago inválida. + + + + Requested payment amount of %1 is too small (considered dust). + Cantidad de pago solicitada de %1 es demasiado pequeña (considerado polvo). + + + + Refund from %1 + Reembolsar desde %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Solicitud de pago de %1 es demasiado grande (%2 bytes, permitidos %3 bytes). + + + + Error communicating with %1: %2 + Fallo al comunicar con %1: %2 + + + + Payment request cannot be parsed! + ¡La solicitud de pago no puede ser analizada! + + + + Bad response from server %1 + Mala respuesta desde el servidor %1 + + + + Network request error + Fallo de solicitud de red + + + + Payment acknowledged + Pago declarado + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Nodo/Servicio + + + + NodeId + NodeId + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantidad + + + + Enter a Raven address (e.g. %1) + Introducir una dirección Raven (p. ej. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ninguno + + + + N/A + N/D + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 y %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 aún no ha salido de manera segura... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Error: directorio especificado "%1" no existe. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &Guardar imagen... + + + + &Copy Image + &Copiar imagen + + + + Save QR Code + Guardar código QR + + + + PNG Image (*.png) + Imagen PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versión del cliente + + + + &Information + &Información + + + + Debug window + Ventana de depuración + + + + General + General + + + + Using BerkeleyDB version + Utilizando la versión de BerkeleyDB + + + + Datadir + Datadir + + + + Startup time + Hora de inicio + + + + Network + Red + + + + Name + Nombre + + + + Number of connections + Número de conexiones + + + + Block chain + Cadena de bloques + + + + Current number of blocks + Número actual de bloques + + + + Memory Pool + Piscina de Memoria + + + + Current number of transactions + Número actual de transacciones + + + + Memory usage + Uso de memoria + + + + &Reset + + + + + + Received + Recibido + + + + + Sent + Enviado + + + + &Peers + &Pares + + + + Banned peers + Peers Bloqueados + + + + + + Select a peer to view detailed information. + Seleccionar un par para ver su información detallada. + + + + Whitelisted + En la lista blanca + + + + Direction + Dirección + + + + Version + Versión + + + + Starting Block + Importando bloques... + + + + Synced Headers + Sincronizar Cabeceras + + + + Synced Blocks + Bloques Sincronizados + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Abrir el archivo de depuración %1 desde el directorio de datos actual. Puede tardar unos segundos para ficheros de gran tamaño. + + + + Decrease font size + Disminuir tamaño de letra + + + + Increase font size + Aumentar tamaño de letra + + + + Services + Servicios + + + + Ban Score + Puntuación de bloqueo + + + + Connection Time + Duración de la conexión + + + + Last Send + Ultimo envío + + + + Last Receive + Ultima recepción + + + + Ping Time + Ping + + + + The duration of a currently outstanding ping. + La duración de un ping actualmente en proceso. + + + + Ping Wait + Espera de Ping + + + + Min Ping + + + + + Time Offset + Desplazamiento de tiempo + + + + Last block time + Hora del último bloque + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + &Tráfico de Red + + + + Totals + Total: + + + + In: + Entrante: + + + + Out: + Saliente: + + + + Debug log file + Archivo de registro de depuración + + + + Clear console + Borrar consola + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &día + + + + 1 &week + 1 &semana + + + + 1 &year + 1 &año + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Bienvenido a la consola RPC %1. + + + + Type <b>help</b> for an overview of available commands. + Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (nodo: %1) + + + + via %1 + via %1 + + + + + never + nunca + + + + Inbound + Entrante + + + + Outbound + Saliente + + + + Yes + + + + + No + No + + + + + Unknown + Desconocido + + + + RavenGUI + + + Sign &message... + Firmar &mensaje... + + + + Synchronizing with network... + Sincronizando con la red… + + + + &Overview + &Vista general + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar vista general del monedero + + + + &Transactions + &Transacciones + + + + Browse transaction history + Examinar el historial de transacciones + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&alir + + + + Quit application + Salir de la aplicación + + + + &About %1 + &Acerca de %1 + + + + Show information about %1 + Mostrar información acerca de %1 + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones... + + + + Modify configuration options for %1 + Modificar las opciones de configuración para %1 + + + + &Encrypt Wallet... + &Cifrar monedero… + + + + &Backup Wallet... + &Guardar copia del monedero... + + + + &Change Passphrase... + &Cambiar la contraseña… + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Direcciones de &envío... + + + + &Receiving addresses... + Direcciones de &recepción... + + + + Open &URI... + Abrir &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Haz click para desactivar la actividad de red. + + + + Network activity disabled. + Actividad de red desactivada. + + + + Click to enable network activity again. + Haz click para reactivar la actividad de red. + + + + Syncing Headers (%1%)... + Sincronizando cabeceras (%1%)... + + + + Reindexing blocks on disk... + Reindexando bloques en disco... + + + + Send coins to a Raven address + Enviar ravens a una dirección Raven + + + + Backup wallet to another location + Copia de seguridad del monedero en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña utilizada para el cifrado del monedero + + + + Open debugging and diagnostic console + Abrir la consola de depuración y diagnóstico + + + + &Verify message... + &Verificar mensaje... + + + + Raven + Raven + + + + Wallet + Monedero + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Mostrar / Ocultar + + + + Show or hide the main Window + Mostrar u ocultar la ventana principal + + + + Encrypt the private keys that belong to your wallet + Cifrar las claves privadas de su monedero + + + + Sign messages with your Raven addresses to prove you own them + Firmar mensajes con sus direcciones Raven para demostrar la propiedad + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensajes comprobando que están firmados con direcciones Raven concretas + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + Solicitar pagos (generando códigos QR e identificadores URI "raven:") + + + + Show the list of used sending addresses and labels + Mostrar la lista de direcciones de envío y etiquetas + + + + Show the list of used receiving addresses and labels + Muestra la lista de direcciones de recepción y etiquetas + + + + Open a raven: URI or payment request + Abrir un identificador URI "raven:" o una petición de pago + + + + &Command-line options + &Opciones de consola de comandos + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexando bloques en disco... + + + + Processing blocks on disk... + Procesando bloques en disco... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 atrás + + + + Last received block was generated %1 ago. + El último bloque recibido fue generado hace %1. + + + + Transactions after this will not yet be visible. + Las transacciones posteriores aún no están visibles. + + + + Error + Error + + + + Warning + Aviso + + + + Information + Información + + + + Up to date + Actualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostrar el mensaje de ayuda %1 para obtener una lista de los posibles comandos de linea de comandos de Raven + + + + %1 client + %1 cliente + + + + Connecting to peers... + Conectando a pares... + + + + Catching up... + Actualizando... + + + + Date: %1 + + Fecha: %1 + + + + + + Amount: %1 + + Amount: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Dirección: %1 + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El monedero está <b>cifrado</b> y actualmente <b>desbloqueado</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El monedero está <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ha ocurrido un error fatal. Raven no puede continuar de manera segura y se cerrará. + + + + ReceiveCoinsDialog + + + &Amount: + Cantidad + + + + &Label: + &Etiqueta: + + + + &Message: + Mensaje: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + + + R&euse an existing receiving address (not recommended) + R&eutilizar una dirección existente para recibir (no recomendado) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Raven. + + + + + An optional label to associate with the new receiving address. + Etiqueta opcional para asociar con la nueva dirección de recepción. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utilice este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Para solicitar una cantidad opcional. Deje este vacío o cero para no solicitar una cantidad específica. + + + + Clear all fields of the form. + Vaciar todos los campos del formulario. + + + + Clear + Vaciar + + + + Requested payments history + Historial de pagos solicitados + + + + &Request payment + &Solicitar pago + + + + Show the selected request (does the same as double clicking an entry) + Muestra la petición seleccionada (También doble clic) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Borrar de la lista las direcciónes actualmente seleccionadas + + + + Remove + Eliminar + + + + Copy URI + Copiar URL + + + + Copy label + Copiar capa + + + + Copy message + Copiar imagen + + + + Copy amount + Copiar cantidad + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + Copiar &Dirección + + + + &Save Image... + Guardar Imagen... + + + + Request payment to %1 + Solicitar pago a %1 + + + + Payment information + Información de pago + + + + URI + URI + + + + Address + Dirección + + + + Amount + Cantidad + + + + Label + Etiqueta + + + + Message + Mensaje + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultante demasiado grande, trate de reducir el texto de etiqueta / mensaje. + + + + Error encoding URI into QR Code. + Fallo al codificar URI en código QR. + + + + RecentRequestsTableModel + + + Date + Fecha + + + + Label + Etiqueta + + + + Message + Mensaje + + + + (no label) + (sin etiqueta) + + + + (no message) + (no hay mensaje) + + + + (no amount requested) + (no hay solicitud de cantidad) + + + + Requested + Solicitado + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + - Invalid payment address %1 - Dirección de pago inválida %1 + + + Quantity: + - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI no puede ser analizado! Esto puede ser causado por una dirección Raven inválida o parametros URI mal formados. + + Bytes: + - Payment request file handling - Manejo del archivo de solicitud de pago + + Amount: + - Payment request file cannot be read! This can be caused by an invalid payment request file. - ¡El archivo de solicitud de pago no puede ser leído! Esto puede ser causado por un archivo de solicitud de pago inválido. + + Dust: + - Payment request rejected - Solicitud de pago rechazada + + Fee: + - Payment request network doesn't match client network. - La red de solicitud de pago no cimbina la red cliente. + + After Fee: + - Payment request expired. - Solicitud de pago caducada. + + Change: + - Payment request is not initialized. - La solicitud de pago no se ha iniciado. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Unverified payment requests to custom payment scripts are unsupported. - Solicitudes de pago sin verificar a scripts de pago habitual no se soportan. + + Custom change address + - Invalid payment request. - Solicitud de pago inválida. + + + Reissue Asset + - Requested payment amount of %1 is too small (considered dust). - Cantidad de pago solicitada de %1 es demasiado pequeña (considerado polvo). + + Select an asset to reissue: + - Refund from %1 - Reembolsar desde %1 + + Address: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Solicitud de pago de %1 es demasiado grande (%2 bytes, permitidos %3 bytes). + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Error communicating with %1: %2 - Fallo al comunicar con %1: %2 + + Verifier String: + - Payment request cannot be parsed! - ¡La solicitud de pago no puede ser analizada! + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - Bad response from server %1 - Mala respuesta desde el servidor %1 + + Warning: + - Network request error - Fallo de solicitud de red + + The number of assets that will be created + - Payment acknowledged - Pago declarado + + Unit: + - - - PeerTableModel - User Agent - User Agent + + e.g. 1.00000000 + - Node/Service - Nodo/Servicio + + If the owner of this asset will be able to issue more assets in the future + - NodeId - NodeId + + Reissuable + - Ping - Ping + + Change IPFS/Txid Hash + - - - QObject - Amount - Cantidad + + The ipfs/txid hash that contains information about the asset + - Enter a Raven address (e.g. %1) - Introducir una dirección Raven (p. ej. %1) + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - %1 d - %1 d + + ERROR TEXT + - %1 h - %1 h + + Current Asset Settings + - %1 m - %1 m + + Updated Asset Settings + - %1 s - %1 s + + Transaction Fee: + - None - Ninguno + + Choose... + - N/A - N/D + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - %1 ms - %1 ms + + Warning: Fee estimation is currently not possible. + - %1 and %2 - %1 y %2 + + collapse fee-settings + - %1 didn't yet exit safely... - %1 aún no ha salido de manera segura... + + Hide + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Error: directorio especificado "%1" no existe. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - QRImageWidget - &Save Image... - &Guardar imagen... + + per kilobyte + - &Copy Image - &Copiar imagen + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Save QR Code - Guardar código QR + + (read the tooltip) + - PNG Image (*.png) - Imagen PNG (*.png) + + Recommended: + - - - RPCConsole - N/A - N/D + + Cus&tom: + - Client version - Versión del cliente + + (Smart fee not initialized yet. This usually takes a few blocks...) + - &Information - &Información + + Confirmation time target: + - Debug window - Ventana de depuración + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - General - General + + Request Replace-By-Fee + - Using BerkeleyDB version - Utilizando la versión de BerkeleyDB + + Clear + - Datadir - Datadir + + Balance: + - Startup time - Hora de inicio + + 123.456 RVN + - Network - Red + + Copy quantity + - Name - Nombre + + Copy amount + - Number of connections - Número de conexiones + + Copy fee + - Block chain - Cadena de bloques + + Copy after fee + - Current number of blocks - Número actual de bloques + + Copy bytes + - Memory Pool - Piscina de Memoria + + Copy dust + - Current number of transactions - Número actual de transacciones + + Copy change + - Memory usage - Uso de memoria + + Select an asset to reissue.. + - Received - Recibido + + Select the asset you want to reissue. + - Sent - Enviado + + %1 (%2 blocks) + - &Peers - &Pares + + Cost + - Banned peers - Peers Bloqueados + + Asset data couldn't be found + - Select a peer to view detailed information. - Seleccionar un par para ver su información detallada. + + Quantity is to large. Max is 21,000,000,000 + - Whitelisted - En la lista blanca + + Invalid Raven Destination Address + - Direction - Dirección + + Warning: Restricted Assets Issuance requires an address + - Version - Versión + + + Warning: Invalid Raven address + - Starting Block - Importando bloques... + + + Yes + - Synced Headers - Sincronizar Cabeceras + + No + - Synced Blocks - Bloques Sincronizados + + + Name + - User Agent - User Agent + + + Total Quantity + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Abrir el archivo de depuración %1 desde el directorio de datos actual. Puede tardar unos segundos para ficheros de gran tamaño. + + + Units + - Decrease font size - Disminuir tamaño de letra + + + Can Reisssue + - Increase font size - Aumentar tamaño de letra + + + + IPFS Hash + - Services - Servicios + + + + Txid Hash + - Ban Score - Puntuación de bloqueo + + Verifier String + - Connection Time - Duración de la conexión + + + Current Verifier String + - Last Send - Ultimo envío + + Please select a asset from the menu to display the assets current settings + - Last Receive - Ultima recepción + + Please select a asset from the menu to display the assets updated settings + - Ping Time - Ping + + Current Quantity + - The duration of a currently outstanding ping. - La duración de un ping actualmente en proceso. + + Current Units + - Ping Wait - Espera de Ping + + Can Reissue + - Time Offset - Desplazamiento de tiempo + + Unknown data hash type + - Last block time - Hora del último bloque + + Only IPFS Hashes allowed until RIP5 is activated + - &Open - &Abrir + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - &Console - &Consola + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Network Traffic - &Tráfico de Red + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Clear - &Vaciar + + + %1 to %2 + - Totals - Total: + + Are you sure you want to send? + - In: - Entrante: + + added as transaction fee + - Out: - Saliente: + + Total Amount %1 + - Debug log file - Archivo de registro de depuración + + or + - Clear console - Borrar consola + + Confirm reissue assets + - 1 &hour - 1 &hora + + Copy + - 1 &day - 1 &día + + Transaction ID Copied + - 1 &week - 1 &semana + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - 1 &year - 1 &año + + Warning: Unknown change address + - Welcome to the %1 RPC console. - Bienvenido a la consola RPC %1. + + Confirm custom change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use las flechas arriba y abajo para navegar por el historial y <b>Control+L</b> para vaciar la pantalla. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Type <b>help</b> for an overview of available commands. - Escriba <b>help</b> para ver un resumen de los comandos disponibles. + + (no label) + - %1 B - %1 B + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 KB - %1 KB + + Send Coins + - %1 MB - %1 MB + + Asset Balances + - %1 GB - %1 GB + + + Search + - (node id: %1) - (nodo: %1) + + Address List + - via %1 - via %1 + + Balance: + - never - nunca + + + Failed to create a change address + - Inbound - Entrante + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Saliente + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - No + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Desconocido + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - Cantidad + + + Total Amount %1 + - &Label: - &Etiqueta: + + + or + - &Message: - Mensaje: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilizar una de las direcciones previamente usadas para recibir. Reutilizar direcciones tiene problemas de seguridad y privacidad. No lo uses a menos que antes regeneres una solicitud de pago. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - R&eutilizar una dirección existente para recibir (no recomendado) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un mensaje opcional para adjuntar a la solicitud de pago, que se muestra cuando se abre la solicitud. Nota: El mensaje no se enviará con el pago por la red Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Etiqueta opcional para asociar con la nueva dirección de recepción. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Utilice este formulario para solicitar pagos. Todos los campos son <b>opcionales</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Para solicitar una cantidad opcional. Deje este vacío o cero para no solicitar una cantidad específica. + + This is an asset payment + - Clear all fields of the form. - Vaciar todos los campos del formulario. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Vaciar + + + + Memo: + - Requested payments history - Historial de pagos solicitados + + Amount: + - &Request payment - &Solicitar pago + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Muestra la petición seleccionada (También doble clic) + + &Label: + - Show - Mostrar + + Asset: + - Remove the selected entries from the list - Borrar de la lista las direcciónes actualmente seleccionadas + + The Raven address to send the payment to + - Remove - Eliminar + + Choose previously used address + - Copy URI - Copiar URL + + Alt+A + - Copy label - Copiar capa + + Paste address from clipboard + - Copy message - Copiar imagen + + Alt+P + - Copy amount - Copiar cantidad + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Código QR + + Message: + - Copy &URI - Copiar &URI + + Transfer &To: + - Copy &Address - Copiar &Dirección + + Transfer Administrator Asset + - &Save Image... - Guardar Imagen... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Solicitar pago a %1 + + This is an unauthenticated payment request. + - Payment information - Información de pago + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Dirección + + This is an authenticated payment request. + - Amount - Cantidad + + Enter a label for this address to add it to your address book + - Label - Etiqueta + + Select to view administrator assets to transfer + - Message - Mensaje + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI resultante demasiado grande, trate de reducir el texto de etiqueta / mensaje. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Fallo al codificar URI en código QR. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Fecha + + Failed to get asset metadata for: + - Label - Etiqueta + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Mensaje + + Failed to get asset outpoints from database + - (no label) - (sin etiqueta) + + Selected Balance + - (no message) - (no hay mensaje) + + Wallet Balance + - (no amount requested) - (no hay solicitud de cantidad) + + Select an administrator asset to transfer + - Requested - Solicitado + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Enviar ravens + Coin Control Features Características de Coin Control + Inputs... Entradas... + automatically selected Seleccionado automáticamente + Insufficient funds! Fondos insuficientes! + Quantity: Cantidad: + Bytes: Bytes: + Amount: Cuantía: + Fee: Tasa: + After Fee: Después de tasas: + Change: Cambio: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Si se marca esta opción pero la dirección de cambio está vacía o es inválida, el cambio se enviará a una nueva dirección recién generada. + Custom change address Dirección propia + Transaction Fee: Comisión de Transacción: + Choose... Elija... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Colapsar ajustes de cuota + per kilobyte por kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Si la tarifa de aduana se establece en 1000 satoshis y la transacción está a sólo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "el mínimo total" pagaría 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Si la tarifa de aduana se establece en 1000 satoshis y la transacción está a sólo 250 bytes, entonces "por kilobyte" sólo paga 250 satoshis de cuota, mientras que "el mínimo total" pagaría 1.000 satoshis. Para las transacciones más grandes que un kilobyte ambos pagan por kilobyte + Hide Ocultar - total at least - total por lo menos - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Pagando solamente la cuota mínima es correcto, siempre y cuando haya menos volumen de transacciones que el espacio en los bloques. Pero tenga en cuenta que esto puede terminar en una transacción nunca confirmada, una vez que haya más demanda para transacciones Raven que la red pueda procesar. + (read the tooltip) (leer la sugerencia) + Recommended: Recomendado: + Custom: Personalizado: + (Smart fee not initialized yet. This usually takes a few blocks...) (Tarifa inteligente no inicializado aún. Esto generalmente lleva a pocos bloques...) - normal - normal + + Request Replace-By-Fee + - fast - rápido + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Enviar a múltiples destinatarios de una vez + Add &Recipient Añadir &destinatario + Clear all fields of the form. Vaciar todos los campos del formulario + Dust: Polvo: + Confirmation time target: Tiempo objetivo de confirmación: + Clear &All Vaciar &todo + Balance: Saldo: + Confirm the send action Confirmar el envío + S&end &Enviar + Copy quantity Copiar cantidad + Copy amount Copiar cantidad + Copy fee Copiar cuota + Copy after fee Copiar después de couta + Copy bytes Copiar bytes + Copy dust Copiar polvo + Copy change Copiar cambio + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 a %2 + Are you sure you want to send? ¿Seguro que quiere enviar? + added as transaction fee añadido como transacción de cuota + Total Amount %1 Cantidad total %1 + or o + Confirm send coins Confirmar enviar monedas + The recipient address is not valid. Please recheck. La dirección de destinatario no es válida. Por favor revísela. + The amount to pay must be larger than 0. La cantidad a pagar debe de ser mayor que 0. + The amount exceeds your balance. La cantidad excede su saldo. + The total exceeds your balance when the %1 transaction fee is included. El total excede su saldo cuando la cuota de transacción de %1 es incluida. + Duplicate address found: addresses should only be used once each. Dirección duplicada encontrada: la dirección sólo debería ser utilizada una vez por cada uso. + Transaction creation failed! ¡Falló la creación de transacción! + + The transaction was rejected with the following reason: %1 + + + + A fee higher than %1 is considered an absurdly high fee. Una couta mayor que %1 se considera una cuota irracionalmente alta. + Payment request expired. Solicitud de pago caducada. + Pay only the required fee of %1 Pagar únicamente la cuota solicitada de %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address Alerta: dirección Raven inválida + Warning: Unknown change address Alerta: dirección cambiada desconocida + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) (sin etiqueta) @@ -2134,82 +5498,108 @@ SendCoinsEntry + + + A&mount: Ca&ntidad: - Pay &To: - &Pagar a: - - + &Label: &Etiqueta: + Choose previously used address Escoger direcciones previamente usadas + This is a normal payment. Esto es un pago ordinario. + The Raven address to send the payment to Dirección Raven a la que enviar el pago + Alt+A Alt+A + Paste address from clipboard Pegar dirección desde portapapeles + Alt+P Alt+P + + + Remove this entry Eliminar esta transacción + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. La cuota será deducida de la cantidad que sea mandada. El destinatario recibirá menos ravens de los que entres en el + S&ubtract fee from amount Restar comisiones a la cantidad + Message: Mensaje: + + Send &To: + + + + This is an unauthenticated payment request. Esta es una petición de pago no autentificada. + + + Send to: + + + + This is an authenticated payment request. Esta es una petición de pago autentificada. + Enter a label for this address to add it to the list of used addresses Introduce una etiqueta para esta dirección para añadirla a la lista de direcciones utilizadas + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Un mensaje que se adjuntó a la raven: URL que será almacenada con la transacción para su referencia. Nota: Este mensaje no se envía a través de la red Raven. - Pay To: - Paga a: - - + + Memo: Memo: + Enter a label for this address to add it to your address book Introduzca una etiqueta para esta dirección para añadirla a su agenda @@ -2217,6 +5607,8 @@ SendConfirmationDialog + + Yes @@ -2224,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 se esta cerrando... + Do not shut down the computer until this window disappears. No apague el equipo hasta que desaparezca esta ventana. @@ -2235,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Firmas - Firmar / verificar un mensaje + &Sign Message &Firmar mensaje + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Puede firmar los mensajes con sus direcciones para demostrar que las posee. Tenga cuidado de no firmar cualquier cosa de manera vaga o aleatoria, pues los ataques de phishing pueden tratar de engañarle firmando su identidad a través de ellos. Sólo firme declaraciones totalmente detalladas con las que usted esté de acuerdo. + The Raven address to sign the message with Dirección Raven con la que firmar el mensaje + + Choose previously used address Escoger dirección previamente usada + + Alt+A Alt+A + Paste address from clipboard Pegar dirección desde portapapeles + Alt+P Alt+P + Enter the message you want to sign here Introduzca el mensaje que desea firmar aquí + Signature Firma + Copy the current signature to the system clipboard Copiar la firma actual al portapapeles del sistema + Sign the message to prove you own this Raven address Firmar el mensaje para demostrar que se posee esta dirección Raven + Sign &Message Firmar &mensaje + Reset all sign message fields Vaciar todos los campos de la firma de mensaje + + Clear &All Vaciar &todo + &Verify Message &Verificar mensaje - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Introduzca la dirección para la firma, el mensaje (asegurándose de copiar tal cual los saltos de línea, espacios, tabulaciones, etc.) y la firma a continuación para verificar el mensaje. Tenga cuidado de no asumir más información de lo que dice el propio mensaje firmado para evitar fraudes basados en ataques de tipo man-in-the-middle. + The Raven address the message was signed with La dirección Raven con la que se firmó el mensaje + Verify the message to ensure it was signed with the specified Raven address Verificar el mensaje para comprobar que fue firmado con la dirección Raven indicada + Verify &Message Verificar &mensaje + Reset all verify message fields Vaciar todos los campos de la verificación de mensaje - Click "Sign Message" to generate signature - Click en "Fírmar mensaje" para generar una firma + + Click "Sign Message" to generate signature + Click en "Fírmar mensaje" para generar una firma + + The entered address is invalid. La dirección introducida no es válida. + + + + Please check the address and try again. Por favor revise la dirección e inténtelo de nuevo. + + The entered address does not refer to a key. La dirección introducida no remite a una clave. + Wallet unlock was cancelled. El desbloqueo del monedero fue cancelado. + Private key for the entered address is not available. La clave privada de la dirección introducida no está disponible. + Message signing failed. Falló la firma del mensaje. + Message signed. Mensaje firmado. + The signature could not be decoded. La firma no pudo descodificarse. + + Please check the signature and try again. Por favor compruebe la firma y pruebe de nuevo. + The signature did not match the message digest. La firma no se combinó con el mensaje. + Message verification failed. Falló la verificación del mensaje. + Message verified. Mensaje verificado. @@ -2374,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2381,165 +5819,268 @@ TrafficGraphWidget + KB/s KB/s TransactionDesc + + + Open for %n more block(s) + + + Open until %1 Abierto hasta %1 + conflicted with a transaction with %1 confirmations Hay un conflicto con la traducción de las confirmaciones %1 + %1/offline %1/sin conexión + 0/unconfirmed, %1 0/no confirmado, %1 + in memory pool en el equipo de memoria + not in memory pool no en el equipo de memoria + abandoned abandonado + %1/unconfirmed %1/no confirmado + %1 confirmations confirmaciones %1 + + Status Estado + + , has not been successfully broadcast yet , no ha sido emitido con éxito aún + + + + , broadcast through %n node(s) + + + + Date Fecha + Source Fuente + Generated Generado + + + + + From Desde + + unknown desconocido + + + + + To Para + + own address dirección propia + + + watch-only de observación + + label etiqueta + + + + + + + Credit Credito + + + matures in %n more block(s) + + + not accepted no aceptada + + + + + Debit Enviado + Total debit Total enviado + Total credit Total recibido + Transaction fee Comisión de transacción + Net amount Cantidad neta + + + + Message Mensaje + + Comment Comentario + + Transaction ID Identificador de transacción (ID) + + + Transaction total size + + + + + Output index Indice de salida + + Merchant Vendedor - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Los ravens generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Los ravens generados deben madurar %1 bloques antes de que puedan gastarse. Cuando generó este bloque, se transmitió a la red para que se añadiera a la cadena de bloques. Si no consigue entrar en la cadena, su estado cambiará a "no aceptado" y ya no se podrá gastar. Esto puede ocurrir ocasionalmente si otro nodo genera un bloque a pocos segundos del suyo. + + + + Net RVN amount + + Debug information Información de depuración + Transaction Transacción + Inputs entradas + Amount Cantidad + + true verdadero + + false falso @@ -2547,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Esta ventana muestra información detallada sobre la transacción + Details for %1 Detalles para %1 @@ -2558,265 +6101,411 @@ TransactionTableModel + Date Fecha + Type Tipo + Label Etiqueta + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + Open until %1 Abierto hasta %1 + Offline Sin conexion + Unconfirmed Sin confirmar + Abandoned Abandonado + Confirming (%1 of %2 recommended confirmations) Confirmando (%1 de %2 confirmaciones recomendadas) + Confirmed (%1 confirmations) Confirmado (%1 confirmaciones) + Conflicted En conflicto + Immature (%1 confirmations, will be available after %2) No disponible (%1 confirmaciones. Estarán disponibles al cabo de %2) + This block was not received by any other nodes and will probably not be accepted! Este bloque no ha sido recibido por otros nodos y probablemente no sea aceptado! + Generated but not accepted Generado pero no aceptado + Received with Recibido con + Received from Recibidos de + Sent to Enviado a + Payment to yourself Pago proprio + Mined Minado + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only de observación + (n/a) (nd) + (no label) (sin etiqueta) + Transaction status. Hover over this field to show number of confirmations. Estado de transacción. Pasa el ratón sobre este campo para ver el número de confirmaciones. + Date and time that the transaction was received. Fecha y hora en que se recibió la transacción. + Type of transaction. Tipo de transacción. + Whether or not a watch-only address is involved in this transaction. Si una dirección watch-only está involucrada en esta transacción o no. + User-defined intent/purpose of the transaction. Descripción de la transacción definido por el usuario. + Amount removed from or added to balance. Cantidad retirada o añadida al saldo. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Todo + Today Hoy + This week Esta semana + This month Este mes + Last month Mes pasado + This year Este año + Range... Rango... + Received with Recibido con + Sent to Enviado a + To yourself A usted mismo + Mined Minado + Other Otra + Enter address or label to search Introduzca una dirección o etiqueta que buscar + Min amount Cantidad mínima + + Asset name + + + + Abandon transaction Transacción abandonada + Copy address Copiar ubicación + Copy label Copiar capa + Copy amount Copiar cantidad + Copy transaction ID Copiar ID de transacción + Copy raw transaction Copiar transacción raw + Copy full transaction details Copiar todos los detalles de la transacción + Edit label Editar etiqueta + Show transaction details Mostrar detalles de la transacción + + Browse with: + + + + Export Transaction History Exportar historial de transacciones + Comma separated file (*.csv) Archivo separado de coma (*.csv) + Confirmed Confirmado + Watch-only De observación + Date Fecha + Type Tipo + Label Etiqueta + Address Dirección + + Asset + + + + ID ID + Exporting Failed Falló la exportación + There was an error trying to save the transaction history to %1. Ha habido un error al intentar guardar la transacción con %1. + Exporting Successful Exportación finalizada + The transaction history was successfully saved to %1. La transacción ha sido guardada en %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Rango: + to para @@ -2824,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Unidad en la que se muestran las cantidades. Haga clic para seleccionar otra unidad. @@ -2831,6 +6521,7 @@ WalletFrame + No wallet has been loaded. No se ha cargado ningún monedero @@ -2838,865 +6529,1768 @@ WalletModel + Send Coins Enviar + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportar + Export the data in the current tab to a file Exportar a un archivo los datos de esta pestaña + Backup Wallet Copia de seguridad del monedero + Wallet Data (*.dat) Datos de monedero (*.dat) + Backup Failed La copia de seguridad ha fallado + There was an error trying to save the wallet data to %1. Ha habido un error al intentar guardar los datos del monedero en %1. + Backup Successful Se ha completado con éxito la copia de respaldo + The wallet data was successfully saved to %1. Los datos del monedero se han guardado con éxito en %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opciones: + Specify data directory Especificar directorio para los datos + Connect to a node to retrieve peer addresses, and disconnect Conectar a un nodo para obtener direcciones de pares y desconectar + Specify your own public address Especifique su propia dirección pública + Accept command line and JSON-RPC commands Aceptar comandos consola y JSON-RPC + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. Si <category> no es proporcionado o si <category> =1, muestra toda la información de depuración. + Prune configured below the minimum of %d MiB. Please use a higher number. La Poda se ha configurado por debajo del minimo de %d MiB. Por favor utiliza un valor mas alto. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Poda: la ultima sincronizacion de la cartera sobrepasa los datos podados. Necesitas reindexar con -reindex (o descargar la cadena de bloques de nuevo en el caso de un nodo podado) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Nos es posible re-escanear en modo podado.Necesitas utilizar -reindex el cual descargara la cadena de bloques al completo de nuevo. + Error: A fatal internal error occurred, see debug.log for details Un error interno fatal ocurrió, ver debug.log para detalles + Fee (in %s/kB) to add to transactions you send (default: %s) Comisión (en %s/KB) para agregar a las transacciones que envíe (por defecto: %s) + Pruning blockstore... Poda blockstore ... + Run in the background as a daemon and accept commands Ejecutar en segundo plano como daemon y aceptar comandos + Unable to start HTTP server. See debug log for details. No se ha podido comenzar el servidor HTTP. Ver debug log para detalles. + Raven Core Raven Core + The %s developers Los %s desarrolladores + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Una comision (en %s/kB) que sera usada cuando las estimacion de comision no disponga de suficientes datos (predeterminado: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Aceptar transacciones retransmitidas recibidas desde nodos en la lista blanca incluso cuando no estés retransmitiendo transacciones (predeterminado: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular a la dirección dada y escuchar siempre en ella. Utilice la notación [host]:port para IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. No se puede bloquear el directorio %s. %s ya se está ejecutando. - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Borrar todas las transacciones del monedero y sólo recuperar aquellas partes de la cadena de bloques por medio de -rescan on startup. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Error loading %s: You can't enable HD on a already existing non-HD wallet - Error cargando %s: No puede habilitar HD en un monedero existente que no es HD + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Borrar todas las transacciones del monedero y sólo recuperar aquellas partes de la cadena de bloques por medio de -rescan on startup. + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Error leyendo %s!. Todas las claves se han leido correctamente, pero los datos de transacciones o la libreta de direcciones pueden faltar o ser incorrectos. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Ejecutar comando cuando una transacción del monedero cambia (%s en cmd se remplazará por TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Ajuste máximo permitido del tiempo offset medio de pares. La perspectiva local de tiempo se verá influenciada por los pares anteriores y posteriores a esta cantidad. (Por defecto: %u segundos) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Máximas comisiones totales (en %s) para utilizar en una sola transacción de la cartera; establecer esto demasiado bajo puede abortar grandes transacciones (predeterminado: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Por favor, compruebe si la fecha y hora en su computadora son correctas! Si su reloj esta mal, %s no trabajara correctamente. + Please contribute if you find %s useful. Visit %s for further information about the software. Contribuya si encuentra %s de utilidad. Visite %s para mas información acerca del programa. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Establecer el número de hilos (threads) de verificación de scripts (entre %u y %d, 0 = automático, <0 = dejar libres ese número de núcleos; predeterminado: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct La base de datos de bloques contiene un bloque que parece ser del futuro. Esto puede ser porque la fecha y hora de tu ordenador están mal ajustados. Reconstruye la base de datos de bloques solo si estas seguro de que la fecha y hora de tu ordenador estan ajustados correctamente. + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain No es posible reconstruir la base de datos a un estado anterior. Debe descargar de nuevo la cadena de bloques. + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Utiliza UPnP para asignar el puerto de escucha (predeterminado: 1 cuando esta escuchando sin -proxy) - You need to rebuild the database using -reindex-chainstate to change -txindex - Necesita reconstruir la base de datos usando -reindex-chainstate para cambiar -txindex + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrupto. Fracasó la recuperacion + -maxmempool must be at least %d MB -maxmempool debe ser por lo menos de %d MB + <category> can be: <category> puede ser: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Adjunta un comentario a la linea de agente de usuario + Attempt to recover private keys from a corrupt wallet on startup Intento de recuperar claves privadas de un monedero corrupto en arranque + Block creation options: Opciones de creación de bloques: - Cannot resolve -%s address: '%s' - No se puede resolver -%s direccion: '%s' + + Cannot resolve -%s address: '%s' + No se puede resolver -%s direccion: '%s' + + Chain selection options: + + + + Change index out of range Cambio de indice fuera de rango + Connection options: Opciones de conexión: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Corrupción de base de datos de bloques detectada. + Debugging/Testing options: Opciones de depuración/pruebas: + Do not load the wallet and disable wallet RPC calls No cargar el monedero y desactivar las llamadas RPC del monedero + Do you want to rebuild the block database now? ¿Quieres reconstruir la base de datos de bloques ahora? + Enable publish hash block in <address> Activar publicar bloque .hash en <.Address> + Enable publish hash transaction in <address> Activar publicar transacción .hash en <.Address> + Enable publish raw block in <address> Habilita la publicacion de bloques en bruto en <direccion> + Enable publish raw transaction in <address> Habilitar publicar transacción en rama en <dirección> + Enable transaction replacement in the memory pool (default: %u) Habilita el reemplazamiento de transacciones en la piscina de memoria (predeterminado: %u) + Error initializing block database Error al inicializar la base de datos de bloques + Error initializing wallet database environment %s! Error al inicializar el entorno de la base de datos del monedero %s + Error loading %s Error cargando %s + Error loading %s: Wallet corrupted Error cargando %s: Monedero dañado + Error loading %s: Wallet requires newer version of %s Error cargando %s: Monedero requiere un versión mas reciente de %s - Error loading %s: You can't disable HD on a already existing HD wallet - Error cargando %s: No puede deshabilitar HD en un monedero existente que ya es HD - - + Error loading block database Error cargando base de datos de bloques + Error opening block database Error al abrir base de datos de bloques. + Error: Disk space is low! Error: ¡Espacio en disco bajo! + Failed to listen on any port. Use -listen=0 if you want this. Ha fallado la escucha en todos los puertos. Use -listen=0 si desea esto. + Importing... Importando... + Incorrect or no genesis block found. Wrong datadir for network? Incorrecto o bloque de génesis no encontrado. Datadir equivocada para la red? + Initialization sanity check failed. %s is shutting down. La inicialización de la verificación de validez falló. Se está apagando %s. - Invalid -onion address: '%s' - Dirección -onion inválida: '%s' + + Invalid amount for -%s=<amount>: '%s' + Cantidad no valida para -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Cantidad no valida para -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Cantidad inválida para -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Cantidad inválida para -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Mantener la memoria de transacciones por debajo de <n> megabytes (predeterminado: %u) + + Loading P2P addresses... + + + + Loading banlist... Cargando banlist... + Location of the auth cookie (default: data dir) Ubicación de la cookie de autenticación (default: data dir) + Not enough file descriptors available. No hay suficientes descriptores de archivo disponibles. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Sólo conectar a nodos en redes <net> (ipv4, ipv6 o onion) + Print this help message and exit Imprimir este mensaje de ayuda y salir + Print version and exit Imprimir versión y salir + Prune cannot be configured with a negative value. Pode no se puede configurar con un valor negativo. + Prune mode is incompatible with -txindex. El modo recorte es incompatible con -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Reconstruir el estado de la cadena e indice de bloques a partir de los ficheros blk*.dat en disco + Rebuild chain state from the currently indexed blocks Reconstruir el estado de la cadena a partir de los bloques indexados + + Replaying blocks... + + + + Rewinding blocks... Verificando bloques... + Set database cache size in megabytes (%d to %d, default: %d) Asignar tamaño de cache en megabytes (entre %d y %d; predeterminado: %d) - Set maximum block size in bytes (default: %d) - Establecer tamaño máximo de bloque en bytes (predeterminado: %d) - - + Specify wallet file (within data directory) Especificar archivo de monedero (dentro del directorio de datos) + The source code is available from %s. El código fuente esta disponible desde %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. No se ha podido conectar con %s en este equipo. %s es posible que este todavia en ejecución. + Unsupported argument -benchmark ignored, use -debug=bench. El argumento -benchmark no es soportado y ha sido ignorado, utiliza -debug=bench + Unsupported argument -debugnet ignored, use -debug=net. Parámetros no compatibles -debugnet ignorados , use -debug = red. + Unsupported argument -tor found, use -onion. Parámetros no compatibles -tor encontrados, use -onion . + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Usar UPnP para asignar el puerto de escucha (predeterminado:: %u) + + Use the test chain + + + + User Agent comment (%s) contains unsafe characters. El comentario del Agente de Usuario (%s) contiene caracteres inseguros. + Verifying blocks... Verificando bloques... - Verifying wallet... - Verificando monedero... - - + Wallet %s resides outside data directory %s El monedero %s se encuentra fuera del directorio de datos %s + Wallet debugging/testing options: Opciones de depuración/pruebas de monedero: + Wallet needed to be rewritten: restart %s to complete Es necesario reescribir el monedero: reiniciar %s para completar + Wallet options: Opciones de monedero: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Permitir conexiones JSON-RPC de origen especificado. Válido para son una sola IP (por ejemplo 1.2.3.4), una red/máscara de red (por ejemplo 1.2.3.4/255.255.255.0) o una red/CIDR (e.g. 1.2.3.4/24). Esta opción se puede especificar varias veces + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Ligar a las direcciones especificadas y poner en lista blanca a los equipos conectados a ellas. Usar la notación para IPv6 [host]:puerto. - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Ligar a las direcciones especificadas para escuchar por conexiones JSON-RPC. Usar la notación para IPv6 [host]:puerto. Esta opción se puede especificar múltiples veces (por defecto: ligar a todas las interfaces) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Crear nuevos archivos con permisos por defecto del sistema, en lugar de umask 077 (sólo efectivo con la funcionalidad de monedero desactivada) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Descubra direcciones IP propias (por defecto: 1 cuando se escucha y nadie -externalip o -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Error: la escucha para conexiones entrantes falló (la escucha regresó el error %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Ejecutar un comando cuando se reciba una alerta importante o cuando veamos un fork demasiado largo (%s en cmd se reemplazará por el mensaje) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Las comisiones (en %s/kB) mas pequeñas que esto se consideran como cero comisión para la retransmisión, minería y creación de la transacción (predeterminado: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Si el pago de comisión no está establecido, incluir la cuota suficiente para que las transacciones comiencen la confirmación en una media de n bloques ( por defecto :%u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Cantidad no válida para -maxtxfee=<amount>: '%s' (debe ser por lo menos la cuota de comisión mínima de %s para prevenir transacciones atascadas) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Cantidad no válida para -maxtxfee=<amount>: '%s' (debe ser por lo menos la cuota de comisión mínima de %s para prevenir transacciones atascadas) + Maximum size of data in data carrier transactions we relay and mine (default: %u) El tamaño máximo de los datos en las operaciones de transporte de datos que transmitimos y el mio (default: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Aleatorizar las credenciales para cada conexión proxy. Esto habilita la Tor stream isolation (por defecto: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Establecer tamaño máximo de las transacciones de alta prioridad/baja comisión en bytes (predeterminado: %d) - - + The transaction amount is too small to send after the fee has been deducted Monto de transacción muy pequeña luego de la deducción por comisión - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Usar tras BIP32 la generación de llave determinística jerárquica (HD) . Solo tiene efecto durante el primer inicio/generación del monedero - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway A los equipos en lista blanca no se les pueden prohibir los ataques DoS y sus transacciones siempre son retransmitidas, incluso si ya están en el mempool, es útil por ejemplo para un gateway. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Necesitas reconstruir la base de datos utilizando -reindex para volver al modo sin recorte. Esto volverá a descargar toda la cadena de bloques + (default: %u) (por defecto: %u) + Accept public REST requests (default: %u) Aceptar solicitudes públicas en FERIADOS (por defecto: %u) + Automatically create Tor hidden service (default: %d) Automáticamente crea el servicio Tor oculto (por defecto: %d) + Connect through SOCKS5 proxy Conectar usando SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Error al leer la base de datos, cerrando. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importa los bloques desde un archivo externo blk000?.dat + Information Información - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Cantidad inválida para -paytxfee=<amount>: '%s' (debe ser por lo menos %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Máscara de red inválida especificada en -whitelist: '%s' + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Cantidad inválida para -paytxfee=<amount>: '%s' (debe ser por lo menos %s) + + Invalid netmask specified in -whitelist: '%s' + Máscara de red inválida especificada en -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Mantener como máximo <n> transacciones no conectables en memoria (por defecto: %u) - Need to specify a port with -whitebind: '%s' - Necesita especificar un puerto con -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Necesita especificar un puerto con -whitebind: '%s' + Node relay options: Opciones de nodos de retransmisión: + RPC server options: Opciones de servidor RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Reduciendo -maxconnections de %d a %d, debido a limitaciones del sistema. + Rescan the block chain for missing wallet transactions on startup Rescanea la cadena de bloques para transacciones perdidas de la cartera + Send trace/debug info to console instead of debug.log file Enviar información de trazas/depuración a la consola en lugar de al archivo debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Mandar transacciones como comisión-cero si es posible (por defecto: %u) - - + Show all debugging options (usage: --help -help-debug) Muestra todas las opciones de depuración (uso: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Reducir el archivo debug.log al iniciar el cliente (predeterminado: 1 sin -debug) + Signing transaction failed Transacción falló + The transaction amount is too small to pay the fee Cantidad de la transacción demasiado pequeña para pagar la comisión + This is experimental software. Este software es experimental. + Tor control port password (default: empty) Contraseña del puerto de control de Tor (predeterminado: vacio) + Tor control port to use if onion listening enabled (default: %s) Puerto de control de Tor a utilizar si la escucha de onion esta activada (predeterminado: %s) + Transaction amount too small Cantidad de la transacción demasiado pequeña + Transaction too large for fee policy Operación demasiado grande para la política de tasas + Transaction too large Transacción demasiado grande, intenta dividirla en varias. + Unable to bind to %s on this computer (bind returned error %s) No es posible conectar con %s en este sistema (bind ha dado el error %s) + Upgrade wallet to latest format on startup Actualizar el monedero al último formato al inicio + Username for JSON-RPC connections Nombre de usuario para las conexiones JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Aviso + Warning: unknown new rules activated (versionbit %i) Advertencia: nuevas reglas desconocidas activadas (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Si se debe o no operar en un modo de solo bloques (predeterminado: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Eliminando todas las transacciones del monedero... + ZeroMQ notification options: Opciones de notificación ZeroQM: + Password for JSON-RPC connections Contraseña para las conexiones JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Ejecutar un comando cuando cambia el mejor bloque (%s en cmd se sustituye por el hash de bloque) + Allow DNS lookups for -addnode, -seednode and -connect Permitir búsquedas DNS para -addnode, -seednode y -connect - Loading addresses... - Cargando direcciones... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = mantener los meta datos de transacción, por ejemplo: propietario e información de pago, 2 = omitir los metadatos) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee tiene un ajuste muy elevado! Comisiones muy grandes podrían ser pagadas en una única transaccion. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) No mantener transacciones en la memoria mas de <n> horas (predeterminado: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Bytes equivalentes por sigop en transacciones para retrasmisión y minado (predeterminado: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Las comisiones (en %s/kB) menores que esto son consideradas de cero comision para la creacion de transacciones (predeterminado: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Fuerza la retransmisión de transacciones desde nodos en la lista blanca incluso si violan la política de retransmisiones local (predeterminado: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Nivel de rigor en la verificación de bloques de -checkblocks (0-4; predeterminado: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Mantener el índice completo de transacciones, usado por la llamada rpc de getrawtransaction (por defecto: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Número de segundos en que se evita la reconexión de pares con mal comportamiento (predeterminado: %u) + Output debugging information (default: %u, supplying <category> is optional) Mostrar depuración (por defecto: %u, proporcionar <category> es opcional) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Admite filtrado de bloques, y transacciones con filtros Bloom. Reduce la carga de red. ( por defecto :%u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. La longitud total de la cadena de versión de red ( %i ) supera la longitud máxima ( %i ) . Reducir el número o tamaño de uacomments . - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Error: argumento -socks encontrado. El ajuste de la versión SOCKS ya no es posible, sólo proxies SOCKS5 son compatibles. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. El argumento no soportado -whitelistalwaysrelay ha sido ignorado, utiliza -whitelistrelay y/o -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Usar distintos proxys SOCKS5 para comunicarse vía Tor de forma anónima (Por defecto: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Advertencia: Se están minando versiones de bloques desconocidas! Es posible que normas desconocidas estén activas + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Aviso: fichero de monedero corrupto, datos recuperados! Original %s guardado como %s en %s; si su balance de transacciones es incorrecto, debe restaurar desde una copia de seguridad. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s es demasiado alto! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (predeterminado: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Siempre consultar direcciones de otros equipos por medio de DNS lookup (por defecto: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Cuántos bloques comprobar al iniciar (predeterminado: %u, 0 = todos) + Include IP addresses in debug output (default: %u) Incluir direcciones IP en la salida de depuración (por defecto: %u) - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escuchar conexiones JSON-RPC en <puerto> (predeterminado: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escuchar conexiones en <puerto> (predeterminado: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Mantener como máximo <n> conexiones a pares (predeterminado: %u) + Make the wallet broadcast transactions Realiza las operaciones de difusión del monedero + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Búfer de recepción máximo por conexión, <n>*1000 bytes (por defecto: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Búfer de recepción máximo por conexión, , <n>*1000 bytes (por defecto: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Anteponer marca temporal a la información de depuración (por defecto: %u) + Relay and mine data carrier transactions (default: %u) Retransmitir y minar transacciones de transporte de datos (por defecto: %u) + Relay non-P2SH multisig (default: %u) Relay non-P2SH multisig (default: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Enviar transaciones con RBF-completo opt-in activado (default: %u) + Set key pool size to <n> (default: %u) Ajustar el número de claves en reserva <n> (predeterminado: %u) + Set maximum BIP141 block weight (default: %d) Establecer peso máximo bloque BIP141 (predeterminado: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Establecer el número de procesos para llamadas del servicio RPC (por defecto: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especificar archivo de configuración (por defecto: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Especificar tiempo de espera de la conexión (mínimo: 1, por defecto: %d) + Specify pid file (default: %s) Especificar archivo pid (predeterminado: %s) + Spend unconfirmed change when sending transactions (default: %u) Usar cambio aún no confirmado al enviar transacciones (predeterminado: %u) + Starting network threads... Iniciando funciones de red... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Umbral para la desconexión de pares con mal comportamiento (predeterminado: %u) - Unknown network specified in -onlynet: '%s' - La red especificada en -onlynet '%s' es desconocida + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + La red especificada en -onlynet '%s' es desconocida + + + Insufficient funds Fondos insuficientes + Loading block index... Cargando el índice de bloques... - Add a node to connect to and attempt to keep the connection open - Añadir un nodo al que conectarse y tratar de mantener la conexión abierta - - + Loading wallet... Cargando monedero... + Cannot downgrade wallet No se puede cambiar a una versión mas antigua el monedero - Cannot write default address - No se puede escribir la dirección predeterminada - - + Rescanning... Reexplorando... - Done loading - Se terminó de cargar - - + Error Error diff --git a/src/qt/locale/raven_es_MX.ts b/src/qt/locale/raven_es_MX.ts index c621cdb67e..11b1ce7b03 100644 --- a/src/qt/locale/raven_es_MX.ts +++ b/src/qt/locale/raven_es_MX.ts @@ -1,659 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label Click derecho para editar dirección o etiqueta + Create a new address Crear una dirección nueva + &New &Nuevo + Copy the currently selected address to the system clipboard Copiar la dirección seleccionada al portapapeles del sistema + &Copy &Copiar + C&lose Cerrar + Delete the currently selected address from the list Eliminar la dirección actualmente seleccionada de la lista + Export the data in the current tab to a file Exportar la información en la pestaña actual a un archivo + &Export &Exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Dialogo de contraseña + Enter passphrase Ingrese la contraseña + New passphrase Nueva contraseña + Repeat new passphrase Repita la nueva contraseña - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - BanTableModel + AssetControlDialog - IP/Netmask - IP/Máscara de red + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + - + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - RavenGUI + AssetTableModel - Sign &message... - Firmar &mensaje + + Name + - Synchronizing with network... - Sincronizando con la red... + + Quantity + + + + AssetsDialog - &Overview - &Vista previa + + + Send Coins + - Node - Nodo + + Asset Control Features + - Show general overview of wallet - Mostrar la vista previa general de la cartera + + Inputs... + - &Transactions - &Transacciones + + automatically selected + - Browse transaction history - Explorar el historial de transacciones + + Insufficient funds! + - E&xit - S&alir + + Quantity: + - Quit application - Salir de la aplicación + + Bytes: + - About &Qt - Acerca de &Qt + + Amount: + - Show information about Qt - Mostrar información acerca de Qt + + Dust: + - &Options... - &Opciones + + Fee: + - &Encrypt Wallet... - &Encriptar cartera + + After Fee: + - &Backup Wallet... - &Respaldar cartera + + Change: + - &Change Passphrase... - &Cambiar contraseña... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - &Sending addresses... - Direcciones de &envío... + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Máscara de red + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Cantidad + + + + Bytes: + Bytes: + + + + Amount: + Monto: + + + + Fee: + Cuota: + + + + Dust: + + + + + After Fee: + Después de los cargos por comisión. + + + + Change: + Cambio + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Monto + + + + Received with label + + + + + Received with address + + + + + Date + Fecha + + + + Confirmations + + + + + Confirmed + Confirmado + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editar dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Dirección + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + nombre + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versión + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + opciones de la Linea de comandos + + + + Usage: + Uso: + + + + command-line options + Opciones de comando de lineas + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opciones + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + Activar las opciones de linea de comando que sobre escriben las siguientes opciones: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Cartera + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + Ninguno + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Monto + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + Depurar ventana + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Firmar &mensaje + + + + Synchronizing with network... + Sincronizando con la red... + + + + &Overview + &Vista previa + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar la vista previa general de la cartera + + + + &Transactions + &Transacciones + + + + Browse transaction history + Explorar el historial de transacciones + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&alir + + + + Quit application + Salir de la aplicación + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Mostrar información acerca de Qt + + + + &Options... + &Opciones + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Encriptar cartera + + + + &Backup Wallet... + &Respaldar cartera + + + + &Change Passphrase... + &Cambiar contraseña... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Direcciones de &envío... + + + + &Receiving addresses... + Direcciones de &recepción... + + + + Open &URI... + Abrir &URL... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexando bloques en el disco... + + + + Send coins to a Raven address + Enviar monedas a una dirección Raven + + + + Backup wallet to another location + Respaldar cartera en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar la contraseña usada para la encriptación de la cartera + + + + Open debugging and diagnostic console + Abrir consola de depuración y diagnostico + + + + &Verify message... + &Verificar mensaje... + + + + Raven + Raven + + + + Wallet + Cartera + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Mostrar / Ocultar + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + opciones de la &Linea de comandos + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Error + + + + Warning + Aviso + + + + Information + Información + + + + Up to date + Actualizado al dia + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Recibiendo... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Enviar Transacción + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La cartera esta <b>encriptada</b> y <b>desbloqueada</b> actualmente + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + La cartera esta <b>encriptada</b> y <b>bloqueada</b> actualmente + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Monto: + + + + &Label: + &Etiqueta + + + + &Message: + Mensaje: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Raven. + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + Use este formulario para la solicitud de pagos. Todos los campos son <b>opcionales</b> + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Monto opcional a solicitar. Dejarlo vacion o en cero no solicita un monto especifico. + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Copiar dirección + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Enviar monedas + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + Cantidad + + + + Bytes: + Bytes: + + + + Amount: + Monto: + + + + Fee: + Cuota: + + + + After Fee: + Después de los cargos por comisión. + + + + Change: + Cambio + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Enviar a múltiples receptores a la vez + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Saldo: + + + + Confirm the send action + Confirme la acción de enviar + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + M&onto + + + + &Label: + &Etiqueta + + + + Choose previously used address + + + + + This is a normal payment. + Este es un pago normal + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección del portapapeles + + + + Alt+P + Alt+P + + + + + + Remove this entry + Quitar esta entrada + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mensaje: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + No apague su computadora hasta que esta ventana desaparesca. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección del portapapeles + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + Firma + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Este panel muestras una descripción detallada de la transacción + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Enviar monedas + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + Exportar la información en la pestaña actual a un archivo + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opciones: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + nucleo Raven + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <categoria> puede ser: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Verificando bloques... + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + Opciones de cartera: + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Aviso + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - &Receiving addresses... - Direcciones de &recepción... + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Open &URI... - Abrir &URL... + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Reindexing blocks on disk... - Reindexando bloques en el disco... + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Send coins to a Raven address - Enviar monedas a una dirección Raven + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Backup wallet to another location - Respaldar cartera en otra ubicación + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Change the passphrase used for wallet encryption - Cambiar la contraseña usada para la encriptación de la cartera + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - &Debug window - &Depurar ventana + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Open debugging and diagnostic console - Abrir consola de depuración y diagnostico + + %s is set very high! + - &Verify message... - &Verificar mensaje... + + ' doesn't exist in the database + - Raven - Raven + + ' has already been used + - Wallet - Cartera + + ' is not a valid character in the expression: + - &Send - &Enviar + + ' the amount trying to reissue is to large + - &Receive - &Recibir + + (default: %s) + - &Show / Hide - &Mostrar / Ocultar + + A space separated list of 12-words used to import a bip44 wallet + - &File - &Archivo + + Always query for peer addresses via DNS lookup (default: %u) + - &Settings - &Configuraciones + + Asset Transfer amounts must be greater than 0 + - &Help - &Ayuda + + Asset doesn't exist: + - Tabs toolbar - Pestañas + + Asset must be a qualifier, sub qualifier, or a restricted asset + - &Command-line options - opciones de la &Linea de comandos + + Asset name is not valid + - Error - Error + + Asset with this name is already in the mempool + - Warning - Aviso + + Done Loading + - Information - Información + + Enable publish raw asset messages in <address> + - Up to date - Actualizado al dia + + Error creating %s: You can't create non-HD wallets with this version. + - Catching up... - Recibiendo... + + Error loading wallet %s. -wallet filename must be a regular file. + - Sent transaction - Enviar Transacción + + Error loading wallet %s. Duplicate -wallet filename specified. + - Incoming transaction - Transacción entrante + + Error loading wallet %s. Invalid characters in -wallet filename. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La cartera esta <b>encriptada</b> y <b>desbloqueada</b> actualmente + + Error not set + - Wallet is <b>encrypted</b> and currently <b>locked</b> - La cartera esta <b>encriptada</b> y <b>bloqueada</b> actualmente + + Error writing bip 39 passphrase to database + - - - CoinControlDialog - Quantity: - Cantidad + + Error writing bip 39 vchseed to database + - Bytes: - Bytes: + + Error writing bip 39 words to database + - Amount: - Monto: + + Every '(' must have a corresponding ')' in the expression: + - Fee: - Cuota: + + Failed to extract destination from change script + - After Fee: - Después de los cargos por comisión. + + Failed to find restricted asset change address from inputs + - Change: - Cambio + + Failed to get asset data from script + - Amount - Monto + + Failed to get verifier string from output: + - Date - Fecha + + Failed to load Assets Database + - Confirmed - Confirmado + + Flag must be 1 or 0 + - - - EditAddressDialog - Edit Address - Editar dirección + + How many blocks to check at startup (default: %u, 0 = all) + - &Label - &Etiqueta + + Include IP addresses in debug output (default: %u) + - &Address - &Dirección + + Init Message Channels - Scanning Asset Transactions + - - - FreespaceChecker - name - nombre + + Insufficient asset funds + - - - HelpMessageDialog - version - versión + + Invalid Qualifier Name: + - (%1-bit) - (%1-bit) + + Invalid expressions in verifier string: + - Command-line options - opciones de la Linea de comandos + + Invalid parameter: amount must be + - Usage: - Uso: + + Invalid parameter: amount must be between + - command-line options - Opciones de comando de lineas + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - Intro - Error - Error + + Invalid parameter: asset amount greater than max money: + - - - ModalOverlay - Form - Formulario + + Invalid parameter: asset_name ' + - - - OpenURIDialog - - - OptionsDialog - Options - Opciones + + Invalid parameter: has_ipfs must be 0 or 1. + - Active command-line options that override above options: - Activar las opciones de linea de comando que sobre escriben las siguientes opciones: + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - W&allet - Cartera + + Invalid parameter: reissuable must be 0 or 1 + - none - Ninguno + + Invalid parameter: reissuable must be 0 + - - - OverviewPage - Form - Formulario + + Invalid parameter: units must be + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Monto + + Invalid parameter: units must be between 0-8. + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Debug window - Depurar ventana + + Invalid syntax: + - - - ReceiveCoinsDialog - &Amount: - Monto: + + Keypool ran out, please call keypoolrefill first + - &Label: - &Etiqueta + + Length is to large. Please use a smaller length + - &Message: - Mensaje: + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Mensaje opcional para agregar a la solicitud de pago, el cual será mostrado cuando la solicitud este abierta. Nota: El mensaje no se manda con el pago a travéz de la red de Raven. + + Listen for connections on <port> (default: %u or testnet: %u) + - Use this form to request payments. All fields are <b>optional</b>. - Use este formulario para la solicitud de pagos. Todos los campos son <b>opcionales</b> + + Maintain at most <n> connections to peers (default: %u) + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Monto opcional a solicitar. Dejarlo vacion o en cero no solicita un monto especifico. + + Make the wallet broadcast transactions + - - - ReceiveRequestDialog - Copy &Address - &Copiar dirección + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Enviar monedas + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Quantity: - Cantidad + + Mempool cleared + - Bytes: - Bytes: + + Multiple verifier strings found in transaction + - Amount: - Monto: + + Passphrase securing your 12-word mnemonic word-list + - Fee: - Cuota: + + Prepend debug output with timestamp (default: %u) + - After Fee: - Después de los cargos por comisión. + + Relay and mine data carrier transactions (default: %u) + - Change: - Cambio + + Relay non-P2SH multisig (default: %u) + - fast - rápido + + Restricted asset transfer from address that has been frozen + - Send to multiple recipients at once - Enviar a múltiples receptores a la vez + + Send transactions with full-RBF opt-in enabled (default: %u) + - Balance: - Saldo: + + Set key pool size to <n> (default: %u) + - Confirm the send action - Confirme la acción de enviar + + Set maximum BIP141 block weight (default: %d) + - - - SendCoinsEntry - A&mount: - M&onto + + Set the Maximum reorg depth (default: %u) + - Pay &To: - Pagar &a: + + Set the number of threads to service RPC calls (default: %d) + - &Label: - &Etiqueta + + Signing asset transaction failed + - This is a normal payment. - Este es un pago normal + + Specify configuration file (default: %s) + - Alt+A - Alt+A + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Paste address from clipboard - Pegar dirección del portapapeles + + Specify pid file (default: %s) + - Alt+P - Alt+P + + Spend unconfirmed change when sending transactions (default: %u) + - Remove this entry - Quitar esta entrada + + Starting network threads... + - Message: - Mensaje: + + The symbol: ' + - Pay To: - Pago para: + + The verifier string has two operators without a tag between them + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - No apague su computadora hasta que esta ventana desaparesca. + + The wallet will avoid paying less than the minimum relay fee. + - - - SignVerifyMessageDialog - Alt+A - Alt+A + + This is the minimum transaction fee you pay on every transaction. + - Paste address from clipboard - Pegar dirección del portapapeles + + This is the transaction fee you will pay if you send a transaction. + - Alt+P - Alt+P + + Threshold for disconnecting misbehaving peers (default: %u) + - Signature - Firma + + Transaction amounts must not be negative + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Este panel muestras una descripción detallada de la transacción + + Transaction has too long of a mempool chain + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Enviar monedas + + Transaction must have at least one recipient + - - - WalletView - Export the data in the current tab to a file - Exportar la información en la pestaña actual a un archivo + + Turn off the databasing the messages sent with assets (default: %u) + - - - raven-core - Options: - Opciones: + + Unable to generate initial keys + - Raven Core - nucleo Raven + + Unable to get coin to verify restricted asset transfer from address + - <category> can be: - <categoria> puede ser: + + Unable to reissue asset: amount must be 0 or larger + - Verifying blocks... - Verificando bloques... + + Unable to reissue asset: asset_name ' + - Verifying wallet... - Verificando cartera... + + Unable to reissue asset: reissuable is set to false + - Wallet options: - Opciones de cartera: + + Unable to reissue asset: reissuable must be 0 or 1 + - Information - Información + + Unable to reissue asset: unit must be between 8 and -1 + - Warning - Aviso + + Unknown network specified in -onlynet: '%s' + - Loading addresses... - Cargando direcciones... + + Insufficient funds + + Loading block index... Cargando indice de bloques... + Loading wallet... Cargando billetera... - Done loading - Carga completa + + Cannot downgrade wallet + + + + + Rescanning... + + Error Error diff --git a/src/qt/locale/raven_es_UY.ts b/src/qt/locale/raven_es_UY.ts index 0de64dec12..38a4a8b192 100644 --- a/src/qt/locale/raven_es_UY.ts +++ b/src/qt/locale/raven_es_UY.ts @@ -1,458 +1,8287 @@ - - - + AddressBookPage + Right-click to edit address or label Clic derecho para editar dirección o etiqueta + Create a new address Crear una nueva dirección + &New Nuevo + Copy the currently selected address to the system clipboard Copia la dirección seleccionada al portapapeles del sistema + &Copy Copiar + C&lose Cerrar + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + &Export Exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Escriba la contraseña + New passphrase Nueva contraseña + Repeat new passphrase Repetir nueva contraseña - - - BanTableModel - - - RavenGUI - Synchronizing with network... - Sincronizando con la red... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Overview - &Vista previa + + Encrypt wallet + - Show general overview of wallet - Mostrar descripción general del monedero + + This operation needs your wallet passphrase to unlock the wallet. + - &Transactions - &transaciones + + Unlock wallet + - Browse transaction history - Buscar en el historial de transacciones + + This operation needs your wallet passphrase to decrypt the wallet. + - E&xit - Salida + + Decrypt wallet + - Quit application - Salir de la aplicacion + + Change passphrase + - Show information about Qt - Mostrar informacioón sobre + + Enter the old passphrase and new passphrase to the wallet. + - &Options... - &Opciones... + + Confirm wallet encryption + - &Backup Wallet... - Respaldar Billetera + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Change Passphrase... - Cambiar contraseña + + Are you sure you wish to encrypt your wallet? + - &Sending addresses... - Enviando direcciones + + + Wallet encrypted + - &Receiving addresses... - Recibiendo direcciones + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Send coins to a Raven address - Enviar monedas a una dirección Raven + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Change the passphrase used for wallet encryption - Cambie la clave utilizada para el cifrado del monedero + + + + + Wallet encryption failed + - Raven - Raven + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Wallet - Billetera + + + The supplied passphrases do not match. + - &Show / Hide - Mostrar / Ocultar + + Wallet unlock failed + - &File - &Archivo + + + + The passphrase entered for the wallet decryption was incorrect. + - &Settings - &Configuracion + + Wallet decryption failed + - &Help - &Ayuda + + Wallet passphrase was successfully changed. + - Tabs toolbar - Barra de herramientas + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Error - Error + + Asset Selection + - Warning - Alerta + + Quantity: + - Information - Información + + Bytes: + - Up to date - A la fecha + + Amount: + - Catching up... - Ponerse al dia... + + Dust: + - Type: %1 - - Tipo: %1 - + + Fee: + - Address: %1 - - Dirección: %1 + + After Fee: + - Sent transaction - Transaccion enviada + + Change: + - Incoming transaction - Transacción entrante + + (un)select all + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - El Monedero esta <b>cifrado</b> y actualmente <b>desbloqueado</b> + + Tree mode + - Wallet is <b>encrypted</b> and currently <b>locked</b> - El Monedero esta <b>cifrado</b> y actualmente <b>bloqueado</b> + + List mode + - - - CoinControlDialog - Quantity: - Cantidad: + + View assets that you have the ownership asset for + - Bytes: - Bytes: + + View Administrator Assets + - Amount: - AMonto: + + Asset + - Change: - Cambio: + + Amount + + + + + Received with label + + + + + Received with address + + Date - Fecha + + + Confirmations + + + + Confirmed - Confirmado + - - - EditAddressDialog - Edit Address - Editar dirección + + Copy address + - &Label - &Etiqueta + + Copy label + - &Address - &Direccion + + + Copy amount + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - Error + + Copy transaction ID + - - - ModalOverlay - Form - Formulario + + Lock unspent + - - - OpenURIDialog - - - OptionsDialog - Options - Opciones + + Unlock unspent + - W&allet - Billetera + + Copy quantity + - - - OverviewPage - Form - Formulario + + Copy fee + - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Información + + Copy after fee + - - - ReceiveCoinsDialog - &Label: - &Etiqueta: + + Copy bytes + - - - ReceiveRequestDialog - Copy &Address - Copiar Dirección + + Copy dust + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Enviar monedas + + Copy change + - Quantity: - Cantidad: + + (%1 locked) + - Bytes: - Bytes: + + yes + - Amount: - AMonto: + + no + - Change: - Cambio: + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Send to multiple recipients at once - Enviar a varios destinatarios a la vez + + Can vary +/- %1 satoshi(s) per input. + - Balance: - Balance: + + + (no label) + - Confirm the send action - Confirmar el envío + + change from %1 (%2) + + + + + (change) + - + - SendCoinsEntry + AssetTableModel - A&mount: - A&Monto: + + Name + - Pay &To: - Pagar &A: + + Quantity + + + + AssetsDialog - &Label: - &Etiqueta: + + + Send Coins + - Alt+A - Alt+A + + Asset Control Features + - Paste address from clipboard - Pegar la dirección desde el portapapeles + + Inputs... + - Alt+P - Alt+P + + automatically selected + - Pay To: - Pagar A: + + Insufficient funds! + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + Quantity: + - Paste address from clipboard - Pegar la dirección desde el portapapeles + + Bytes: + - Alt+P - Alt+P + + Amount: + - - - SplashScreen - [testnet] - [prueba_de_red] + + Dust: + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - WalletFrame - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - WalletModel - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - WalletView - + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + AMonto: + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + Cambio: + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + Fecha + + + + Confirmations + + + + + Confirmed + Confirmado + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - raven-core + CreateAssetDialog - Options: - Opciones: + + Coin Control Features + - Information - Información + + Inputs... + - Warning - Alerta + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editar dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Direccion + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opciones + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Billetera + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Información + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Sincronizando con la red... + + + + &Overview + &Vista previa + + + + Node + + + + + Show general overview of wallet + Mostrar descripción general del monedero + + + + &Transactions + &transaciones + + + + Browse transaction history + Buscar en el historial de transacciones + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Salida + + + + Quit application + Salir de la aplicacion + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + Mostrar informacioón sobre + + + + &Options... + &Opciones... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + Respaldar Billetera + + + + &Change Passphrase... + Cambiar contraseña + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Enviando direcciones + + + + &Receiving addresses... + Recibiendo direcciones + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + Enviar monedas a una dirección Raven + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Cambie la clave utilizada para el cifrado del monedero + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Billetera + + + + &Send + + + + + &Receive + + + + + &Show / Hide + Mostrar / Ocultar + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Archivo + + + + &Help + &Ayuda + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Error + + + + Warning + Alerta + + + + Information + Información + + + + Up to date + A la fecha + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Ponerse al dia... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + + + + + Address: %1 + + Dirección: %1 + + + + Sent transaction + Transaccion enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + El Monedero esta <b>cifrado</b> y actualmente <b>desbloqueado</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + El Monedero esta <b>cifrado</b> y actualmente <b>bloqueado</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + &Etiqueta: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + Copiar Dirección + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Enviar monedas + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + AMonto: + + + + Fee: + + + + + After Fee: + + + + + Change: + Cambio: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Enviar a varios destinatarios a la vez + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Balance: + + + + Confirm the send action + Confirmar el envío + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + A&Monto: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar la dirección desde el portapapeles + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar la dirección desde el portapapeles + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [prueba_de_red] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opciones: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Alerta + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Error diff --git a/src/qt/locale/raven_es_VE.ts b/src/qt/locale/raven_es_VE.ts index f915125f66..9e8598f5c5 100644 --- a/src/qt/locale/raven_es_VE.ts +++ b/src/qt/locale/raven_es_VE.ts @@ -1,643 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label Click derecho para editar la dirección o etiqueta + Create a new address Crear una nueva dirección + &New &Nuevo + Copy the currently selected address to the system clipboard Copie las direcciones seleccionadas actualmente al portapapeles del sistema + &Copy &Copiar + C&lose C&errar + Delete the currently selected address from the list Borrar las direcciones seleccionadas recientemente de la lista + Export the data in the current tab to a file Exportar los datos en la pestaña actual a un archivo + &Export &Exportar + &Delete &Borrar - - - AddressTableModel - - - AskPassphraseDialog - Passphrase Dialog - Diálogo contraseña + + Choose the address to send coins to + - Enter passphrase - Ingresa frase de contraseña + + Choose the address to receive coins with + - New passphrase - Nueva frase de contraseña + + C&hoose + - Repeat new passphrase - Repetir nueva frase de contraseña + + Sending addresses + - - - BanTableModel - - - RavenGUI - Sign &message... - Firmar &mensaje... + + Receiving addresses + - Synchronizing with network... - Sincronizando con la red... + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - Node - Nodo + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - Show general overview of wallet - Mostrar visión general de la billetera + + &Copy Address + - &Transactions - &Transacciones + + Copy &Label + - Browse transaction history - Buscar historial de transacciones + + &Edit + - E&xit - S&alir + + Export Address List + - Quit application - Quitar aplicación + + Comma separated file (*.csv) + - &Options... - &Opciones... + + Exporting Failed + - &Receiving addresses... - Recepción de direcciones + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - Reindexing blocks on disk... - Reindexando bloques en el disco... + + Label + - Send coins to a Raven address - Enviar monedas a una dirección Raven + + Address + - Backup wallet to another location - Respaldar billetera en otra ubicación + + (no label) + + + + AskPassphraseDialog - Change the passphrase used for wallet encryption - Cambiar frase secreta usada para la encriptación de la billetera + + Passphrase Dialog + Diálogo contraseña - Open debugging and diagnostic console - Abre la consola de depuración y diágnostico + + Enter passphrase + Ingresa frase de contraseña - Raven - Raven + + New passphrase + Nueva frase de contraseña - Wallet - Billetera + + Repeat new passphrase + Repetir nueva frase de contraseña - &Send - &Enviar + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Receive - &Recibir + + Encrypt wallet + - &Show / Hide - &Mostar / Ocultar + + This operation needs your wallet passphrase to unlock the wallet. + - Show or hide the main Window - Mostar u ocultar la ventana principal + + Unlock wallet + - Encrypt the private keys that belong to your wallet - Encriptar las llaves privadas que pertenecen a tu billetera + + This operation needs your wallet passphrase to decrypt the wallet. + - Sign messages with your Raven addresses to prove you own them - Firma mensajes con tus direcciones Raven para probar que eres dueño de ellas + + Decrypt wallet + - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensajes para asegurar que estaban firmados con direcciones Raven especificas + + Change passphrase + - &File - &Archivo + + Enter the old passphrase and new passphrase to the wallet. + - &Settings - &Configuración + + Confirm wallet encryption + - &Command-line options - Opciones de línea de comandos + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - %1 behind - %1 detrás + + Are you sure you wish to encrypt your wallet? + - Last received block was generated %1 ago. - El último bloque recibido fue generado hace %1 hora(s). + + + Wallet encrypted + - Transactions after this will not yet be visible. - Transacciones después de esta no serán visibles todavía. + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Error - Error + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Warning - Advertencia + + + + + Wallet encryption failed + - Information - Información + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Up to date - Al día + + + The supplied passphrases do not match. + - Catching up... - Alcanzando... + + Wallet unlock failed + - Sent transaction - Transacción enviada + + + + The passphrase entered for the wallet decryption was incorrect. + - Incoming transaction - Transacción entrante + + Wallet decryption failed + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - La billetera está encriptada y desbloqueada recientemente + + Wallet passphrase was successfully changed. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - La billetera está encriptada y bloqueada recientemente + + + Warning: The Caps Lock key is on! + - + - CoinControlDialog + AssetControlDialog - Coin Selection - Selección de moneda + + Asset Selection + + Quantity: - Cantidad: + + Bytes: - Bytes: + + Amount: - Monto: + + + + + Dust: + + Fee: - Comisión: + - Dust: - Polvo: + + After Fee: + + Change: - Cambio: + + (un)select all - (de)seleccionar todo + + Tree mode - Modo de árbol + + List mode - Modo de lista + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + Amount - Monto + + Received with label - Recibido con etiqueta + + Received with address - Recibido con dirección + + Date - Fecha + + Confirmations - Confirmaciones + + Confirmed - Confirmado + - - - EditAddressDialog - Edit Address - Editar dirección + + Copy address + - &Label - &Etiqueta + + Copy label + - The label associated with this address list entry - La etiqueta asociada con esta entrada de la lista de direcciones + + + Copy amount + - The address associated with this address list entry. This can only be modified for sending addresses. - La dirección asociada con esta entrada de la lista de direcciones. Esta puede ser modificada solo para el envío de direcciones. + + Copy transaction ID + - &Address - &Dirección + + Lock unspent + - - - FreespaceChecker - A new data directory will be created. - Un nuevo directorio de datos será creado. + + Unlock unspent + - name - nombre + + Copy quantity + - Directory already exists. Add %1 if you intend to create a new directory here. - El directorio ya existe. Agrega %1 si tiene la intención de crear un nuevo directorio aquí. + + Copy fee + - Path already exists, and is not a directory. - La ruta ya existe, y no es un directorio. + + Copy after fee + - Cannot create data directory here. - No puede crear directorio de datos aquí. + + Copy bytes + - - - HelpMessageDialog - version - versión + + Copy dust + - (%1-bit) - (%1-bit) + + Copy change + - Command-line options - Opciones de línea de comandos + + (%1 locked) + - Usage: - Uso: + + yes + - command-line options - opciones de línea de comandos + + no + - - - Intro - Use the default data directory - Usar el directorio de datos por defecto + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Use a custom data directory: - Usa un directorio de datos personalizado: + + Can vary +/- %1 satoshi(s) per input. + - Error: Specified data directory "%1" cannot be created. - Error: Directorio de datos especificado "%1" no puede ser creado. + + + (no label) + - Error - Error + + change from %1 (%2) + - - - ModalOverlay - + + + (change) + + + - OpenURIDialog + AssetTableModel - Open URI - Abrir URI + + Name + - Open payment request from URI or file - Abrir solicitud de pago desde URI o archivo + + Quantity + + + + AssetsDialog - URI: - URI: + + + Send Coins + - Select payment request file - Seleccionar archivo de solicitud de pago + + Asset Control Features + - - - OptionsDialog - Options - Opciones + + Inputs... + - &Main - &Main + + automatically selected + - &Network - &Red + + Insufficient funds! + - W&allet - Billetera + + Quantity: + - Expert - Experto + + Bytes: + - none - ninguno + + Amount: + - - - OverviewPage - Available: - Disponible: + + Dust: + - Pending: - Pendiente: + + Fee: + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Monto + + After Fee: + - %1 and %2 - %1 y %2 + + Change: + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Información + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - In: - Entrada: + + Custom change address + - Out: - Salida: + + Transaction Fee: + - - - ReceiveCoinsDialog - &Amount: - Monto: + + Choose... + - &Label: - &Etiqueta: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Show - Mostrar + + Warning: Fee estimation is currently not possible. + - - - ReceiveRequestDialog - Copy &Address - &Copiar Dirección + + collapse fee-settings + - + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - RecentRequestsTableModel - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - SendCoinsDialog + BanTableModel + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + Selección de moneda + + + Quantity: Cantidad: + Bytes: Bytes: + Amount: Monto: + Fee: Comisión: + + Dust: + Polvo: + + + + After Fee: + + + + Change: Cambio: - Dust: - Polvo: + + (un)select all + (de)seleccionar todo - - - SendCoinsEntry - A&mount: - Monto: + + Tree mode + Modo de árbol - &Label: - &Etiqueta: + + List mode + Modo de lista - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opciones: + + Amount + Monto - Specify data directory - Especifique directorio de datos + + Received with label + Recibido con etiqueta - Connect to a node to retrieve peer addresses, and disconnect - Conecte un nodo para recuperar direcciones pares, y desconecte + + Received with address + Recibido con dirección - Specify your own public address - Especifique su propia dirección pública + + Date + Fecha - Accept command line and JSON-RPC commands - Aceptar linea de comando y comandos JSON-RPC + + Confirmations + Confirmaciones - Run in the background as a daemon and accept commands - Correr en segundo plano como daemon y aceptar comandos + + Confirmed + Confirmado - Raven Core - Raven Core + + Copy address + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Enlazar dirección dada y siempre escuchar en ella. Usar [host]:port notación para IPv6 + + Copy label + - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Borrar todas las transacciones de la billetera y solo recuperar aquellas partes de la cadena de bloques a través de -rescan en el inicio del sistema. + + + Copy amount + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Ejecutar comando cuando una transacción de la billetera cambia (%s en cmd es reemplazado por TxID) + + Copy transaction ID + - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Fija el número de verificación de hilos de script (%u a %d, 0 = auto, <0 = leave that many cores free, default: %d) + + Lock unspent + - Information - Información + + Unlock unspent + - Warning - Advertencia + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editar dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + La etiqueta asociada con esta entrada de la lista de direcciones + + + + The address associated with this address list entry. This can only be modified for sending addresses. + La dirección asociada con esta entrada de la lista de direcciones. Esta puede ser modificada solo para el envío de direcciones. + + + + &Address + &Dirección + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Un nuevo directorio de datos será creado. + + + + name + nombre + + + + Directory already exists. Add %1 if you intend to create a new directory here. + El directorio ya existe. Agrega %1 si tiene la intención de crear un nuevo directorio aquí. + + + + Path already exists, and is not a directory. + La ruta ya existe, y no es un directorio. + + + + Cannot create data directory here. + No puede crear directorio de datos aquí. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versión + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + Opciones de línea de comandos + + + + Usage: + Uso: + + + + command-line options + opciones de línea de comandos + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Usar el directorio de datos por defecto + + + + Use a custom data directory: + Usa un directorio de datos personalizado: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Error: Directorio de datos especificado "%1" no puede ser creado. + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI + + + + Open payment request from URI or file + Abrir solicitud de pago desde URI o archivo + + + + URI: + URI: + + + + Select payment request file + Seleccionar archivo de solicitud de pago + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opciones + + + + &Main + &Main + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &Red + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Billetera + + + + Expert + Experto + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + ninguno + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Disponible: + + + + Your current spendable balance + + + + + Pending: + Pendiente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Monto + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 y %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Información + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + Entrada: + + + + Out: + Salida: + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Firmar &mensaje... + + + + Synchronizing with network... + Sincronizando con la red... + + + + &Overview + + + + + Node + Nodo + + + + Show general overview of wallet + Mostrar visión general de la billetera + + + + &Transactions + &Transacciones + + + + Browse transaction history + Buscar historial de transacciones + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&alir + + + + Quit application + Quitar aplicación + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opciones... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Recepción de direcciones + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexando bloques en el disco... + + + + Send coins to a Raven address + Enviar monedas a una dirección Raven + + + + Backup wallet to another location + Respaldar billetera en otra ubicación + + + + Change the passphrase used for wallet encryption + Cambiar frase secreta usada para la encriptación de la billetera + + + + Open debugging and diagnostic console + Abre la consola de depuración y diágnostico + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Billetera + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Mostar / Ocultar + + + + Show or hide the main Window + Mostar u ocultar la ventana principal + + + + Encrypt the private keys that belong to your wallet + Encriptar las llaves privadas que pertenecen a tu billetera + + + + Sign messages with your Raven addresses to prove you own them + Firma mensajes con tus direcciones Raven para probar que eres dueño de ellas + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensajes para asegurar que estaban firmados con direcciones Raven especificas + + + + &File + &Archivo + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + Opciones de línea de comandos + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 detrás + + + + Last received block was generated %1 ago. + El último bloque recibido fue generado hace %1 hora(s). + + + + Transactions after this will not yet be visible. + Transacciones después de esta no serán visibles todavía. + + + + Error + Error + + + + Warning + Advertencia + + + + Information + Información + + + + Up to date + Al día + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Alcanzando... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + La billetera está encriptada y desbloqueada recientemente + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + La billetera está encriptada y bloqueada recientemente + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Monto: + + + + &Label: + &Etiqueta: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Mostrar + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Copiar Dirección + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + Cantidad: + + + + Bytes: + Bytes: + + + + Amount: + Monto: + + + + Fee: + Comisión: + + + + After Fee: + + + + + Change: + Cambio: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + Polvo: + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Monto: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opciones: + + + + Specify data directory + Especifique directorio de datos + + + + Connect to a node to retrieve peer addresses, and disconnect + Conecte un nodo para recuperar direcciones pares, y desconecte + + + + Specify your own public address + Especifique su propia dirección pública + + + + Accept command line and JSON-RPC commands + Aceptar linea de comando y comandos JSON-RPC + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Correr en segundo plano como daemon y aceptar comandos + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Enlazar dirección dada y siempre escuchar en ella. Usar [host]:port notación para IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Borrar todas las transacciones de la billetera y solo recuperar aquellas partes de la cadena de bloques a través de -rescan en el inicio del sistema. + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Ejecutar comando cuando una transacción de la billetera cambia (%s en cmd es reemplazado por TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Fija el número de verificación de hilos de script (%u a %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Advertencia + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Error diff --git a/src/qt/locale/raven_et.ts b/src/qt/locale/raven_et.ts index b483720744..5516e54c55 100644 --- a/src/qt/locale/raven_et.ts +++ b/src/qt/locale/raven_et.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Paremkliki aadressi või sildi muutmiseks + Create a new address Loo uus aadress + &New &Uus + Copy the currently selected address to the system clipboard Kopeeri märgistatud aadress vahemällu + &Copy &Kopeeri + C&lose S&ulge + Delete the currently selected address from the list Kustuta märgistatud aadress loetelust + Export the data in the current tab to a file Ekspordi kuvatava vahelehe sisu faili + &Export &Ekspordi + &Delete &Kustuta + Choose the address to send coins to Vali aadress millele mündid saata + Choose the address to receive coins with Vali aadress müntide vastuvõtmiseks + C&hoose V&ali + Sending addresses Saatvad aadressid + Receiving addresses Vastuvõtvad aadressid + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Need on sinu Raven aadressid maksete saatmiseks. Ennem müntide saatmist kontrolli alati summat ja makse saaja aadressi. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Need on sinu Raven aadressid sisenevate maksete vastu võtmiseks. Soovitav on iga tehingu tarbeks kasutada uut aadressi. + &Copy Address &Kopeeri Aadress + Copy &Label Kopeeri &Silt + &Edit &Muuda + Export Address List Ekspordi Aadresside Nimekiri + Comma separated file (*.csv) Komadega eraldatud väärtuste fail (*.csv) + Exporting Failed Eksport ebaõnnestus. + There was an error trying to save the address list to %1. Please try again. Tõrge aadressi nimekirja salvestamisel %1. Palun proovi uuesti. @@ -103,14 +125,17 @@ AddressTableModel + Label Märge + Address Aadress + (no label) (märge puudub) @@ -118,1812 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Salafraasi dialoog + Enter passphrase Sisesta salafraas + New passphrase Uus salafraas + Repeat new passphrase Korda salafraasi + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Sisesta uus salafraas rahakotti.<br/>Kasuta salafraasi millles on<b>kümme või rohkem juhuslikku sümbolit<b>,või<b>kaheksa või rohkem sõna<b/>. + Encrypt wallet Krüpteeri rahakott + This operation needs your wallet passphrase to unlock the wallet. Antud operatsioon vajab rahakoti lahtilukustamiseks salafraasi. + Unlock wallet Ava rahakoti lukk + This operation needs your wallet passphrase to decrypt the wallet. Antud operatsioon vajab rahakoti dekrüpteerimiseks salafraasi. + Decrypt wallet Dekrüpteeri rahakott + Change passphrase Vaheta salafraasi + Enter the old passphrase and new passphrase to the wallet. Sisesta vana salafraas ja uus salafraas rahakotti. + Confirm wallet encryption Kinnita rahakoti krüpteerimine. + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Hoiatus:Kui sa krüpteerid oma rahakoti ja kaotad salafraasi, siis sa<b>KAOTAD OMA RAVENID</b>! + Are you sure you wish to encrypt your wallet? Kas oled kindel, et soovid rahakoti krüpteerida? + + Wallet encrypted Rahakott krüpteeritud + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Rahakoti krüpteerimine ebaõnnestus + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Rahakoti krüpteerimine ebaõnnestus sisemise tõrke tõttu. Sinu rahakott ei ole krüpteeritud. + + The supplied passphrases do not match. Sisestatud salafraasid ei kattu. + Wallet unlock failed Rahakoti lahtilukustamine ebaõnnestus + + + The passphrase entered for the wallet decryption was incorrect. Rahakoti dekrüpteerimiseks sisestatud salafraas ei ole õige. + Wallet decryption failed Rahakoti dekrüpteerimine ebaõnnestus + Wallet passphrase was successfully changed. Rahakoti salafraas on edukalt vahetatud. + + Warning: The Caps Lock key is on! Hoiatus:Klaviatuuri suurtähelukk on peal. - BanTableModel + AssetControlDialog - IP/Netmask - IP/Võrgumask + + Asset Selection + - - - RavenGUI - Sign &message... - Signeeri &sõnum + + Quantity: + - Synchronizing with network... - Võrgusünkimine... + + Bytes: + - &Overview - &Ülevaade + + Amount: + - Show general overview of wallet - Kuva rahakoti üld-ülevaade + + Dust: + - &Transactions - &Tehingud + + Fee: + - Browse transaction history - Sirvi tehingute ajalugu + + After Fee: + - E&xit - V&älju + + Change: + - Quit application - Väljumine + + (un)select all + - &About %1 - &Teave %1 + + Tree mode + - About &Qt - Teave &Qt kohta + + List mode + - Show information about Qt - Kuva Qt kohta käiv info + + View assets that you have the ownership asset for + - &Options... - &Valikud... + + View Administrator Assets + - &Encrypt Wallet... - &Krüpteeri Rahakott + + Asset + - &Backup Wallet... - &Varunda Rahakott + + Amount + - &Change Passphrase... - &Salafraasi muutmine + + Received with label + - Open &URI... - Ava &URI... + + Received with address + - Reindexing blocks on disk... - Kettal olevate blokkide re-indekseerimine... + + Date + - Send coins to a Raven address - Saada münte Raveni aadressile + + Confirmations + - Backup wallet to another location - Varunda rahakott teise asukohta + + Confirmed + - Change the passphrase used for wallet encryption - Rahakoti krüpteerimise salafraasi muutmine + + Copy address + - &Debug window - &Silumise aken + + Copy label + - Open debugging and diagnostic console - Ava debugimise ja diagnostika konsool + + + Copy amount + - &Verify message... - &Kontrolli sõnumit... + + Copy transaction ID + - Raven - Raven + + Lock unspent + - Wallet - Rahakott + + Unlock unspent + - &Send - &Saada + + Copy quantity + - &Receive - &Võta vastu + + Copy fee + - &Show / Hide - &Näita / Peida + + Copy after fee + - Show or hide the main Window - Näita või peida peaaken + + Copy bytes + - Encrypt the private keys that belong to your wallet - Krüpteeri oma rahakoti privaatvõtmed + + Copy dust + - Sign messages with your Raven addresses to prove you own them - Omandi tõestamiseks allkirjasta sõnumid oma Raveni aadressiga + + Copy change + - Verify messages to ensure they were signed with specified Raven addresses - Kinnita sõnumid kindlustamaks et need allkirjastati määratud Raveni aadressiga + + (%1 locked) + - &File - &Fail + + yes + - &Settings - &Seaded + + no + - &Help - &Abi + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Tabs toolbar - Vahelehe tööriistariba + + Can vary +/- %1 satoshi(s) per input. + - Request payments (generates QR codes and raven: URIs) - Loo maksepäring (genereerib QR koodid ja raveni: URId) + + + (no label) + - Open a raven: URI or payment request - Ava raveni: URI või maksepäring + + change from %1 (%2) + - &Command-line options - Käsurea valikud - - - %n active connection(s) to Raven network - %n aktiivne ühendus Raveni võrku%n aktiivset ühendust Raveni võrku + + (change) + + + + AssetTableModel - Indexing blocks on disk... - Kõvakettal olevate plokkide indekseerimine... + + Name + - Processing blocks on disk... - Kõvakettal olevate plokkide töötlemine... - - - Processed %n block(s) of transaction history. - Töödeldud %n plokk transaktsioonide ajaloost.Töödeldud %n plokki transaktsioonide ajaloost. + + Quantity + + + + AssetsDialog - %1 behind - %1 maas + + + Send Coins + - Last received block was generated %1 ago. - Viimane saabunud blokk loodi %1 tagasi. + + Asset Control Features + - Transactions after this will not yet be visible. - Peale seda ei ole tehingud veel nähtavad. + + Inputs... + - Error - Tõrge + + automatically selected + - Warning - Hoiatus + + Insufficient funds! + - Information - Informatsioon + + Quantity: + - Up to date - Ajakohane + + Bytes: + - %1 client - %1 klient + + Amount: + - Catching up... - Jõuan järgi... + + Dust: + - Date: %1 - - Kuupäev: %1 - + + Fee: + - Amount: %1 - - Summa: %1 - + + After Fee: + - Type: %1 - - Tüüp: %1 - + + Change: + - Label: %1 - - &Märgis: %1 - + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Address: %1 - - Aadress: %1 - + + Custom change address + - Sent transaction - Saadetud tehing + + Transaction Fee: + - Incoming transaction - Sisenev tehing + + Choose... + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Rahakott on <b>krüpteeritud</b> ning hetkel <b>avatud</b> + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Rahakott on <b>krüpteeritud</b> ning hetkel <b>suletud</b> + + Warning: Fee estimation is currently not possible. + - - - CoinControlDialog - Quantity: - Kogus: + + collapse fee-settings + - Bytes: - Baiti: + + Hide + - Amount: - Summa: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Fee: - Tasu: + + per kilobyte + - Dust: - Puru: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - After Fee: - Peale tehingutasu: + + (read the tooltip) + - Change: - Vahetusraha: + + Recommended: + - Tree mode - Puu režiim + + Custom: + - List mode - Loetelu režiim + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Amount - Kogus + + Confirmation time target: + - Received with label - Vastuvõetud märgisega + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Received with address - Vastuvõetud aadressiga + + Request Replace-By-Fee + - Date - Kuupäev + + Confirm the send action + - Confirmations - Kinnitused + + S&end + - Confirmed - Kinnitatud + + Clear all fields of the form. + - Copy address - Kopeeri aadress + + Clear &All + - Copy label - Kopeeri märgis + + Transfer to multiple recipients at once + - Copy amount - Kopeeri summa + + Add &Recipient + - Copy transaction ID - Kopeeri tehingu ID + + Balance: + + Copy quantity - Kopeeri kogus + + + + + Copy amount + + Copy fee - Kopeeri tehingutasu + + + + + Copy after fee + + Copy bytes - Kopeeri baidid + + Copy dust - Kopeeri puru + + Copy change - Kopeeri vahetusraha + - (%1 locked) - (%1 lukustatud) + + %1 (%2 blocks) + - yes - jah + + + + + %1 to %2 + - no - ei + + Are you sure you want to send? + - (no label) - (märgis puudub) + + added as transaction fee + - (change) - (vahetusraha) + + Confirm send assets + - - - EditAddressDialog - Edit Address - Muuda aadressi + + The recipient address is not valid. Please recheck. + - &Label - &Märgis + + The amount to pay must be larger than 0. + - &Address - &Aadress + + The amount exceeds your balance. + - New receiving address - Uus vastu võttev aadress + + The total exceeds your balance when the %1 transaction fee is included. + - New sending address - Uus saatev aadress + + Duplicate address found: addresses should only be used once each. + - Edit receiving address - Muuda vastuvõtvat aadressi + + Transaction creation failed! + - Edit sending address - Muuda saatvat aadressi + + The transaction was rejected with the following reason: %1 + - The entered address "%1" is not a valid Raven address. - Sisestatud aadress "%1" ei ole korrektne Raven aadress. + + A fee higher than %1 is considered an absurdly high fee. + - The entered address "%1" is already in the address book. - Sisestatud aadress "%1" on juba aadressi raamatus. + + Payment request expired. + - Could not unlock wallet. - Rahakoti lahtilukustamine ebaõnnestus. + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - New key generation failed. - Uue võtme genereerimine ebaõnnestus. + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - FreespaceChecker + AssignQualifier - name - nimi + + Frame + - - - HelpMessageDialog - version - versioon + + Select Type: + - Command-line options - Käsurea valikud + + Select Qualifier: + - Usage: - Kasutus: + + Address: + - command-line options - käsurea valikud + + IPFS / Hash: + - UI Options: - Kasutajaliidese Suvandid: + + Custom Change Address + - Show splash screen on startup (default: %u) - Käivitamisel kuva laadimisekraani (vaikimisi %u) + + Check + - - - Intro - Welcome - Teretulemast + + Clear + - Error - Tõrge + + Submit + - - - ModalOverlay - Form - Vorm + + Assign Qualifier + - Last block time - Viimane ploki aeg + + Remove Qualifier + - Hide - Peida + + Data has been validated, You can now submit the qualifier request + - - - OpenURIDialog - Open URI - Ava URI + + Must have a qualifier asset selected + - URI: - URI: + + Address already has the qualifier assigned to it + - Select payment request file - Vali maksepäringu fail + + Address doesn't have the qualifier, so we can't remove it + - Select payment request file to open - Vali maksepäringu fail mida avada + + Unable to preform action at this time + - OptionsDialog + BanTableModel - Options - Valikud + + IP/Netmask + IP/Võrgumask - &Main - &Peamine + + Banned Until + + + + CoinControlDialog - MB - MB + + Coin Selection + - Reset all client options to default. - Taasta kõik klientprogrammi seadete vaikeväärtused. + + Quantity: + Kogus: - &Reset Options - &Lähtesta valikud + + Bytes: + Baiti: - &Network - &Võrk + + Amount: + Summa: - W&allet - R&ahakott + + Fee: + Tasu: - Expert - Ekspert + + Dust: + Puru: - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Raveni kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust. + + After Fee: + Peale tehingutasu: - Map port using &UPnP - Suuna port &UPnP kaudu + + Change: + Vahetusraha: - Proxy &IP: - Proxi &IP: + + (un)select all + - &Port: - &Port: + + Tree mode + Puu režiim - Port of the proxy (e.g. 9050) - Proxi port (nt 9050) + + List mode + Loetelu režiim - IPv4 - IPv4 + + Amount + Kogus - IPv6 - IPv6 + + Received with label + Vastuvõetud märgisega - Tor - Tor + + Received with address + Vastuvõetud aadressiga - &Window - &Aken + + Date + Kuupäev - Hide tray icon - Peida tegumiriba ikoon + + Confirmations + Kinnitused - Show only a tray icon after minimizing the window. - Minimeeri systray alale. + + Confirmed + Kinnitatud - &Minimize to the tray instead of the taskbar - &Minimeeri systray alale + + Copy address + Kopeeri aadress - M&inimize on close - M&inimeeri sulgemisel + + Copy label + Kopeeri märgis - &Display - &Kuva + + + Copy amount + Kopeeri summa - User Interface &language: - Kasutajaliidese &keel: + + Copy transaction ID + Kopeeri tehingu ID - &Unit to show amounts in: - Summade kuvamise &Unit: + + Lock unspent + - Choose the default subdivision unit to show in the interface and when sending coins. - Vali liideses ning müntide saatmisel kuvatav vaikimisi alajaotus. + + Unlock unspent + - &OK - &OK + + Copy quantity + Kopeeri kogus - &Cancel - &Katkesta + + Copy fee + Kopeeri tehingutasu - default - vaikeväärtus + + Copy after fee + - none - puudub + + Copy bytes + Kopeeri baidid - Confirm options reset - Kinnita valikute algseadistamine + + Copy dust + Kopeeri puru - The supplied proxy address is invalid. - Sisestatud kehtetu proxy aadress. + + Copy change + Kopeeri vahetusraha - - - OverviewPage - Form - Vorm + + (%1 locked) + (%1 lukustatud) - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Bitconi võrgustikuga, kuid see toiming on hetkel lõpetamata. + + yes + jah - Pending: - Ootel: + + no + ei - Immature: - Ebaküps: + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Mined balance that has not yet matured - Mitte aegunud mine'itud jääk + + Can vary +/- %1 satoshi(s) per input. + - Total: - Kokku: + + + (no label) + (märgis puudub) - Recent transactions - Hiljutised tehingud + + change from %1 (%2) + + + + + (change) + (vahetusraha) - + - PaymentServer + CreateAssetDialog - Payment request error - Maksepäringu tõrge + + Coin Control Features + - Payment request rejected - Maksepäring tagasi lükatud + + Inputs... + - Payment request expired. - Maksepäring aegunud. + + automatically selected + - Unverified payment requests to custom payment scripts are unsupported. - Kinnitamata maksepäringud kohandatud makse scriptidele ei ole toetatud. + + Insufficient funds! + - - - PeerTableModel - - - QObject - Amount - Kogus + + + Quantity: + - N/A - N/A + + Bytes: + - %1 ms - %1 ms + + Amount: + - - %n hour(s) - %n tund%n tundi + + + Dust: + - - %n day(s) - %n päev%n päeva + + + Fee: + - - %n week(s) - %n nädal%n nädalat + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Muuda aadressi + + + + &Label + &Märgis + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Aadress + + + + New receiving address + Uus vastu võttev aadress + + + + New sending address + Uus saatev aadress + + + + Edit receiving address + Muuda vastuvõtvat aadressi + + + + Edit sending address + Muuda saatvat aadressi + + + + The entered address "%1" is not a valid Raven address. + Sisestatud aadress "%1" ei ole korrektne Raven aadress. + + + + The entered address "%1" is already in the address book. + Sisestatud aadress "%1" on juba aadressi raamatus. + + + + Could not unlock wallet. + Rahakoti lahtilukustamine ebaõnnestus. + + + + New key generation failed. + Uue võtme genereerimine ebaõnnestus. + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + nimi + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versioon + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Käsurea valikud + + + + Usage: + Kasutus: + + + + command-line options + käsurea valikud + + + + UI Options: + Kasutajaliidese Suvandid: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + Käivitamisel kuva laadimisekraani (vaikimisi %u) + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Teretulemast + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Tõrge + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Vorm + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Viimane ploki aeg + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Peida + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Ava URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + Vali maksepäringu fail + + + + Select payment request file to open + Vali maksepäringu fail mida avada + + + + OptionsDialog + + + Options + Valikud + + + + &Main + &Peamine + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Taasta kõik klientprogrammi seadete vaikeväärtused. + + + + &Reset Options + &Lähtesta valikud + + + + &Network + &Võrk + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + R&ahakott + + + + Expert + Ekspert + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Raveni kliendi pordi automaatne avamine ruuteris. Toimib, kui sinu ruuter aktsepteerib UPnP ühendust. + + + + Map port using &UPnP + Suuna port &UPnP kaudu + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxi &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Proxi port (nt 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Aken + + + + Show only a tray icon after minimizing the window. + Minimeeri systray alale. + + + + &Minimize to the tray instead of the taskbar + &Minimeeri systray alale + + + + M&inimize on close + M&inimeeri sulgemisel + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Kuva + + + + User Interface &language: + Kasutajaliidese &keel: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + Summade kuvamise &Unit: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Vali liideses ning müntide saatmisel kuvatav vaikimisi alajaotus. + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Katkesta + + + + default + vaikeväärtus + + + + none + puudub + + + + Confirm options reset + Kinnita valikute algseadistamine + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + Sisestatud kehtetu proxy aadress. + + + + OverviewPage + + + Form + Vorm + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Kuvatav info ei pruugi olla ajakohane. Ühenduse loomisel süngitakse sinu rahakott automaatselt Bitconi võrgustikuga, kuid see toiming on hetkel lõpetamata. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + Ootel: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Ebaküps: + + + + Mined balance that has not yet matured + Mitte aegunud mine'itud jääk + + + + Total: + Kokku: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Hiljutised tehingud + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Maksepäringu tõrge + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + Maksepäring tagasi lükatud + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + Maksepäring aegunud. + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + Kinnitamata maksepäringud kohandatud makse scriptidele ei ole toetatud. + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Kogus + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 ja %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + Salvesta QR Kood + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Kliendi versioon + + + + &Information + &Informatsioon + + + + Debug window + Debugimise aken + + + + General + Üldine + + + + Using BerkeleyDB version + Kasutab BerkeleyDB versiooni + + + + Datadir + + + + + Startup time + Käivitamise hetk + + + + Network + Võrgustik + + + + Name + Nimi + + + + Number of connections + Ühenduste arv + + + + Block chain + Ploki jada + + + + Current number of blocks + Plokkide hetkearv + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + Mälu kasutus + + + + &Reset + + + + + + Received + Vastuvõetud + + + + + Sent + Saadetud + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Suund + + + + Version + Versioon + + + + Starting Block + + + + + Synced Headers + Sünkroniseeritud Päised + + + + Synced Blocks + Sünkroniseeritud Plokid + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Teenused + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Viimane ploki aeg + + + + &Open + &Ava + + + + &Console + &Konsool + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + Silumise logifail + + + + Clear console + Puhasta konsool + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Ülevaateks võimalikest käsklustest trüki <b>help</b>. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + Sisenev + + + + Outbound + Väljuv + + + + Yes + Jah + + + + No + Ei + + + + + Unknown + Teadmata + + + + RavenGUI + + + Sign &message... + Signeeri &sõnum + + + + Synchronizing with network... + Võrgusünkimine... + + + + &Overview + &Ülevaade + + + + Node + + + + + Show general overview of wallet + Kuva rahakoti üld-ülevaade + + + + &Transactions + &Tehingud + + + + Browse transaction history + Sirvi tehingute ajalugu + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + V&älju + + + + Quit application + Väljumine + + + + &About %1 + &Teave %1 + + + + Show information about %1 + + + + + About &Qt + Teave &Qt kohta + + + + Show information about Qt + Kuva Qt kohta käiv info + + + + &Options... + &Valikud... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Krüpteeri Rahakott + + + + &Backup Wallet... + &Varunda Rahakott + + + + &Change Passphrase... + &Salafraasi muutmine + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + Ava &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Kettal olevate blokkide re-indekseerimine... + + + + Send coins to a Raven address + Saada münte Raveni aadressile + + + + Backup wallet to another location + Varunda rahakott teise asukohta + + + + Change the passphrase used for wallet encryption + Rahakoti krüpteerimise salafraasi muutmine + + + + Open debugging and diagnostic console + Ava debugimise ja diagnostika konsool + + + + &Verify message... + &Kontrolli sõnumit... + + + + Raven + Raven + + + + Wallet + Rahakott + + + + &Send + &Saada + + + + &Receive + &Võta vastu + + + + &Show / Hide + &Näita / Peida + + + + Show or hide the main Window + Näita või peida peaaken + + + + Encrypt the private keys that belong to your wallet + Krüpteeri oma rahakoti privaatvõtmed + + + + Sign messages with your Raven addresses to prove you own them + Omandi tõestamiseks allkirjasta sõnumid oma Raveni aadressiga + + + + Verify messages to ensure they were signed with specified Raven addresses + Kinnita sõnumid kindlustamaks et need allkirjastati määratud Raveni aadressiga + + + + &File + &Fail + + + + &Help + &Abi + + + + Request payments (generates QR codes and raven: URIs) + Loo maksepäring (genereerib QR koodid ja raveni: URId) + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + Ava raveni: URI või maksepäring + + + + &Command-line options + Käsurea valikud + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Kõvakettal olevate plokkide indekseerimine... + + + + Processing blocks on disk... + Kõvakettal olevate plokkide töötlemine... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 maas + + + + Last received block was generated %1 ago. + Viimane saabunud blokk loodi %1 tagasi. + + + + Transactions after this will not yet be visible. + Peale seda ei ole tehingud veel nähtavad. + + + + Error + Tõrge + + + + Warning + Hoiatus + + + + Information + Informatsioon + + + + Up to date + Ajakohane + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 klient + + + + Connecting to peers... + + + + + Catching up... + Jõuan järgi... + + + + Date: %1 + + Kuupäev: %1 + + + + + + Amount: %1 + + Summa: %1 + + + + + Type: %1 + + Tüüp: %1 + + + + + Label: %1 + + &Märgis: %1 + + + + + Address: %1 + + Aadress: %1 + + + + + Sent transaction + Saadetud tehing + + + + Incoming transaction + Sisenev tehing + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Rahakott on <b>krüpteeritud</b> ning hetkel <b>avatud</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Rahakott on <b>krüpteeritud</b> ning hetkel <b>suletud</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Summa: + + + + &Label: + &Märgis + + + + &Message: + &Sõnum: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Puhasta kõik vormi väljad. + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Näita + + + + Remove the selected entries from the list + + + + + Remove + Eemalda + + + + Copy URI + + + + + Copy label + Kopeeri märgis + + + + Copy message + Kopeeri sõnum + + + + Copy amount + Kopeeri summa + + + + ReceiveRequestDialog + + + QR Code + QR Kood + + + + Copy &URI + + + + + Copy &Address + &Kopeeri Aadress + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + Makse Informatsioon + + + + URI + + + + + Address + Aadress + + + + Amount + Summa + + + + Label + Silt + + + + Message + Sõnum + + + + Resulting URI too long, try to reduce the text for label / message. + URI liiga pikk, proovi vähendada märke / sõnumi pikkust. + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Kuupäev + + + + Label + Silt + + + + Message + Sõnum + + + + (no label) + (märge puudub) + + + + (no message) + (sõnum puudub) + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Müntide saatmine + + + + Coin Control Features + + + + + Inputs... + Sisendid... + + + + automatically selected + automaatselt valitud + + + + Insufficient funds! + Liiga suur summa + + + + Quantity: + Kogus: + + + + Bytes: + Baiti: + + + + Amount: + Summa: + + + + Fee: + Tasu: + + + + After Fee: + Peale tehingutasu: + + + + Change: + Vahetusraha: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Tehingu tasu: + + + + Choose... + Vali... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + kilobaidi kohta + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Peida + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Soovitatud: + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Saatmine mitmele korraga + + + + Add &Recipient + Lisa &Saaja + + + + Clear all fields of the form. + Puhasta kõik vormi väljad. + + + + Dust: + Puru: + + + + Confirmation time target: + + + + + Clear &All + Puhasta &Kõik + + + + Balance: + Jääk: + + + + Confirm the send action + Saatmise kinnitamine + + + + S&end + S&aada + + + + Copy quantity + Kopeeri kogus + + + + Copy amount + Kopeeri summa + + + + Copy fee + Kopeeri tehingutasu + + + + Copy after fee + + + + + Copy bytes + Kopeeri baidid + + + + Copy dust + Kopeeri puru + + + + Copy change + Kopeeri vahetusraha + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + Oled kindel, et soovid saata? + + + + added as transaction fee + lisatud kui tehingutasu + + + + Total Amount %1 + + + + + or + või + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + Saaja aadress ei ole korrektne. Palun kontrolli üle. + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + Maksepäring aegunud. + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Hoiatus: Ebakorrektne Raven aadress + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (märgis puudub) + + + + SendCoinsEntry + + + + + A&mount: + S&umma: + + + + &Label: + &Märgis + + + + Choose previously used address + Vali eelnevalt kasutatud aadress + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Kleebi aadress vahemälust + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + L&ahuta tehingutasu summast + + + + Message: + Sõnum: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Jah + + + + ShutdownWindow + + + %1 is shutting down... + %1 lülitub välja... + + + + Do not shut down the computer until this window disappears. + Ära lülita arvutit välja ennem kui see aken on kadunud. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signatuurid - Allkirjasta / Kinnita Sõnum + + + + &Sign Message + &Allkirjastamise teade + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + Raven aadress millega sõnum allkirjastada + + + + + Choose previously used address + Vali eelnevalt kasutatud aadress + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Kleebi aadress vahemälust + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Sisesta siia allkirjastamise sõnum + + + + Signature + Signatuur + + + + Copy the current signature to the system clipboard + Kopeeri praegune signatuur vahemällu + + + + Sign the message to prove you own this Raven address + Allkirjasta sõnum Raveni aadressi sulle kuulumise tõestamiseks + + + + Sign &Message + Allkirjasta &Sõnum + + + + Reset all sign message fields + Tühjenda kõik sõnumi allkirjastamise väljad + + + + + Clear &All + Puhasta &Kõik + + + + &Verify Message + &Kinnita Sõnum + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + Raven aadress millega sõnum on allkirjastatud + + + + Verify the message to ensure it was signed with the specified Raven address + Kinnita sõnum tõestamaks selle allkirjastatust määratud Raveni aadressiga. + + + + Verify &Message + Kinnita &Sõnum + + + + Reset all verify message fields + Tühjenda kõik sõnumi kinnitamise väljad + + + + Click "Sign Message" to generate signature + Allkirja loomiseks vajuta "Allkirjasta Sõnum" + + + + + The entered address is invalid. + Sisestatud aadress ei ole korrektne + + + + + + + Please check the address and try again. + Palun kontrolli aadressi ja proovi uuesti. + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + Rahakoti lahtilukustamine on katkestatud. + + + + Private key for the entered address is not available. + Sisestatud aadressi privaatvõti pole saadaval. + + + + Message signing failed. + Sõnumi allkirjastamine ebaõnnestus. + + + + Message signed. + Sõnum allkirjastatud + + + + The signature could not be decoded. + Allkirja polnud võimalik dekodeerida. + + + + + Please check the signature and try again. + Palun kontrolli allkirja ja proovi uuesti. + + + + The signature did not match the message digest. + Allkiri ei vastanud sõnumi krüptoräsile. + + + + Message verification failed. + Sõnumi verifitseerimine ebaõnnestus. + + + + Message verified. + Sõnum verifitseeritud. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/kinnitamata + + + + %1 confirmations + %1 kinnitust + + + + + Status + Olek + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Kuupäev + + + + Source + + + + + Generated + Genereeritud + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + märgis + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + pole vastu võetud + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + Tehingutasu + + + + Net amount + + + + + + + + Message + Sõnum + + + + + Comment + Kommentaar + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + Kaupleja + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + Sisendid + + + + Amount + Summa + + + + + true + tõene + + + + + false + väär + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Paan kuvab tehingu detailid + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Kuupäev + + + + Type + Tüüp + + + + Label + Silt + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + Kinnitamata + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (silt puudub) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Kõik + + + + Today + Täna + + + + This week + Käesolev nädal + + + + This month + Käesolev kuu + + + + Last month + Eelmine kuu + + + + This year + Käesolev aasta + + + + Range... + Vahemik... + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + Minimaalne summa + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Kopeeri aadress + + + + Copy label + Kopeeri märgis + + + + Copy amount + Kopeeri summa + + + + Copy transaction ID + Kopeeri tehingu ID + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Komadega eraldatud väärtuste fail (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Kuupäev + + + + Type + Tüüp + + + + Label + Silt + + + + Address + Aadress + + + + Asset + + + + + ID + ID + + + + Exporting Failed + Eksport ebaõnnestus. + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Valikud: + + + + Specify data directory + Täpsusta andmekataloog + + + + Connect to a node to retrieve peer addresses, and disconnect + Peeri aadressi saamiseks ühendu korraks node'iga + + + + Specify your own public address + Täpsusta enda avalik aadress + + + + Accept command line and JSON-RPC commands + Luba käsurea ning JSON-RPC käsklusi + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Tööta taustal ning aktsepteeri käsklusi + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raveni tuumik + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Määratud aadressiga sidumine ning sellelt kuulamine. IPv6 jaoks kasuta vormingut [host]:port + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Käivita käsklus, kui rahakoti tehing muutub (%s cmd's muudetakse TxID'ks) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Blokeeri loomise valikud: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Tuvastati vigane bloki andmebaas + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + Kas soovid bloki andmebaasi taastada? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Tõrge bloki andmebaasi käivitamisel + + + + Error initializing wallet database environment %s! + Tõrge rahakoti keskkonna %s käivitamisel! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Tõrge bloki baasi lugemisel + + + + Error opening block database + Tõrge bloki andmebaasi avamisel + + + + Error: Disk space is low! + Tõrge: liiga vähe kettaruumi! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + - %1 and %2 - %1 ja %2 + + Unable to bind to %s on this computer. %s is probably already running. + - - %n year(s) - %n aasta%n aastat + + + Unsupported argument -benchmark ignored, use -debug=bench. + - - - QObject::QObject - - - QRImageWidget - Save QR Code - Salvesta QR Kood + + Unsupported argument -debugnet ignored, use -debug=net. + - - - RPCConsole - N/A - N/A + + Unsupported argument -tor found, use -onion. + - Client version - Kliendi versioon + + Unsupported logging category %s=%s. + - &Information - &Informatsioon + + Upgrading UTXO database + - Debug window - Debugimise aken + + Use UPnP to map the listening port (default: %u) + - General - Üldine + + Use the test chain + - Using BerkeleyDB version - Kasutab BerkeleyDB versiooni + + User Agent comment (%s) contains unsafe characters. + - Startup time - Käivitamise hetk + + Verifying blocks... + Kontrollin blokke... - Network - Võrgustik + + Wallet %s resides outside data directory %s + - Name - Nimi + + Wallet debugging/testing options: + - Number of connections - Ühenduste arv + + Wallet needed to be rewritten: restart %s to complete + - Block chain - Ploki jada + + Wallet options: + Rahakoti valikud: - Current number of blocks - Plokkide hetkearv + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Memory usage - Mälu kasutus + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Received - Vastuvõetud + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Sent - Saadetud + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Direction - Suund + + Error: Listening for incoming connections failed (listen returned error %s) + - Version - Versioon + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - Synced Headers - Sünkroniseeritud Päised + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Synced Blocks - Sünkroniseeritud Plokid + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Services - Teenused + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Last block time - Viimane ploki aeg + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - &Open - &Ava + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Console - &Konsool + + The transaction amount is too small to send after the fee has been deducted + - Debug log file - Silumise logifail + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Clear console - Puhasta konsool + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Ajaloo sirvimiseks kasuta üles ja alla nooli, ekraani puhastamiseks <b>Ctrl-L</b>. + + (default: %u) + (vaikimisi: %u) - Type <b>help</b> for an overview of available commands. - Ülevaateks võimalikest käsklustest trüki <b>help</b>. + + Accept public REST requests (default: %u) + - %1 B - %1 B + + Automatically create Tor hidden service (default: %d) + - %1 KB - %1 B + + Connect through SOCKS5 proxy + - %1 MB - %1 MB + + Error loading %s: You can't disable HD on an already existing HD wallet + - %1 GB - %1 GB + + Error reading from database, shutting down. + - Inbound - Sisenev + + Error upgrading chainstate database + - Outbound - Väljuv + + Imports blocks from external blk000??.dat file on startup + - Yes - Jah + + Information + Informatsioon - No - Ei + + Invalid -onion address or hostname: '%s' + - Unknown - Teadmata + + Invalid -proxy address or hostname: '%s' + - - - ReceiveCoinsDialog - &Amount: - &Summa: + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Label: - &Märgis + + Invalid netmask specified in -whitelist: '%s' + - &Message: - &Sõnum: + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Clear all fields of the form. - Puhasta kõik vormi väljad. + + Need to specify a port with -whitebind: '%s' + - Show - Näita + + Node relay options: + - Remove - Eemalda + + RPC server options: + RPC serveri valikud: - Copy label - Kopeeri märgis + + Reducing -maxconnections from %d to %d, because of system limitations. + - Copy message - Kopeeri sõnum + + Rescan the block chain for missing wallet transactions on startup + - Copy amount - Kopeeri summa + + Send trace/debug info to console instead of debug.log file + Saada jälitus/debug, debug.log faili asemel, konsooli - - - ReceiveRequestDialog - QR Code - QR Kood + + Show all debugging options (usage: --help -help-debug) + - Copy &Address - &Kopeeri Aadress + + Shrink debug.log file on client startup (default: 1 when no -debug) + Kahanda programmi käivitamisel debug.log faili (vaikeväärtus: 1, kui ei ole -debug) - Payment information - Makse Informatsioon + + Signing transaction failed + Tehingu allkirjastamine ebaõnnestus - Address - Aadress + + The transaction amount is too small to pay the fee + Tehingu summa on tasu maksmiseks liiga väikene - Amount - Summa + + This is experimental software. + - Label - Silt + + Tor control port password (default: empty) + - Message - Sõnum + + Tor control port to use if onion listening enabled (default: %s) + - Resulting URI too long, try to reduce the text for label / message. - URI liiga pikk, proovi vähendada märke / sõnumi pikkust. + + Transaction amount too small + Tehingu summa liiga väikene - - - RecentRequestsTableModel - Date - Kuupäev + + Transaction too large for fee policy + - Label - Silt + + Transaction too large + Tehing liiga suur - Message - Sõnum + + Unable to bind to %s on this computer (bind returned error %s) + - (no label) - (märge puudub) + + Upgrade wallet to latest format on startup + - (no message) - (sõnum puudub) + + Username for JSON-RPC connections + JSON-RPC ühenduste kasutajatunnus - - - SendCoinsDialog - Send Coins - Müntide saatmine + + Valid Verifier + - Inputs... - Sisendid... + + Variable is not allow in the expression: ' + - automatically selected - automaatselt valitud + + Verifier String doesn't exist for asset: + - Insufficient funds! - Liiga suur summa + + Verifier String for asset trasnfer, not found + - Quantity: - Kogus: + + Verifier not found for asset: + - Bytes: - Baiti: + + Verifier string can not be empty. To default to true, use "true" + - Amount: - Summa: + + Verifier string is empty + - Fee: - Tasu: + + Verifier string not found + - After Fee: - Peale tehingutasu: + + Verifying wallet(s)... + - Change: - Vahetusraha: + + Warning + Hoiatus - Transaction Fee: - Tehingu tasu: + + Warning: unknown new rules activated (versionbit %i) + - Choose... - Vali... + + Whether to operate in a blocks only mode (default: %u) + - per kilobyte - kilobaidi kohta + + You need to rebuild the database using -reindex to change -txindex + - Hide - Peida + + Zapping all transactions from wallet... + - Recommended: - Soovitatud: + + ZeroMQ notification options: + - normal - normaalne + + Password for JSON-RPC connections + JSON-RPC ühenduste salasõna - fast - kiire + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Käivita käsklus, kui parim plokk muutub (käskluse %s asendatakse ploki hash'iga) - Send to multiple recipients at once - Saatmine mitmele korraga + + Allow DNS lookups for -addnode, -seednode and -connect + -addnode, -seednode ja -connect tohivad kasutada DNS lookup'i - Add &Recipient - Lisa &Saaja + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Clear all fields of the form. - Puhasta kõik vormi väljad. + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Dust: - Puru: + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Clear &All - Puhasta &Kõik + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Balance: - Jääk: + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Confirm the send action - Saatmise kinnitamine + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - S&end - S&aada + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Copy quantity - Kopeeri kogus + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Copy amount - Kopeeri summa + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Copy fee - Kopeeri tehingutasu + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Copy bytes - Kopeeri baidid + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Copy dust - Kopeeri puru + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Copy change - Kopeeri vahetusraha + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Are you sure you want to send? - Oled kindel, et soovid saata? + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - added as transaction fee - lisatud kui tehingutasu + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - or - või + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - The recipient address is not valid. Please recheck. - Saaja aadress ei ole korrektne. Palun kontrolli üle. + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Payment request expired. - Maksepäring aegunud. + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Warning: Invalid Raven address - Hoiatus: Ebakorrektne Raven aadress + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - (no label) - (märgis puudub) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - - - SendCoinsEntry - A&mount: - S&umma: + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Pay &To: - Maksa &: + + Output debugging information (default: %u, supplying <category> is optional) + - &Label: - &Märgis + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Choose previously used address - Vali eelnevalt kasutatud aadress + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Alt+A - Alt+A + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Paste address from clipboard - Kleebi aadress vahemälust + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Alt+P - Alt+P + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - S&ubtract fee from amount - L&ahuta tehingutasu summast + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Message: - Sõnum: + + The default height that is required before rewards are allowed to be sent out + - Pay To: - Maksa : + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - - - SendConfirmationDialog - Yes - Jah + + This address doesn't contain the correct tags to pass the verifier string check: + - - - ShutdownWindow - %1 is shutting down... - %1 lülitub välja... + + This is the transaction fee you may pay when fee estimates are not available. + - Do not shut down the computer until this window disappears. - Ära lülita arvutit välja ennem kui see aken on kadunud. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signatuurid - Allkirjasta / Kinnita Sõnum + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - &Sign Message - &Allkirjastamise teade + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - The Raven address to sign the message with - Raven aadress millega sõnum allkirjastada + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Choose previously used address - Vali eelnevalt kasutatud aadress + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Alt+A - Alt+A + + Unable to reissue asset: unit must be larger than current unit selection + - Paste address from clipboard - Kleebi aadress vahemälust + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Alt+P - Alt+P + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Enter the message you want to sign here - Sisesta siia allkirjastamise sõnum + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Signature - Signatuur + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Copy the current signature to the system clipboard - Kopeeri praegune signatuur vahemällu + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Sign the message to prove you own this Raven address - Allkirjasta sõnum Raveni aadressi sulle kuulumise tõestamiseks + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Sign &Message - Allkirjasta &Sõnum + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Reset all sign message fields - Tühjenda kõik sõnumi allkirjastamise väljad + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Clear &All - Puhasta &Kõik + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - &Verify Message - &Kinnita Sõnum + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - The Raven address the message was signed with - Raven aadress millega sõnum on allkirjastatud + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Verify the message to ensure it was signed with the specified Raven address - Kinnita sõnum tõestamaks selle allkirjastatust määratud Raveni aadressiga. + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Verify &Message - Kinnita &Sõnum + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Reset all verify message fields - Tühjenda kõik sõnumi kinnitamise väljad + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Click "Sign Message" to generate signature - Allkirja loomiseks vajuta "Allkirjasta Sõnum" + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - The entered address is invalid. - Sisestatud aadress ei ole korrektne + + %s is set very high! + - Please check the address and try again. - Palun kontrolli aadressi ja proovi uuesti. + + ' doesn't exist in the database + - Wallet unlock was cancelled. - Rahakoti lahtilukustamine on katkestatud. + + ' has already been used + - Private key for the entered address is not available. - Sisestatud aadressi privaatvõti pole saadaval. + + ' is not a valid character in the expression: + - Message signing failed. - Sõnumi allkirjastamine ebaõnnestus. + + ' the amount trying to reissue is to large + - Message signed. - Sõnum allkirjastatud + + (default: %s) + (vaikimisi: %s) - The signature could not be decoded. - Allkirja polnud võimalik dekodeerida. + + A space separated list of 12-words used to import a bip44 wallet + - Please check the signature and try again. - Palun kontrolli allkirja ja proovi uuesti. + + Always query for peer addresses via DNS lookup (default: %u) + - The signature did not match the message digest. - Allkiri ei vastanud sõnumi krüptoräsile. + + Asset Transfer amounts must be greater than 0 + - Message verification failed. - Sõnumi verifitseerimine ebaõnnestus. + + Asset doesn't exist: + - Message verified. - Sõnum verifitseeritud. + + Asset must be a qualifier, sub qualifier, or a restricted asset + - - - SplashScreen - [testnet] - [testnet] + + Asset name is not valid + - - - TrafficGraphWidget - KB/s - KB/s + + Asset with this name is already in the mempool + - - - TransactionDesc - %1/unconfirmed - %1/kinnitamata + + Done Loading + - %1 confirmations - %1 kinnitust + + Enable publish raw asset messages in <address> + - Status - Olek + + Error creating %s: You can't create non-HD wallets with this version. + - Date - Kuupäev + + Error loading wallet %s. -wallet filename must be a regular file. + - Generated - Genereeritud + + Error loading wallet %s. Duplicate -wallet filename specified. + - label - märgis + + Error loading wallet %s. Invalid characters in -wallet filename. + - not accepted - pole vastu võetud + + Error not set + - Transaction fee - Tehingutasu + + Error writing bip 39 passphrase to database + - Message - Sõnum + + Error writing bip 39 vchseed to database + - Comment - Kommentaar + + Error writing bip 39 words to database + - Merchant - Kaupleja + + Every '(' must have a corresponding ')' in the expression: + - Inputs - Sisendid + + Failed to extract destination from change script + - Amount - Summa + + Failed to find restricted asset change address from inputs + - true - tõene + + Failed to get asset data from script + - false - väär + + Failed to get verifier string from output: + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Paan kuvab tehingu detailid + + Failed to load Assets Database + - - - TransactionTableModel - Date - Kuupäev + + Flag must be 1 or 0 + - Type - Tüüp + + How many blocks to check at startup (default: %u, 0 = all) + - Label - Silt + + Include IP addresses in debug output (default: %u) + - Unconfirmed - Kinnitamata + + Init Message Channels - Scanning Asset Transactions + - (no label) - (silt puudub) + + Insufficient asset funds + - - - TransactionView - All - Kõik + + Invalid Qualifier Name: + - Today - Täna + + Invalid expressions in verifier string: + - This week - Käesolev nädal + + Invalid parameter: amount must be + - This month - Käesolev kuu + + Invalid parameter: amount must be between + - Last month - Eelmine kuu + + Invalid parameter: asset amount can't be equal to or less than zero. + - This year - Käesolev aasta + + Invalid parameter: asset amount greater than max money: + - Range... - Vahemik... + + Invalid parameter: asset_name ' + - Min amount - Minimaalne summa + + Invalid parameter: has_ipfs must be 0 or 1. + - Copy address - Kopeeri aadress + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Copy label - Kopeeri märgis + + Invalid parameter: reissuable must be 0 or 1 + - Copy amount - Kopeeri summa + + Invalid parameter: reissuable must be 0 + - Copy transaction ID - Kopeeri tehingu ID + + Invalid parameter: units must be + - Comma separated file (*.csv) - Komadega eraldatud väärtuste fail (*.csv) + + Invalid parameter: units must be between 0-8. + - Date - Kuupäev + + Invalid syntax: + - Type - Tüüp + + Keypool ran out, please call keypoolrefill first + - Label - Silt + + Length is to large. Please use a smaller length + - Address - Aadress + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - ID - ID + + Listen for connections on <port> (default: %u or testnet: %u) + - Exporting Failed - Eksport ebaõnnestus. + + Maintain at most <n> connections to peers (default: %u) + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Valikud: + + Make the wallet broadcast transactions + - Specify data directory - Täpsusta andmekataloog + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Connect to a node to retrieve peer addresses, and disconnect - Peeri aadressi saamiseks ühendu korraks node'iga + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Specify your own public address - Täpsusta enda avalik aadress + + Mempool cleared + - Accept command line and JSON-RPC commands - Luba käsurea ning JSON-RPC käsklusi + + Multiple verifier strings found in transaction + - Run in the background as a daemon and accept commands - Tööta taustal ning aktsepteeri käsklusi + + Passphrase securing your 12-word mnemonic word-list + - Raven Core - Raveni tuumik + + Prepend debug output with timestamp (default: %u) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Määratud aadressiga sidumine ning sellelt kuulamine. IPv6 jaoks kasuta vormingut [host]:port + + Relay and mine data carrier transactions (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Käivita käsklus, kui rahakoti tehing muutub (%s cmd's muudetakse TxID'ks) + + Relay non-P2SH multisig (default: %u) + - Block creation options: - Blokeeri loomise valikud: + + Restricted asset transfer from address that has been frozen + - Corrupted block database detected - Tuvastati vigane bloki andmebaas + + Send transactions with full-RBF opt-in enabled (default: %u) + - Do you want to rebuild the block database now? - Kas soovid bloki andmebaasi taastada? + + Set key pool size to <n> (default: %u) + - Error initializing block database - Tõrge bloki andmebaasi käivitamisel + + Set maximum BIP141 block weight (default: %d) + - Error initializing wallet database environment %s! - Tõrge rahakoti keskkonna %s käivitamisel! + + Set the Maximum reorg depth (default: %u) + - Error loading block database - Tõrge bloki baasi lugemisel + + Set the number of threads to service RPC calls (default: %d) + - Error opening block database - Tõrge bloki andmebaasi avamisel + + Signing asset transaction failed + - Error: Disk space is low! - Tõrge: liiga vähe kettaruumi! + + Specify configuration file (default: %s) + - Failed to listen on any port. Use -listen=0 if you want this. - Pordi kuulamine nurjus. Soovikorral kasuta -listen=0. + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verifying blocks... - Kontrollin blokke... + + Specify pid file (default: %s) + - Verifying wallet... - Kontrollin rahakotti... + + Spend unconfirmed change when sending transactions (default: %u) + - Wallet options: - Rahakoti valikud: + + Starting network threads... + - (default: %u) - (vaikimisi: %u) + + The symbol: ' + - Information - Informatsioon + + The verifier string has two operators without a tag between them + - RPC server options: - RPC serveri valikud: + + The wallet will avoid paying less than the minimum relay fee. + - Send trace/debug info to console instead of debug.log file - Saada jälitus/debug, debug.log faili asemel, konsooli + + This is the minimum transaction fee you pay on every transaction. + - Shrink debug.log file on client startup (default: 1 when no -debug) - Kahanda programmi käivitamisel debug.log faili (vaikeväärtus: 1, kui ei ole -debug) + + This is the transaction fee you will pay if you send a transaction. + - Signing transaction failed - Tehingu allkirjastamine ebaõnnestus + + Threshold for disconnecting misbehaving peers (default: %u) + - The transaction amount is too small to pay the fee - Tehingu summa on tasu maksmiseks liiga väikene + + Transaction amounts must not be negative + - Transaction amount too small - Tehingu summa liiga väikene + + Transaction has too long of a mempool chain + - Transaction too large - Tehing liiga suur + + Transaction must have at least one recipient + - Username for JSON-RPC connections - JSON-RPC ühenduste kasutajatunnus + + Turn off the databasing the messages sent with assets (default: %u) + - Warning - Hoiatus + + Unable to generate initial keys + - Password for JSON-RPC connections - JSON-RPC ühenduste salasõna + + Unable to get coin to verify restricted asset transfer from address + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Käivita käsklus, kui parim plokk muutub (käskluse %s asendatakse ploki hash'iga) + + Unable to reissue asset: amount must be 0 or larger + - Allow DNS lookups for -addnode, -seednode and -connect - -addnode, -seednode ja -connect tohivad kasutada DNS lookup'i + + Unable to reissue asset: asset_name ' + - Loading addresses... - Aadresside laadimine... + + Unable to reissue asset: reissuable is set to false + - (default: %s) - (vaikimisi: %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Vigane -proxi aadress: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' + + Unknown network specified in -onlynet: '%s' + Kirjeldatud tundmatu võrgustik -onlynet'is: '%s' + Insufficient funds Liiga suur summa + Loading block index... Klotside indeksi laadimine... - Add a node to connect to and attempt to keep the connection open - Lisa node ning hoia ühendus avatud - - + Loading wallet... Rahakoti laadimine... + Cannot downgrade wallet Rahakoti vanandamine ebaõnnestus - Cannot write default address - Tõrge vaikimisi aadressi kirjutamisel - - + Rescanning... Üleskaneerimine... - Done loading - Laetud - - + Error Tõrge diff --git a/src/qt/locale/raven_et_EE.ts b/src/qt/locale/raven_et_EE.ts index 5579f786de..a56b38961d 100644 --- a/src/qt/locale/raven_et_EE.ts +++ b/src/qt/locale/raven_et_EE.ts @@ -1,44 +1,141 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Loo uus aadress + &New &Uus + + Copy the currently selected address to the system clipboard + + + + &Copy &Kopeeri + + C&lose + + + + Delete the currently selected address from the list Kustuta valitud aadress nimekirjast + + Export the data in the current tab to a file + + + + + &Export + + + + &Delete &Kustuta + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + &Edit &Muuda - + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Silt + Address Aadress + (no label) (silt puudub) @@ -46,734 +143,8144 @@ AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Sisesta parool + New passphrase Uus parool + Repeat new passphrase Korda uut parooli + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Krüpteeri rahakott + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet Dekrüpteeri rahakott + Change passphrase Muuda parooli + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + Are you sure you wish to encrypt your wallet? Kas oled kindel, et soovid rahakoti krüpteerida? + + Wallet encrypted Rahakott krüpteeritud + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Rahakoti krüpteerimine ebaõnnestus + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Rahakoti krüpteerimine ebaõnnestus sisemise vea tõttu. Sinu rahakotti ei krüpteeritud. + + The supplied passphrases do not match. Sisestatud paroolid ei kattu. + Wallet unlock failed Rahakoti lahtilukustamine ebaõnnestus + + + + The passphrase entered for the wallet decryption was incorrect. + + + + Wallet decryption failed Rahakoti dekrüpteerimine ebaõnnestus + Wallet passphrase was successfully changed. Rahakoti parooli vahetus õnnestus. - - - BanTableModel - - - RavenGUI - - Synchronizing with network... - Võrguga sünkroniseerimine... - - - &Overview - &Ülevaade - - - Quit application - Välju rakendusest - - &Options... - &Valikud... + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Open &URI... - Ava &URI... + + Asset Selection + - Reindexing blocks on disk... - Kõvakettal olevate plokkide reindekseerimine... + + Quantity: + - Raven - Raven + + Bytes: + - Wallet - Rahakott + + Amount: + - &Send - &Saada + + Dust: + - &Show / Hide - &Näita / Peida + + Fee: + - &File - &Fail + + After Fee: + - &Settings - &Seaded + + Change: + - &Help - &Abi + + (un)select all + - &Command-line options - &Käsurea valikud + + Tree mode + - %1 behind - %1 ajast maas + + List mode + - Transactions after this will not yet be visible. - Hilisemad transaktsioonid ei ole veel nähtavad. + + View assets that you have the ownership asset for + - Error - Viga + + View Administrator Assets + - Warning - Hoiatus + + Asset + - Information - Informatsioon + + Amount + - - - CoinControlDialog - Amount: - Kogus + + Received with label + - Amount - Kogus + + Received with address + + Date - Kuupäev + + Confirmations - Kinnitused + + Confirmed - Kinnitatud + + Copy address - Kopeeri aadress + + + + + Copy label + + + Copy amount - Kopeeri kogus + + Copy transaction ID - Kopeeri transaktsiooni ID + - yes - jah + + Lock unspent + - no - ei + + Unlock unspent + - (no label) - (silt puudub) + + Copy quantity + - - - EditAddressDialog - &Address - &Aadress + + Copy fee + - New key generation failed. - Uue võtme genereerimine ebaõnnestus. + + Copy after fee + - - - FreespaceChecker - name - nimi + + Copy bytes + - - - HelpMessageDialog - version - versioon + + Copy dust + - Command-line options - Käsurea valikud + + Copy change + - Usage: - Kasutus: + + (%1 locked) + - command-line options - käsurea valikud + + yes + - - - Intro - Welcome - Tere tulemast + + no + - Error - Viga + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - Options - Valikud + + Can vary +/- %1 satoshi(s) per input. + - MB - MB + + + (no label) + - &Network - &Võrk + + change from %1 (%2) + - IPv4 - IPv4 + + (change) + + + + AssetTableModel - IPv6 - IPv6 + + Name + - Tor - Tor + + Quantity + + + + AssetsDialog - &OK - &OK + + + Send Coins + - - - OverviewPage - Pending: - Ootel: + + Asset Control Features + - Total: - Kokku: + + Inputs... + - Recent transactions - Hiljutised transaktsioonid + + automatically selected + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Kogus + + Insufficient funds! + - - - QObject::QObject - - - QRImageWidget - &Save Image... - &Salvesta Pilt... + + Quantity: + - &Copy Image - &Kopeeri Pilt + + Bytes: + - Save QR Code - Salvesta QR Kood + + Amount: + - - - RPCConsole - &Information - &Informatsioon + + Dust: + - General - Üldine + + Fee: + - Network - Võrk + + After Fee: + - Name - Nimi + + Change: + - Number of connections - Ühenduste arv + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Block chain - Blokiahel + + Custom change address + - Memory usage - Mälu kasutus + + Transaction Fee: + - Received - Vastu võetud + + Choose... + - Sent - Saadetud + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Direction - Suund + + Warning: Fee estimation is currently not possible. + - Version - Versioon + + collapse fee-settings + - Services - Teenused + + Hide + - Ping Time - Pingi Aeg + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - &Network Traffic - &Võrgu Liiklus + + per kilobyte + - Clear console - Puhasta konsool + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - never - mitte kunagi + + (read the tooltip) + - Inbound - Sisenev + + Recommended: + - Outbound - Väljuv + + Custom: + - Yes - Jah + + (Smart fee not initialized yet. This usually takes a few blocks...) + - No - Ei + + Confirmation time target: + - - - ReceiveCoinsDialog - &Amount: - &Kogus: + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - &Message: - &Sõnum: + + Request Replace-By-Fee + - Remove - Eemalda + + Confirm the send action + - Copy message - Kopeeri sõnum + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + Balance: + + + + + Copy quantity + + + + Copy amount - Kopeeri kogus + - - - ReceiveRequestDialog - QR Code - QR Kood + + Copy fee + - &Save Image... - &Salvesta Pilt... + + Copy after fee + - Address - Aadress + + Copy bytes + - Amount - Kogus + + Copy dust + - Label - Silt + + Copy change + - Message - Sõnum + + %1 (%2 blocks) + - - - RecentRequestsTableModel - Date - Kuupäev + + + + + %1 to %2 + - Label - Silt + + Are you sure you want to send? + - Message - Sõnum + + added as transaction fee + - (no label) - (silt puudub) + + Confirm send assets + - - - SendCoinsDialog - Amount: - Kogus + + The recipient address is not valid. Please recheck. + - Choose... - Vali... + + The amount to pay must be larger than 0. + - normal - normaalne + + The amount exceeds your balance. + - fast - kiire + + The total exceeds your balance when the %1 transaction fee is included. + - Copy amount - Kopeeri kogus + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + (no label) - (silt puudub) + - SendCoinsEntry + AssignQualifier - Alt+A - Alt+A + + Frame + - Alt+P - Alt+P + + Select Type: + - - - SendConfirmationDialog - Yes - Jah + + Select Qualifier: + - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + Address: + - Alt+P - Alt+P + + IPFS / Hash: + - Signature - Allkiri + + Custom Change Address + - Please check the address and try again. - Palun kontrolli aadressi ja proovi uuesti. + + Check + - Message signed. - Sõnum allkirjastatud. + + Clear + - The signature could not be decoded. - Allkirja ei õnnestunud dekodeerida. + + Submit + - Please check the signature and try again. - Palun kontrolli allkirja ja proovi uuesti. + + Assign Qualifier + - Message verification failed. - Sõnumi verifitseerimine ebaõnnestus. + + Remove Qualifier + - Message verified. - Sõnum verifitseeritud. + + Data has been validated, You can now submit the qualifier request + - - - SplashScreen - [testnet] - [test võrk] + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + - TrafficGraphWidget + BanTableModel - KB/s - KB/s + + IP/Netmask + + + + + Banned Until + - TransactionDesc + CoinControlDialog - Status - Olek + + Coin Selection + - Date - Kuupäev + + Quantity: + - Message - Sõnum + + Bytes: + - Comment - Kommentaar + + Amount: + Kogus - Transaction ID - Transaktsiooni ID + + Fee: + - Amount - Kogus + + Dust: + - - - TransactionDescDialog - - - TransactionTableModel - Date - Kuupäev + + After Fee: + - Type - Tüüp + + Change: + - Label - Silt + + (un)select all + - (no label) - (silt puudub) + + Tree mode + - - - TransactionView - All - Kõik + + List mode + - Today - Täna + + Amount + Kogus - This month - Käimasolev kuu + + Received with label + - Last month - Eelmine kuu + + Received with address + - This year - Käimasolev aasta + + Date + Kuupäev - Range... - Vahemik... + + Confirmations + Kinnitused + + + + Confirmed + Kinnitatud + Copy address Kopeeri aadress + + Copy label + + + + + Copy amount - Kopeeri summa + Kopeeri kogus + Copy transaction ID Kopeeri transaktsiooni ID - Confirmed - Kinnitatud + + Lock unspent + - Date - Kuupäev + + Unlock unspent + - Type - Tüüp + + Copy quantity + - Label - Silt + + Copy fee + - Address - Aadress + + Copy after fee + - ID - ID + + Copy bytes + - Range: - Vahemik: + + Copy dust + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - Backup Wallet - Varunda Rahakott + + Copy change + - Wallet Data (*.dat) - Rahakoti Andmed (*.dat) + + (%1 locked) + - Backup Failed - Varundamine Ebaõnnestus + + yes + jah + + + + no + ei + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (silt puudub) + + + + change from %1 (%2) + + + + + (change) + - + - raven-core + CreateAssetDialog - Options: - Valikud: + + Coin Control Features + - Raven Core - Raven Core + + Inputs... + - Information - Informatsioon + + automatically selected + - Warning - Hoiatus + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Aadress + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + Uue võtme genereerimine ebaõnnestus. + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + nimi + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versioon + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Käsurea valikud + + + + Usage: + Kasutus: + + + + command-line options + käsurea valikud + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Tere tulemast + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Viga + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Valikud + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &Võrk + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + Ootel: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Kokku: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Hiljutised transaktsioonid + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Kogus + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &Salvesta Pilt... + + + + &Copy Image + &Kopeeri Pilt + + + + Save QR Code + Salvesta QR Kood + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + &Informatsioon + + + + Debug window + + + + + General + Üldine + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Võrk + + + + Name + Nimi + + + + Number of connections + Ühenduste arv + + + + Block chain + Blokiahel + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + Mälu kasutus + + + + &Reset + + + + + + Received + Vastu võetud + + + + + Sent + Saadetud + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Suund + + + + Version + Versioon + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Teenused + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + Pingi Aeg + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + &Võrgu Liiklus + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + Puhasta konsool + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + mitte kunagi + + + + Inbound + Sisenev + + + + Outbound + Väljuv + + + + Yes + Jah + + + + No + Ei + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Võrguga sünkroniseerimine... + + + + &Overview + &Ülevaade + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + Välju rakendusest + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Valikud... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + Ava &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Kõvakettal olevate plokkide reindekseerimine... + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Rahakott + + + + &Send + &Saada + + + + &Receive + + + + + &Show / Hide + &Näita / Peida + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Fail + + + + &Help + &Abi + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + &Käsurea valikud + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 ajast maas + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + Hilisemad transaktsioonid ei ole veel nähtavad. + + + + Error + Viga + + + + Warning + Hoiatus + + + + Information + Informatsioon + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Kogus: + + + + &Label: + + + + + &Message: + &Sõnum: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + Eemalda + + + + Copy URI + + + + + Copy label + + + + + Copy message + Kopeeri sõnum + + + + Copy amount + Kopeeri kogus + + + + ReceiveRequestDialog + + + QR Code + QR Kood + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + &Salvesta Pilt... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Aadress + + + + Amount + Kogus + + + + Label + Silt + + + + Message + Sõnum + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Kuupäev + + + + Label + Silt + + + + Message + Sõnum + + + + (no label) + (silt puudub) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Kogus + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + Vali... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + Kopeeri kogus + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (silt puudub) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Jah + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + Allkiri + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + Palun kontrolli aadressi ja proovi uuesti. + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + Sõnum allkirjastatud. + + + + The signature could not be decoded. + Allkirja ei õnnestunud dekodeerida. + + + + + Please check the signature and try again. + Palun kontrolli allkirja ja proovi uuesti. + + + + The signature did not match the message digest. + + + + + Message verification failed. + Sõnumi verifitseerimine ebaõnnestus. + + + + Message verified. + Sõnum verifitseeritud. + + + + SplashScreen + + + [testnet] + [test võrk] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + Olek + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Kuupäev + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Sõnum + + + + + Comment + Kommentaar + + + + + Transaction ID + Transaktsiooni ID + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Kogus + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Kuupäev + + + + Type + Tüüp + + + + Label + Silt + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (silt puudub) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Kõik + + + + Today + Täna + + + + This week + + + + + This month + Käimasolev kuu + + + + Last month + Eelmine kuu + + + + This year + Käimasolev aasta + + + + Range... + Vahemik... + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Kopeeri aadress + + + + Copy label + + + + + Copy amount + Kopeeri summa + + + + Copy transaction ID + Kopeeri transaktsiooni ID + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + Kinnitatud + + + + Watch-only + + + + + Date + Kuupäev + + + + Type + Tüüp + + + + Label + Silt + + + + Address + Aadress + + + + Asset + + + + + ID + ID + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + Vahemik: + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + Varunda Rahakott + + + + Wallet Data (*.dat) + Rahakoti Andmed (*.dat) + + + + Backup Failed + Varundamine Ebaõnnestus + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Valikud: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informatsioon + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Hoiatus + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Viga diff --git a/src/qt/locale/raven_eu_ES.ts b/src/qt/locale/raven_eu_ES.ts index d645a88473..ccb5324416 100644 --- a/src/qt/locale/raven_eu_ES.ts +++ b/src/qt/locale/raven_eu_ES.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Eskuin-klika helbidea edo etiketa editatzeko + Create a new address Sortu helbide berria + &New &Berria + Copy the currently selected address to the system clipboard Kopiatu hautatutako helbidea sistemaren arbelera + &Copy &Kopiatu + C&lose &Itxi + Delete the currently selected address from the list Ezabatu aukeratutako helbideak listatik + Export the data in the current tab to a file Esportatu datuak uneko fitxategian + &Export &Esportatu + &Delete &Ezabatu + Choose the address to send coins to Aukeratu helbidea txanponak bidaltzeko + Choose the address to receive coins with Aukeratu helbidea txanponak jasotzeko + C&hoose &Aukeratu + Sending addresses Helbideak bidaltzen + Receiving addresses Helbideak jasotzen + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Hauek dira zure Raven helbideak dirua bidaltzeko. Beti egiaztatu diru-kantitatea eta jasotzeko helbidea bidali baino lehen. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Hauek dira zure Raven helbideak dirua jasotzeko. Gomendagarria da erabiltzea jasotzeko helbide berri bat operazio bakoitzeko. + &Copy Address &Kopiatu helbidea + Copy &Label Kopiatu &Etiketa + &Edit &Editatu + Export Address List Esportatu helbide lista + Comma separated file (*.csv) Komaz bereizitako artxiboa (*.csv) + Exporting Failed Esportatua okerra + There was an error trying to save the address list to %1. Please try again. Errakuntza bat egon da gordetzen %1 helbide listan. Mesedez, saiatu berriro. @@ -103,14 +125,17 @@ AddressTableModel + Label Etiketa + Address Helbidea + (no label) (etiketarik ez) @@ -118,720 +143,8146 @@ AskPassphraseDialog + Passphrase Dialog Pasahitza dialogoa + Enter passphrase Sartu pasahitza + New passphrase Pasahitz berria + Repeat new passphrase Errepikatu pasahitz berria + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Enkriptatu zorroa + This operation needs your wallet passphrase to unlock the wallet. Eragiketa honek zorroaren pasahitza behar du zorroa desblokeatzeko. + Unlock wallet Desblokeatu zorroa + This operation needs your wallet passphrase to decrypt the wallet. Eragiketa honek zure zorroaren pasahitza behar du, zorroa desenkriptatzeko. + Decrypt wallet Desenkriptatu zorroa + Change passphrase Aldatu pasahitza + + Enter the old passphrase and new passphrase to the wallet. + + + + Confirm wallet encryption Berretsi zorroaren enkriptazioa + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Abisua: Zuk enkriptatzen baduzu zure diruzorroa eta zure pasahitza galtzen baduzu, <b>RAVEN GUZTIAK GALDUKO DITUZU</b>! + Are you sure you wish to encrypt your wallet? Seguru zaude nahi duzula zure diruzorroa enkriptatu? + + Wallet encrypted Zorroa enkriptatuta + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. GARRANTZITSUA: Aurreko seguritate-kopiak ordeztuko dire berriekin, enkriptatutak. Segurtasun arrazoigaitik, aurreko kopiak ezin dira erabili hasiko zarenean zure diruzorro enkriptatu berriarekin. + + + + Wallet encryption failed Zorroaren enkriptazioak huts egin du + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Zorroaren enkriptazioak huts egin du barne-errore baten ondorioz. Zure zorroa ez da enkriptatu. + + The supplied passphrases do not match. Eman dituzun pasahitzak ez datoz bat. + Wallet unlock failed Zorroaren desblokeoak huts egin du + + + The passphrase entered for the wallet decryption was incorrect. Zorroa desenkriptatzeko sartutako pasahitza okerra da. + Wallet decryption failed Zorroaren desenkriptazioak huts egin du - - - BanTableModel - + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - RavenGUI + AssetControlDialog - Synchronizing with network... - Sarearekin sinkronizatzen... + + Asset Selection + - &Overview - &Gainbegiratu + + Quantity: + - Show general overview of wallet - Ikusi zorroaren begirada orokorra + + Bytes: + - &Transactions - &Transakzioak + + Amount: + - Browse transaction history - Ikusi transakzioen historia + + Dust: + - E&xit - Irten + + Fee: + - Quit application - Irten aplikaziotik + + After Fee: + - About &Qt - &Qt-ari buruz + + Change: + - Show information about Qt - Erakutsi Raven-i buruzko informazioa + + (un)select all + - &Options... - &Aukerak... + + Tree mode + - &Receiving addresses... - Helbideak jasotzen + + List mode + - Change the passphrase used for wallet encryption - Aldatu zorroa enkriptatzeko erabilitako pasahitza + + View assets that you have the ownership asset for + - &File - &Artxiboa + + View Administrator Assets + - &Settings - &Ezarpenak + + Asset + - &Help - &Laguntza + + Amount + - Tabs toolbar - Fitxen tresna-barra + + Received with label + - Up to date - Egunean + + Received with address + - Catching up... - Eguneratzen... + + Date + - Sent transaction - Bidalitako transakzioa + + Confirmations + - Incoming transaction - Sarrerako transakzioa + + Confirmed + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan + + Copy address + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan + + Copy label + - - - CoinControlDialog - Amount: - Kopurua + + + Copy amount + - Amount - Kopurua + + Copy transaction ID + - Date - Data + + Lock unspent + - Copy address - Kopiatu helbidea + + Unlock unspent + - Copy label - Kopiatu etiketa + + Copy quantity + - (no label) - (etiketarik ez) + + Copy fee + - - - EditAddressDialog - Edit Address - Editatu helbidea + + Copy after fee + - &Label - &Etiketa + + Copy bytes + - &Address - &Helbidea + + Copy dust + - New receiving address - Jasotzeko helbide berria + + Copy change + - New sending address - Bidaltzeko helbide berria + + (%1 locked) + - Edit receiving address - Editatu jasotzeko helbidea + + yes + - Edit sending address - Editatu bidaltzeko helbidea + + no + - The entered address "%1" is already in the address book. - Sartu berri den helbidea, "%1", helbide-liburuan dago jadanik. + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Could not unlock wallet. - Ezin desblokeatu zorroa. + + Can vary +/- %1 satoshi(s) per input. + - New key generation failed. - Gako berriaren sorrerak huts egin du. + + + (no label) + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - Form - Inprimakia + + change from %1 (%2) + - - - OpenURIDialog - - - OptionsDialog - Options - Aukerak + + (change) + - + - OverviewPage + AssetTableModel - Form - Inprimakia + + Name + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Kopurua + + Quantity + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - + - ReceiveCoinsDialog + AssetsDialog - &Amount: - Kopurua + + + Send Coins + - &Label: - &Etiketa: + + Asset Control Features + - &Message: - Mezua + + Inputs... + - Copy label - Kopiatu etiketa + + automatically selected + - - - ReceiveRequestDialog - Copy &Address - &Kopiatu helbidea + + Insufficient funds! + - Address - Helbidea + + Quantity: + - Amount - Kopurua + + Bytes: + - Label - Etiketa + + Amount: + - Message - Mezua + + Dust: + - - - RecentRequestsTableModel - Date - Data + + Fee: + - Label - Etiketa + + After Fee: + - Message - Mezua + + Change: + - (no label) - (etiketarik ez) + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - SendCoinsDialog - Send Coins - Bidali txanponak + + Custom change address + - Amount: - Kopurua + + Transaction Fee: + - Send to multiple recipients at once - Bidali hainbat jasotzaileri batera + + Choose... + - Balance: - Saldoa: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Confirm the send action - Berretsi bidaltzeko ekintza + + Warning: Fee estimation is currently not possible. + - Confirm send coins - Berretsi txanponak bidaltzea + + collapse fee-settings + - The amount to pay must be larger than 0. - Ordaintzeko kopurua 0 baino handiagoa izan behar du. + + Hide + - (no label) - (etiketarik ez) + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - SendCoinsEntry - A&mount: - K&opurua: + + per kilobyte + - Pay &To: - Ordaindu &honi: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Label: - &Etiketa: + + (read the tooltip) + - Alt+A - Alt+A + + Recommended: + - Paste address from clipboard - Itsatsi helbidea arbeletik + + Custom: + - Alt+P - Alt+P + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Message: - Mezua + + Confirmation time target: + - Pay To: - Ordaindu honi: + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Enter a label for this address to add it to your address book - Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan + + Request Replace-By-Fee + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + Confirm the send action + - Paste address from clipboard - Itsatsi helbidea arbeletik + + S&end + - Alt+P - Alt+P + + Clear all fields of the form. + - - - SplashScreen - [testnet] - [testnet] + + Clear &All + - - - TrafficGraphWidget - - - TransactionDesc - Open until %1 - Zabalik %1 arte + + Transfer to multiple recipients at once + - %1/unconfirmed - %1/konfirmatu gabe + + Add &Recipient + - %1 confirmations - %1 konfirmazioak + + Balance: + - , has not been successfully broadcast yet - , ez da arrakastaz emititu oraindik + + Copy quantity + - Date - Data + + Copy amount + - unknown - ezezaguna + + Copy fee + - Message - Mezua + + Copy after fee + - Transaction - Transakzioaren + + Copy bytes + - Amount - Kopurua + + Copy dust + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Panel honek transakzioaren deskribapen xehea erakusten du + + Copy change + - - - TransactionTableModel - Date - Data + + %1 (%2 blocks) + - Type - Mota + + + + + %1 to %2 + - Label - Etiketa + + Are you sure you want to send? + - Open until %1 - Zabalik %1 arte + + added as transaction fee + - Confirmed (%1 confirmations) - Konfirmatuta (%1 konfirmazio) + + Confirm send assets + - This block was not received by any other nodes and will probably not be accepted! - Bloke hau ez du beste inongo nodorik jaso, eta seguruenik ez da onartuko! + + The recipient address is not valid. Please recheck. + - Generated but not accepted - Sortua, baina ez onartua + + The amount to pay must be larger than 0. + - Received with - Jasota honekin: + + The amount exceeds your balance. + - Sent to - Hona bidalia: + + The total exceeds your balance when the %1 transaction fee is included. + - Payment to yourself - Ordainketa zeure buruari + + Duplicate address found: addresses should only be used once each. + - Mined - Bildua + + Transaction creation failed! + - (n/a) - (n/a) + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) - (etiketarik ez) + + + + + AssignQualifier + + + Frame + - Transaction status. Hover over this field to show number of confirmations. - Transakzioaren egoera. Pasatu sagua gainetik konfirmazio kopurua ikusteko. + + Select Type: + - Date and time that the transaction was received. - Transakzioa jasotako data eta ordua. + + Select Qualifier: + - Type of transaction. - Transakzio mota. + + Address: + - Amount removed from or added to balance. - Saldoan kendu edo gehitutako kopurua. + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + - TransactionView + BanTableModel - All - Denak + + IP/Netmask + - Today - Gaur + + Banned Until + + + + CoinControlDialog - This week - Aste honetan + + Coin Selection + - This month - Hil honetan + + Quantity: + - Last month - Azken hilean + + Bytes: + - This year - Aurten + + Amount: + Kopurua - Range... - Muga... + + Fee: + - Received with - Jasota honekin: + + Dust: + - Sent to - Hona bidalia: + + After Fee: + - To yourself - Zeure buruari + + Change: + - Mined - Bildua + + (un)select all + - Other - Beste + + Tree mode + - Enter address or label to search - Sartu bilatzeko helbide edo etiketa + + List mode + - Min amount - Kopuru minimoa + + Amount + Kopurua + + + + Received with label + + + + + Received with address + + + + + Date + Data + + + + Confirmations + + + Confirmed + + + + Copy address Kopiatu helbidea + Copy label Kopiatu etiketa - Comma separated file (*.csv) - Komaz bereizitako artxiboa (*.csv) + + + Copy amount + - Date - Data + + Copy transaction ID + - Type - Mota + + Lock unspent + - Label - Etiketa + + Unlock unspent + - Address - Helbidea + + Copy quantity + - Exporting Failed - Esportatua okerra + + Copy fee + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Bidali txanponak + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (etiketarik ez) + + + + change from %1 (%2) + + + + + (change) + - WalletView + CreateAssetDialog - &Export - &Esportatu + + Coin Control Features + - Export the data in the current tab to a file - Esportatu datuak uneko fitxategian + + Inputs... + - - - raven-core - Options: - Aukerak + + automatically selected + - Rescanning... - Birbilatzen... + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + - Done loading - Zamaketa amaitua + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editatu helbidea + + + + &Label + &Etiketa + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Helbidea + + + + New receiving address + Jasotzeko helbide berria + + + + New sending address + Bidaltzeko helbide berria + + + + Edit receiving address + Editatu jasotzeko helbidea + + + + Edit sending address + Editatu bidaltzeko helbidea + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + Sartu berri den helbidea, "%1", helbide-liburuan dago jadanik. + + + + Could not unlock wallet. + Ezin desblokeatu zorroa. + + + + New key generation failed. + Gako berriaren sorrerak huts egin du. + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Inprimakia + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Aukerak + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Inprimakia + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Kopurua + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Sarearekin sinkronizatzen... + + + + &Overview + &Gainbegiratu + + + + Node + + + + + Show general overview of wallet + Ikusi zorroaren begirada orokorra + + + + &Transactions + &Transakzioak + + + + Browse transaction history + Ikusi transakzioen historia + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Irten + + + + Quit application + Irten aplikaziotik + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + &Qt-ari buruz + + + + Show information about Qt + Erakutsi Raven-i buruzko informazioa + + + + &Options... + &Aukerak... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Helbideak jasotzen + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Aldatu zorroa enkriptatzeko erabilitako pasahitza + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Artxiboa + + + + &Help + &Laguntza + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + Egunean + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Eguneratzen... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Bidalitako transakzioa + + + + Incoming transaction + Sarrerako transakzioa + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Zorroa <b>enkriptatuta</b> eta <b>desblokeatuta</b> dago une honetan + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Zorroa <b>enkriptatuta</b> eta <b>blokeatuta</b> dago une honetan + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Kopurua + + + + &Label: + &Etiketa: + + + + &Message: + Mezua + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + Kopiatu etiketa + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Kopiatu helbidea + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Helbidea + + + + Amount + Kopurua + + + + Label + Etiketa + + + + Message + Mezua + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etiketa + + + + Message + Mezua + + + + (no label) + (etiketarik ez) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Bidali txanponak + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Kopurua + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Bidali hainbat jasotzaileri batera + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Saldoa: + + + + Confirm the send action + Berretsi bidaltzeko ekintza + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + Berretsi txanponak bidaltzea + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + Ordaintzeko kopurua 0 baino handiagoa izan behar du. + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (etiketarik ez) + + + + SendCoinsEntry + + + + + A&mount: + K&opurua: + + + + &Label: + &Etiketa: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Itsatsi helbidea arbeletik + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mezua + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + Sartu etiketa bat helbide honetarako, eta gehitu zure helbide-liburuan + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Itsatsi helbidea arbeletik + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Zabalik %1 arte + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/konfirmatu gabe + + + + %1 confirmations + %1 konfirmazioak + + + + + Status + + + + + + , has not been successfully broadcast yet + , ez da arrakastaz emititu oraindik + + + + + , broadcast through %n node(s) + + + + + + Date + Data + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + ezezaguna + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Mezua + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + Transakzioaren + + + + Inputs + + + + + Amount + Kopurua + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Panel honek transakzioaren deskribapen xehea erakusten du + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Data + + + + Type + Mota + + + + Label + Etiketa + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Zabalik %1 arte + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + Konfirmatuta (%1 konfirmazio) + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + Bloke hau ez du beste inongo nodorik jaso, eta seguruenik ez da onartuko! + + + + Generated but not accepted + Sortua, baina ez onartua + + + + Received with + Jasota honekin: + + + + Received from + + + + + Sent to + Hona bidalia: + + + + Payment to yourself + Ordainketa zeure buruari + + + + Mined + Bildua + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + (n/a) + + + + (no label) + (etiketarik ez) + + + + Transaction status. Hover over this field to show number of confirmations. + Transakzioaren egoera. Pasatu sagua gainetik konfirmazio kopurua ikusteko. + + + + Date and time that the transaction was received. + Transakzioa jasotako data eta ordua. + + + + Type of transaction. + Transakzio mota. + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + Saldoan kendu edo gehitutako kopurua. + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Denak + + + + Today + Gaur + + + + This week + Aste honetan + + + + This month + Hil honetan + + + + Last month + Azken hilean + + + + This year + Aurten + + + + Range... + Muga... + + + + Received with + Jasota honekin: + + + + Sent to + Hona bidalia: + + + + To yourself + Zeure buruari + + + + Mined + Bildua + + + + Other + Beste + + + + Enter address or label to search + Sartu bilatzeko helbide edo etiketa + + + + Min amount + Kopuru minimoa + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Kopiatu helbidea + + + + Copy label + Kopiatu etiketa + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Komaz bereizitako artxiboa (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Data + + + + Type + Mota + + + + Label + Etiketa + + + + Address + Helbidea + + + + Asset + + + + + ID + + + + + Exporting Failed + Esportatua okerra + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Bidali txanponak + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &Esportatu + + + + Export the data in the current tab to a file + Esportatu datuak uneko fitxategian + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Aukerak + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + Birbilatzen... + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_fa.ts b/src/qt/locale/raven_fa.ts index 662ea62a84..9c85090c06 100644 --- a/src/qt/locale/raven_fa.ts +++ b/src/qt/locale/raven_fa.ts @@ -1,104 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label برای تغییر آدرس و یا برچسب کلیک راست کنید. + Create a new address ایجاد نشانی جدید + &New &جدید + Copy the currently selected address to the system clipboard کپی نشانی انتخاب شده کنونی به حافظه‌ی سیستم + &Copy &کپی + C&lose &بستن + Delete the currently selected address from the list حذف نشانی انتخاب‌شده کنونی از لیست + Export the data in the current tab to a file خروجی گرفتن داده‌های برگه‌ی فعلی به یک فایل + &Export &صدور + &Delete &حذف + Choose the address to send coins to آدرس مورد نظر برای ارسال کوین ها را انتخاب کنید + Choose the address to receive coins with آدرس موردنظر برای دریافت کوین ها را انتخاب کنید. + C&hoose انتخاب + Sending addresses آدرس های فرستنده + Receiving addresses آدرس های گیرنده + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. اینها آدرس های شما برای فرستادن پرداخت هاست. همیشه قبل از فرستادن سکه ها مقدار و آدرس دریافت کننده را چک کنید. + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address کپی کردن آدرس + Copy &Label کپی و برچسب‌&گذاری + &Edit &ویرایش + Export Address List صدور لیست آدرس ها + + Comma separated file (*.csv) + + + + Exporting Failed صدور موفق نبود - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label برچسب + Address آدرس + (no label) (بدون برچسب) @@ -106,1784 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog پنجرهٔ گذرواژه + Enter passphrase گذرواژه را وارد کنید + New passphrase گذرواژهٔ جدید + Repeat new passphrase تکرار گذرواژهٔ جدید + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet رمزنگاری کیف پول + This operation needs your wallet passphrase to unlock the wallet. این عملیات نیاز به عبارت کیف پول شما برای بازگشایی کیف پول دارد + Unlock wallet باز کردن قفل کیف پول + This operation needs your wallet passphrase to decrypt the wallet. این عملیات نیاز به عبارت کیف پول شما برای رمزگشایی کیف پول دارد. + Decrypt wallet رمزگشایی کیف پول + Change passphrase تغییر گذرواژه + Enter the old passphrase and new passphrase to the wallet. عبارت کهنه و جدید کیف پول را وارد کنید. + Confirm wallet encryption تأیید رمزنگاری کیف پول + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + Are you sure you wish to encrypt your wallet? آیا مطمئن هستید که می‌خواهید کیف پول خود را رمزنگاری کنید؟ + + Wallet encrypted کیف پول رمزنگاری شد + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed رمزنگاری کیف پول با شکست مواجه شد + Wallet encryption failed due to an internal error. Your wallet was not encrypted. رمزنگاری کیف پول بنا به یک خطای داخلی با شکست مواجه شد. کیف پول شما رمزنگاری نشد. + + + The supplied passphrases do not match. + + + + Wallet unlock failed بازگشایی قفل کیف‌پول با شکست مواجه شد + + + + The passphrase entered for the wallet decryption was incorrect. + + + + Wallet decryption failed رمزگشایی کیف پول با شکست مواجه شد + Wallet passphrase was successfully changed. گذرواژهٔ کیف پول با موفقیت عوض شد. + + Warning: The Caps Lock key is on! هشدار: کلید Caps Lock روشن است! - BanTableModel + AssetControlDialog - IP/Netmask - آی‌پی/نت‌ماسک + + Asset Selection + - Banned Until - مسدود شده تا + + Quantity: + - - - RavenGUI - Sign &message... - &امضای پیام... + + Bytes: + - Synchronizing with network... - همگام‌سازی با شبکه... + + Amount: + - &Overview - &بررسی اجمالی + + Dust: + - Node - گره + + Fee: + - Show general overview of wallet - نمایش بررسی اجمالی کیف پول + + After Fee: + - &Transactions - &تراکنش‌ها + + Change: + - Browse transaction history - مرور تاریخچهٔ تراکنش‌ها + + (un)select all + - E&xit - &خروج + + Tree mode + - Quit application - خروج از برنامه + + List mode + - &About %1 - &حدود%1 + + View assets that you have the ownership asset for + - Show information about %1 - نمایش اطلاعات دربارهٔ %1 + + View Administrator Assets + - About &Qt - دربارهٔ &کیوت + + Asset + - Show information about Qt - نمایش اطلاعات دربارهٔ کیوت + + Amount + - &Options... - &تنظیمات... + + Received with label + - Modify configuration options for %1 - تغییر تنظیمات %1 + + Received with address + - &Encrypt Wallet... - &رمزنگاری کیف پول... + + Date + - &Backup Wallet... - &پیشتیبان‌گیری از کیف پول... + + Confirmations + - &Change Passphrase... - &تغییر گذرواژه... + + Confirmed + - &Sending addresses... - &در حال ارسال آدرس ها... + + Copy address + - &Receiving addresses... - &در حال دریافت آدرس ها... + + Copy label + - Open &URI... - باز کردن &آدرس + + + Copy amount + - Click to disable network activity. - برای غیر فعال کردن فعالیت شبکه کلیک کنید. + + Copy transaction ID + - Network activity disabled. - فعالیت شبکه غیر فعال شد. + + Lock unspent + - Click to enable network activity again. - برای فعال کردن دوباره فعالیت شبکه کلیک کنید. + + Unlock unspent + - Reindexing blocks on disk... - بازنشانی بلوک‌ها روی دیسک... + + Copy quantity + - Send coins to a Raven address - ارسال وجه به نشانی بیت‌کوین + + Copy fee + - Backup wallet to another location - تهیهٔ پشتیبان از کیف پول در یک مکان دیگر + + Copy after fee + - Change the passphrase used for wallet encryption - تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول + + Copy bytes + - &Debug window - پنجرهٔ ا&شکال‌زدایی + + Copy dust + - Open debugging and diagnostic console - باز کردن کنسول خطایابی و اشکال‌زدایی + + Copy change + - &Verify message... - با&زبینی پیام... + + (%1 locked) + - Raven - بیت‌کوین + + yes + - Wallet - کیف پول + + no + - &Send - &ارسال + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Receive - &دریافت + + Can vary +/- %1 satoshi(s) per input. + - &Show / Hide - &نمایش/ عدم نمایش + + + (no label) + - Show or hide the main Window - نمایش یا مخفی‌کردن پنجرهٔ اصلی + + change from %1 (%2) + - Encrypt the private keys that belong to your wallet - رمزنگاری کلیدهای خصوصی متعلق به کیف پول شما + + (change) + + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - برای اثبات اینکه پیام‌ها به شما تعلق دارند، آن‌ها را با نشانی بیت‌کوین خود امضا کنید + + Name + - Verify messages to ensure they were signed with specified Raven addresses - برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + + Quantity + + + + AssetsDialog - &File - &فایل + + + Send Coins + - &Settings - &تنظیمات + + Asset Control Features + - &Help - &کمک‌رسانی + + Inputs... + - Tabs toolbar - نوارابزار برگه‌ها + + automatically selected + - Request payments (generates QR codes and raven: URIs) - درخواست پرداخت ( تولید کد کیوار و ادرس بیت کوین) + + Insufficient funds! + - Show the list of used sending addresses and labels - نمایش لیست آدرس های ارسال و لیبل ها + + Quantity: + - Show the list of used receiving addresses and labels - نمایش لیست آدرس های دریافت و لیبل ها + + Bytes: + - Open a raven: URI or payment request - بازکردن یک بیت کوین: آدرس یا درخواست پرداخت + + Amount: + - &Command-line options - گزینه‌های خط‌فرمان - - - %n active connection(s) to Raven network - %n ارتباط فعال با شبکهٔ بیت‌کوین + + Dust: + - Processing blocks on disk... - پردازش بلوک‌ها روی دیسک... - - - Processed %n block(s) of transaction history. - پردازش %n بلاک از تاریخچه ی تراکنش ها + + Fee: + - %1 behind - %1 عقب‌تر + + After Fee: + - Last received block was generated %1 ago. - آخرین بلاک دریافتی %1 پیش ایجاد شده است. + + Change: + - Transactions after this will not yet be visible. - تراکنش‌های بعد از این هنوز قابل مشاهده نیستند. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Error - خطا + + Custom change address + - Warning - هشدار + + Transaction Fee: + - Information - اطلاعات + + Choose... + - Up to date - وضعیت به‌روز + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Catching up... - به‌روز رسانی... + + Warning: Fee estimation is currently not possible. + - Date: %1 - - تاریخ: %1 - + + collapse fee-settings + - Amount: %1 - - مقدار: %1 - + + Hide + - Type: %1 - - نوع: %1 - + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Label: %1 - - برچسب: %1 - + + per kilobyte + - Address: %1 - - نشانی: %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Sent transaction - تراکنش ارسال شد + + (read the tooltip) + - Incoming transaction - تراکنش دریافت شد + + Recommended: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است + + Custom: + - Wallet is <b>encrypted</b> and currently <b>locked</b> - کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - CoinControlDialog - Coin Selection - انتخاب سکه + + Confirmation time target: + - Quantity: - تعداد: + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Bytes: - بایت ها: + + Request Replace-By-Fee + - Amount: - مبلغ: + + Confirm the send action + - Fee: - هزینه: + + S&end + - After Fee: - هزینه ی پسین: + + Clear all fields of the form. + - Change: - پول خورد: + + Clear &All + - (un)select all - (لغو)انتخاب همه + + Transfer to multiple recipients at once + - Tree mode - مدل درختی + + Add &Recipient + - List mode - مدل لیست + + Balance: + - Amount - مبلغ + + Copy quantity + - Received with label - دریافت شده با برچسب + + Copy amount + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + آی‌پی/نت‌ماسک + + + + Banned Until + مسدود شده تا + + + + CoinControlDialog + + + Coin Selection + انتخاب سکه + + + + Quantity: + تعداد: + + + + Bytes: + بایت ها: + + + + Amount: + مبلغ: + + + + Fee: + هزینه: + + + + Dust: + + + + + After Fee: + هزینه ی پسین: + + + + Change: + پول خورد: + + + + (un)select all + (لغو)انتخاب همه + + + + Tree mode + مدل درختی + + + + List mode + مدل لیست + + + + Amount + مبلغ + + + + Received with label + دریافت شده با برچسب + + + Received with address دریافت شده با نشانی - Date - تاریخ + + Date + تاریخ + + + + Confirmations + تاییدیه ها + + + + Confirmed + تأیید شده + + + + Copy address + کپی ادرس + + + + Copy label + کپی برچسب + + + + + Copy amount + کپی مقدار + + + + Copy transaction ID + کپی شناسهٔ تراکنش + + + + Lock unspent + قفل کردن خرج نشده ها + + + + Unlock unspent + بازکردن قفل خرج نشده ها + + + + Copy quantity + کپی تعداد + + + + Copy fee + رونوشت کارمزد + + + + Copy after fee + + + + + Copy bytes + کپی کردن بایت ها + + + + Copy dust + + + + + Copy change + کپی کردن تغییر + + + + (%1 locked) + (%1 قفل شده) + + + + yes + بله + + + + no + خیر + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (بدون برچسب) + + + + change from %1 (%2) + + + + + (change) + (تغییر) + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + ویرایش نشانی + + + + &Label + &برچسب + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &نشانی + + + + New receiving address + نشانی گیرنده جدید + + + + New sending address + نشانی فرستنده جدید + + + + Edit receiving address + ویرایش آدرس گیرنده + + + + Edit sending address + ویرایش آدرس قرستنده + + + + The entered address "%1" is not a valid Raven address. + نشانی وارد شده "%1" یک نشانی معتبر بیت‌کوین نیست. + + + + The entered address "%1" is already in the address book. + نشانی وارد شده «%1» در حال حاضر در دفترچه وجود دارد. + + + + Could not unlock wallet. + نمی‌توان کیف پول را رمزگشایی کرد. + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + یک مسیر دادهٔ جدید ایجاد خواهد شد. + + + + name + نام + + + + Directory already exists. Add %1 if you intend to create a new directory here. + این پوشه در حال حاضر وجود دارد. اگر می‌خواهید یک دایرکتوری جدید در این‌جا ایجاد کنید، %1 را اضافه کنید. + + + + Path already exists, and is not a directory. + مسیر داده شده موجود است و به یک پوشه اشاره نمی‌کند. + + + + Cannot create data directory here. + نمی‌توان پوشهٔ داده در این‌جا ایجاد کرد. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + نسخه + + + + + (%1-bit) + (%1-بیت) + + + + About %1 + درباره %1 + + + + Command-line options + گزینه‌های خط‌فرمان + + + + Usage: + استفاده: + + + + command-line options + گزینه‌های خط فرمان + + + + UI Options: + گزینه‌های رابط کاربری: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + زبان را تنظیم کنید؛ برای مثال «de_DE» (پیشفرض: زبان سیستم) + + + + Start minimized + شروع برنامه به صورت کوچک‌شده + + + + Set SSL root certificates for payment request (default: -system-) + تنظیم گواهی ریشه SSl برای درخواست پرداخت (پیشفرض: -system-) + + + + Show splash screen on startup (default: %u) + نمایش پنجرهٔ خوشامدگویی در ابتدای اجرای برنامه (پیش‌فرض: %u) + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + خوش‌آمدید + + + + Welcome to %1. + به %1 خوش‌آمدید. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + استفاده از مسیر پیش‌فرض + + + + Use a custom data directory: + استفاده از یک مسیر سفارشی: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + خطا + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + فرم + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + مشخص نیست + + + + Last block time + زمان آخرین بلوک + + + + Progress + پیشروی + + + + Progress increase per hour + پیشروی در هر ساعت بیشتر میشود + + + + + calculating... + در حال محاسبه... + + + + Estimated time left until synced + زمان تخمینی تا سینک شدن + + + + Hide + پنهان کردن + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + بازکردن آدرس + + + + Open payment request from URI or file + بازکردن درخواست پرداخت از آدرس یا فایل + + + + URI: + آدرس اینترنتی: + + + + Select payment request file + انتخاب فایل درخواست پرداخت + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + گزینه‌ها + + + + &Main + &عمومی + + + + Automatically start %1 after logging in to the system. + اجرای خودکار %1 بعد زمان ورود به سیستم. + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + مگابایت + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + بازنشانی تمام تنظیمات به پیش‌فرض. + + + + &Reset Options + &بازنشانی تنظیمات + + + + &Network + &شبکه + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + کیف پول + + + + Expert + استخراج + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + باز کردن خودکار درگاه شبکهٔ بیت‌کوین روی روترها. تنها زمانی کار می‌کند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد. + + + + Map port using &UPnP + نگاشت درگاه شبکه با استفاده از پروتکل &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + آ&ی‌پی پراکسی: + + + + + &Port: + &درگاه: + + + + + Port of the proxy (e.g. 9050) + درگاه پراکسی (مثال 9050) + + + + Used for reaching peers via: + + + + + IPv4 + آی‌پی نسخه 4 + + + + IPv6 + آی‌پی نسخه 6 + + + + Tor + تور + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &پنجره + + + + Show only a tray icon after minimizing the window. + تنها بعد از کوچک کردن پنجره، tray icon را نشان بده. + + + + &Minimize to the tray instead of the taskbar + &کوچک کردن به سینی به‌جای نوار وظیفه + + + + M&inimize on close + کوچک کردن &در زمان بسته شدن + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &نمایش + + + + User Interface &language: + زبان &رابط کاربری: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &واحد نمایش مبالغ: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + انتخاب واحد پول مورد استفاده برای نمایش در پنجره‌ها و برای ارسال سکه. + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &تأیید + + + + &Cancel + &لغو + + + + default + پیش‌فرض + + + + none + هیچکدام + + + + Confirm options reset + تأییدِ بازنشانی گزینه‌ها + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + برای این تغییرات بازنشانی مشتری ضروری است + + + + The supplied proxy address is invalid. + آدرس پراکسی داده شده صحیح نیست. + + + + OverviewPage + + + Form + فرم + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + اطلاعات نمایش‌داده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما به‌صورت خودکار با شبکهٔ بیت‌کوین همگام‌سازی می‌شود. اما این روند هنوز کامل نشده است. + + + + Watch-only: + + + + + Available: + در دسترس: + + + + Your current spendable balance + تراز علی‌الحساب شما + + + + Pending: + در انتظار: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + مجموع تراکنش‌هایی که هنوز تأیید نشده‌اند؛ و هنوز روی تراز علی‌الحساب اعمال نشده‌اند + + + + Immature: + نارسیده: + + + + Mined balance that has not yet matured + تراز استخراج شده از معدن که هنوز بالغ نشده است + + + + Total: + جمع کل: + + + + Your current total balance + تراز کل فعلی شما + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + :قابل خرج کردن + + + + Asset Balances + + + + + Search + + + + + Recent transactions + تراکنش های اخیر + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + درخواست پرداخت نامعتبر. + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + مبلغ + + + + Enter a Raven address (e.g. %1) + یک آدرس بیت‌کوین وارد کنید (مثلاً %1) + + + + %1 d + %1 روز + + + + %1 h + %1 ساعت + + + + %1 m + %1 دقیقه + + + + + %1 s + %1 ثانیه + + + + None + هیچکدام + + + + N/A + ناموجود + + + + %1 ms + %1 میلیونم ثانیه + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 و %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + ناموجود + + + + Client version + نسخهٔ کلاینت + + + + &Information + &اطلاعات + + + + Debug window + پنجرهٔ اشکالزدایی + + + + General + عمومی + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + زمان آغاز به کار + + + + Network + شبکه + + + + Name + اسم + + + + Number of connections + تعداد ارتباطات + + + + Block chain + زنجیرهٔ بلوک‌ها + + + + Current number of blocks + تعداد فعلی بلوک‌ها + + + + Memory Pool + استخر حافظه + + + + Current number of transactions + + + + + Memory usage + مصرف حافظه + + + + &Reset + + + + + + Received + دریافتی + + + + + Sent + ارسال شده + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + نسخه + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + سرویس ها + + + + Ban Score + + + + + Connection Time + مدت اتصال + + + + Last Send + ارسال شده آخرین بار + + + + Last Receive + آخرین دریافتی + + + + Ping Time + زمان پینگ + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + انتظار پینگ + + + + Min Ping + + + + + Time Offset + + + + + Last block time + زمان آخرین بلوک + + + + &Open + با&ز کردن + + + + &Console + &کنسول + + + + &Network Traffic + + + + + Totals + جمع کل: + + + + In: + در: + + + + Out: + خروجی: + + + + Debug log file + فایلِ لاگِ اشکال زدایی + + + + Clear console + پاکسازی کنسول + + + + 1 &hour + 1 ساعت + + + + 1 &day + 1 روز + + + + 1 &week + 1 هفته + + + + 1 &year + 1 سال + + + + &Disconnect + + + + + + + + Ban for + محدود شده برای + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + برای نمایش یک مرور کلی از دستورات ممکن، عبارت <b>help</b> را بنویسید. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + هرگز + + + + Inbound + + + + + Outbound + + + + + Yes + بله + + + + No + خیر + + + + + Unknown + ناشناخته + + + + RavenGUI + + + Sign &message... + &امضای پیام... + + + + Synchronizing with network... + همگام‌سازی با شبکه... + + + + &Overview + &بررسی اجمالی + + + + Node + گره + + + + Show general overview of wallet + نمایش بررسی اجمالی کیف پول + + + + &Transactions + &تراکنش‌ها + + + + Browse transaction history + مرور تاریخچهٔ تراکنش‌ها + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &خروج + + + + Quit application + خروج از برنامه + + + + &About %1 + &حدود%1 + + + + Show information about %1 + نمایش اطلاعات دربارهٔ %1 + + + + About &Qt + دربارهٔ &کیوت + + + + Show information about Qt + نمایش اطلاعات دربارهٔ کیوت + + + + &Options... + &تنظیمات... + + + + Modify configuration options for %1 + تغییر تنظیمات %1 + + + + &Encrypt Wallet... + &رمزنگاری کیف پول... + + + + &Backup Wallet... + &پیشتیبان‌گیری از کیف پول... + + + + &Change Passphrase... + &تغییر گذرواژه... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &در حال ارسال آدرس ها... + + + + &Receiving addresses... + &در حال دریافت آدرس ها... + + + + Open &URI... + باز کردن &آدرس + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + برای غیر فعال کردن فعالیت شبکه کلیک کنید. + + + + Network activity disabled. + فعالیت شبکه غیر فعال شد. + + + + Click to enable network activity again. + برای فعال کردن دوباره فعالیت شبکه کلیک کنید. + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + بازنشانی بلوک‌ها روی دیسک... + + + + Send coins to a Raven address + ارسال وجه به نشانی بیت‌کوین + + + + Backup wallet to another location + تهیهٔ پشتیبان از کیف پول در یک مکان دیگر + + + + Change the passphrase used for wallet encryption + تغییر گذرواژهٔ مورد استفاده در رمزنگاری کیف پول + + + + Open debugging and diagnostic console + باز کردن کنسول خطایابی و اشکال‌زدایی + + + + &Verify message... + با&زبینی پیام... + + + + Raven + بیت‌کوین + + + + Wallet + کیف پول + + + + &Send + &ارسال + + + + &Receive + &دریافت + + + + &Show / Hide + &نمایش/ عدم نمایش + + + + Show or hide the main Window + نمایش یا مخفی‌کردن پنجرهٔ اصلی + + + + Encrypt the private keys that belong to your wallet + رمزنگاری کلیدهای خصوصی متعلق به کیف پول شما + + + + Sign messages with your Raven addresses to prove you own them + برای اثبات اینکه پیام‌ها به شما تعلق دارند، آن‌ها را با نشانی بیت‌کوین خود امضا کنید + + + + Verify messages to ensure they were signed with specified Raven addresses + برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + + + + &File + &فایل + + + + &Help + &کمک‌رسانی + + + + Request payments (generates QR codes and raven: URIs) + درخواست پرداخت ( تولید کد کیوار و ادرس بیت کوین) + + + + Show the list of used sending addresses and labels + نمایش لیست آدرس های ارسال و لیبل ها + + + + Show the list of used receiving addresses and labels + نمایش لیست آدرس های دریافت و لیبل ها + + + + Open a raven: URI or payment request + بازکردن یک بیت کوین: آدرس یا درخواست پرداخت + + + + &Command-line options + گزینه‌های خط‌فرمان + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + پردازش بلوک‌ها روی دیسک... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 عقب‌تر + + + + Last received block was generated %1 ago. + آخرین بلاک دریافتی %1 پیش ایجاد شده است. + + + + Transactions after this will not yet be visible. + تراکنش‌های بعد از این هنوز قابل مشاهده نیستند. + + + + Error + خطا + + + + Warning + هشدار + + + + Information + اطلاعات + + + + Up to date + وضعیت به‌روز + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + به‌روز رسانی... + + + + Date: %1 + + تاریخ: %1 + + + + + + Amount: %1 + + مقدار: %1 + + + + + Type: %1 + + نوع: %1 + + + + + Label: %1 + + برچسب: %1 + + + + + Address: %1 + + نشانی: %1 + + + + + Sent transaction + تراکنش ارسال شد + + + + Incoming transaction + تراکنش دریافت شد + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>باز</b> است + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + کیف پول <b>رمزنگاری شده</b> است و هم‌اکنون <b>قفل</b> است + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + مبلغ: + + + + &Label: + &برچسب: + + + + &Message: + پیام: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + برای درخواست پرداخت از این فرم استفاده کنید.تمام قسمت ها <b>اختیاری<b> هستند. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + تمام قسمت های فرم را خالی کن. + + + + Clear + پاک‌کردن + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + نمایش + + + + Remove the selected entries from the list + حذف ورودی های انتخاب‌شده از لیست + + + + Remove + حذف کردن + + + + Copy URI + + + + + Copy label + کپی برچسب + + + + Copy message + + + + + Copy amount + کپی مقدار + + + + ReceiveRequestDialog + + + QR Code + کد QR + + + + Copy &URI + + + + + Copy &Address + &کپی نشانی + + + + &Save Image... + &ذخیره عکس... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + آدرس + + + + Amount + + + + + Label + برچسب + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + برچسب + + + + Message + + + + + (no label) + (بدون برچسب) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + ارسال سکه + + + + Coin Control Features + + + + + Inputs... + ورودی‌ها... + + + + automatically selected + به طور خودکار انتخاب شدند + + + + Insufficient funds! + بود جه نا کافی + + + + Quantity: + تعداد: + + + + Bytes: + بایت ها: + + + + Amount: + مبلغ: + + + + Fee: + هزینه: + + + + After Fee: + هزینه ی پسین: + + + + Change: + پول خورد: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + هزینهٔ تراکنش: + + + + Choose... + انتخاب... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + در هر کیلوبایت + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + پنهان کردن + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + توصیه شده: + + + + Custom: + سفارشی: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + ارسال به چند دریافت‌کنندهٔ به‌طور همزمان + + + + Add &Recipient + &دریافت‌کنندهٔ جدید + + + + Clear all fields of the form. + تمام قسمت های فرم را خالی کن. + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + پاکسازی &همه + + + + Balance: + تزار: + + + + Confirm the send action + عملیات ارسال را تأیید کنید + + + + S&end + &ارسال + + + + Copy quantity + کپی تعداد + + + + Copy amount + کپی مقدار + + + + Copy fee + رونوشت کارمزد + + + + Copy after fee + + + + + Copy bytes + کپی کردن بایت ها + + + + Copy dust + + + + + Copy change + کپی کردن تغییر + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (بدون برچسب) + + + + SendCoinsEntry + + + + + A&mount: + A&مبلغ : + + + + &Label: + &برچسب: + + + + Choose previously used address + انتخاب نشانی پیش‌تر استفاده شده + + + + This is a normal payment. + این یک پرداخت عادی است + + + + The Raven address to send the payment to + نشانی بیت‌کوین برای ارسال پرداخت به آن + + + + Alt+A + Alt+A + + + + Paste address from clipboard + چسباندن نشانی از حافظهٔ سیستم + + + + Alt+P + Alt+P + + + + + + Remove this entry + حذف این مدخل + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + پیام: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + یادداشت: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + %1 در حال خاموش شدن است... + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + امضاها - امضا / تأیید یک پیام + + + + &Sign Message + ا&مضای پیام + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + نشانی بیت‌کوین برای امضاء پیغام با آن + + + + + Choose previously used address + انتخاب نشانی پیشتر استفاده شده + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + چسباندن نشانی از حافظهٔ سیستم + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + پیامی را که می‌خواهید امضا کنید در اینجا وارد کنید + + + + Signature + امضا + + + + Copy the current signature to the system clipboard + امضای فعلی را به حافظهٔ سیستم کپی کن + + + + Sign the message to prove you own this Raven address + برای اثبات تعلق این نشانی به شما، پیام را امضا کنید + + + + Sign &Message + ا&مضای پیام + + + + Reset all sign message fields + بازنشانی تمام فیلدهای پیام + + + + + Clear &All + پاک &کردن همه + + + + &Verify Message + &شناسایی پیام + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + نشانی بیت‌کوین که پیغام با آن امضاء شده + + + + Verify the message to ensure it was signed with the specified Raven address + برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + + + + Verify &Message + &شناسایی پیام + + + + Reset all verify message fields + بازنشانی تمام فیلدهای پیام + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + آزمایش شبکه + + + + TrafficGraphWidget + + + KB/s + کیلوبایت + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + این پانل شامل توصیف کاملی از جزئیات تراکنش است + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + برچسب + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (بدون برچسب) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + کپی ادرس + + + + Copy label + کپی برچسب + + + + Copy amount + کپی مقدار + + + + Copy transaction ID + کپی شناسهٔ تراکنش + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + برچسب + + + + Address + آدرس + + + + Asset + + + + + ID + + + + + Exporting Failed + صدور موفق نبود + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + گزینه‌ها: + + + + Specify data directory + مشخص کردن دایرکتوری داده‌ها + + + + Connect to a node to retrieve peer addresses, and disconnect + اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات + + + + Specify your own public address + آدرس عمومی خود را مشخص کنید + + + + Accept command line and JSON-RPC commands + پذیرش دستورات خط فرمان و دستورات JSON-RPC - Confirmations - تاییدیه ها + + Distributed under the MIT software license, see the accompanying file %s or %s + - Confirmed - تأیید شده + + If <category> is not supplied or if <category> = 1, output all debugging information. + - Copy address - کپی ادرس + + Prune configured below the minimum of %d MiB. Please use a higher number. + - Copy label - کپی برچسب + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - Copy amount - کپی مقدار + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - Copy transaction ID - کپی شناسهٔ تراکنش + + Error: A fatal internal error occurred, see debug.log for details + - Lock unspent - قفل کردن خرج نشده ها + + Fee (in %s/kB) to add to transactions you send (default: %s) + - Unlock unspent - بازکردن قفل خرج نشده ها + + Pruning blockstore... + - Copy quantity - کپی تعداد + + Run in the background as a daemon and accept commands + اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات - Copy fee - رونوشت کارمزد + + Unable to start HTTP server. See debug log for details. + - Copy bytes - کپی کردن بایت ها + + Raven Core + هسته Raven - Copy change - کپی کردن تغییر + + The %s developers + - (%1 locked) - (%1 قفل شده) + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - yes - بله + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - no - خیر + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - (no label) - (بدون برچسب) + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + مقید به نشانی داده شده باشید و همیشه از آن پیروی کنید. از نشانه گذاری استاندار IPv6 به صورت Host]:Port] استفاده کنید. - (change) - (تغییر) + + Cannot obtain a lock on data directory %s. %s is probably already running. + - - - EditAddressDialog - Edit Address - ویرایش نشانی + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - &Label - &برچسب + + Change address can not be sent to because it doesn't have the correct qualifier tags + - &Address - &نشانی + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - New receiving address - نشانی گیرنده جدید + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - New sending address - نشانی فرستنده جدید + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Edit receiving address - ویرایش آدرس گیرنده + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Edit sending address - ویرایش آدرس قرستنده + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) - The entered address "%1" is not a valid Raven address. - نشانی وارد شده "%1" یک نشانی معتبر بیت‌کوین نیست. + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - The entered address "%1" is already in the address book. - نشانی وارد شده «%1» در حال حاضر در دفترچه وجود دارد. + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Could not unlock wallet. - نمی‌توان کیف پول را رمزگشایی کرد. + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - - - FreespaceChecker - A new data directory will be created. - یک مسیر دادهٔ جدید ایجاد خواهد شد. + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - name - نام + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - Directory already exists. Add %1 if you intend to create a new directory here. - این پوشه در حال حاضر وجود دارد. اگر می‌خواهید یک دایرکتوری جدید در این‌جا ایجاد کنید، %1 را اضافه کنید. + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Path already exists, and is not a directory. - مسیر داده شده موجود است و به یک پوشه اشاره نمی‌کند. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Cannot create data directory here. - نمی‌توان پوشهٔ داده در این‌جا ایجاد کرد. + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - - - HelpMessageDialog - version - نسخه + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - (%1-bit) - (%1-بیت) + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + - About %1 - درباره %1 + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - Command-line options - گزینه‌های خط‌فرمان + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Usage: - استفاده: + + This is the transaction fee you may discard if change is smaller than dust at this level + - command-line options - گزینه‌های خط فرمان + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - UI Options: - گزینه‌های رابط کاربری: + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Set language, for example "de_DE" (default: system locale) - زبان را تنظیم کنید؛ برای مثال «de_DE» (پیشفرض: زبان سیستم) + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - Start minimized - شروع برنامه به صورت کوچک‌شده + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Set SSL root certificates for payment request (default: -system-) - تنظیم گواهی ریشه SSl برای درخواست پرداخت (پیشفرض: -system-) + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Show splash screen on startup (default: %u) - نمایش پنجرهٔ خوشامدگویی در ابتدای اجرای برنامه (پیش‌فرض: %u) + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - - - Intro - Welcome - خوش‌آمدید + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Welcome to %1. - به %1 خوش‌آمدید. + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Use the default data directory - استفاده از مسیر پیش‌فرض + + %d of last 100 blocks have unexpected version + - Use a custom data directory: - استفاده از یک مسیر سفارشی: + + %s corrupt, salvage failed + - Error - خطا + + -maxmempool must be at least %d MB + - - %n GB of free space available - %n گیگابایت فضا موجود است + + + <category> can be: + - - - ModalOverlay - Form - فرم + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Unknown... - مشخص نیست + + Append comment to the user agent string + - Last block time - زمان آخرین بلوک + + Attempt to recover private keys from a corrupt wallet on startup + - Progress - پیشروی + + Block creation options: + بستن گزینه ایجاد - Progress increase per hour - پیشروی در هر ساعت بیشتر میشود + + Cannot resolve -%s address: '%s' + - calculating... - در حال محاسبه... + + Chain selection options: + - Estimated time left until synced - زمان تخمینی تا سینک شدن + + Change index out of range + - Hide - پنهان کردن + + Connection options: + گزینه‌های اتصال: - - - OpenURIDialog - Open URI - بازکردن آدرس + + Copyright (C) %i-%i + حق تألیف (C) %i-%i - Open payment request from URI or file - بازکردن درخواست پرداخت از آدرس یا فایل + + Corrupted block database detected + یک پایگاه داده ی بلوک خراب یافت شد - URI: - آدرس اینترنتی: + + Debugging/Testing options: + - Select payment request file - انتخاب فایل درخواست پرداخت + + Do not load the wallet and disable wallet RPC calls + - - - OptionsDialog - Options - گزینه‌ها + + Do you want to rebuild the block database now? + آیا مایلید که اکنون پایگاه داده ی بلوک را بازسازی کنید؟ - &Main - &عمومی + + Enable publish hash block in <address> + - Automatically start %1 after logging in to the system. - اجرای خودکار %1 بعد زمان ورود به سیستم. + + Enable publish hash transaction in <address> + - MB - مگابایت + + Enable publish raw block in <address> + - Accept connections from outside - پذیرش اتصالات از بیرون + + Enable publish raw transaction in <address> + - Allow incoming connections - اجازه دادن به اتصالات دریافتی + + Enable transaction replacement in the memory pool (default: %u) + - Reset all client options to default. - بازنشانی تمام تنظیمات به پیش‌فرض. + + Error initializing block database + خطا در آماده سازی پایگاه داده ی بلوک - &Reset Options - &بازنشانی تنظیمات + + Error initializing wallet database environment %s! + - &Network - &شبکه + + Error loading %s + خطا در بارگیری %s - W&allet - کیف پول + + Error loading %s: Wallet corrupted + - Expert - استخراج + + Error loading %s: Wallet requires newer version of %s + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - باز کردن خودکار درگاه شبکهٔ بیت‌کوین روی روترها. تنها زمانی کار می‌کند که روتر از پروتکل UPnP پشتیبانی کند و این پروتکل فعال باشد. + + Error loading block database + خطا در بارگذاری پایگاه داده ها - Map port using &UPnP - نگاشت درگاه شبکه با استفاده از پروتکل &UPnP + + Error opening block database + خطا در بازگشایی پایگاه داده ی بلوک - Proxy &IP: - آ&ی‌پی پراکسی: + + Error: Disk space is low! + خطا: فضای دیسک کم است! - &Port: - &درگاه: + + Failed to listen on any port. Use -listen=0 if you want this. + شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. - Port of the proxy (e.g. 9050) - درگاه پراکسی (مثال 9050) + + Importing... + در حال پیاده‌سازی... - IPv4 - آی‌پی نسخه 4 + + Incorrect or no genesis block found. Wrong datadir for network? + - IPv6 - آی‌پی نسخه 6 + + Initialization sanity check failed. %s is shutting down. + - Tor - تور + + Invalid amount for -%s=<amount>: '%s' + - &Window - &پنجره + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + بارگذاری لیست‌سیاه... + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + چاپ ایت پیام کمک و خروج + + + + Print version and exit + چاپ نسخه و خروج + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + - Show only a tray icon after minimizing the window. - تنها بعد از کوچک کردن پنجره، tray icon را نشان بده. + + Unsupported argument -debugnet ignored, use -debug=net. + - &Minimize to the tray instead of the taskbar - &کوچک کردن به سینی به‌جای نوار وظیفه + + Unsupported argument -tor found, use -onion. + - M&inimize on close - کوچک کردن &در زمان بسته شدن + + Unsupported logging category %s=%s. + - &Display - &نمایش + + Upgrading UTXO database + - User Interface &language: - زبان &رابط کاربری: + + Use UPnP to map the listening port (default: %u) + - &Unit to show amounts in: - &واحد نمایش مبالغ: + + Use the test chain + - Choose the default subdivision unit to show in the interface and when sending coins. - انتخاب واحد پول مورد استفاده برای نمایش در پنجره‌ها و برای ارسال سکه. + + User Agent comment (%s) contains unsafe characters. + - &OK - &تأیید + + Verifying blocks... + در حال بازبینی بلوک‌ها... - &Cancel - &لغو + + Wallet %s resides outside data directory %s + - default - پیش‌فرض + + Wallet debugging/testing options: + - none - هیچکدام + + Wallet needed to be rewritten: restart %s to complete + - Confirm options reset - تأییدِ بازنشانی گزینه‌ها + + Wallet options: + گزینه‌های کیف پول: - This change would require a client restart. - برای این تغییرات بازنشانی مشتری ضروری است + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - The supplied proxy address is invalid. - آدرس پراکسی داده شده صحیح نیست. + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - - - OverviewPage - Form - فرم + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - اطلاعات نمایش‌داده شده ممکن است قدیمی باشند. بعد از این که یک اتصال با شبکه برقرار شد، کیف پول شما به‌صورت خودکار با شبکهٔ بیت‌کوین همگام‌سازی می‌شود. اما این روند هنوز کامل نشده است. + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Available: - در دسترس: + + Error: Listening for incoming connections failed (listen returned error %s) + - Your current spendable balance - تراز علی‌الحساب شما + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - Pending: - در انتظار: + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - مجموع تراکنش‌هایی که هنوز تأیید نشده‌اند؛ و هنوز روی تراز علی‌الحساب اعمال نشده‌اند + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Immature: - نارسیده: + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Mined balance that has not yet matured - تراز استخراج شده از معدن که هنوز بالغ نشده است + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Balances - تراز ها + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Total: - جمع کل: + + The transaction amount is too small to send after the fee has been deducted + - Your current total balance - تراز کل فعلی شما + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Spendable: - :قابل خرج کردن + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Recent transactions - تراکنش های اخیر + + (default: %u) + (پیش‌فرض %u) - - - PaymentServer - Invalid payment request. - درخواست پرداخت نامعتبر. + + Accept public REST requests (default: %u) + - - - PeerTableModel - - - QObject - Amount - مبلغ + + Automatically create Tor hidden service (default: %d) + - Enter a Raven address (e.g. %1) - یک آدرس بیت‌کوین وارد کنید (مثلاً %1) + + Connect through SOCKS5 proxy + - %1 d - %1 روز + + Error loading %s: You can't disable HD on an already existing HD wallet + - %1 h - %1 ساعت + + Error reading from database, shutting down. + - %1 m - %1 دقیقه + + Error upgrading chainstate database + - %1 s - %1 ثانیه + + Imports blocks from external blk000??.dat file on startup + - None - هیچکدام + + Information + اطلاعات - N/A - ناموجود + + Invalid -onion address or hostname: '%s' + - %1 ms - %1 میلیونم ثانیه + + Invalid -proxy address or hostname: '%s' + - %1 and %2 - %1 و %2 + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - ناموجود + + Invalid netmask specified in -whitelist: '%s' + - Client version - نسخهٔ کلاینت + + Keep at most <n> unconnectable transactions in memory (default: %u) + - &Information - &اطلاعات + + Need to specify a port with -whitebind: '%s' + - Debug window - پنجرهٔ اشکالزدایی + + Node relay options: + - General - عمومی + + RPC server options: + - Startup time - زمان آغاز به کار + + Reducing -maxconnections from %d to %d, because of system limitations. + - Network - شبکه + + Rescan the block chain for missing wallet transactions on startup + - Name - اسم + + Send trace/debug info to console instead of debug.log file + اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید - Number of connections - تعداد ارتباطات + + Show all debugging options (usage: --help -help-debug) + - Block chain - زنجیرهٔ بلوک‌ها + + Shrink debug.log file on client startup (default: 1 when no -debug) + فایل debug.log را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) - Current number of blocks - تعداد فعلی بلوک‌ها + + Signing transaction failed + - Memory Pool - استخر حافظه + + The transaction amount is too small to pay the fee + - Memory usage - مصرف حافظه + + This is experimental software. + - Received - دریافتی + + Tor control port password (default: empty) + - Sent - ارسال شده + + Tor control port to use if onion listening enabled (default: %s) + - Version - نسخه + + Transaction amount too small + مقدار تراکنش بسیار کم است - Services - سرویس ها + + Transaction too large for fee policy + - Connection Time - مدت اتصال + + Transaction too large + تراکنش بسیار بزرگ است - Last Send - ارسال شده آخرین بار + + Unable to bind to %s on this computer (bind returned error %s) + - Last Receive - آخرین دریافتی + + Upgrade wallet to latest format on startup + - Ping Time - زمان پینگ + + Username for JSON-RPC connections + JSON-RPC شناسه برای ارتباطات - Ping Wait - انتظار پینگ + + Valid Verifier + - Last block time - زمان آخرین بلوک + + Variable is not allow in the expression: ' + - &Open - با&ز کردن + + Verifier String doesn't exist for asset: + - &Console - &کنسول + + Verifier String for asset trasnfer, not found + - Totals - جمع کل: + + Verifier not found for asset: + - In: - در: + + Verifier string can not be empty. To default to true, use "true" + - Out: - خروجی: + + Verifier string is empty + - Debug log file - فایلِ لاگِ اشکال زدایی + + Verifier string not found + - Clear console - پاکسازی کنسول + + Verifying wallet(s)... + - 1 &hour - 1 ساعت + + Warning + هشدار - 1 &day - 1 روز + + Warning: unknown new rules activated (versionbit %i) + هشدار: قوانین جدید ناشناخته‌ای فعال شده‌اند (نسخه‌بیت %i) - 1 &week - 1 هفته + + Whether to operate in a blocks only mode (default: %u) + - 1 &year - 1 سال + + You need to rebuild the database using -reindex to change -txindex + - Ban for - محدود شده برای + + Zapping all transactions from wallet... + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - دکمه‌های بالا و پایین برای پیمایش تاریخچه و <b>Ctrl-L</b> برای پاک کردن صفحه. + + ZeroMQ notification options: + - Type <b>help</b> for an overview of available commands. - برای نمایش یک مرور کلی از دستورات ممکن، عبارت <b>help</b> را بنویسید. + + Password for JSON-RPC connections + JSON-RPC عبارت عبور برای ارتباطات - %1 B - %1 بایت + + Execute command when the best block changes (%s in cmd is replaced by block hash) + زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) - %1 KB - %1 کیلوبایت + + Allow DNS lookups for -addnode, -seednode and -connect + به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند - %1 MB - %1 مگابایت + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - %1 GB - %1 گیگابایت + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - never - هرگز + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Yes - بله + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - No - خیر + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Unknown - ناشناخته + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - - - ReceiveCoinsDialog - &Amount: - مبلغ: + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - &Label: - &برچسب: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - &Message: - پیام: + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Use this form to request payments. All fields are <b>optional</b>. - برای درخواست پرداخت از این فرم استفاده کنید.تمام قسمت ها <b>اختیاری<b> هستند. + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Clear all fields of the form. - تمام قسمت های فرم را خالی کن. + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Clear - پاک‌کردن + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Show - نمایش + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Remove the selected entries from the list - حذف ورودی های انتخاب‌شده از لیست + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Remove - حذف کردن + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Copy label - کپی برچسب + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Copy amount - کپی مقدار + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - - - ReceiveRequestDialog - QR Code - کد QR + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Copy &Address - &کپی نشانی + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - &Save Image... - &ذخیره عکس... + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Address - آدرس + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Label - برچسب + + Output debugging information (default: %u, supplying <category> is optional) + - - - RecentRequestsTableModel - Label - برچسب + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - (no label) - (بدون برچسب) + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - - - SendCoinsDialog - Send Coins - ارسال سکه + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Inputs... - ورودی‌ها... + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - automatically selected - به طور خودکار انتخاب شدند + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Insufficient funds! - بود جه نا کافی + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + - Quantity: - تعداد: + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Bytes: - بایت ها: + + This address doesn't contain the correct tags to pass the verifier string check: + - Amount: - مبلغ: + + This is the transaction fee you may pay when fee estimates are not available. + - Fee: - هزینه: + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - After Fee: - هزینه ی پسین: + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Change: - پول خورد: + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Transaction Fee: - هزینهٔ تراکنش: + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Choose... - انتخاب... + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - per kilobyte - در هر کیلوبایت + + Unable to reissue asset: unit must be larger than current unit selection + - Hide - پنهان کردن + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - total at least - در مجموع حداقل + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Recommended: - توصیه شده: + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Custom: - سفارشی: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - normal - نرمال + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - fast - سریع + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Send to multiple recipients at once - ارسال به چند دریافت‌کنندهٔ به‌طور همزمان + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Add &Recipient - &دریافت‌کنندهٔ جدید + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Clear all fields of the form. - تمام قسمت های فرم را خالی کن. + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Clear &All - پاکسازی &همه + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Balance: - تزار: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Confirm the send action - عملیات ارسال را تأیید کنید + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - S&end - &ارسال + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Copy quantity - کپی تعداد + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Copy amount - کپی مقدار + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Copy fee - رونوشت کارمزد + + %s is set very high! + - Copy bytes - کپی کردن بایت ها + + ' doesn't exist in the database + - Copy change - کپی کردن تغییر + + ' has already been used + - (no label) - (بدون برچسب) + + ' is not a valid character in the expression: + - - - SendCoinsEntry - A&mount: - A&مبلغ : + + ' the amount trying to reissue is to large + - Pay &To: - پرداخ&ت به: + + (default: %s) + (پیش‌فرض %s) - &Label: - &برچسب: + + A space separated list of 12-words used to import a bip44 wallet + - Choose previously used address - انتخاب نشانی پیش‌تر استفاده شده + + Always query for peer addresses via DNS lookup (default: %u) + - This is a normal payment. - این یک پرداخت عادی است + + Asset Transfer amounts must be greater than 0 + - The Raven address to send the payment to - نشانی بیت‌کوین برای ارسال پرداخت به آن + + Asset doesn't exist: + - Alt+A - Alt+A + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Paste address from clipboard - چسباندن نشانی از حافظهٔ سیستم + + Asset name is not valid + - Alt+P - Alt+P + + Asset with this name is already in the mempool + - Remove this entry - حذف این مدخل + + Done Loading + - Message: - پیام: + + Enable publish raw asset messages in <address> + - Pay To: - پرداخت به: + + Error creating %s: You can't create non-HD wallets with this version. + - Memo: - یادداشت: + + Error loading wallet %s. -wallet filename must be a regular file. + - - - SendConfirmationDialog - - - ShutdownWindow - %1 is shutting down... - %1 در حال خاموش شدن است... + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - امضاها - امضا / تأیید یک پیام + + Error loading wallet %s. Invalid characters in -wallet filename. + - &Sign Message - ا&مضای پیام + + Error not set + - The Raven address to sign the message with - نشانی بیت‌کوین برای امضاء پیغام با آن + + Error writing bip 39 passphrase to database + - Choose previously used address - انتخاب نشانی پیشتر استفاده شده + + Error writing bip 39 vchseed to database + - Alt+A - Alt+A + + Error writing bip 39 words to database + - Paste address from clipboard - چسباندن نشانی از حافظهٔ سیستم + + Every '(' must have a corresponding ')' in the expression: + - Alt+P - Alt+P + + Failed to extract destination from change script + - Enter the message you want to sign here - پیامی را که می‌خواهید امضا کنید در اینجا وارد کنید + + Failed to find restricted asset change address from inputs + - Signature - امضا + + Failed to get asset data from script + - Copy the current signature to the system clipboard - امضای فعلی را به حافظهٔ سیستم کپی کن + + Failed to get verifier string from output: + - Sign the message to prove you own this Raven address - برای اثبات تعلق این نشانی به شما، پیام را امضا کنید + + Failed to load Assets Database + - Sign &Message - ا&مضای پیام + + Flag must be 1 or 0 + - Reset all sign message fields - بازنشانی تمام فیلدهای پیام + + How many blocks to check at startup (default: %u, 0 = all) + - Clear &All - پاک &کردن همه + + Include IP addresses in debug output (default: %u) + - &Verify Message - &شناسایی پیام + + Init Message Channels - Scanning Asset Transactions + - The Raven address the message was signed with - نشانی بیت‌کوین که پیغام با آن امضاء شده + + Insufficient asset funds + - Verify the message to ensure it was signed with the specified Raven address - برای حصول اطمینان از اینکه پیام با نشانی بیت‌کوین مشخص شده امضا است یا خیر، پیام را شناسایی کنید + + Invalid Qualifier Name: + - Verify &Message - &شناسایی پیام + + Invalid expressions in verifier string: + - Reset all verify message fields - بازنشانی تمام فیلدهای پیام + + Invalid parameter: amount must be + - - - SplashScreen - [testnet] - آزمایش شبکه + + Invalid parameter: amount must be between + - - - TrafficGraphWidget - KB/s - کیلوبایت + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - این پانل شامل توصیف کاملی از جزئیات تراکنش است + + Invalid parameter: asset amount greater than max money: + - - - TransactionTableModel - Label - برچسب + + Invalid parameter: asset_name ' + - (no label) - (بدون برچسب) + + Invalid parameter: has_ipfs must be 0 or 1. + - - - TransactionView - Copy address - کپی ادرس + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Copy label - کپی برچسب + + Invalid parameter: reissuable must be 0 or 1 + - Copy amount - کپی مقدار + + Invalid parameter: reissuable must be 0 + - Copy transaction ID - کپی شناسهٔ تراکنش + + Invalid parameter: units must be + - Label - برچسب + + Invalid parameter: units must be between 0-8. + - Address - آدرس + + Invalid syntax: + - Exporting Failed - صدور موفق نبود + + Keypool ran out, please call keypoolrefill first + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - گزینه‌ها: + + Length is to large. Please use a smaller length + - Specify data directory - مشخص کردن دایرکتوری داده‌ها + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Connect to a node to retrieve peer addresses, and disconnect - اتصال به یک گره برای دریافت آدرس‌های همتا و قطع اتصال پس از اتمام عملیات + + Listen for connections on <port> (default: %u or testnet: %u) + - Specify your own public address - آدرس عمومی خود را مشخص کنید + + Maintain at most <n> connections to peers (default: %u) + - Accept command line and JSON-RPC commands - پذیرش دستورات خط فرمان و دستورات JSON-RPC + + Make the wallet broadcast transactions + - Run in the background as a daemon and accept commands - اجرا در پشت زمینه به‌صورت یک سرویس و پذیرش دستورات + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Raven Core - هسته Raven + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - مقید به نشانی داده شده باشید و همیشه از آن پیروی کنید. از نشانه گذاری استاندار IPv6 به صورت Host]:Port] استفاده کنید. + + Mempool cleared + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - هنگامی که یک تراکنش در کیف پولی رخ می دهد، دستور را اجرا کن(%s در دستورات بوسیله ی TxID جایگزین می شود) + + Multiple verifier strings found in transaction + - Block creation options: - بستن گزینه ایجاد + + Passphrase securing your 12-word mnemonic word-list + - Connection options: - گزینه‌های اتصال: + + Prepend debug output with timestamp (default: %u) + - Copyright (C) %i-%i - حق تألیف (C) %i-%i + + Relay and mine data carrier transactions (default: %u) + - Corrupted block database detected - یک پایگاه داده ی بلوک خراب یافت شد + + Relay non-P2SH multisig (default: %u) + - Do you want to rebuild the block database now? - آیا مایلید که اکنون پایگاه داده ی بلوک را بازسازی کنید؟ + + Restricted asset transfer from address that has been frozen + - Error initializing block database - خطا در آماده سازی پایگاه داده ی بلوک + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error loading %s - خطا در بارگیری %s + + Set key pool size to <n> (default: %u) + - Error loading block database - خطا در بارگذاری پایگاه داده ها + + Set maximum BIP141 block weight (default: %d) + - Error opening block database - خطا در بازگشایی پایگاه داده ی بلوک + + Set the Maximum reorg depth (default: %u) + - Error: Disk space is low! - خطا: فضای دیسک کم است! + + Set the number of threads to service RPC calls (default: %d) + - Failed to listen on any port. Use -listen=0 if you want this. - شنیدن هر گونه درگاه انجام پذیر نیست. ازlisten=0 برای اینکار استفاده کیند. + + Signing asset transaction failed + - Importing... - در حال پیاده‌سازی... + + Specify configuration file (default: %s) + - Loading banlist... - بارگذاری لیست‌سیاه... + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Print this help message and exit - چاپ ایت پیام کمک و خروج + + Specify pid file (default: %s) + - Print version and exit - چاپ نسخه و خروج + + Spend unconfirmed change when sending transactions (default: %u) + - Verifying blocks... - در حال بازبینی بلوک‌ها... + + Starting network threads... + - Verifying wallet... - در حال بازبینی کیف پول... + + The symbol: ' + - Wallet options: - گزینه‌های کیف پول: + + The verifier string has two operators without a tag between them + - (default: %u) - (پیش‌فرض %u) + + The wallet will avoid paying less than the minimum relay fee. + - Information - اطلاعات + + This is the minimum transaction fee you pay on every transaction. + - Send trace/debug info to console instead of debug.log file - اطلاعات ردگیری/اشکال‌زدایی را به جای فایل لاگ اشکال‌زدایی به کنسول بفرستید + + This is the transaction fee you will pay if you send a transaction. + - Shrink debug.log file on client startup (default: 1 when no -debug) - فایل debug.log را در startup مشتری کوچک کن (پیش فرض:1 اگر اشکال زدایی روی نداد) + + Threshold for disconnecting misbehaving peers (default: %u) + - Transaction amount too small - مقدار تراکنش بسیار کم است + + Transaction amounts must not be negative + - Transaction too large - تراکنش بسیار بزرگ است + + Transaction has too long of a mempool chain + - Username for JSON-RPC connections - JSON-RPC شناسه برای ارتباطات + + Transaction must have at least one recipient + - Warning - هشدار + + Turn off the databasing the messages sent with assets (default: %u) + - Warning: unknown new rules activated (versionbit %i) - هشدار: قوانین جدید ناشناخته‌ای فعال شده‌اند (نسخه‌بیت %i) + + Unable to generate initial keys + - Password for JSON-RPC connections - JSON-RPC عبارت عبور برای ارتباطات + + Unable to get coin to verify restricted asset transfer from address + - Execute command when the best block changes (%s in cmd is replaced by block hash) - زمانی که بهترین بلاک تغییر کرد، دستور را اجرا کن (%s در cmd با block hash جایگزین شده است) + + Unable to reissue asset: amount must be 0 or larger + - Allow DNS lookups for -addnode, -seednode and -connect - به DNS اجازه بده تا برای addnode ، seednode و اتصال جستجو کند + + Unable to reissue asset: asset_name ' + - Loading addresses... - بار گیری آدرس ها + + Unable to reissue asset: reissuable is set to false + - (default: %s) - (پیش‌فرض %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - آدرس پراکسی اشتباه %s + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + شبکه مشخص شده غیرقابل شناسایی در onlynet: '%s' + Insufficient funds بود جه نا کافی + Loading block index... بار گیری شاخص بلوک - Add a node to connect to and attempt to keep the connection open - به اتصال یک گره اضافه کنید و اتصال را باز نگاه دارید - - + Loading wallet... بار گیری والت + Cannot downgrade wallet امکان تنزل نسخه در wallet وجود ندارد - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست - - + Rescanning... اسکان مجدد - Done loading - بار گیری انجام شده است - - + Error خطا diff --git a/src/qt/locale/raven_fa_IR.ts b/src/qt/locale/raven_fa_IR.ts index cf419e7763..df754e01c6 100644 --- a/src/qt/locale/raven_fa_IR.ts +++ b/src/qt/locale/raven_fa_IR.ts @@ -1,979 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label برای ویرایش آدرس یا برچسب روی آن راست کلیک کنید + Create a new address گشایش حساب جدید + &New جدید + Copy the currently selected address to the system clipboard کپی کردن حساب انتخاب شده به حافظه سیستم - کلیپ بورد + &Copy کپی + C&lose بستن + Delete the currently selected address from the list حذف آدرس های انتخاب شده از لیست + Export the data in the current tab to a file صدور داده نوار جاری به یک فایل + &Export صدور + &Delete حذف + Choose the address to send coins to آدرس برای ارسال کوین‌ها را انتخاب کنید + Choose the address to receive coins with انتخاب آدرس جهت دریافت سکه‌ها با آن + C&hoose انتخاب + Sending addresses آدرس‌های فرستنده + Receiving addresses آدرس‌های گیرنده + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. اینها آدرس‌های بیتکوین شما برای ارسال وجوه هستند. همیشه قبل از ارسال، مقدار و آدرس گیرنده را بررسی کنید. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. اینها آدرس‌های بیتکوین شما برای دریافت وجوه هستند. توصیه می‌شود برای هر دریافت از یک آدرس جدید استفاده کنید. + &Copy Address کپی آدرس + Copy &Label کپی برچسب + &Edit ویرایش + Export Address List از فهرست آدرس خروجی گرفته شود + + Comma separated file (*.csv) + + + + Exporting Failed گرفتن خروجی به مشکل خورد - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label برچسب + Address آدرس - + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog دیالوگ رمزعبور + Enter passphrase رمز/پَس فرِیز را وارد کنید + New passphrase رمز/پَس فرِیز جدید را وارد کنید + Repeat new passphrase رمز/پَس فرِیز را دوباره وارد کنید + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet رمزگذاری کیف پول + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet رمزگشایی کیف پول + Change passphrase تغییر رمزعبور + + Enter the old passphrase and new passphrase to the wallet. + + + + Confirm wallet encryption تایید رمزگذاری کیف پول + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + Wallet encrypted کیف پول رمزگذاری شده است - - - BanTableModel - - - RavenGUI - Sign &message... - امضا و پیام + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Synchronizing with network... - به روز رسانی با شبکه... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Overview - بازبینی + + + + + Wallet encryption failed + - Show general overview of wallet - نمای کلی از wallet را نشان بده + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Transactions - تراکنش + + + The supplied passphrases do not match. + - Browse transaction history - تاریخچه تراکنش را باز کن + + Wallet unlock failed + - E&xit - خروج + + + + The passphrase entered for the wallet decryption was incorrect. + - Quit application - از "درخواست نامه"/ application خارج شو + + Wallet decryption failed + - About &Qt - درباره Qt + + Wallet passphrase was successfully changed. + - Show information about Qt - نمایش اطلاعات درباره Qt + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Options... - انتخاب ها + + Asset Selection + - &Encrypt Wallet... - رمزگذاری کیف پول + + Quantity: + - &Backup Wallet... - تهیه نسخه پشتیبان از کیف پول + + Bytes: + - &Change Passphrase... - تغییر رمز/پَس فرِیز + + Amount: + - &Receiving addresses... - دریافت آدرس ها + + Dust: + - Send coins to a Raven address - ارسال کوین به آدرس بیت کوین + + Fee: + - Backup wallet to another location - گرفتن نسخه پیشتیبان در آدرسی دیگر + + After Fee: + - Change the passphrase used for wallet encryption - رمز عبور مربوط به رمزگذاریِ کیف پول را تغییر دهید + + Change: + - &Debug window - پنجره دیباگ + + (un)select all + - &Verify message... - تایید پیام + + Tree mode + - Raven - بیت کوین + + List mode + - Wallet - کیف پول + + View assets that you have the ownership asset for + - &Send - ارسال + + View Administrator Assets + - &Show / Hide - نمایش/ عدم نمایش + + Asset + - &File - فایل + + Amount + - &Settings - تنظیمات + + Received with label + - &Help - راهنما + + Received with address + - Tabs toolbar - نوار ابزار + + Date + - Error - خطا + + Confirmations + - Up to date - به روز + + Confirmed + - Catching up... - در حال روزآمد سازی.. + + Copy address + - Sent transaction - تراکنش ارسالی + + Copy label + - Incoming transaction - تراکنش دریافتی + + + Copy amount + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است + + Copy transaction ID + - Wallet is <b>encrypted</b> and currently <b>locked</b> - wallet رمزگذاری شد و در حال حاضر قفل است + + Lock unspent + - - - CoinControlDialog - Coin Selection - انتخاب کوین + + Unlock unspent + - Quantity: - مقدار + + Copy quantity + - Amount: - میزان وجه: + + Copy fee + - Fee: - هزینه + + Copy after fee + - Change: - تغییر + + Copy bytes + - (un)select all - (عدم)انتخاب همه + + Copy dust + - Amount - میزان + + Copy change + - Received with label - دریافت شده با برچسب + + (%1 locked) + - Received with address - دریافت شده با آدرس + + yes + - Date - تاریخ + + no + - Confirmations - تاییدیه + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Confirmed - تایید شده + + Can vary +/- %1 satoshi(s) per input. + - Copy address - کپی آدرس + + + (no label) + - Copy label - کپی برچسب + + change from %1 (%2) + - Copy amount - کپی مقدار + + (change) + + + + AssetTableModel - Copy transaction ID - کپی شناسه تراکنش + + Name + - Copy quantity - کپی مقدار + + Quantity + + + + AssetsDialog - Copy fee - کپی هزینه + + + Send Coins + - yes - بله + + Asset Control Features + - no - خیر + + Inputs... + - - - EditAddressDialog - Edit Address - ویرایش حساب + + automatically selected + - &Label - برچسب + + Insufficient funds! + - &Address - آدرس + + Quantity: + - New receiving address - آدرس دریافتی جدید + + Bytes: + - New sending address - آدرس ارسالی جدید + + Amount: + - Edit receiving address - ویرایش آدرس دریافتی + + Dust: + - Edit sending address - ویرایش آدرس ارسالی + + Fee: + - - - FreespaceChecker - name - نام + + After Fee: + - - - HelpMessageDialog - version - نسخه + + Change: + - Usage: - میزان استفاده: + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - Intro - Welcome - خوش آمدید + + Custom change address + - Error - خطا + + Transaction Fee: + - - - ModalOverlay - Form - فرم + + Choose... + - Unknown... - ناشناس... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - calculating... - در حال محاسبه... + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + Hide - پنهان کردن + - - - OpenURIDialog - - - OptionsDialog - Options - گزینه ها + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - MB - مگابایت + + per kilobyte + - &Reset Options - تنظیم مجدد گزینه ها + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Network - شبکه + + (read the tooltip) + - W&allet - کیف پول + + Recommended: + - &Port: - پورت: + + Custom: + - &Window - پنجره + + (Smart fee not initialized yet. This usually takes a few blocks...) + - &Display - نمایش + + Confirmation time target: + - &OK - تایید + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - &Cancel - لغو + + Request Replace-By-Fee + - default - پیش فرض + + Confirm the send action + - - - OverviewPage - Form - فرم + + S&end + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه raven به روز می شود اما این فرایند هنوز تکمیل نشده است. + + Clear all fields of the form. + - Available: - در دسترس: + + Clear &All + - Pending: - در حال انتظار: + + Transfer to multiple recipients at once + - Total: - کل: + + Add &Recipient + - Spendable: - قابل مصرف: + + Balance: + - Recent transactions - تراکنش های اخیر + + Copy quantity + - - - PaymentServer - - - PeerTableModel - + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - QObject + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + انتخاب کوین + + + + Quantity: + مقدار + + + + Bytes: + + + + + Amount: + میزان وجه: + + + + Fee: + هزینه + + + + Dust: + + + + + After Fee: + + + + + Change: + تغییر + + + + (un)select all + (عدم)انتخاب همه + + + + Tree mode + + + + + List mode + + + + + Amount + میزان + + + + Received with label + دریافت شده با برچسب + + + + Received with address + دریافت شده با آدرس + + + + Date + تاریخ + + + + Confirmations + تاییدیه + + + + Confirmed + تایید شده + + + + Copy address + کپی آدرس + + + + Copy label + کپی برچسب + + + + + Copy amount + کپی مقدار + + + + Copy transaction ID + کپی شناسه تراکنش + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + کپی مقدار + + + + Copy fee + کپی هزینه + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + بله + + + + no + خیر + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + ویرایش حساب + + + + &Label + برچسب + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + آدرس + + + + New receiving address + آدرس دریافتی جدید + + + + New sending address + آدرس ارسالی جدید + + + + Edit receiving address + ویرایش آدرس دریافتی + + + + Edit sending address + ویرایش آدرس ارسالی + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + نام + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + نسخه + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + میزان استفاده: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + خوش آمدید + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + خطا + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + فرم + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + ناشناس... + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + در حال محاسبه... + + + + Estimated time left until synced + + + + + Hide + پنهان کردن + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + گزینه ها + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + مگابایت + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + تنظیم مجدد گزینه ها + + + + &Network + شبکه + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + کیف پول + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + پورت: + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + پنجره + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + نمایش + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + تایید + + + + &Cancel + لغو + + + + default + پیش فرض + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + فرم + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + اطلاعات نمایش داده شده ممکن است روزآمد نباشد. wallet شما به صورت خودکار بعد از برقراری اتصال با شبکه raven به روز می شود اما این فرایند هنوز تکمیل نشده است. + + + + Watch-only: + + + + + Available: + در دسترس: + + + + Your current spendable balance + + + + + Pending: + در حال انتظار: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + کل: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + قابل مصرف: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + تراکنش های اخیر + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + میزان + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + ویرایش کنسول RPC + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + شبکه + + + + Name + + + + + Number of connections + تعداد اتصال + + + + Block chain + زنجیره مجموعه تراکنش ها + + + + Current number of blocks + تعداد زنجیره های حاضر + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + امضا و پیام + + + + Synchronizing with network... + به روز رسانی با شبکه... + + + + &Overview + بازبینی + + + + Node + + + + + Show general overview of wallet + نمای کلی از wallet را نشان بده + + + + &Transactions + تراکنش + + + + Browse transaction history + تاریخچه تراکنش را باز کن + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + خروج + + + + Quit application + از "درخواست نامه"/ application خارج شو + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + درباره Qt + + + + Show information about Qt + نمایش اطلاعات درباره Qt + + + + &Options... + انتخاب ها + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + رمزگذاری کیف پول + + + + &Backup Wallet... + تهیه نسخه پشتیبان از کیف پول + + + + &Change Passphrase... + تغییر رمز/پَس فرِیز + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + دریافت آدرس ها + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + ارسال کوین به آدرس بیت کوین + + + + Backup wallet to another location + گرفتن نسخه پیشتیبان در آدرسی دیگر + + + + Change the passphrase used for wallet encryption + رمز عبور مربوط به رمزگذاریِ کیف پول را تغییر دهید + + + + Open debugging and diagnostic console + + + + + &Verify message... + تایید پیام + + + + Raven + بیت کوین + + + + Wallet + کیف پول + + + + &Send + ارسال + + + + &Receive + + + + + &Show / Hide + نمایش/ عدم نمایش + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + فایل + + + + &Help + راهنما + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + خطا + + + + Warning + + + + + Information + + + + + Up to date + به روز + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + در حال روزآمد سازی.. + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + تراکنش ارسالی + + + + Incoming transaction + تراکنش دریافتی + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + wallet رمزگذاری شد و در حال حاضر از حالت قفل در آمده است + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + wallet رمزگذاری شد و در حال حاضر قفل است + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + میزان وجه: + + + + &Label: + برچسب: + + + + &Message: + پیام: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + حذف + + + + Copy URI + + + + + Copy label + کپی برچسب + + + + Copy message + + + + + Copy amount + کپی مقدار + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + کپی آدرس + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + آدرس + + + + Amount + + + + + Label + برچسب + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + برچسب + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + سکه های ارسالی + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + وجوه ناکافی + + + + Quantity: + مقدار + + + + Bytes: + + + + + Amount: + میزان وجه: + + + + Fee: + هزینه + + + + After Fee: + + + + + Change: + تغییر + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + پنهان کردن + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + ارسال همزمان به گیرنده های متعدد + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + پاک کردن همه + + + + Balance: + مانده حساب: + + + + Confirm the send action + تایید عملیات ارسال + + + + S&end + و ارسال + + + + Copy quantity + کپی مقدار + + + + Copy amount + کپی مقدار + + + + Copy fee + کپی هزینه + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + میزان وجه + + + + &Label: + برچسب: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + استفاده از آدرس کلیپ بورد + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + پیام: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + یادداشت: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + تا پیش از بسته شدن این پنجره کامپیوتر خود را خاموش نکنید. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + امضای پیام + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + آدرس را بر کلیپ بورد کپی کنید + + + + Alt+P + + + + + Enter the message you want to sign here + پیامی که می خواهید امضا کنید را اینجا وارد کنید + + + + Signature + امضا + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + امضای پیام + + + + Reset all sign message fields + + + + + + Clear &All + پاک کردن همه + + + + &Verify Message + تایید پیام + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + تایید پیام + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + آدرس وارد شده نامعتبر است. + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + وضعیت + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + منبع + + + + Generated + تولید شده + + + + + + + + From + از + + + + + unknown + + + + + + + + + To + به + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + این بخش جزئیات تراکنش را نشان می دهد + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + برچسب + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + تایید نشده + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + دریافت شده از + + + + Sent to + ارسال شده به + + + + Payment to yourself + + + + + Mined + استخراج شده + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + ارسال شده به + + + + To yourself + + + + + Mined + استخراج شده + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + کپی آدرس + + + + Copy label + کپی برچسب + + + + Copy amount + کپی مقدار + + + + Copy transaction ID + کپی شناسه تراکنش + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + برچسب + + + + Address + آدرس + + + + Asset + + + + + ID + + + + + Exporting Failed + گرفتن خروجی به مشکل خورد + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + انتخابها: + + + + Specify data directory + دایرکتوری داده را مشخص کن + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + command line و JSON-RPC commands را قبول کنید + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + مبلغ تراکنش کمتر از آن است که پس از کسر هزینه تراکنش قابل ارسال باشد + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + گزینه های سرویس دهنده RPC: + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + شناسه کاربری برای ارتباطاتِ JSON-RPC + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + رمز برای ارتباطاتِ JSON-RPC + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + - Amount - میزان + + Unable to reissue asset: unit must be larger than current unit selection + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Client version - ویرایش کنسول RPC + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Network - شبکه + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Number of connections - تعداد اتصال + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Block chain - زنجیره مجموعه تراکنش ها + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Current number of blocks - تعداد زنجیره های حاضر + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - - - ReceiveCoinsDialog - &Amount: - میزان وجه: + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - &Label: - برچسب: + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - &Message: - پیام: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Remove - حذف + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Copy label - کپی برچسب + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Copy amount - کپی مقدار + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - - - ReceiveRequestDialog - Copy &Address - کپی آدرس + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Address - آدرس + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Label - برچسب + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - - - RecentRequestsTableModel - Label - برچسب + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - SendCoinsDialog - Send Coins - سکه های ارسالی + + %s is set very high! + - Insufficient funds! - وجوه ناکافی + + ' doesn't exist in the database + - Quantity: - مقدار + + ' has already been used + - Amount: - میزان وجه: + + ' is not a valid character in the expression: + - Fee: - هزینه + + ' the amount trying to reissue is to large + - Change: - تغییر + + (default: %s) + - Hide - پنهان کردن + + A space separated list of 12-words used to import a bip44 wallet + - Send to multiple recipients at once - ارسال همزمان به گیرنده های متعدد + + Always query for peer addresses via DNS lookup (default: %u) + - Clear &All - پاک کردن همه + + Asset Transfer amounts must be greater than 0 + - Balance: - مانده حساب: + + Asset doesn't exist: + - Confirm the send action - تایید عملیات ارسال + + Asset must be a qualifier, sub qualifier, or a restricted asset + - S&end - و ارسال + + Asset name is not valid + - Copy quantity - کپی مقدار + + Asset with this name is already in the mempool + - Copy amount - کپی مقدار + + Done Loading + - Copy fee - کپی هزینه + + Enable publish raw asset messages in <address> + - - - SendCoinsEntry - A&mount: - میزان وجه + + Error creating %s: You can't create non-HD wallets with this version. + - Pay &To: - پرداخت به: + + Error loading wallet %s. -wallet filename must be a regular file. + - &Label: - برچسب: + + Error loading wallet %s. Duplicate -wallet filename specified. + - Paste address from clipboard - استفاده از آدرس کلیپ بورد + + Error loading wallet %s. Invalid characters in -wallet filename. + - Message: - پیام: + + Error not set + - Pay To: - پرداخت به: + + Error writing bip 39 passphrase to database + - Memo: - یادداشت: + + Error writing bip 39 vchseed to database + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - تا پیش از بسته شدن این پنجره کامپیوتر خود را خاموش نکنید. + + Error writing bip 39 words to database + - - - SignVerifyMessageDialog - &Sign Message - امضای پیام + + Every '(' must have a corresponding ')' in the expression: + - Paste address from clipboard - آدرس را بر کلیپ بورد کپی کنید + + Failed to extract destination from change script + - Enter the message you want to sign here - پیامی که می خواهید امضا کنید را اینجا وارد کنید + + Failed to find restricted asset change address from inputs + - Signature - امضا + + Failed to get asset data from script + - Sign &Message - امضای پیام + + Failed to get verifier string from output: + - Clear &All - پاک کردن همه + + Failed to load Assets Database + - &Verify Message - تایید پیام + + Flag must be 1 or 0 + - Verify &Message - تایید پیام + + How many blocks to check at startup (default: %u, 0 = all) + - The entered address is invalid. - آدرس وارد شده نامعتبر است. + + Include IP addresses in debug output (default: %u) + - - - SplashScreen - [testnet] - [testnet] + + Init Message Channels - Scanning Asset Transactions + - - - TrafficGraphWidget - - - TransactionDesc - Status - وضعیت + + Insufficient asset funds + - Source - منبع + + Invalid Qualifier Name: + - Generated - تولید شده + + Invalid expressions in verifier string: + - From - از + + Invalid parameter: amount must be + - To - به + + Invalid parameter: amount must be between + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - این بخش جزئیات تراکنش را نشان می دهد + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - TransactionTableModel - Label - برچسب + + Invalid parameter: asset amount greater than max money: + - Unconfirmed - تایید نشده + + Invalid parameter: asset_name ' + - Received from - دریافت شده از + + Invalid parameter: has_ipfs must be 0 or 1. + - Sent to - ارسال شده به + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Mined - استخراج شده + + Invalid parameter: reissuable must be 0 or 1 + - - - TransactionView - Sent to - ارسال شده به + + Invalid parameter: reissuable must be 0 + - Mined - استخراج شده + + Invalid parameter: units must be + - Copy address - کپی آدرس + + Invalid parameter: units must be between 0-8. + - Copy label - کپی برچسب + + Invalid syntax: + - Copy amount - کپی مقدار + + Keypool ran out, please call keypoolrefill first + - Copy transaction ID - کپی شناسه تراکنش + + Length is to large. Please use a smaller length + - Label - برچسب + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Address - آدرس + + Listen for connections on <port> (default: %u or testnet: %u) + - Exporting Failed - گرفتن خروجی به مشکل خورد + + Maintain at most <n> connections to peers (default: %u) + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - انتخابها: + + Make the wallet broadcast transactions + - Specify data directory - دایرکتوری داده را مشخص کن + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Accept command line and JSON-RPC commands - command line و JSON-RPC commands را قبول کنید + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Run in the background as a daemon and accept commands - به عنوان daemon بک گراند را اجرا کنید و دستورات را قبول نمایید + + Mempool cleared + - The transaction amount is too small to send after the fee has been deducted - مبلغ تراکنش کمتر از آن است که پس از کسر هزینه تراکنش قابل ارسال باشد + + Multiple verifier strings found in transaction + - RPC server options: - گزینه های سرویس دهنده RPC: + + Passphrase securing your 12-word mnemonic word-list + - Send trace/debug info to console instead of debug.log file - ارسال اطلاعات پیگیری/خطایابی به کنسول به جای ارسال به فایل debug.log + + Prepend debug output with timestamp (default: %u) + - Send transactions as zero-fee transactions if possible (default: %u) - ارسال تراکنش ها به صورت بدون کارمزد در صورت امکان (پیش فرض: %u) + + Relay and mine data carrier transactions (default: %u) + - Username for JSON-RPC connections - شناسه کاربری برای ارتباطاتِ JSON-RPC + + Relay non-P2SH multisig (default: %u) + - Password for JSON-RPC connections - رمز برای ارتباطاتِ JSON-RPC + + Restricted asset transfer from address that has been frozen + - Execute command when the best block changes (%s in cmd is replaced by block hash) - دستور را وقتی بهترین بلاک تغییر کرد اجرا کن (%s در دستور توسط block hash جایگزین شده است) + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + - Loading addresses... - لود شدن آدرسها.. + + Set maximum BIP141 block weight (default: %d) + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) تنظیم تعداد ریسمان ها برای سرویس دهی فراخوانی های RPC (پیش فرض: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) فایل تنظیمات را مشخص کنید (پیش فرض: %s) + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + Specify pid file (default: %s) فایل pid را مشخص کنید (پیش فرض: %s) + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + Insufficient funds وجوه ناکافی + Loading block index... لود شدن نمایه بلاکها.. - Add a node to connect to and attempt to keep the connection open - یک گره برای اتصال اضافه کنید و تلاش کنید تا اتصال را باز نگاه دارید - - + Loading wallet... wallet در حال لود شدن است... + Cannot downgrade wallet قابلیت برگشت به نسخه قبلی برای wallet امکان پذیر نیست - Cannot write default address - آدرس پیش فرض قابل ذخیره نیست - - + Rescanning... اسکنِ دوباره... - Done loading - اتمام لود شدن - - + Error خطا diff --git a/src/qt/locale/raven_fi.ts b/src/qt/locale/raven_fi.ts index 88df76046a..1b9c8bb109 100644 --- a/src/qt/locale/raven_fi.ts +++ b/src/qt/locale/raven_fi.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Valitse hiiren oikealla painikkeella muokataksesi osoitetta tai nimikettä + Create a new address Luo uusi osoite + &New &Uusi + Copy the currently selected address to the system clipboard Kopioi valittu osoite leikepöydälle + &Copy &Kopioi + C&lose S&ulje + Delete the currently selected address from the list Poista valittu osoite listalta + Export the data in the current tab to a file Vie auki olevan välilehden tiedot tiedostoon + &Export &Vie + &Delete &Poista + Choose the address to send coins to Valitse osoite johon kolikot lähetetään + Choose the address to receive coins with Valitse osoite kolikoiden vastaanottamiseen + C&hoose V&alitse + Sending addresses Lähetysosoitteet + Receiving addresses Vastaanotto-osoitteet + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Nämä ovat Raven-osoitteesi maksujen lähettämistä varten. Tarkista aina määrä ja vastaanotto-osoite ennen kolikoiden lähettämistä. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Tässä ovat Raven vastaanotto-osoitteesi. On suositeltavaa käyttää uutta vastaanotto-osoitetta jokaista lähetystä varten. + &Copy Address &Kopioi osoite + Copy &Label Kopioi &nimike + &Edit &Muokkaa + Export Address List Vie osoitelista + Comma separated file (*.csv) Pilkuilla erotettu tiedosto (*.csv) + Exporting Failed Vienti epäonnistui + There was an error trying to save the address list to %1. Please try again. Virhe tallentaessa osoitelistaa kohteeseen %1. Yritä uudelleen. @@ -103,14 +125,17 @@ AddressTableModel + Label Nimike + Address Osoite + (no label) (ei nimikettä) @@ -118,2884 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Tunnuslauseen tekstinsyöttökenttä + Enter passphrase Kirjoita tunnuslause + New passphrase Uusi tunnuslause + Repeat new passphrase Toista uusi tunnuslause + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Kirjoita uusi salauslause lompakolle.<br/>Käytä salauslausetta jossa on joko<b>kymmenen tai useampi satunnainen merkki</b>, tai<b>vähintään kahdeksan sanaa</b> + Encrypt wallet Salaa lompakko + This operation needs your wallet passphrase to unlock the wallet. Tämä toiminto vaatii lompakkosi tunnuslauseen sen avaamiseksi + Unlock wallet Avaa lompakko + This operation needs your wallet passphrase to decrypt the wallet. Tämä toiminto vaatii lompakkosia tunnuslauseen salauksen purkuun + Decrypt wallet Pura lompakon salaus + Change passphrase Vaihda salasana + Enter the old passphrase and new passphrase to the wallet. Syötä vanha ja uusi tunnuslause lompakolle. + Confirm wallet encryption Vahvista lompakon salaaminen + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Varoitus: Jos salaat lompakkosi ja menetät tunnuslauseesi, <b>MENETÄT KAIKKI RAVENISI</b>! + Are you sure you wish to encrypt your wallet? Oletko varma, että haluat salata lompakkosi? + + Wallet encrypted Lompakko salattiin + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 sulkeutuu lopettaakseen salausprosessin. Muista, että salattukaan lompakko ei täysin suojaa sitä haittaohjelmien aiheuttamilta varkauksilta. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. TÄRKEÄÄ: Kaikki tekemäsi vanhan lompakon varmuuskopiot pitäisi korvata uusilla suojatuilla varmuuskopioilla. Turvallisuussyistä edelliset varmuuskopiot muuttuvat turhiksi, kun aloitat uuden suojatun lompakon käytön. + + + + Wallet encryption failed Lompakon salaus epäonnistui + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Lompakon salaaminen epäonnistui sisäisen virheen vuoksi. Lompakkoasi ei salattu. + + The supplied passphrases do not match. Annetut salauslauseet eivät täsmää. + Wallet unlock failed Lompakon lukituksen avaaminen epäonnistui + + + The passphrase entered for the wallet decryption was incorrect. Annettu salauslause lompakon avaamiseksi oli väärä. + Wallet decryption failed Lompakon salauksen purkaminen epäonnistui + Wallet passphrase was successfully changed. Lompakon salasana vaihdettiin onnistuneesti. + + Warning: The Caps Lock key is on! Varoitus: Caps Lock-painike on päällä! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Verkon peite + + Asset Selection + - Banned Until - Estetty kunnes + + Quantity: + - - - RavenGUI - Sign &message... - &Allekirjoita viesti... + + Bytes: + - Synchronizing with network... - Synkronoidaan verkon kanssa... + + Amount: + - &Overview - &Yleisnäkymä + + Dust: + - Node - Solmu + + Fee: + - Show general overview of wallet - Lompakon tilanteen yleiskatsaus + + After Fee: + - &Transactions - &Rahansiirrot + + Change: + - Browse transaction history - Selaa rahansiirtohistoriaa + + (un)select all + - E&xit - L&opeta + + Tree mode + - Quit application - Sulje ohjelma + + List mode + - &About %1 - &Tietoja %1 + + View assets that you have the ownership asset for + - Show information about %1 - Näytä tietoa aiheesta %1 + + View Administrator Assets + - About &Qt - Tietoja &Qt + + Asset + - Show information about Qt - Näytä tietoja Qt:ta + + Amount + - &Options... - &Asetukset... + + Received with label + - Modify configuration options for %1 - Muuta kohteen %1 kokoonpanoasetuksia + + Received with address + - &Encrypt Wallet... - &Salaa lompakko... + + Date + - &Backup Wallet... - &Varmuuskopioi Lompakko... + + Confirmations + - &Change Passphrase... - &Vaihda Tunnuslause... + + Confirmed + - &Sending addresses... - &Lähetysosoitteet... + + Copy address + - &Receiving addresses... - &Vastaanotto-osoitteet... + + Copy label + - Open &URI... - Avaa &URI... + + + Copy amount + - Click to disable network activity. - Paina poistaaksesi verkkoyhteysilmaisin käytöstä. + + Copy transaction ID + - Network activity disabled. - Verkkoyhteysmittari pois käytöstä + + Lock unspent + - Click to enable network activity again. - Paina ottaaksesi verkkoyhteysilmaisin uudelleen käyttöön. + + Unlock unspent + - Syncing Headers (%1%)... - Synkronoidaan Tunnisteita (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Ladataan lohkoindeksiä... + + Copy fee + - Send coins to a Raven address - Lähetä kolikoita Raven-osoitteeseen + + Copy after fee + - Backup wallet to another location - Varmuuskopioi lompakko toiseen sijaintiin + + Copy bytes + - Change the passphrase used for wallet encryption - Vaihda lompakon salaukseen käytettävä tunnuslause + + Copy dust + - &Debug window - &Testausikkuna + + Copy change + - Open debugging and diagnostic console - Avaa debuggaus- ja diagnostiikkakonsoli + + (%1 locked) + - &Verify message... - Varmista &viesti... + + yes + - Raven - Raven + + no + - Wallet - Lompakko + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Lähetä + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Vastaanota + + + (no label) + - &Show / Hide - &Näytä / Piilota + + change from %1 (%2) + - Show or hide the main Window - Näytä tai piilota Raven-ikkuna + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Suojaa yksityiset avaimet, jotka kuuluvat lompakkoosi + + Name + - Sign messages with your Raven addresses to prove you own them - Allekirjoita viestisi omalla Raven -osoitteellasi todistaaksesi, että omistat ne + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Varmista, että viestisi on allekirjoitettu määritetyllä Raven -osoitteella + + + Send Coins + - &File - &Tiedosto + + Asset Control Features + - &Settings - &Asetukset + + Inputs... + - &Help - &Apua + + automatically selected + - Tabs toolbar - Välilehtipalkki + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Pyydä maksuja (Luo QR koodit ja raven: URIt) + + Quantity: + - Show the list of used sending addresses and labels - Näytä lähettämiseen käytettyjen osoitteiden ja nimien lista + + Bytes: + - Show the list of used receiving addresses and labels - Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista + + Amount: + - Open a raven: URI or payment request - Avaa raven: URI tai maksupyyntö + + Dust: + - &Command-line options - &Komentorivin valinnat + + Fee: + - - %n active connection(s) to Raven network - %n aktiivinen yhteys Raven-verkkoon%n aktiivista yhteyttä Raven-verkkoon + + + After Fee: + - Indexing blocks on disk... - Ladataan lohkoindeksiä... + + Change: + - Processing blocks on disk... - Käsitellään lohkoja levyllä... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - Prosessoitu %n lohko rahansiirtohistoriasta.Prosessoitu %n lohkoa rahansiirtohistoriasta. + + + Custom change address + - %1 behind - %1 jäljessä + + Transaction Fee: + - Last received block was generated %1 ago. - Viimeisin vastaanotettu lohko tuotettu %1. + + Choose... + - Transactions after this will not yet be visible. - Tämän jälkeiset rahansiirrot eivät ole vielä näkyvissä. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Virhe + + Warning: Fee estimation is currently not possible. + - Warning - Varoitus + + collapse fee-settings + - Information - Tietoa + + Hide + - Up to date - Rahansiirtohistoria on ajan tasalla + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Näytä %1 ohjeet saadaksesi listan mahdollisista Ravenin komentorivivalinnoista + + per kilobyte + - %1 client - %1-asiakas + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Yhdistetään vertaisiin... + + (read the tooltip) + - Catching up... - Saavutetaan verkkoa... + + Recommended: + - Date: %1 - - Päivämäärä: %1 - + + Custom: + - Amount: %1 - - Määrä: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - Tyyppi: %1 - + + Confirmation time target: + - Label: %1 - - Nimike: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - Osoite: %1 - + + Request Replace-By-Fee + - Sent transaction - Lähetetyt rahansiirrot + + Confirm the send action + - Incoming transaction - Saapuva rahansiirto + + S&end + - HD key generation is <b>enabled</b> - HD avaimen generointi on <b>päällä</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - HD avaimen generointi on </b>pois päältä</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Peruuttamaton virhe on tapahtunut. Raven ei voi enää jatkaa turvallisesti ja sammutetaan. + + Balance: + - - - CoinControlDialog - Coin Selection - Kolikoiden valinta + + Copy quantity + - Quantity: - Määrä: + + Copy amount + - Bytes: - Tavuja: + + Copy fee + - Amount: - Määrä: + + Copy after fee + - Fee: - Palkkio: + + Copy bytes + - Dust: - Tomu: + + Copy dust + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Verkon peite + + + + Banned Until + Estetty kunnes + + + + CoinControlDialog + + + Coin Selection + Kolikoiden valinta + + + + Quantity: + Määrä: + + + + Bytes: + Tavuja: + + + + Amount: + Määrä: + + + + Fee: + Palkkio: + + + + Dust: + Tomu: + + + After Fee: Palkkion jälkeen: + Change: Vaihtoraha: + (un)select all (epä)valitse kaikki + Tree mode Puurakenne + List mode Listarakenne + Amount Määrä + Received with label Vastaanotettu nimikkeellä + Received with address Vastaanotettu osoitteella + Date Aika + Confirmations Vahvistuksia + Confirmed Vahvistettu + Copy address Kopioi osoite + Copy label Kopioi nimike + + Copy amount Kopioi määrä + Copy transaction ID Kopioi transaktion ID + Lock unspent Lukitse käyttämättömät + Unlock unspent Avaa käyttämättömien lukitus + Copy quantity Kopioi kappalemäärä + Copy fee Kopioi rahansiirtokulu + Copy after fee Kopioi rahansiirtokulun jälkeen + Copy bytes Kopioi tavut + Copy dust Kopioi tomu + Copy change Kopioi vaihtorahat + (%1 locked) (%1 lukittu) + yes kyllä + no ei + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + Can vary +/- %1 satoshi(s) per input. Saattaa vaihdella +/- %1 satoshia per syöte. + + (no label) (ei nimikettä) + + change from %1 (%2) + + + + (change) (vaihtoraha) - EditAddressDialog + CreateAssetDialog - Edit Address - Muokkaa osoitetta + + Coin Control Features + - &Label - &Nimi + + Inputs... + - The label associated with this address list entry - Tähän osoitteeseen liitetty nimi + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Osoite liitettynä tähän osoitekirjan alkioon. Tämä voidaan muokata vain lähetysosoitteissa. + + Insufficient funds! + - &Address - &Osoite + + + Quantity: + - New receiving address - Uusi vastaanotto-osoite + + Bytes: + - New sending address - Uusi lähetysosoite + + Amount: + - Edit receiving address - Muokkaa vastaanottavaa osoitetta + + Dust: + - Edit sending address - Muokkaa lähettävää osoitetta + + Fee: + - The entered address "%1" is not a valid Raven address. - Antamasi osoite "%1" ei ole kelvollinen Raven-osoite. + + After Fee: + - The entered address "%1" is already in the address book. - Antamasi osoite "%1" on jo osoitekirjassa + + Change: + - Could not unlock wallet. - Lompakkoa ei voitu avata. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Uuden avaimen luonti epäonnistui. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Luodaan uusi kansio. + + Name: + - name - Nimi + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Hakemisto on jo olemassa. Lisää %1 jos tarkoitus on luoda hakemisto tänne. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Polku on jo olemassa, eikä se ole kansio. + + Check Availabilty + - Cannot create data directory here. - Ei voida luoda data-hakemistoa tänne. + + Address: + - - - HelpMessageDialog - version - versio + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Tietoja %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Komentorivi parametrit + + Warning: + - Usage: - Käyttö: + + The number of assets that will be created + - command-line options - komentorivi parametrit + + Units: + - UI Options: - Käyttöliittymän asetukset: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Valitse datahakemisto käynnistyksen yhteydessä (oletus: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Aseta kieli, esimerkiksi "de_DE" (oletus: järjestelmän kieli) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Käynnistä pienennettynä + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Aseta maksupyynnöille SSL-juurivarmenteet (oletus: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Näytä aloitusruutu käynnistyksen yhteydessä (oletus: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Nollaa kaikki graafisen käyttöliittymän kautta tehdyt muutokset + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Tervetuloa + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Tervetuloa %1 pariin. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Tämä on ensimmäinen kerta, kun %1 on käynnistetty, joten voit valita data-hakemiston paikan. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 lataa ja tallentaa kopion Ravenin lohkoketjusta. Vähintään %2Gt dataa tullaan tallentamaan tähän hakemistoon, ja tarve kasvaa ajan myötä. Lompakko tullaan myös tallentamaan tähän hakemistoon. + + Choose... + - Use the default data directory - Käytä oletuskansiota + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Määritä oma kansio: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Virhe: Annettu datahakemistoa "%1" ei voida luoda. + + collapse fee-settings + - Error - Virhe - - - %n GB of free space available - %n Gt vapaata tilaa käytettävissä%n Gt vapaata tilaa käytettävissä + + Hide + - - (of %n GB needed) - (%n Gt tarvittavasta tilasta)(%n Gt tarvittavasta tilasta) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Lomake + + per kilobyte + - Unknown... - Tunnistamaton.. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Last block time - Viimeisimmän lohkon aika + + (read the tooltip) + - Progress - Tila + + Recommended: + - Progress increase per hour - Edistymisen kasvu tunnissa + + C&ustom: + - calculating... - lasketaan.. + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Estimated time left until synced - Arvioitu jäljellä oleva aika, kunnes synkronoitu + + Confirmation time target: + - Hide - Piilota + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - - - OpenURIDialog - Open URI - Avaa URI + + Request Replace-By-Fee + - Open payment request from URI or file - Avaa maksupyyntö URI:sta tai tiedostosta + + Create Asset + - URI: - URI: + + Clear + - Select payment request file - Valitse maksupyynnön tiedosto + + Balance: + - - - OptionsDialog - Options - Asetukset + + 123.456 RVN + - &Main - &Yleiset + + Copy quantity + - Automatically start %1 after logging in to the system. - Käynnistä %1 automaattisesti järjestelmään kirjautumisen jälkeen. + + Copy amount + - &Start %1 on system login - &Käynnistä %1 järjestelmään kirjautuessa + + Copy fee + - Size of &database cache - &Tietokannan välimuistin koko + + Copy after fee + - MB - MB + + Copy bytes + - Number of script &verification threads - Script &varmistuksen threadien määrä + + Copy dust + - Accept connections from outside - Hyväksy yhteysiä ulkopuolelta + + Copy change + - Allow incoming connections - Hyväksy sisääntulevia yhteyksiä + + %1 (%2 blocks) + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP osoite proxille (esim. IPv4: 127.0.0.1 / IPv6: ::1) + + Main Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimoi ikkuna ohjelman sulkemisen sijasta kun ikkuna suljetaan. Kun tämä asetus on käytössä, ohjelma suljetaan vain valittaessa valikosta Poistu. + + Sub Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Ulkopuoliset URL-osoitteet (esim. block explorer,) jotka esiintyvät siirrot-välilehdellä valikossa. %s URL-osoitteessa korvataan siirtotunnuksella. Useampi URL-osoite on eroteltu pystyviivalla |. + + Unique Asset + - Third party transaction URLs - Kolmannen osapuolen rahansiirto URL:t + + Messaging Channel Asset + - Active command-line options that override above options: - Aktiiviset komentorivivalinnat jotka ohittavat ylläolevat valinnat: + + Qualifier Asset + - Reset all client options to default. - Palauta kaikki asetukset takaisin alkuperäisiksi. + + Sub Qualifier Asset + - &Reset Options - &Palauta asetukset + + Restricted Asset + - &Network - &Verkko + + Asset Type + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = jätä näin monta ydintä vapaaksi) + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - W&allet - &Lompakko + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Expert - Expertti + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Enable coin &control features - Ota käytöön &Kolikkokontrolli-ominaisuudet + + + + Warning: Invalid Raven address + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Jos poistat varmistamattomien vaihtorahojen käytön, rahansiirron vaihtorahaa ei voida käyttää ennen vähintään yhtä varmistusta. Tämä vaikuttaa myös kuinka taseesi lasketaan. + + Warning: Restricted Assets Reissuance requires an address + - &Spend unconfirmed change - &Käytä varmistamattomia vaihtorahoja + + Valid Asset + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Avaa Raven-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. + + Invalid: Asset name already in use + - Map port using &UPnP - Portin uudelleenohjaus &UPnP:llä + + Error: Asset Database not in sync + - Connect to the Raven network through a SOCKS5 proxy. - Yhdistä Raven-verkkoon SOCKS5-välityspalvelimen kautta. + + + %1 to %2 + - &Connect through SOCKS5 proxy (default proxy): - &Yhdistä SOCKS5-välityspalvelimen kautta (oletus välityspalvelin): + + Are you sure you want to send? + - Proxy &IP: - Proxyn &IP: + + added as transaction fee + - &Port: - &Portti + + Total Amount %1 + - Port of the proxy (e.g. 9050) - Proxyn Portti (esim. 9050) + + or + - Used for reaching peers via: - Vertaisten saavuttamiseen käytettävät verkkotyypit: + + Confirm send assets + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Ilmoittaa, mikäli oletetettua SOCKS5-välityspalvelinta käytetään tämän verkkotyypin kautta vertaisten saavuttamiseen. + + Invalid: + - IPv4 - IPv4 + + Copy + - IPv6 - IPv6 + + Transaction ID Copied + - Tor - Tor + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Yhdistä Raven-verkkoon erillisen SOCKS5-välityspalvelimen kautta piilotettuja Tor-palveluja varten. + + Warning: Unknown change address + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Käytä erillistä SOCKS5-välityspalvelinta saavuttaaksesi vertaisia piilotettujen Tor-palveluiden kautta: + + Confirm custom change address + - &Window - &Ikkuna + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Show only a tray icon after minimizing the window. - Näytä ainoastaan ilmaisinalueella ikkunan pienentämisen jälkeen. + + (no label) + - &Minimize to the tray instead of the taskbar - &Pienennä ilmaisinalueelle työkalurivin sijasta + + Pay only the required fee of %1 + + + + EditAddressDialog - M&inimize on close - P&ienennä suljettaessa + + Edit Address + Muokkaa osoitetta - &Display - &Käyttöliittymä + + &Label + &Nimi - User Interface &language: - &Käyttöliittymän kieli + + The label associated with this address list entry + Tähän osoitteeseen liitetty nimi - The user interface language can be set here. This setting will take effect after restarting %1. - Tässä voit määritellä käyttöliittymän kielen. Muutokset astuvat voimaan seuraavan kerran, kun %1 käynnistetään. + + The address associated with this address list entry. This can only be modified for sending addresses. + Osoite liitettynä tähän osoitekirjan alkioon. Tämä voidaan muokata vain lähetysosoitteissa. - &Unit to show amounts in: - Yksikkö jona raven-määrät näytetään + + &Address + &Osoite - Choose the default subdivision unit to show in the interface and when sending coins. - Valitse mitä yksikköä käytetään ensisijaisesti raven-määrien näyttämiseen. + + New receiving address + Uusi vastaanotto-osoite - Whether to show coin control features or not. - Näytetäänkö kolikkokontrollin ominaisuuksia vai ei + + New sending address + Uusi lähetysosoite - &OK - &OK + + Edit receiving address + Muokkaa vastaanottavaa osoitetta - &Cancel - &Peruuta + + Edit sending address + Muokkaa lähettävää osoitetta - default - oletus + + The entered address "%1" is not a valid Raven address. + Antamasi osoite "%1" ei ole kelvollinen Raven-osoite. - none - ei mitään + + The entered address "%1" is already in the address book. + Antamasi osoite "%1" on jo osoitekirjassa - Confirm options reset - Varmista asetusten palautus + + Could not unlock wallet. + Lompakkoa ei voitu avata. - Client restart required to activate changes. - Ohjelman uudelleenkäynnistys aktivoi muutokset. + + New key generation failed. + Uuden avaimen luonti epäonnistui. + + + FreespaceChecker - Client will be shut down. Do you want to proceed? - Asiakasohjelma sammutetaan. Haluatko jatkaa? + + A new data directory will be created. + Luodaan uusi kansio. - This change would require a client restart. - Tämä muutos vaatii ohjelman uudelleenkäynnistyksen. + + name + Nimi - The supplied proxy address is invalid. - Antamasi proxy-osoite on virheellinen. + + Directory already exists. Add %1 if you intend to create a new directory here. + Hakemisto on jo olemassa. Lisää %1 jos tarkoitus on luoda hakemisto tänne. + + + + Path already exists, and is not a directory. + Polku on jo olemassa, eikä se ole kansio. + + + + Cannot create data directory here. + Ei voida luoda data-hakemistoa tänne. - OverviewPage + FreezeAddress - Form - Lomake + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Raven-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään. + + Restricted Asset: + - Watch-only: - Seuranta: + + Address: + - Available: - Käytettävissä: + + Custom Change Address + - Your current spendable balance - Nykyinen käytettävissä oleva tase + + IPFS / Hash: + - Pending: - Odotetaan: + + Single Address Options + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Varmistamattomien rahansiirtojen summa, jota ei lasketa käytettävissä olevaan taseeseen. + + Global Options + - Immature: - Epäkypsää: + + Free&ze trading on this address + - Mined balance that has not yet matured - Louhittu saldo, joka ei ole vielä kypsynyt + + Unfreeze tradin&g on this address + - Balances - Saldot + + Freeze all &trading for the selected restricted asset + - Total: - Yhteensä: + + &Unfreeze all trading for the selected restricted asset + - Your current total balance - Tililläsi tällä hetkellä olevien Ravenien määrä + + Check + - Your current balance in watch-only addresses - Nykyinen tase seurantaosoitetteissa + + Clear + - Spendable: - Käytettävissä: + + Submit + - Recent transactions - Viimeisimmät rahansiirrot + + Data has been validated, You can now submit the restriction transaction + - Unconfirmed transactions to watch-only addresses - Vahvistamattomat rahansiirrot vain katseltaviin osoitteisiin + + Must have a restricted asset selected + - Mined balance in watch-only addresses that has not yet matured - Louhittu, ei vielä kypsynyt saldo vain katseltavissa osoitteissa + + Address is already frozen + - Current total balance in watch-only addresses - Nykyinen tase seurantaosoitetteissa + + Address is not frozen + - - - PaymentServer - - - PeerTableModel - User Agent - Käyttöliittymä + + Restricted asset is already frozen globally + - Node/Service - Noodi/Palvelu + + Restricted asset is not frozen globally + - Ping - Vasteaika + + Unable to preform action at this time + - QObject + GUIUtil::SyncWarningMessage - Amount - Määrä + + Warning: transaction while syncing wallet! + - Enter a Raven address (e.g. %1) - Syötä Raven-osoite (esim. %1) + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - %1 d - %1 d + + version + versio - %1 h - %1 h + + + (%1-bit) + (%1-bit) - %1 m - %1 m + + About %1 + Tietoja %1 - %1 s - %1 s + + Command-line options + Komentorivi parametrit - None - Ei yhtään + + Usage: + Käyttö: - N/A - Ei saatavilla + + command-line options + komentorivi parametrit - %1 ms - %1 ms + + UI Options: + Käyttöliittymän asetukset: - %1 and %2 - %1 ja %2 + + Choose data directory on startup (default: %u) + Valitse datahakemisto käynnistyksen yhteydessä (oletus: %u) - - - QObject::QObject - Error: %1 - Virhe: %1 + + Set language, for example "de_DE" (default: system locale) + Aseta kieli, esimerkiksi "de_DE" (oletus: järjestelmän kieli) - - - QRImageWidget - &Save Image... - &Tallenna kuva + + Start minimized + Käynnistä pienennettynä - &Copy Image - &Kopioi kuva + + Set SSL root certificates for payment request (default: -system-) + Aseta maksupyynnöille SSL-juurivarmenteet (oletus: -system-) - Save QR Code - Tallenna QR-koodi + + Show splash screen on startup (default: %u) + Näytä aloitusruutu käynnistyksen yhteydessä (oletus: %u) - PNG Image (*.png) - PNG kuva (*.png) + + Reset all settings changed in the GUI + Nollaa kaikki graafisen käyttöliittymän kautta tehdyt muutokset - RPCConsole + Intro - N/A - Ei saatavilla + + Welcome + Tervetuloa - Client version - Pääteohjelman versio + + Welcome to %1. + Tervetuloa %1 pariin. - &Information - T&ietoa + + As this is the first time the program is launched, you can choose where %1 will store its data. + Tämä on ensimmäinen kerta, kun %1 on käynnistetty, joten voit valita data-hakemiston paikan. - Debug window - &Debug-ikkuna + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - General - Yleinen + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - Using BerkeleyDB version - Käyttää BerkeleyDB-versiota + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + - Datadir - Data-hakemisto + + Use the default data directory + Käytä oletuskansiota - Startup time - Käynnistysaika + + Use a custom data directory: + Määritä oma kansio: - Network - Verkko + + Raven + - Name - Nimi + + At least %1 GB of data will be stored in this directory, and it will grow over time. + - Number of connections - Yhteyksien lukumäärä + + Approximately %1 GB of data will be stored in this directory. + - Block chain - Lohkoketju + + %1 will download and store a copy of the Raven block chain. + - Current number of blocks - Nykyinen Lohkojen määrä + + The wallet will also be stored in this directory. + - Memory Pool - Muistiallas + + Error: Specified data directory "%1" cannot be created. + Virhe: Annettu datahakemistoa "%1" ei voida luoda. - Current number of transactions - Tämänhetkinen rahansiirtojen määrä + + Error + Virhe - - Memory usage - Muistin käyttö + + + %n GB of free space available + - - Received - Vastaanotetut + + + (of %n GB needed) + + + + MnemonicDialog - Sent - Lähetetyt + + HD Wallet Setup + + + + MnemonicDialog1 - &Peers - &Vertaiset + + HD Wallet Setup + - Banned peers - Estetyt vertaiset + + Select the type of wallet to create. + - Select a peer to view detailed information. - Valitse vertainen eriteltyjä tietoja varten. + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Whitelisted - Sallittu + + Please choose what you would like to do: + - Direction - Suunta + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Version - Versio + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Starting Block - Alkaen lohkosta + + Accept + - Synced Headers - Synkronoidut ylätunnisteet + + You are choosing to create a new wallet using new seed words. + - Synced Blocks - Synkronoidut lohkot + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - User Agent - Käyttöliittymä + + New HD Wallet Creation + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Avaa %1 -debug-loki tämänhetkisestä data-hakemistosta. Tämä voi viedä muutaman sekunnin suurille lokitiedostoille. + + BIP39 Compliant Seed Words: + - Decrease font size - Pienennä fontin kokoa + + Generate New Seed Words + - Increase font size - Suurenna fontin kokoa + + These 12 generated seed words will be used. + - Services - Palvelut + + Passphrase: + - Ban Score - Panna-pisteytys + + Enter a Passphrase to protect your seed words (optional). + - Connection Time - Yhteysaika + + You may enter an optional Passphrase to protect your seed words. + - Last Send - Viimeisin lähetetty + + Warning: + - Last Receive - Viimeisin vastaanotettu + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Ping Time - Vasteaika + + Accept + - The duration of a currently outstanding ping. - Tämänhetkisen merkittävän yhteyskokeilun kesto. + + Go Back + - Ping Wait - Yhteyskokeilun odotus + + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 - Min Ping - Pienin vasteaika + + Previous HD Wallet Re-creation + - Time Offset - Ajan poikkeama + + BIP39 Compliant Seed Words: + - Last block time - Viimeisimmän lohkon aika + + Enter the 12 seed words from your previous wallet here. + - &Open - &Avaa + + Passphrase: + - &Console - &Konsoli + + You will need the Passphrase if your previous wallet used one. + - &Network Traffic - &Verkkoliikenne + + Enter the Passphrase from your previous wallet if it used one. + - &Clear - &Tyhjennä + + Warning: + - Totals - Yhteensä + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - In: - Sisään: + + Accept + - Out: - Ulos: + + Go Back + - Debug log file - Debug lokitiedosto + + Words are not valid, please check the words and try again + + + + ModalOverlay - Clear console - Tyhjennä konsoli + + Form + Lomake - 1 &hour - 1 &tunti + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - 1 &day - 1 &päivä + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - 1 &week - 1 &viikko + + Number of blocks left + - 1 &year - 1 &vuosi + + + + Unknown... + Tunnistamaton.. - Welcome to the %1 RPC console. - Tervetuloa %1 RPC-konsoliin. + + Last block time + Viimeisimmän lohkon aika - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Ylös- ja alas-nuolet selaavat historiaa ja <b>Ctrl-L</b> tyhjentää ruudun. + + Progress + Tila - Type <b>help</b> for an overview of available commands. - Kirjoita <b>help</b> nähdäksesi yleiskatsauksen käytettävissä olevista komennoista. + + Progress increase per hour + Edistymisen kasvu tunnissa - %1 B - %1 B + + + calculating... + lasketaan.. - %1 KB - %1 KB + + Estimated time left until synced + Arvioitu jäljellä oleva aika, kunnes synkronoitu - %1 MB - %1 MB + + Hide + Piilota - %1 GB - %1 GB + + Unknown. Syncing Headers (%1)... + + + + MyRestrictedAssetsTableModel - (node id: %1) - (solmukohdan id: %1) + + Date + - via %1 - %1 kautta + + Type + - never - ei koskaan + + Address + - Inbound - Sisääntuleva + + Asset Name + - Outbound - Ulosmenevä + + Tagged + - Yes - Kyllä + + Untagged + - No - Ei + + Frozen + - Unknown - Tuntematon + + Unfrozen + - - - ReceiveCoinsDialog - &Amount: - &Määrä + + Other + - &Label: - &Nimi: + + watch-only + - &Message: - &Viesti: + + (no label) + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Uudelleenkäytä yksi vanhoista vastaanotto-osoitteista. Uudelleenkäyttössä on turvallisuus- ja yksityisyysongelmia. Älä käytä tätä ellet ole uudelleenluomassa aikaisempaa maksupyyntöä. + + Date and time that the transaction was received. + - R&euse an existing receiving address (not recommended) - &Uudelleenkäytä vastaanotto-osoitetta (ei suositella) + + Type of transaction. + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Raven-verkkoon. + + User-defined intent/purpose of the transaction. + - An optional label to associate with the new receiving address. - Valinnainen nimi liitetään vastaanottavaan osoitteeseen. + + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog - Use this form to request payments. All fields are <b>optional</b>. - Käytä lomaketta maksupyyntöihin. Kaikki kentät ovat <b>valinnaisia</b>. + + Open URI + Avaa URI - An optional amount to request. Leave this empty or zero to not request a specific amount. - Valinnainen pyyntömäärä. Jätä tyhjäksi tai nollaksi jos et pyydä tiettyä määrää. + + Open payment request from URI or file + Avaa maksupyyntö URI:sta tai tiedostosta - Clear all fields of the form. - Tyhjennä lomakkeen kaikki kentät. + + URI: + URI: - Clear - Tyhjennä + + Select payment request file + Valitse maksupyynnön tiedosto - Requested payments history - Pyydettyjen maksujen historia + + Select payment request file to open + + + + OptionsDialog - &Request payment - &Vastaanota maksu + + Options + Asetukset - Show the selected request (does the same as double clicking an entry) - Näytä valittu pyyntö (sama toiminta kuin alkion tuplaklikkaus) + + &Main + &Yleiset - Show - Näytä + + Automatically start %1 after logging in to the system. + Käynnistä %1 automaattisesti järjestelmään kirjautumisen jälkeen. - Remove the selected entries from the list + + &Start %1 on system login + &Käynnistä %1 järjestelmään kirjautuessa + + + + Size of &database cache + &Tietokannan välimuistin koko + + + + MB + MB + + + + Number of script &verification threads + Script &varmistuksen threadien määrä + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP osoite proxille (esim. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimoi ikkuna ohjelman sulkemisen sijasta kun ikkuna suljetaan. Kun tämä asetus on käytössä, ohjelma suljetaan vain valittaessa valikosta Poistu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Ulkopuoliset URL-osoitteet (esim. block explorer,) jotka esiintyvät siirrot-välilehdellä valikossa. %s URL-osoitteessa korvataan siirtotunnuksella. Useampi URL-osoite on eroteltu pystyviivalla |. + + + + Active command-line options that override above options: + Aktiiviset komentorivivalinnat jotka ohittavat ylläolevat valinnat: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Palauta kaikki asetukset takaisin alkuperäisiksi. + + + + &Reset Options + &Palauta asetukset + + + + &Network + &Verkko + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = jätä näin monta ydintä vapaaksi) + + + + W&allet + &Lompakko + + + + Expert + Expertti + + + + Enable coin &control features + Ota käytöön &Kolikkokontrolli-ominaisuudet + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jos poistat varmistamattomien vaihtorahojen käytön, rahansiirron vaihtorahaa ei voida käyttää ennen vähintään yhtä varmistusta. Tämä vaikuttaa myös kuinka taseesi lasketaan. + + + + &Spend unconfirmed change + &Käytä varmistamattomia vaihtorahoja + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Avaa Raven-asiakasohjelman portti reitittimellä automaattisesti. Tämä toimii vain, jos reitittimesi tukee UPnP:tä ja se on käytössä. + + + + Map port using &UPnP + Portin uudelleenohjaus &UPnP:llä + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Yhdistä Raven-verkkoon SOCKS5-välityspalvelimen kautta. + + + + &Connect through SOCKS5 proxy (default proxy): + &Yhdistä SOCKS5-välityspalvelimen kautta (oletus välityspalvelin): + + + + + Proxy &IP: + Proxyn &IP: + + + + + &Port: + &Portti + + + + + Port of the proxy (e.g. 9050) + Proxyn Portti (esim. 9050) + + + + Used for reaching peers via: + Vertaisten saavuttamiseen käytettävät verkkotyypit: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Yhdistä Raven-verkkoon erillisen SOCKS5-välityspalvelimen kautta piilotettuja Tor-palveluja varten. + + + + &Window + &Ikkuna + + + + Show only a tray icon after minimizing the window. + Näytä ainoastaan ilmaisinalueella ikkunan pienentämisen jälkeen. + + + + &Minimize to the tray instead of the taskbar + &Pienennä ilmaisinalueelle työkalurivin sijasta + + + + M&inimize on close + P&ienennä suljettaessa + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Käyttöliittymä + + + + User Interface &language: + &Käyttöliittymän kieli + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Tässä voit määritellä käyttöliittymän kielen. Muutokset astuvat voimaan seuraavan kerran, kun %1 käynnistetään. + + + + &Unit to show amounts in: + Yksikkö jona raven-määrät näytetään + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Valitse mitä yksikköä käytetään ensisijaisesti raven-määrien näyttämiseen. + + + + Whether to show coin control features or not. + Näytetäänkö kolikkokontrollin ominaisuuksia vai ei + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Peruuta + + + + default + oletus + + + + none + ei mitään + + + + Confirm options reset + Varmista asetusten palautus + + + + + Client restart required to activate changes. + Ohjelman uudelleenkäynnistys aktivoi muutokset. + + + + Client will be shut down. Do you want to proceed? + Asiakasohjelma sammutetaan. Haluatko jatkaa? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Tämä muutos vaatii ohjelman uudelleenkäynnistyksen. + + + + The supplied proxy address is invalid. + Antamasi proxy-osoite on virheellinen. + + + + OverviewPage + + + Form + Lomake + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Näytetyt tiedot eivät välttämättä ole ajantasalla. Lompakkosi synkronoituu Raven-verkon kanssa automaattisesti yhteyden muodostamisen jälkeen, mutta synkronointi on vielä meneillään. + + + + Watch-only: + Seuranta: + + + + Available: + Käytettävissä: + + + + Your current spendable balance + Nykyinen käytettävissä oleva tase + + + + Pending: + Odotetaan: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Varmistamattomien rahansiirtojen summa, jota ei lasketa käytettävissä olevaan taseeseen. + + + + Immature: + Epäkypsää: + + + + Mined balance that has not yet matured + Louhittu saldo, joka ei ole vielä kypsynyt + + + + Total: + Yhteensä: + + + + Your current total balance + Tililläsi tällä hetkellä olevien Ravenien määrä + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Nykyinen tase seurantaosoitetteissa + + + + Spendable: + Käytettävissä: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Viimeisimmät rahansiirrot + + + + Unconfirmed transactions to watch-only addresses + Vahvistamattomat rahansiirrot vain katseltaviin osoitteisiin + + + + Mined balance in watch-only addresses that has not yet matured + Louhittu, ei vielä kypsynyt saldo vain katseltavissa osoitteissa + + + + Current total balance in watch-only addresses + Nykyinen tase seurantaosoitetteissa + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Käyttöliittymä + + + + Node/Service + Noodi/Palvelu + + + + NodeId + + + + + Ping + Vasteaika + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Määrä + + + + Enter a Raven address (e.g. %1) + Syötä Raven-osoite (esim. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ei yhtään + + + + N/A + Ei saatavilla + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 ja %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Virhe: %1 + + + + QRImageWidget + + + &Save Image... + &Tallenna kuva + + + + &Copy Image + &Kopioi kuva + + + + Save QR Code + Tallenna QR-koodi + + + + PNG Image (*.png) + PNG kuva (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Ei saatavilla + + + + Client version + Pääteohjelman versio + + + + &Information + T&ietoa + + + + Debug window + &Debug-ikkuna + + + + General + Yleinen + + + + Using BerkeleyDB version + Käyttää BerkeleyDB-versiota + + + + Datadir + Data-hakemisto + + + + Startup time + Käynnistysaika + + + + Network + Verkko + + + + Name + Nimi + + + + Number of connections + Yhteyksien lukumäärä + + + + Block chain + Lohkoketju + + + + Current number of blocks + Nykyinen Lohkojen määrä + + + + Memory Pool + Muistiallas + + + + Current number of transactions + Tämänhetkinen rahansiirtojen määrä + + + + Memory usage + Muistin käyttö + + + + &Reset + + + + + + Received + Vastaanotetut + + + + + Sent + Lähetetyt + + + + &Peers + &Vertaiset + + + + Banned peers + Estetyt vertaiset + + + + + + Select a peer to view detailed information. + Valitse vertainen eriteltyjä tietoja varten. + + + + Whitelisted + Sallittu + + + + Direction + Suunta + + + + Version + Versio + + + + Starting Block + Alkaen lohkosta + + + + Synced Headers + Synkronoidut ylätunnisteet + + + + Synced Blocks + Synkronoidut lohkot + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Käyttöliittymä + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Avaa %1 -debug-loki tämänhetkisestä data-hakemistosta. Tämä voi viedä muutaman sekunnin suurille lokitiedostoille. + + + + Decrease font size + Pienennä fontin kokoa + + + + Increase font size + Suurenna fontin kokoa + + + + Services + Palvelut + + + + Ban Score + Panna-pisteytys + + + + Connection Time + Yhteysaika + + + + Last Send + Viimeisin lähetetty + + + + Last Receive + Viimeisin vastaanotettu + + + + Ping Time + Vasteaika + + + + The duration of a currently outstanding ping. + Tämänhetkisen merkittävän yhteyskokeilun kesto. + + + + Ping Wait + Yhteyskokeilun odotus + + + + Min Ping + Pienin vasteaika + + + + Time Offset + Ajan poikkeama + + + + Last block time + Viimeisimmän lohkon aika + + + + &Open + &Avaa + + + + &Console + &Konsoli + + + + &Network Traffic + &Verkkoliikenne + + + + Totals + Yhteensä + + + + In: + Sisään: + + + + Out: + Ulos: + + + + Debug log file + Debug lokitiedosto + + + + Clear console + Tyhjennä konsoli + + + + 1 &hour + 1 &tunti + + + + 1 &day + 1 &päivä + + + + 1 &week + 1 &viikko + + + + 1 &year + 1 &vuosi + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Tervetuloa %1 RPC-konsoliin. + + + + Type <b>help</b> for an overview of available commands. + Kirjoita <b>help</b> nähdäksesi yleiskatsauksen käytettävissä olevista komennoista. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (solmukohdan id: %1) + + + + via %1 + %1 kautta + + + + + never + ei koskaan + + + + Inbound + Sisääntuleva + + + + Outbound + Ulosmenevä + + + + Yes + Kyllä + + + + No + Ei + + + + + Unknown + Tuntematon + + + + RavenGUI + + + Sign &message... + &Allekirjoita viesti... + + + + Synchronizing with network... + Synkronoidaan verkon kanssa... + + + + &Overview + &Yleisnäkymä + + + + Node + Solmu + + + + Show general overview of wallet + Lompakon tilanteen yleiskatsaus + + + + &Transactions + &Rahansiirrot + + + + Browse transaction history + Selaa rahansiirtohistoriaa + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + L&opeta + + + + Quit application + Sulje ohjelma + + + + &About %1 + &Tietoja %1 + + + + Show information about %1 + Näytä tietoa aiheesta %1 + + + + About &Qt + Tietoja &Qt + + + + Show information about Qt + Näytä tietoja Qt:ta + + + + &Options... + &Asetukset... + + + + Modify configuration options for %1 + Muuta kohteen %1 kokoonpanoasetuksia + + + + &Encrypt Wallet... + &Salaa lompakko... + + + + &Backup Wallet... + &Varmuuskopioi Lompakko... + + + + &Change Passphrase... + &Vaihda Tunnuslause... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Lähetysosoitteet... + + + + &Receiving addresses... + &Vastaanotto-osoitteet... + + + + Open &URI... + Avaa &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Paina poistaaksesi verkkoyhteysilmaisin käytöstä. + + + + Network activity disabled. + Verkkoyhteysmittari pois käytöstä + + + + Click to enable network activity again. + Paina ottaaksesi verkkoyhteysilmaisin uudelleen käyttöön. + + + + Syncing Headers (%1%)... + Synkronoidaan Tunnisteita (%1%)... + + + + Reindexing blocks on disk... + Ladataan lohkoindeksiä... + + + + Send coins to a Raven address + Lähetä kolikoita Raven-osoitteeseen + + + + Backup wallet to another location + Varmuuskopioi lompakko toiseen sijaintiin + + + + Change the passphrase used for wallet encryption + Vaihda lompakon salaukseen käytettävä tunnuslause + + + + Open debugging and diagnostic console + Avaa debuggaus- ja diagnostiikkakonsoli + + + + &Verify message... + Varmista &viesti... + + + + Raven + Raven + + + + Wallet + Lompakko + + + + &Send + &Lähetä + + + + &Receive + &Vastaanota + + + + &Show / Hide + &Näytä / Piilota + + + + Show or hide the main Window + Näytä tai piilota Raven-ikkuna + + + + Encrypt the private keys that belong to your wallet + Suojaa yksityiset avaimet, jotka kuuluvat lompakkoosi + + + + Sign messages with your Raven addresses to prove you own them + Allekirjoita viestisi omalla Raven -osoitteellasi todistaaksesi, että omistat ne + + + + Verify messages to ensure they were signed with specified Raven addresses + Varmista, että viestisi on allekirjoitettu määritetyllä Raven -osoitteella + + + + &File + &Tiedosto + + + + &Help + &Apua + + + + Request payments (generates QR codes and raven: URIs) + Pyydä maksuja (Luo QR koodit ja raven: URIt) + + + + Show the list of used sending addresses and labels + Näytä lähettämiseen käytettyjen osoitteiden ja nimien lista + + + + Show the list of used receiving addresses and labels + Näytä vastaanottamiseen käytettyjen osoitteiden ja nimien lista + + + + Open a raven: URI or payment request + Avaa raven: URI tai maksupyyntö + + + + &Command-line options + &Komentorivin valinnat + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Ladataan lohkoindeksiä... + + + + Processing blocks on disk... + Käsitellään lohkoja levyllä... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 jäljessä + + + + Last received block was generated %1 ago. + Viimeisin vastaanotettu lohko tuotettu %1. + + + + Transactions after this will not yet be visible. + Tämän jälkeiset rahansiirrot eivät ole vielä näkyvissä. + + + + Error + Virhe + + + + Warning + Varoitus + + + + Information + Tietoa + + + + Up to date + Rahansiirtohistoria on ajan tasalla + + + + Show the %1 help message to get a list with possible Raven command-line options + Näytä %1 ohjeet saadaksesi listan mahdollisista Ravenin komentorivivalinnoista + + + + %1 client + %1-asiakas + + + + Connecting to peers... + Yhdistetään vertaisiin... + + + + Catching up... + Saavutetaan verkkoa... + + + + Date: %1 + + Päivämäärä: %1 + + + + + + Amount: %1 + + Määrä: %1 + + + + + Type: %1 + + Tyyppi: %1 + + + + + Label: %1 + + Nimike: %1 + + + + + Address: %1 + + Osoite: %1 + + + + + Sent transaction + Lähetetyt rahansiirrot + + + + Incoming transaction + Saapuva rahansiirto + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD avaimen generointi on <b>päällä</b> + + + + HD key generation is <b>disabled</b> + HD avaimen generointi on </b>pois päältä</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>avoinna</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lompakko on <b>salattu</b> ja tällä hetkellä <b>lukittuna</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Peruuttamaton virhe on tapahtunut. Raven ei voi enää jatkaa turvallisesti ja sammutetaan. + + + + ReceiveCoinsDialog + + + &Amount: + &Määrä + + + + &Label: + &Nimi: + + + + &Message: + &Viesti: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Uudelleenkäytä yksi vanhoista vastaanotto-osoitteista. Uudelleenkäyttössä on turvallisuus- ja yksityisyysongelmia. Älä käytä tätä ellet ole uudelleenluomassa aikaisempaa maksupyyntöä. + + + + R&euse an existing receiving address (not recommended) + &Uudelleenkäytä vastaanotto-osoitetta (ei suositella) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Valinnainen viesti liitetään maksupyyntöön ja näytetään avattaessa. Viestiä ei lähetetä Raven-verkkoon. + + + + + An optional label to associate with the new receiving address. + Valinnainen nimi liitetään vastaanottavaan osoitteeseen. + + + + Use this form to request payments. All fields are <b>optional</b>. + Käytä lomaketta maksupyyntöihin. Kaikki kentät ovat <b>valinnaisia</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Valinnainen pyyntömäärä. Jätä tyhjäksi tai nollaksi jos et pyydä tiettyä määrää. + + + + Clear all fields of the form. + Tyhjennä lomakkeen kaikki kentät. + + + + Clear + Tyhjennä + + + + Requested payments history + Pyydettyjen maksujen historia + + + + &Request payment + &Vastaanota maksu + + + + Show the selected request (does the same as double clicking an entry) + Näytä valittu pyyntö (sama toiminta kuin alkion tuplaklikkaus) + + + + Show + Näytä + + + + Remove the selected entries from the list Poista valitut alkiot listasta - Remove - Poista + + Remove + Poista + + + + Copy URI + + + + + Copy label + Kopioi nimike + + + + Copy message + Kopioi viesti + + + + Copy amount + Kopioi määrä + + + + ReceiveRequestDialog + + + QR Code + QR-koodi + + + + Copy &URI + Kopioi &URI + + + + Copy &Address + Kopioi &Osoite + + + + &Save Image... + &Tallenna kuva + + + + Request payment to %1 + + + + + Payment information + Maksutiedot + + + + URI + + + + + Address + Osoite + + + + Amount + Määrä + + + + Label + Nimike + + + + Message + Viesti + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Aika + + + + Label + Nimike + + + + Message + Viesti + + + + (no label) + (ei nimikettä) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + Pyydetty + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Lähetä Raveneja + + + + Coin Control Features + Kolikkokontrolli ominaisuudet + + + + Inputs... + Sisääntulot... + + + + automatically selected + automaattisesti valitut + + + + Insufficient funds! + Lompakon saldo ei riitä! + + + + Quantity: + Määrä: + + + + Bytes: + Tavuja: + + + + Amount: + Määrä: + + + + Fee: + Palkkio: + + + + After Fee: + Palkkion jälkeen: + + + + Change: + Vaihtoraha: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Jos tämä aktivoidaan mutta vaihtorahan osoite on tyhjä tai virheellinen, vaihtoraha tullaan lähettämään uuteen luotuun osoitteeseen. + + + + Custom change address + Kustomoitu vaihtorahan osoite + + + + Transaction Fee: + Rahansiirtokulu: + + + + Choose... + Valitse... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + pudota kulujen asetukset + + + + per kilobyte + per kilotavu + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Piilota + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + (lue työkaluvinkki) + + + + Recommended: + Suositeltu: + + + + Custom: + Muokattu: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Älykästä rahansiirtokulua ei ole vielä alustettu. Tähän kuluu yleensä aikaa muutaman lohkon verran...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Lähetä usealla vastaanottajalle samanaikaisesti + + + + Add &Recipient + Lisää &Vastaanottaja + + + + Clear all fields of the form. + Tyhjennä lomakkeen kaikki kentät + + + + Dust: + Tomu: + + + + Confirmation time target: + + + + + Clear &All + &Tyhjennnä Kaikki + + + + Balance: + Balanssi: + + + + Confirm the send action + Vahvista lähetys + + + + S&end + &Lähetä + + + + Copy quantity + Kopioi kappalemäärä + + + + Copy amount + Kopioi määrä + + + + Copy fee + Kopioi rahansiirtokulu + + + + Copy after fee + Kopioi rahansiirtokulun jälkeen + + + + Copy bytes + Kopioi tavut + + + + Copy dust + Kopioi tomu + + + + Copy change + Kopioi vaihtorahat + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + Kokonaismäärä %1 + + + + or + tai + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (ei nimikettä) + + + + SendCoinsEntry + + + + + A&mount: + M&äärä: + + + + &Label: + &Nimi: + + + + Choose previously used address + Valitse aikaisemmin käytetty osoite + + + + This is a normal payment. + Tämä on normaali maksu. + + + + The Raven address to send the payment to + Raven-osoite johon maksu lähetetään + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Liitä osoite leikepöydältä + + + + Alt+P + Alt+P + + + + + + Remove this entry + Poista tämä alkio + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + Kulu vähennetään lähetettävästä määrästä. Saaja vastaanottaa vähemmän raveneja kuin merkitset Määrä-kenttään. Jos saajia on monia, kulu jaetaan tasan. + + + + S&ubtract fee from amount + V&ähennä maksukulu määrästä + + + + Message: + Viesti: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Tämä on todentamaton maksupyyntö. + + + + + Send to: + + + + + This is an authenticated payment request. + Tämä on todennettu maksupyyntö. + + + + Enter a label for this address to add it to the list of used addresses + Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle. + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Viesti joka liitettiin raven: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Raven-verkkoon. + + + + + Memo: + Muistio: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Kyllä + + + + ShutdownWindow + + + %1 is shutting down... + %1 sulkeutuu... + + + + Do not shut down the computer until this window disappears. + Älä sammuta tietokonetta ennenkuin tämä ikkuna katoaa. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Allekirjoitukset - Allekirjoita / Varmista viesti + + + + &Sign Message + &Allekirjoita viesti + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + Raven-osoite jolla viesti allekirjoitetaan + + + + + Choose previously used address + Valitse aikaisemmin käytetty osoite + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Liitä osoite leikepöydältä + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Kirjoita tähän viesti minkä haluat allekirjoittaa + + + + Signature + Allekirjoitus + + + + Copy the current signature to the system clipboard + Kopioi tämänhetkinen allekirjoitus leikepöydälle + + + + Sign the message to prove you own this Raven address + Allekirjoita viesti todistaaksesi, että omistat tämän Raven-osoitteen + + + + Sign &Message + Allekirjoita &viesti + + + + Reset all sign message fields + Tyhjennä kaikki allekirjoita-viesti-kentät + + + + + Clear &All + &Tyhjennä Kaikki + + + + &Verify Message + &Varmista viesti + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + Raven-osoite jolla viesti on allekirjoitettu + + + + Verify the message to ensure it was signed with the specified Raven address + Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Raven-osoitteella + + + + Verify &Message + Varmista &viesti... + + + + Reset all verify message fields + Tyhjennä kaikki varmista-viesti-kentät + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + Viesti varmistettu. + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/vahvistamaton + + + + %1 confirmations + %1 vahvistusta + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Aika + + + + Source + Lähde + + + + Generated + Generoitu + + + + + + + + From + Lähettäjä + + + + + unknown + tuntematon + + + + + + + + To + Saaja + + + + + own address + oma osoite + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Viesti + + + + + Comment + Kommentti + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Määrä + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Tämä ruutu näyttää yksityiskohtaisen tiedon rahansiirrosta + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Aika + + + + Type + Tyyppi + + + + Label + Nimike + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + Vastaanotettu osoitteella + + + + Received from + + + + + Sent to + Lähetetty vastaanottajalle + + + + Payment to yourself + Maksu itsellesi + + + + Mined + Louhittu + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (ei nimikettä) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Kaikki + + + + Today + Tänään + + + + This week + Tällä viikolla + + + + This month + Tässä kuussa + + + + Last month + Viime kuussa + + + + This year + Tänä vuonna + + + + Range... + + + + + Received with + Vastaanotettu osoitteella + + + + Sent to + Lähetetty vastaanottajalle - Copy label - Kopioi nimike + + To yourself + Itsellesi - Copy message - Kopioi viesti + + Mined + Louhittu + + + + Other + + + + + Enter address or label to search + + + + + Min amount + Minimimäärä + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Kopioi osoite + + + + Copy label + Kopioi nimike + Copy amount Kopioi määrä - - - ReceiveRequestDialog - QR Code - QR-koodi + + Copy transaction ID + Kopioi transaktion ID - Copy &URI - Kopioi &URI + + Copy raw transaction + - Copy &Address - Kopioi &Osoite + + Copy full transaction details + - &Save Image... - &Tallenna kuva + + Edit label + Muokkaa nimeä - Payment information - Maksutiedot + + Show transaction details + Näytä rahansiirron yksityiskohdat - Address - Osoite + + Browse with: + - Amount - Määrä + + Export Transaction History + Vie rahansiirtohistoria - Label - Nimike + + Comma separated file (*.csv) + Pilkuilla erotettu tiedosto (*.csv) - Message - Viesti + + Confirmed + Vahvistettu - - - RecentRequestsTableModel + + Watch-only + + + + Date Aika + + Type + Tyyppi + + + Label Nimike - Message - Viesti + + Address + Osoite - (no label) - (ei nimikettä) + + Asset + - Requested - Pyydetty + + ID + ID + + + + Exporting Failed + Vienti epäonnistui + + + + There was an error trying to save the transaction history to %1. + Rahansiirron historian tallentamisessa tapahtui virhe paikkaan %1. + + + + Exporting Successful + Vienti onnistui + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + vastaanottaja - SendCoinsDialog + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + Yksikkö jossa määrät näytetään. Klikkaa valitaksesi toisen yksikön. + + + + WalletFrame + + + No wallet has been loaded. + Lomakkoa ei ole ladattu. + + + + WalletModel + Send Coins - Lähetä Raveneja + Lähetä kolikoita - Coin Control Features - Kolikkokontrolli ominaisuudet + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - Inputs... - Sisääntulot... + + Error: Wallet locked + - automatically selected - automaattisesti valitut + + Words: + - Insufficient funds! - Lompakon saldo ei riitä! + + Passphrase: + + + + + WalletView + + + &Export + &Vie + + + + Export the data in the current tab to a file + Vie auki olevan välilehden tiedot tiedostoon + + + + Backup Wallet + Varmuuskopioi lompakko + + + + Wallet Data (*.dat) + Lompakkodata (*.dat) + + + + Backup Failed + Varmuuskopio epäonnistui + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + Varmuuskopio Onnistui + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Asetukset: + + + + Specify data directory + Määritä data-hakemisto + + + + Connect to a node to retrieve peer addresses, and disconnect + Yhdistä noodiin hakeaksesi naapurien osoitteet ja katkaise yhteys + + + + Specify your own public address + Määritä julkinen osoitteesi + + + + Accept command line and JSON-RPC commands + Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + Jos <category> on toimittamatta tai jos <category> = 1, tulosta kaikki debug-tieto. + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + Karsinta konfiguroitu alle minimin %d MiB. Käytä surempaa numeroa. + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + Karsinta: viime lompakon synkronisointi menee karsitun datan taakse. Sinun tarvitsee ajaa -reindex (lataa koko lohkoketju uudelleen tapauksessa jossa karsiva noodi) + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + Uudelleenskannaukset eivät ole mahdollisia karsivassa tilassa. Sinun täytyy käyttää -reindex joka lataa koko lohkoketjun uudelleen. + + + + Error: A fatal internal error occurred, see debug.log for details + Virhe: Kriittinen sisäinen virhe kohdattiin, katso debug.log lisätietoja varten + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + Kulu (muodossa %s/kB) joka lisätään rahansiirtoihin joita lähetät (oletus: %s) + + + + Pruning blockstore... + Karsitaan lohkovarastoa... + + + + Run in the background as a daemon and accept commands + Aja taustalla daemonina ja hyväksy komennot + + + + Unable to start HTTP server. See debug log for details. + HTTP-palvelinta ei voitu käynnistää. Katso debug-lokista lisätietoja. + + + + Raven Core + Raven-ydin + + + + The %s developers + %s kehittäjät + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Kytkeydy annettuun osoitteeseen ja pidä linja aina auki. Käytä [host]:portin merkintätapaa IPv6:lle. - Quantity: - Määrä: + + Cannot obtain a lock on data directory %s. %s is probably already running. + Ei voida lukita data-hakemistoa %s. %s on luultavasti jo käynnissä. - Bytes: - Tavuja: + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Amount: - Määrä: + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Fee: - Palkkio: + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - After Fee: - Palkkion jälkeen: + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - Change: - Vaihtoraha: + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Jos tämä aktivoidaan mutta vaihtorahan osoite on tyhjä tai virheellinen, vaihtoraha tullaan lähettämään uuteen luotuun osoitteeseen. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Custom change address - Kustomoitu vaihtorahan osoite + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Suorita käsky kun lompakossa rahansiirto muuttuu (%s cmd on vaihdettu TxID kanssa) - Transaction Fee: - Rahansiirtokulu: + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Choose... - Valitse... + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - collapse fee-settings - pudota kulujen asetukset + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - per kilobyte - per kilotavu + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Hide - Piilota + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + Tarkistathan että tietokoneesi päivämäärä ja kellonaika ovat oikeassa! Jos kellosi on väärässä, %s ei toimi oikein. - total at least - yhteensä ainakin + + Please contribute if you find %s useful. Visit %s for further information about the software. + Ole hyvä ja avusta, jos %s on mielestäsi hyödyllinen. Vieraile %s saadaksesi lisää tietoa ohjelmistosta. - (read the tooltip) - (lue työkaluvinkki) + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Recommended: - Suositeltu: + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Custom: - Muokattu: + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - (Smart fee not initialized yet. This usually takes a few blocks...) - (Älykästä rahansiirtokulua ei ole vielä alustettu. Tähän kuluu yleensä aikaa muutaman lohkon verran...) + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Aseta script varmistuksen threadien lukumäärä (%u - %d, 0= auto, <0 = jätä näin monta ydintä vapaaksi, oletus: %d) - normal - normaali + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + Lohkotietokanta sisältää lohkon, joka vaikuttaa olevan tulevaisuudesta. Tämä saattaa johtua tietokoneesi virheellisesti asetetuista aika-asetuksista. Rakenna lohkotietokanta uudelleen vain jos olet varma, että tietokoneesi päivämäärä ja aika ovat oikein. - fast - nopea + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Send to multiple recipients at once - Lähetä usealla vastaanottajalle samanaikaisesti + + This is the transaction fee you may discard if change is smaller than dust at this level + - Add &Recipient - Lisää &Vastaanottaja + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - Clear all fields of the form. - Tyhjennä lomakkeen kaikki kentät + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Dust: - Tomu: + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + Käytä UPnP:ta kuuntelevan portin kartoitukseen (oletus: 1 kun kuunnellaan ja -proxy ei käytössä) - Clear &All - &Tyhjennnä Kaikki + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Balance: - Balanssi: + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Confirm the send action - Vahvista lähetys + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - S&end - &Lähetä + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Copy quantity - Kopioi kappalemäärä + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Copy amount - Kopioi määrä + + %d of last 100 blocks have unexpected version + - Copy fee - Kopioi rahansiirtokulu + + %s corrupt, salvage failed + %s korruptoitunut, korjaaminen epäonnistui - Copy after fee - Kopioi rahansiirtokulun jälkeen + + -maxmempool must be at least %d MB + -maxmempool on oltava vähintään %d MB - Copy bytes - Kopioi tavut + + <category> can be: + <category> voi olla: - Copy dust - Kopioi tomu + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Copy change - Kopioi vaihtorahat + + Append comment to the user agent string + - Total Amount %1 - Kokonaismäärä %1 + + Attempt to recover private keys from a corrupt wallet on startup + Yritä palauttaa yksityiset avaimet korruptoituneesta lompakosta käynnistyksen yhteydessä - or - tai + + Block creation options: + Lohkon luonnin asetukset: - (no label) - (ei nimikettä) + + Cannot resolve -%s address: '%s' + -%s -osoitteen '%s' selvittäminen epäonnistui - - - SendCoinsEntry - A&mount: - M&äärä: + + Chain selection options: + - Pay &To: - Maksun saaja: + + Change index out of range + - &Label: - &Nimi: + + Connection options: + Yhteyden valinnat: - Choose previously used address - Valitse aikaisemmin käytetty osoite + + Copyright (C) %i-%i + Tekijänoikeus (C) %i-%i - This is a normal payment. - Tämä on normaali maksu. + + Corrupted block database detected + Vioittunut lohkotietokanta havaittu - The Raven address to send the payment to - Raven-osoite johon maksu lähetetään + + Debugging/Testing options: + Debuggaus/Testauksen valinnat: - Alt+A - Alt+A + + Do not load the wallet and disable wallet RPC calls + Älä lataa lompakkoa ja poista lompakon RPC kutsut - Paste address from clipboard - Liitä osoite leikepöydältä + + Do you want to rebuild the block database now? + Haluatko uudelleenrakentaa lohkotietokannan nyt? - Alt+P - Alt+P + + Enable publish hash block in <address> + - Remove this entry - Poista tämä alkio + + Enable publish hash transaction in <address> + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - Kulu vähennetään lähetettävästä määrästä. Saaja vastaanottaa vähemmän raveneja kuin merkitset Määrä-kenttään. Jos saajia on monia, kulu jaetaan tasan. + + Enable publish raw block in <address> + - S&ubtract fee from amount - V&ähennä maksukulu määrästä + + Enable publish raw transaction in <address> + Ota rahansiirtojen raakavedosten julkaisu käyttöön osoitteessa <address> - Message: - Viesti: + + Enable transaction replacement in the memory pool (default: %u) + - This is an unauthenticated payment request. - Tämä on todentamaton maksupyyntö. + + Error initializing block database + Virhe alustaessa lohkotietokantaa - This is an authenticated payment request. - Tämä on todennettu maksupyyntö. + + Error initializing wallet database environment %s! + Virhe alustaessa lompakon tietokantaympäristöä %s! - Enter a label for this address to add it to the list of used addresses - Aseta nimi tälle osoitteelle lisätäksesi sen käytettyjen osoitteiden listalle. + + Error loading %s + Virhe ladattaessa %s - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Viesti joka liitettiin raven: URI:iin tallennetaan rahansiirtoon viitteeksi. Tätä viestiä ei lähetetä Raven-verkkoon. + + Error loading %s: Wallet corrupted + Virhe ladattaessa %s: Lompakko vioittunut - Pay To: - Saaja: + + Error loading %s: Wallet requires newer version of %s + Virhe ladattaessa %s: Tarvitset uudemman %s -version - Memo: - Muistio: + + Error loading block database + Virhe avattaessa lohkoketjua - - - SendConfirmationDialog - Yes - Kyllä + + Error opening block database + Virhe avattaessa lohkoindeksiä - - - ShutdownWindow - %1 is shutting down... - %1 sulkeutuu... + + Error: Disk space is low! + Varoitus: Levytila on vähissä! - Do not shut down the computer until this window disappears. - Älä sammuta tietokonetta ennenkuin tämä ikkuna katoaa. + + Failed to listen on any port. Use -listen=0 if you want this. + Ei onnistuttu kuuntelemaan missään portissa. Käytä -listen=0 jos haluat tätä. - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Allekirjoitukset - Allekirjoita / Varmista viesti + + Importing... + Tuodaan... - &Sign Message - &Allekirjoita viesti + + Incorrect or no genesis block found. Wrong datadir for network? + Virheellinen tai olematon alkulohko löydetty. Väärä data-hakemisto verkolle? - The Raven address to sign the message with - Raven-osoite jolla viesti allekirjoitetaan + + Initialization sanity check failed. %s is shutting down. + - Choose previously used address - Valitse aikaisemmin käytetty osoite + + Invalid amount for -%s=<amount>: '%s' + Virheellinen määrä -%s=<amount>: '%s' - Alt+A - Alt+A + + Invalid amount for -discardfee=<amount>: '%s' + - Paste address from clipboard - Liitä osoite leikepöydältä + + Invalid amount for -fallbackfee=<amount>: '%s' + Virheellinen määrä -fallbackfee=<amount>: '%s' - Alt+P - Alt+P + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Enter the message you want to sign here - Kirjoita tähän viesti minkä haluat allekirjoittaa + + Loading P2P addresses... + - Signature - Allekirjoitus + + Loading banlist... + Ladataan kieltolistaa... - Copy the current signature to the system clipboard - Kopioi tämänhetkinen allekirjoitus leikepöydälle + + Location of the auth cookie (default: data dir) + Todennusevästeen sijainti (oletus: datahakemisto) - Sign the message to prove you own this Raven address - Allekirjoita viesti todistaaksesi, että omistat tämän Raven-osoitteen + + Not enough file descriptors available. + Ei tarpeeksi tiedostomerkintöjä vapaana. - Sign &Message - Allekirjoita &viesti + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Yhdistä vain solmukohtiin <net>-verkossa (ipv4, ipv6 tai onion) - Reset all sign message fields - Tyhjennä kaikki allekirjoita-viesti-kentät + + Print this help message and exit + Näytä tämä ohjeviesti ja poistu - Clear &All - &Tyhjennä Kaikki + + Print version and exit + Näytä versio ja poistu. - &Verify Message - &Varmista viesti + + Prune cannot be configured with a negative value. + - The Raven address the message was signed with - Raven-osoite jolla viesti on allekirjoitettu + + Prune mode is incompatible with -txindex. + Karsittu tila ei ole yhteensopiva -txindex:n kanssa. - Verify the message to ensure it was signed with the specified Raven address - Tarkista viestin allekirjoitus varmistaaksesi, että se allekirjoitettiin tietyllä Raven-osoitteella + + Rebuild chain state and block index from the blk*.dat files on disk + - Verify &Message - Varmista &viesti... + + Rebuild chain state from the currently indexed blocks + - Reset all verify message fields - Tyhjennä kaikki varmista-viesti-kentät + + Replaying blocks... + - Message verified. - Viesti varmistettu. + + Rewinding blocks... + Varmistetaan lohkoja... - - - SplashScreen - [testnet] - [testnet] + + Set database cache size in megabytes (%d to %d, default: %d) + Aseta tietokannan välimuistin koko megatavuissa (%d - %d, oletus: %d - - - TrafficGraphWidget - KB/s - KB/s + + Specify wallet file (within data directory) + Aseta lompakkotiedosto (data-hakemiston sisällä) - - - TransactionDesc - %1/unconfirmed - %1/vahvistamaton + + The source code is available from %s. + Lähdekoodi löytyy %s. - %1 confirmations - %1 vahvistusta + + Transaction fee and change calculation failed + - Date - Aika + + Unable to bind to %s on this computer. %s is probably already running. + - Source - Lähde + + Unsupported argument -benchmark ignored, use -debug=bench. + Argumenttia -benchmark ei tueta, käytä -debug=bench. - Generated - Generoitu + + Unsupported argument -debugnet ignored, use -debug=net. + Argumenttia -debugnet ei tueta, käytä -debug=net. - From - Lähettäjä + + Unsupported argument -tor found, use -onion. + Argumenttia -tor ei tueta, käytä -onion. - unknown - tuntematon + + Unsupported logging category %s=%s. + - To - Saaja + + Upgrading UTXO database + - own address - oma osoite + + Use UPnP to map the listening port (default: %u) + Käytä UPnP:ta kuuntelevan portin kartoittamiseen (oletus: %u) - Message - Viesti + + Use the test chain + - Comment - Kommentti + + User Agent comment (%s) contains unsafe characters. + - Amount - Määrä + + Verifying blocks... + Varmistetaan lohkoja... - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Tämä ruutu näyttää yksityiskohtaisen tiedon rahansiirrosta + + Wallet %s resides outside data directory %s + Lompakko %s sijaitsee data-hakemiston ulkopuolella %s - - - TransactionTableModel - Date - Aika + + Wallet debugging/testing options: + - Type - Tyyppi + + Wallet needed to be rewritten: restart %s to complete + Lompakko tarvitsee uudelleenkirjoittaa: käynnistä %s uudelleen - Label - Nimike + + Wallet options: + Lompakon valinnat: - Received with - Vastaanotettu osoitteella + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Salli JSON-RPC-yhteydet määritetystä lähteestä. Kelvolliset arvot <ip> ovat yksittäinen IP (esim. 1.2.3.4), verkko/verkkomaski (esim. 1.2.3.4/255.255.255.0) tai verkko/luokaton reititys (esim. 1.2.3.4/24). Tätä valintatapaa voidaan käyttää useita kertoja - Sent to - Lähetetty vastaanottajalle + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Payment to yourself - Maksu itsellesi + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Mined - Louhittu + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Paljasta omat IP-osoitteet (oletus: 1 kun kuunnellaan ja -externalip tai -proxy ei ole käytössä) - (no label) - (ei nimikettä) + + Error: Listening for incoming connections failed (listen returned error %s) + Virhe: Saapuvien yhteyksien kuuntelu epäonnistui (kuuntelu palautti virheen %s) - - - TransactionView - All - Kaikki + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Aja komento kun olennainen hälytys vastaanotetaan tai nähdään todella pitkä haara (%s komennossa korvataan viestillä) - Today - Tänään + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - This week - Tällä viikolla + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - This month - Tässä kuussa + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Last month - Viime kuussa + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - This year - Tänä vuonna + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Received with - Vastaanotettu osoitteella + + The transaction amount is too small to send after the fee has been deducted + Siirtomäärä on liian pieni lähetettäväksi kulun vähentämisen jälkeen. - Sent to - Lähetetty vastaanottajalle + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - To yourself - Itsellesi + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Mined - Louhittu + + (default: %u) + (oletus: %u) - Min amount - Minimimäärä + + Accept public REST requests (default: %u) + Hyväksy julkisia REST-pyyntöjä (oletus: %u) - Copy address - Kopioi osoite + + Automatically create Tor hidden service (default: %d) + Luo Tor-salattu palvelu automaattisesti (oletus: %d) - Copy label - Kopioi nimike + + Connect through SOCKS5 proxy + Yhdistä SOCKS5 proxin kautta - Copy amount - Kopioi määrä + + Error loading %s: You can't disable HD on an already existing HD wallet + - Copy transaction ID - Kopioi transaktion ID + + Error reading from database, shutting down. + Virheitä tietokantaa luettaessa, ohjelma pysäytetään. - Edit label - Muokkaa nimeä + + Error upgrading chainstate database + - Show transaction details - Näytä rahansiirron yksityiskohdat + + Imports blocks from external blk000??.dat file on startup + Tuo lohkot ulkoisesta blk000??.dat -tiedostosta käynnistettäessä - Export Transaction History - Vie rahansiirtohistoria + + Information + Tietoa - Comma separated file (*.csv) - Pilkuilla erotettu tiedosto (*.csv) + + Invalid -onion address or hostname: '%s' + - Confirmed - Vahvistettu + + Invalid -proxy address or hostname: '%s' + - Date - Aika + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Kelvoton määrä argumentille -paytxfee=<amount>: '%s' (pitää olla vähintään %s) - Type - Tyyppi + + Invalid netmask specified in -whitelist: '%s' + Kelvoton verkkopeite määritelty argumentissa -whitelist: '%s' - Label - Nimike + + Keep at most <n> unconnectable transactions in memory (default: %u) + Pidä enimmillään <n> yhdistämiskelvotonta rahansiirtoa muistissa (oletus: %u) - Address - Osoite + + Need to specify a port with -whitebind: '%s' + Pitää määritellä portti argumentilla -whitebind: '%s' - ID - ID + + Node relay options: + Välityssolmukohdan asetukset: - Exporting Failed - Vienti epäonnistui + + RPC server options: + RPC-palvelimen valinnat: - There was an error trying to save the transaction history to %1. - Rahansiirron historian tallentamisessa tapahtui virhe paikkaan %1. + + Reducing -maxconnections from %d to %d, because of system limitations. + - Exporting Successful - Vienti onnistui + + Rescan the block chain for missing wallet transactions on startup + Uudelleenskannaa lohkoketju käynnistyksen yhteydessä puuttuvien lompakon rahansiirtojen vuoksi - to - vastaanottaja + + Send trace/debug info to console instead of debug.log file + Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Yksikkö jossa määrät näytetään. Klikkaa valitaksesi toisen yksikön. + + Show all debugging options (usage: --help -help-debug) + Näytä kaikki debuggaus valinnat: (käyttö: --help -help-debug) - - - WalletFrame - No wallet has been loaded. - Lomakkoa ei ole ladattu. + + Shrink debug.log file on client startup (default: 1 when no -debug) + Pienennä debug.log tiedosto käynnistyksen yhteydessä (vakioasetus: 1 kun ei -debug) - - - WalletModel - Send Coins - Lähetä kolikoita + + Signing transaction failed + Siirron vahvistus epäonnistui - - - WalletView - &Export - &Vie + + The transaction amount is too small to pay the fee + Rahansiirron määrä on liian pieni kattaakseen maksukulun - Export the data in the current tab to a file - Vie auki olevan välilehden tiedot tiedostoon + + This is experimental software. + Tämä on ohjelmistoa kokeelliseen käyttöön. - Backup Wallet - Varmuuskopioi lompakko + + Tor control port password (default: empty) + Tor-hallintaportin salasana (oletus: tyhjä) - Wallet Data (*.dat) - Lompakkodata (*.dat) + + Tor control port to use if onion listening enabled (default: %s) + Tor-hallintaportti jota käytetään jos onion-kuuntelu on käytössä (oletus: %s) - Backup Failed - Varmuuskopio epäonnistui + + Transaction amount too small + Siirtosumma liian pieni - Backup Successful - Varmuuskopio Onnistui + + Transaction too large for fee policy + Rahansiirto on liian suuri maksukulukäytännölle - - - raven-core - Options: - Asetukset: + + Transaction too large + Siirtosumma liian iso - Specify data directory - Määritä data-hakemisto + + Unable to bind to %s on this computer (bind returned error %s) + - Connect to a node to retrieve peer addresses, and disconnect - Yhdistä noodiin hakeaksesi naapurien osoitteet ja katkaise yhteys + + Upgrade wallet to latest format on startup + Päivitä lompakko viimeisimpään formaattiin käynnistyksen yhteydessä - Specify your own public address - Määritä julkinen osoitteesi + + Username for JSON-RPC connections + Käyttäjätunnus JSON-RPC-yhteyksille - Accept command line and JSON-RPC commands - Hyväksy merkkipohjaiset- ja JSON-RPC-käskyt + + Valid Verifier + - If <category> is not supplied or if <category> = 1, output all debugging information. - Jos <category> on toimittamatta tai jos <category> = 1, tulosta kaikki debug-tieto. + + Variable is not allow in the expression: ' + - Prune configured below the minimum of %d MiB. Please use a higher number. - Karsinta konfiguroitu alle minimin %d MiB. Käytä surempaa numeroa. + + Verifier String doesn't exist for asset: + - Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - Karsinta: viime lompakon synkronisointi menee karsitun datan taakse. Sinun tarvitsee ajaa -reindex (lataa koko lohkoketju uudelleen tapauksessa jossa karsiva noodi) + + Verifier String for asset trasnfer, not found + - Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. - Uudelleenskannaukset eivät ole mahdollisia karsivassa tilassa. Sinun täytyy käyttää -reindex joka lataa koko lohkoketjun uudelleen. + + Verifier not found for asset: + - Error: A fatal internal error occurred, see debug.log for details - Virhe: Kriittinen sisäinen virhe kohdattiin, katso debug.log lisätietoja varten + + Verifier string can not be empty. To default to true, use "true" + - Fee (in %s/kB) to add to transactions you send (default: %s) - Kulu (muodossa %s/kB) joka lisätään rahansiirtoihin joita lähetät (oletus: %s) + + Verifier string is empty + - Pruning blockstore... - Karsitaan lohkovarastoa... + + Verifier string not found + - Run in the background as a daemon and accept commands - Aja taustalla daemonina ja hyväksy komennot + + Verifying wallet(s)... + - Unable to start HTTP server. See debug log for details. - HTTP-palvelinta ei voitu käynnistää. Katso debug-lokista lisätietoja. + + Warning + Varoitus - Raven Core - Raven-ydin + + Warning: unknown new rules activated (versionbit %i) + - The %s developers - %s kehittäjät + + Whether to operate in a blocks only mode (default: %u) + Toimitaanko tilassa jossa ainoastaan lohkot sallitaan (oletus: %u) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Kytkeydy annettuun osoitteeseen ja pidä linja aina auki. Käytä [host]:portin merkintätapaa IPv6:lle. + + You need to rebuild the database using -reindex to change -txindex + - Cannot obtain a lock on data directory %s. %s is probably already running. - Ei voida lukita data-hakemistoa %s. %s on luultavasti jo käynnissä. + + Zapping all transactions from wallet... + Tyhjennetään kaikki rahansiirrot lompakosta.... - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Suorita käsky kun lompakossa rahansiirto muuttuu (%s cmd on vaihdettu TxID kanssa) + + ZeroMQ notification options: + ZeroMQ-ilmoitusasetukset: - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - Tarkistathan että tietokoneesi päivämäärä ja kellonaika ovat oikeassa! Jos kellosi on väärässä, %s ei toimi oikein. + + Password for JSON-RPC connections + Salasana JSON-RPC-yhteyksille - Please contribute if you find %s useful. Visit %s for further information about the software. - Ole hyvä ja avusta, jos %s on mielestäsi hyödyllinen. Vieraile %s saadaksesi lisää tietoa ohjelmistosta. + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Suorita käsky kun paras lohko muuttuu (%s cmd on vaihdettu block hashin kanssa) - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Aseta script varmistuksen threadien lukumäärä (%u - %d, 0= auto, <0 = jätä näin monta ydintä vapaaksi, oletus: %d) + + Allow DNS lookups for -addnode, -seednode and -connect + Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - Lohkotietokanta sisältää lohkon, joka vaikuttaa olevan tulevaisuudesta. Tämä saattaa johtua tietokoneesi virheellisesti asetetuista aika-asetuksista. Rakenna lohkotietokanta uudelleen vain jos olet varma, että tietokoneesi päivämäärä ja aika ovat oikein. + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Use UPnP to map the listening port (default: 1 when listening and no -proxy) - Käytä UPnP:ta kuuntelevan portin kartoitukseen (oletus: 1 kun kuunnellaan ja -proxy ei käytössä) + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + -maxtxfee on asetettu erittäin suureksi! Tämänkokoisia kuluja saatetaan maksaa yhdessä rahansiirrossa. - You need to rebuild the database using -reindex-chainstate to change -txindex - Sinun tulee uudelleenrakentaa tietokanta käyttäen -reindex-chainstate vaihtaaksesi -txindex + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - %s corrupt, salvage failed - %s korruptoitunut, korjaaminen epäonnistui + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + Älä pidä rahansiirtoja muistivarannoissa kauemmin kuin <n> tuntia (oletus: %u) - -maxmempool must be at least %d MB - -maxmempool on oltava vähintään %d MB + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - <category> can be: - <category> voi olla: + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Attempt to recover private keys from a corrupt wallet on startup - Yritä palauttaa yksityiset avaimet korruptoituneesta lompakosta käynnistyksen yhteydessä + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Block creation options: - Lohkon luonnin asetukset: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Cannot resolve -%s address: '%s' - -%s -osoitteen '%s' selvittäminen epäonnistui + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Connection options: - Yhteyden valinnat: + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Kuinka läpikäyvä lohkojen -checkblocks -todennus on (0-4, oletus: %u) - Copyright (C) %i-%i - Tekijänoikeus (C) %i-%i + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Corrupted block database detected - Vioittunut lohkotietokanta havaittu + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Debugging/Testing options: - Debuggaus/Testauksen valinnat: + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Do not load the wallet and disable wallet RPC calls - Älä lataa lompakkoa ja poista lompakon RPC kutsut + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Do you want to rebuild the block database now? - Haluatko uudelleenrakentaa lohkotietokannan nyt? + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Enable publish raw transaction in <address> - Ota rahansiirtojen raakavedosten julkaisu käyttöön osoitteessa <address> + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Error initializing block database - Virhe alustaessa lohkotietokantaa + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Error initializing wallet database environment %s! - Virhe alustaessa lompakon tietokantaympäristöä %s! + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Error loading %s - Virhe ladattaessa %s + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Error loading %s: Wallet corrupted - Virhe ladattaessa %s: Lompakko vioittunut + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Error loading %s: Wallet requires newer version of %s - Virhe ladattaessa %s: Tarvitset uudemman %s -version + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Error loading block database - Virhe avattaessa lohkoketjua + + Output debugging information (default: %u, supplying <category> is optional) + Tulosta debuggaustieto (oletus: %u, annettu <category> valinnainen) - Error opening block database - Virhe avattaessa lohkoindeksiä + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Error: Disk space is low! - Varoitus: Levytila on vähissä! + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - Ei onnistuttu kuuntelemaan missään portissa. Käytä -listen=0 jos haluat tätä. + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Importing... - Tuodaan... + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - Virheellinen tai olematon alkulohko löydetty. Väärä data-hakemisto verkolle? + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Invalid -onion address: '%s' - Virheellinen -onion osoite: '%s' + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Invalid amount for -%s=<amount>: '%s' - Virheellinen määrä -%s=<amount>: '%s' + + The default height that is required before rewards are allowed to be sent out + - Invalid amount for -fallbackfee=<amount>: '%s' - Virheellinen määrä -fallbackfee=<amount>: '%s' + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Loading banlist... - Ladataan kieltolistaa... + + This address doesn't contain the correct tags to pass the verifier string check: + - Location of the auth cookie (default: data dir) - Todennusevästeen sijainti (oletus: datahakemisto) + + This is the transaction fee you may pay when fee estimates are not available. + - Not enough file descriptors available. - Ei tarpeeksi tiedostomerkintöjä vapaana. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Yhdistä vain solmukohtiin <net>-verkossa (ipv4, ipv6 tai onion) + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Print this help message and exit - Näytä tämä ohjeviesti ja poistu + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Print version and exit - Näytä versio ja poistu. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Prune mode is incompatible with -txindex. - Karsittu tila ei ole yhteensopiva -txindex:n kanssa. + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Rewinding blocks... - Varmistetaan lohkoja... + + Unable to reissue asset: unit must be larger than current unit selection + - Set database cache size in megabytes (%d to %d, default: %d) - Aseta tietokannan välimuistin koko megatavuissa (%d - %d, oletus: %d + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Set maximum block size in bytes (default: %d) - Aseta lohkon maksimikoko tavuissa (oletus: %d) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Specify wallet file (within data directory) - Aseta lompakkotiedosto (data-hakemiston sisällä) + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - The source code is available from %s. - Lähdekoodi löytyy %s. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Käytä erillistä SOCKS5-proxyä tavoittaaksesi vertaisia Tor-piilopalveluiden kautta (oletus: %s) - Unsupported argument -benchmark ignored, use -debug=bench. - Argumenttia -benchmark ei tueta, käytä -debug=bench. + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Unsupported argument -debugnet ignored, use -debug=net. - Argumenttia -debugnet ei tueta, käytä -debug=net. + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Unsupported argument -tor found, use -onion. - Argumenttia -tor ei tueta, käytä -onion. + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Use UPnP to map the listening port (default: %u) - Käytä UPnP:ta kuuntelevan portin kartoittamiseen (oletus: %u) + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Verifying blocks... - Varmistetaan lohkoja... + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Verifying wallet... - Varmistetaan lompakko... + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Wallet %s resides outside data directory %s - Lompakko %s sijaitsee data-hakemiston ulkopuolella %s + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Wallet needed to be rewritten: restart %s to complete - Lompakko tarvitsee uudelleenkirjoittaa: käynnistä %s uudelleen + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Wallet options: - Lompakon valinnat: + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Salli JSON-RPC-yhteydet määritetystä lähteestä. Kelvolliset arvot <ip> ovat yksittäinen IP (esim. 1.2.3.4), verkko/verkkomaski (esim. 1.2.3.4/255.255.255.0) tai verkko/luokaton reititys (esim. 1.2.3.4/24). Tätä valintatapaa voidaan käyttää useita kertoja + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Paljasta omat IP-osoitteet (oletus: 1 kun kuunnellaan ja -externalip tai -proxy ei ole käytössä) + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Error: Listening for incoming connections failed (listen returned error %s) - Virhe: Saapuvien yhteyksien kuuntelu epäonnistui (kuuntelu palautti virheen %s) + + %s is set very high! + %s on asetettu todella korkeaksi! - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Aja komento kun olennainen hälytys vastaanotetaan tai nähdään todella pitkä haara (%s komennossa korvataan viestillä) + + ' doesn't exist in the database + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Aseta maksimikoko korkea prioriteetti/pieni palkkio rahansiirtoihin tavuissa (oletus: %d) + + ' has already been used + - The transaction amount is too small to send after the fee has been deducted - Siirtomäärä on liian pieni lähetettäväksi kulun vähentämisen jälkeen. + + ' is not a valid character in the expression: + - (default: %u) - (oletus: %u) + + ' the amount trying to reissue is to large + - Accept public REST requests (default: %u) - Hyväksy julkisia REST-pyyntöjä (oletus: %u) + + (default: %s) + (oletus: %s) - Automatically create Tor hidden service (default: %d) - Luo Tor-salattu palvelu automaattisesti (oletus: %d) + + A space separated list of 12-words used to import a bip44 wallet + - Connect through SOCKS5 proxy - Yhdistä SOCKS5 proxin kautta + + Always query for peer addresses via DNS lookup (default: %u) + Pyydä vertaisten osoitteita aina DNS-kyselyjen avulla (oletus: %u) - Error reading from database, shutting down. - Virheitä tietokantaa luettaessa, ohjelma pysäytetään. + + Asset Transfer amounts must be greater than 0 + - Imports blocks from external blk000??.dat file on startup - Tuo lohkot ulkoisesta blk000??.dat -tiedostosta käynnistettäessä + + Asset doesn't exist: + - Information - Tietoa + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Kelvoton määrä argumentille -paytxfee=<amount>: '%s' (pitää olla vähintään %s) + + Asset name is not valid + - Invalid netmask specified in -whitelist: '%s' - Kelvoton verkkopeite määritelty argumentissa -whitelist: '%s' + + Asset with this name is already in the mempool + - Keep at most <n> unconnectable transactions in memory (default: %u) - Pidä enimmillään <n> yhdistämiskelvotonta rahansiirtoa muistissa (oletus: %u) + + Done Loading + - Need to specify a port with -whitebind: '%s' - Pitää määritellä portti argumentilla -whitebind: '%s' + + Enable publish raw asset messages in <address> + - Node relay options: - Välityssolmukohdan asetukset: + + Error creating %s: You can't create non-HD wallets with this version. + - RPC server options: - RPC-palvelimen valinnat: + + Error loading wallet %s. -wallet filename must be a regular file. + - Rescan the block chain for missing wallet transactions on startup - Uudelleenskannaa lohkoketju käynnistyksen yhteydessä puuttuvien lompakon rahansiirtojen vuoksi + + Error loading wallet %s. Duplicate -wallet filename specified. + - Send trace/debug info to console instead of debug.log file - Lähetä jäljitys/debug-tieto konsoliin, debug.log-tiedoston sijaan + + Error loading wallet %s. Invalid characters in -wallet filename. + - Show all debugging options (usage: --help -help-debug) - Näytä kaikki debuggaus valinnat: (käyttö: --help -help-debug) + + Error not set + - Shrink debug.log file on client startup (default: 1 when no -debug) - Pienennä debug.log tiedosto käynnistyksen yhteydessä (vakioasetus: 1 kun ei -debug) + + Error writing bip 39 passphrase to database + - Signing transaction failed - Siirron vahvistus epäonnistui + + Error writing bip 39 vchseed to database + - The transaction amount is too small to pay the fee - Rahansiirron määrä on liian pieni kattaakseen maksukulun + + Error writing bip 39 words to database + - This is experimental software. - Tämä on ohjelmistoa kokeelliseen käyttöön. + + Every '(' must have a corresponding ')' in the expression: + - Tor control port password (default: empty) - Tor-hallintaportin salasana (oletus: tyhjä) + + Failed to extract destination from change script + - Tor control port to use if onion listening enabled (default: %s) - Tor-hallintaportti jota käytetään jos onion-kuuntelu on käytössä (oletus: %s) + + Failed to find restricted asset change address from inputs + - Transaction amount too small - Siirtosumma liian pieni + + Failed to get asset data from script + - Transaction too large for fee policy - Rahansiirto on liian suuri maksukulukäytännölle + + Failed to get verifier string from output: + - Transaction too large - Siirtosumma liian iso + + Failed to load Assets Database + - Upgrade wallet to latest format on startup - Päivitä lompakko viimeisimpään formaattiin käynnistyksen yhteydessä + + Flag must be 1 or 0 + - Username for JSON-RPC connections - Käyttäjätunnus JSON-RPC-yhteyksille + + How many blocks to check at startup (default: %u, 0 = all) + Kuinka monta lohkoa tarkistetaan käynnistyksessä (oletus: %u, 0 = kaikki) - Warning - Varoitus + + Include IP addresses in debug output (default: %u) + Sisällytä IP-osoitteet virheenkorjauslokissa (oletus: %u) - Whether to operate in a blocks only mode (default: %u) - Toimitaanko tilassa jossa ainoastaan lohkot sallitaan (oletus: %u) + + Init Message Channels - Scanning Asset Transactions + - Zapping all transactions from wallet... - Tyhjennetään kaikki rahansiirrot lompakosta.... + + Insufficient asset funds + - ZeroMQ notification options: - ZeroMQ-ilmoitusasetukset: + + Invalid Qualifier Name: + - Password for JSON-RPC connections - Salasana JSON-RPC-yhteyksille + + Invalid expressions in verifier string: + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Suorita käsky kun paras lohko muuttuu (%s cmd on vaihdettu block hashin kanssa) + + Invalid parameter: amount must be + - Allow DNS lookups for -addnode, -seednode and -connect - Salli DNS kyselyt -addnode, -seednode ja -connect yhteydessä + + Invalid parameter: amount must be between + - Loading addresses... - Ladataan osoitteita... + + Invalid parameter: asset amount can't be equal to or less than zero. + - -maxtxfee is set very high! Fees this large could be paid on a single transaction. - -maxtxfee on asetettu erittäin suureksi! Tämänkokoisia kuluja saatetaan maksaa yhdessä rahansiirrossa. + + Invalid parameter: asset amount greater than max money: + - Do not keep transactions in the mempool longer than <n> hours (default: %u) - Älä pidä rahansiirtoja muistivarannoissa kauemmin kuin <n> tuntia (oletus: %u) + + Invalid parameter: asset_name ' + - How thorough the block verification of -checkblocks is (0-4, default: %u) - Kuinka läpikäyvä lohkojen -checkblocks -todennus on (0-4, oletus: %u) + + Invalid parameter: has_ipfs must be 0 or 1. + - Output debugging information (default: %u, supplying <category> is optional) - Tulosta debuggaustieto (oletus: %u, annettu <category> valinnainen) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Käytä erillistä SOCKS5-proxyä tavoittaaksesi vertaisia Tor-piilopalveluiden kautta (oletus: %s) + + Invalid parameter: reissuable must be 0 or 1 + - %s is set very high! - %s on asetettu todella korkeaksi! + + Invalid parameter: reissuable must be 0 + - (default: %s) - (oletus: %s) + + Invalid parameter: units must be + - Always query for peer addresses via DNS lookup (default: %u) - Pyydä vertaisten osoitteita aina DNS-kyselyjen avulla (oletus: %u) + + Invalid parameter: units must be between 0-8. + - How many blocks to check at startup (default: %u, 0 = all) - Kuinka monta lohkoa tarkistetaan käynnistyksessä (oletus: %u, 0 = kaikki) + + Invalid syntax: + - Include IP addresses in debug output (default: %u) - Sisällytä IP-osoitteet virheenkorjauslokissa (oletus: %u) + + Keypool ran out, please call keypoolrefill first + - Invalid -proxy address: '%s' - Virheellinen proxy-osoite '%s' + + Length is to large. Please use a smaller length + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Kuuntele JSON-RPC-yhteyksiä portissa <port> (oletus: %u tai testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Kuuntele yhteyksiä portissa <port> (oletus: %u tai testnet: %u) + Maintain at most <n> connections to peers (default: %u) Ylläpidä enimmillään <n> yhteyttä vertaisiin (oletus: %u) + Make the wallet broadcast transactions Aseta lompakko kuuluttamaan rahansiirtoja + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maksimi yhteyttä kohden käytettävä vastaanottopuskurin koko, <n>*1000 tavua (oletus: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maksimi yhteyttä kohden käytettävä lähetyspuskurin koko, <n>*1000 tavua (oletus: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Lisää debug-tietojen alkuun aikaleimat (oletus: %u) + Relay and mine data carrier transactions (default: %u) Välitä ja louhi dataa kantavia rahansiirtoja (oletus: %u) + Relay non-P2SH multisig (default: %u) Välitä ei-P2SH-multisig (oletus: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Aseta avainaltaan kooksi <n> (oletus: %u) + Set maximum BIP141 block weight (default: %d) Aseta suurin BIP141-lohkopaino (oletus: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Aseta RPC-kutsujen palvelemiseen tarkoitettujen säikeiden lukumäärä (oletus: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Määritä asetustiedosto (oletus: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Määritä yhteyden aikakatkaisu millisekunneissa (minimi: 1, oletus: %d) + Specify pid file (default: %s) Määritä pid-tiedosto (oletus: %s) + Spend unconfirmed change when sending transactions (default: %u) Käytä vahvistamattomia vaihtorahoja lähetettäessä rahansiirtoja (oletus: %u) + Starting network threads... Käynnistetään verkkoa... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + This is the transaction fee you will pay if you send a transaction. Tämä on lähetyksestä maksettava maksu jonka maksat + Threshold for disconnecting misbehaving peers (default: %u) Aikaväli sopimattomien vertaisten yhteyksien katkaisuun (oletus: %u) + Transaction amounts must not be negative Lähetyksen siirtosumman tulee olla positiivinen + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient Lähetyksessä tulee olla ainakin yksi vastaanottaja - Unknown network specified in -onlynet: '%s' - Tuntematon verkko -onlynet parametrina: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Tuntematon verkko -onlynet parametrina: '%s' + + + Insufficient funds Lompakon saldo ei riitä + Loading block index... Ladataan lohkoindeksiä... - Add a node to connect to and attempt to keep the connection open - Linää solmu mihin liittyä pitääksesi yhteyden auki - - + Loading wallet... Ladataan lompakkoa... + Cannot downgrade wallet Et voi päivittää lompakkoasi vanhempaan versioon - Cannot write default address - Oletusosoitetta ei voi kirjoittaa - - + Rescanning... Skannataan uudelleen... - Done loading - Lataus on valmis - - + Error Virhe diff --git a/src/qt/locale/raven_fr.ts b/src/qt/locale/raven_fr.ts index 1fece9861c..231f5f05d4 100644 --- a/src/qt/locale/raven_fr.ts +++ b/src/qt/locale/raven_fr.ts @@ -1,116 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Cliquer à droite pour modifier l'adresse ou l'étiquette + Cliquer à droite pour modifier l'adresse ou l'étiquette + Create a new address Créer une nouvelle adresse + &New &Nouveau + Copy the currently selected address to the system clipboard - Copier l'adresse sélectionnée actuellement dans le presse-papiers + Copier l'adresse sélectionnée actuellement dans le presse-papiers + &Copy &Copier + C&lose &Fermer + Delete the currently selected address from the list - Supprimer de la liste l'adresse sélectionnée actuellement + Supprimer de la liste l'adresse sélectionnée actuellement + Export the data in the current tab to a file - Exporter les données de l'onglet actuel vers un fichier + Exporter les données de l'onglet actuel vers un fichier + &Export &Exporter + &Delete &Supprimer + Choose the address to send coins to - Choisir l'adresse à laquelle envoyer des pièces + Choisir l'adresse à laquelle envoyer des pièces + Choose the address to receive coins with - Choisir l'adresse avec laquelle recevoir des pîèces + Choisir l'adresse avec laquelle recevoir des pîèces + C&hoose C&hoisir + Sending addresses - Adresses d'envoi + Adresses d'envoi + Receiving addresses Adresses de réception + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - Voici vos adresses Raven pour envoyer des paiements. Vérifiez toujours le montant et l'adresse du destinataire avant d'envoyer des pièces. + Voici vos adresses Raven pour envoyer des paiements. Vérifiez toujours le montant et l'adresse du destinataire avant d'envoyer des pièces. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - Voici vos adresses Raven pour recevoir des paiements. Il est recommandé d'utiliser une nouvelle adresse de réception pour chaque transaction. + Voici vos adresses Raven pour recevoir des paiements. Il est recommandé d'utiliser une nouvelle adresse de réception pour chaque transaction. + &Copy Address - &Copier l'adresse + &Copier l'adresse + Copy &Label - Copier l'é&tiquette + Copier l'é&tiquette + &Edit &Modifier + Export Address List - Exporter la liste d'adresses + Exporter la liste d'adresses + Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) + Exporting Failed - Échec d'exportation + Échec d'exportation + There was an error trying to save the address list to %1. Please try again. - Une erreur est survenue lors de l'enregistrement de la liste d'adresses vers %1. Veuillez ressayer plus tard. + Une erreur est survenue lors de l'enregistrement de la liste d'adresses vers %1. Veuillez ressayer plus tard. AddressTableModel + Label Étiquette + Address Adresse + (no label) (aucune étiquette) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Fenêtre de dialogue de la phrase de passe + Enter passphrase Saisir la phrase de passe + New passphrase Nouvelle phrase de passe + Repeat new passphrase Répéter la phrase de passe + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Saisissez la nouvelle phrase de passe du porte-monnaie.<br/>Veuillez utiliser une phrase de passe composée de <b>dix caractères aléatoires ou plus</b>, ou de <b>huit mots ou plus</b>. + Encrypt wallet Chiffrer le porte-monnaie + This operation needs your wallet passphrase to unlock the wallet. Cette opération nécessite votre phrase de passe pour déverrouiller le porte-monnaie. + Unlock wallet Déverrouiller le porte-monnaie + This operation needs your wallet passphrase to decrypt the wallet. Cette opération nécessite votre phrase de passe pour déchiffrer le porte-monnaie. + Decrypt wallet Déchiffrer le porte-monnaie + Change passphrase Changer la phrase de passe + Enter the old passphrase and new passphrase to the wallet. - Saisir l'ancienne puis la nouvelle phrase de passe du porte-monnaie. + Saisir l'ancienne puis la nouvelle phrase de passe du porte-monnaie. + Confirm wallet encryption Confirmer le chiffrement du porte-monnaie + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Avertissement : si vous chiffrez votre porte-monnaie et perdez votre phrase de passe, vous <b>PERDREZ TOUS VOS RAVENS</b> ! + Are you sure you wish to encrypt your wallet? Voulez-vous vraiment chiffrer votre porte-monnaie ? + + Wallet encrypted Le porte-monnaie est chiffré + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 va maintenant se fermer pour terminer le processus de chiffrement. Souvenez-vous que le chiffrement de votre porte-monnaie ne peut pas protéger entièrement vos ravens contre le vol par des logiciels malveillants qui infecteraient votre ordinateur. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANT : toutes les sauvegardes précédentes du fichier de votre porte-monnaie devraient être remplacées par le fichier du porte-monnaie chiffré nouvellement généré. Pour des raisons de sécurité, les sauvegardes précédentes de votre fichier de porte-monnaie non chiffré deviendront inutilisables dès que vous commencerez à utiliser le nouveau porte-monnaie chiffré. + + + + Wallet encryption failed Échec de chiffrement du porte-monnaie + Wallet encryption failed due to an internal error. Your wallet was not encrypted. - Le chiffrement du porte-monnaie a échoué en raison d'une erreur interne. Votre porte-monnaie n'a pas été chiffré. + Le chiffrement du porte-monnaie a échoué en raison d'une erreur interne. Votre porte-monnaie n'a pas été chiffré. + + The supplied passphrases do not match. Les phrases de passe saisies ne correspondent pas. + Wallet unlock failed Échec de déverrouillage du porte-monnaie + + + The passphrase entered for the wallet decryption was incorrect. La phrase de passe saisie pour déchiffrer le porte-monnaie était erronée. + Wallet decryption failed Échec de déchiffrement du porte-monnaie + Wallet passphrase was successfully changed. La phrase de passe du porte-monnaie a été modifiée avec succès. + + Warning: The Caps Lock key is on! Avertissement : la touche Verr. Maj. est activée ! - BanTableModel + AssetControlDialog - IP/Netmask - IP/masque réseau + + Asset Selection + Sélection de l'Actif - Banned Until - Banni jusqu'au + + Quantity: + Quantité: - - - RavenGUI - Sign &message... - Signer un &message... + + Bytes: + Bytes: - Synchronizing with network... - Synchronisation avec le réseau… + + Amount: + Montant: - &Overview - &Vue d'ensemble + + Dust: + - Node - Nœud + + Fee: + Frais: - Show general overview of wallet - Afficher une vue d’ensemble du porte-monnaie + + After Fee: + Après les frais: - &Transactions - &Transactions + + Change: + - Browse transaction history - Parcourir l'historique transactionnel + + (un)select all + - E&xit - Q&uitter + + Tree mode + - Quit application - Quitter l’application + + List mode + - &About %1 - À &propos de %1 + + View assets that you have the ownership asset for + - Show information about %1 - Afficher des informations à propos de %1 + + View Administrator Assets + - About &Qt - À propos de &Qt + + Asset + - Show information about Qt - Afficher des informations sur Qt + + Amount + - &Options... - &Options… + + Received with label + - Modify configuration options for %1 - Modifier les options de configuration de %1 + + Received with address + - &Encrypt Wallet... - &Chiffrer le porte-monnaie... + + Date + - &Backup Wallet... - Sauvegarder le &porte-monnaie... + + Confirmations + - &Change Passphrase... - &Changer la phrase de passe... + + Confirmed + - &Sending addresses... - Adresses d'&envoi... + + Copy address + - &Receiving addresses... - Adresses de &réception... + + Copy label + Copiez l'étiquette - Open &URI... - Ouvrir une &URI... + + + Copy amount + Copiez le montant - Click to disable network activity. - Cliquer pour désactiver l'activité réseau. + + Copy transaction ID + - Network activity disabled. - L'activité réseau est désactivée. + + Lock unspent + - Click to enable network activity again. - Cliquer pour réactiver l'activité réseau. + + Unlock unspent + - Syncing Headers (%1%)... - Synchronisation des en-têtes (%1)... + + Copy quantity + - Reindexing blocks on disk... - Réindexation des blocs sur le disque... + + Copy fee + - Send coins to a Raven address - Envoyer des pièces à une adresse Raven + + Copy after fee + - Backup wallet to another location - Sauvegarder le porte-monnaie vers un autre emplacement + + Copy bytes + - Change the passphrase used for wallet encryption - Modifier la phrase de passe utilisée pour le chiffrement du porte-monnaie + + Copy dust + - &Debug window - Fenêtre de &débogage + + Copy change + - Open debugging and diagnostic console - Ouvrir une console de débogage et de diagnostic + + (%1 locked) + - &Verify message... - &Vérifier un message... + + yes + - Raven - Raven + + no + - Wallet - Porte-monnaie + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Envoyer + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Recevoir + + + (no label) + - &Show / Hide - &Afficher / cacher + + change from %1 (%2) + - Show or hide the main Window - Afficher ou cacher la fenêtre principale + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Chiffrer les clés privées qui appartiennent à votre porte-monnaie + + Name + - Sign messages with your Raven addresses to prove you own them - Signer les messages avec vos adresses Raven pour prouver que vous les détenez + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Vérifier les messages pour s'assurer qu'ils ont été signés avec les adresses Raven spécifiées + + + Send Coins + Envoyer les pièces - &File - &Fichier + + Asset Control Features + - &Settings - &Paramètres + + Inputs... + - &Help - &Aide + + automatically selected + - Tabs toolbar - Barre d'outils des onglets + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Demander des paiements (génère des codes QR et des URI raven:) + + Quantity: + - Show the list of used sending addresses and labels - Afficher la liste d'adresses d'envoi et d'étiquettes utilisées + + Bytes: + - Show the list of used receiving addresses and labels - Afficher la liste d'adresses de réception et d'étiquettes utilisées + + Amount: + - Open a raven: URI or payment request - Ouvrir une URI raven: ou une demande de paiement + + Dust: + - &Command-line options - Options de ligne de &commande + + Fee: + - - %n active connection(s) to Raven network - %n connexion active avec le réseau Raven%n connexions actives avec le réseau Raven + + + After Fee: + - Indexing blocks on disk... - Indexation des blocs sur le disque... + + Change: + Modifier: - Processing blocks on disk... - Traitement des blocs sur le disque... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - %n bloc d'historique transactionnel a été traité%n blocs d'historique transactionnel ont été traités + + + Custom change address + - %1 behind - en retard de %1 + + Transaction Fee: + - Last received block was generated %1 ago. - Le dernier bloc reçu avait été généré il y a %1. + + Choose... + - Transactions after this will not yet be visible. - Les transactions suivantes ne seront pas déjà visibles. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Erreur + + Warning: Fee estimation is currently not possible. + - Warning - Avertissement + + collapse fee-settings + - Information - Information + + Hide + - Up to date - À jour + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Afficher le message d'aide de %1 pour obtenir la liste des options de ligne de commande Raven possibles. + + per kilobyte + - %1 client - Client %1 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Connexion aux pairs... + + (read the tooltip) + - Catching up... - Rattrapage… + + Recommended: + - Date: %1 - - Date : %1 - + + Custom: + - Amount: %1 - - Montant : %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - Type : %1 - + + Confirmation time target: + - Label: %1 - - Étiquette : %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - Adresse : %1 - + + Request Replace-By-Fee + - Sent transaction - Transaction envoyée + + Confirm the send action + Confimez l'action d'envoi. - Incoming transaction - Transaction entrante + + S&end + - HD key generation is <b>enabled</b> - La génération de clé HD est <b>activée</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - La génération de clé HD est <b>désactivée</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Le porte-monnaie est <b>chiffré</b> et actuellement <b>verrouillé</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Une erreur fatale est survenue. Raven ne peut plus continuer en toute sécurité et va s'arrêter. + + Balance: + - - - CoinControlDialog - Coin Selection - Sélection des pièces + + Copy quantity + - Quantity: - Quantité : + + Copy amount + - Bytes: - Octets : + + Copy fee + Frais de Copie - Amount: - Montant : + + Copy after fee + - Fee: - Frais : + + Copy bytes + - Dust: - Poussière : + + Copy dust + - After Fee: - Après les frais : + + Copy change + - Change: - Monnaie : + + %1 (%2 blocks) + - (un)select all - Tout (des)sélectionner + + + + + %1 to %2 + + + Are you sure you want to send? + Etes-vous sûr de vouloir envoyer ? + + + + added as transaction fee + + + + + Confirm send assets + Confimez l'envoi d'actifs. + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + La création de la transaction a échoué. + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/masque réseau + + + + Banned Until + Banni jusqu'au + + + + CoinControlDialog + + + Coin Selection + Sélection des pièces + + + + Quantity: + Quantité : + + + + Bytes: + Octets : + + + + Amount: + Montant : + + + + Fee: + Frais : + + + + Dust: + Poussière : + + + + After Fee: + Après les frais : + + + + Change: + Monnaie : + + + + (un)select all + Tout (des)sélectionner + + + Tree mode Mode arborescence + List mode Mode liste + Amount Montant + Received with label Reçu avec une étiquette + Received with address Reçu avec une adresse + Date Date + Confirmations Confirmations + Confirmed Confirmée + Copy address Copier l’adresse + Copy label Copier l’étiquette + + Copy amount Copier le montant + Copy transaction ID - Copier l'ID de la transaction + Copier l'ID de la transaction + Lock unspent Verrouiller les transactions non dépensées + Unlock unspent Déverrouiller les transactions non dépensées + Copy quantity Copier la quantité + Copy fee Copier les frais + Copy after fee Copier après les frais + Copy bytes Copier les octets + Copy dust Copier la poussière + Copy change Copier la monnaie + (%1 locked) (%1 verrouillée) + yes oui + no non + This label turns red if any recipient receives an amount smaller than the current dust threshold. Cette étiquette devient rouge si un destinataire reçoit un montant inférieur au seuil actuel de poussière. + Can vary +/- %1 satoshi(s) per input. Peut varier +/- %1 satoshi(s) par entrée. + + (no label) (aucune étiquette) + change from %1 (%2) monnaie de %1 (%2) + (change) (monnaie) - EditAddressDialog + CreateAssetDialog - Edit Address - Modifier l'adresse + + Coin Control Features + - &Label - É&tiquette + + Inputs... + - The label associated with this address list entry - L'étiquette associée à cette entrée de la liste d'adresses + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - L'adresse associée à cette entrée de la liste d'adresses. Cela ne peut être modifié que pour les adresses d'envoi. + + Insufficient funds! + - &Address - &Adresse + + + Quantity: + - New receiving address - Nouvelle adresse de réception + + Bytes: + - New sending address - Nouvelle adresse d’envoi + + Amount: + - Edit receiving address - Modifier l’adresse de réception + + Dust: + - Edit sending address - Modifier l’adresse d'envoi + + Fee: + - The entered address "%1" is not a valid Raven address. - L'adresse saisie « %1 » n'est pas une adresse Raven valide. + + After Fee: + Après les Frais - The entered address "%1" is already in the address book. - L’adresse saisie « %1 » est déjà présente dans le carnet d'adresses. + + Change: + - Could not unlock wallet. - Impossible de déverrouiller le porte-monnaie. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Échec de génération de la nouvelle clé. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Un nouveau répertoire de données sera créé. + + Name: + - name - nom + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Le répertoire existe déjà. Ajouter %1 si vous comptez créer un nouveau répertoire ici. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Le chemin existe déjà et n'est pas un répertoire. + + Check Availabilty + - Cannot create data directory here. - Impossible de créer un répertoire de données ici. + + Address: + Adresse: - - - HelpMessageDialog - version - version + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - À propos de %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Options de ligne de commande + + Warning: + - Usage: - Utilisation : + + The number of assets that will be created + - command-line options - options de ligne de commande + + Units: + - UI Options: - Options de l'IU : + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Choisir un répertoire de données au démarrage (par défaut : %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Définir la langue, par exemple « fr_CA » (par défaut : la langue du système) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Démarrer minimisé + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Définir les certificats SSL racine pour les requêtes de paiement (par défaut : -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Afficher l'écran d'accueil au démarrage (par défaut : %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Réinitialiser tous les paramètres changés dans l'IUG + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Bienvenue + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Bienvenue à %1. + + ERROR TEXT + Erreur de texte - As this is the first time the program is launched, you can choose where %1 will store its data. - Puisque c'est la première fois que le logiciel est lancé, vous pouvez choisir où %1 stockera ses données. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 téléchargera et stockera une copie de la chaîne de blocs de Raven. Au moins %2 Go de données seront stockés dans ce répertoire et sa taille augmentera avec le temps. Le porte-monnaie sera également stocké dans ce répertoire. + + Choose... + - Use the default data directory - Utiliser le répertoire de données par défaut + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Utiliser un répertoire de données personnalisé : + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Erreur : le répertoire de données spécifié « %1 » ne peut pas être créé. + + collapse fee-settings + - Error - Erreur + + Hide + - - %n GB of free space available - %n Go d'espace libre disponible%n Go d'espace libre disponibles + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (sur %n Go requis)(sur %n Go requis) + + + per kilobyte + - - - ModalOverlay - Form - Formulaire + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Les transactions récentes ne sont peut-être pas encore visibles et par conséquent le solde de votre porte-monnaie est peut-être erroné. Cette information sera juste quand votre porte-monnaie aura fini de se synchroniser avec le réseau Raven, comme décrit ci-dessous. + + (read the tooltip) + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Toute tentative de dépense de ravens affectés par des transactions qui ne sont pas encore affichées ne sera pas acceptée par le réseau. + + Recommended: + - Number of blocks left - Nombre de blocs restants + + C&ustom: + - Unknown... - Inconnu... + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Last block time - Estampille temporelle du dernier bloc + + Confirmation time target: + - Progress - Progression + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Progress increase per hour - Avancement de la progression par heure + + Request Replace-By-Fee + - calculating... - calcul en cours... + + Create Asset + - Estimated time left until synced - Temps estimé avant la fin de la synchronisation + + Clear + - Hide - Cacher + + Balance: + Balance: - Unknown. Syncing Headers (%1)... - Inconnu. Synchronisation des en-têtes (%1)... + + 123.456 RVN + 123.456 RVN - - - OpenURIDialog - Open URI - Ouvrir une URI + + Copy quantity + - Open payment request from URI or file - Ouvrir une demande de paiement à partir d'une URI ou d'un fichier + + Copy amount + - URI: - URI : + + Copy fee + - Select payment request file - Choisir le fichier de demande de paiement + + Copy after fee + - Select payment request file to open - Choisir le fichier de demande de paiement à ouvrir + + Copy bytes + - - - OptionsDialog - Options - Options + + Copy dust + - &Main - &Principaux + + Copy change + - Automatically start %1 after logging in to the system. - Démarrer %1 automatiquement après avoir ouvert une session sur l'ordinateur. + + %1 (%2 blocks) + - &Start %1 on system login - &Démarrer %1 lors de l'ouverture d'une session + + Main Asset + - Size of &database cache - Taille du cache de la base de &données + + Sub Asset + Sous-Actif - MB - Mo + + Unique Asset + - Number of script &verification threads - Nombre de fils de &vérification de script + + Messaging Channel Asset + - Accept connections from outside - Accepter les connexions provenant de l'extérieur + + Qualifier Asset + - Allow incoming connections - Permettre les transactions entrantes + + Sub Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adresse IP du mandataire (p. ex. IPv4 : 127.0.0.1 / IPv6 : ::1) + + Restricted Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimiser au lieu de quitter l'application lorsque la fenêtre est fermée. Si cette option est activée, l'application ne sera fermée qu'en sélectionnant Quitter dans le menu. + + Asset Type + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL de tiers (p. ex. un explorateur de blocs) apparaissant dans l'onglet des transactions comme éléments du menu contextuel. %s dans l'URL est remplacé par le hachage de la transaction. Les URL multiples sont séparées par une barre verticale |. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Third party transaction URLs - URL de transaction d'un tiers + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Active command-line options that override above options: - Options de ligne de commande actives qui remplacent les options ci-dessus : + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Reset all client options to default. - Réinitialiser toutes les options du client aux valeurs par défaut. + + + + Warning: Invalid Raven address + - &Reset Options - &Réinitialiser les options + + Warning: Restricted Assets Reissuance requires an address + - &Network - &Réseau + + Valid Asset + - (0 = auto, <0 = leave that many cores free) - (0 = auto, < 0 = laisser ce nombre de cœurs inutilisés) + + Invalid: Asset name already in use + - W&allet - &Porte-monnaie + + Error: Asset Database not in sync + - Expert - Expert + + + %1 to %2 + - Enable coin &control features - Activer les fonctions de &contrôle des pièces + + Are you sure you want to send? + Etes-vous sûr de vouloir envoyer ? - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Si vous désactivé la dépense de la monnaie non confirmée, la monnaie d'une transaction ne peut pas être utilisée tant que cette transaction n'a pas reçu au moins une confirmation. Celai affecte aussi le calcul de votre solde. + + added as transaction fee + - &Spend unconfirmed change - &Dépenser la monnaie non confirmée + + Total Amount %1 + Montant Total %1 - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Ouvrir automatiquement le port du client Raven sur le routeur. Cela ne fonctionne que si votre routeur prend en charge l'UPnP et si la fonction est activée. + + or + - Map port using &UPnP - Mapper le port avec l'&UPnP + + Confirm send assets + Confirmez l'envoi d'actifs - Connect to the Raven network through a SOCKS5 proxy. - Se connecter au réseau Raven par un mandataire SOCKS5. + + Invalid: + - &Connect through SOCKS5 proxy (default proxy): - Se &connecter par un mandataire SOCKS5 (mandataire par défaut) : + + Copy + - Proxy &IP: - &IP du mandataire : + + Transaction ID Copied + - &Port: - &Port : + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Port of the proxy (e.g. 9050) - Port du mandataire (p. ex. 9050) + + Warning: Unknown change address + - Used for reaching peers via: - Utilisé pour rejoindre les pairs par : + + Confirm custom change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Indique si le mandataire SOCKS5 par défaut fourni est utilisé pour atteindre des pairs par ce type de réseau. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv4 - IPv4 + + (no label) + - IPv6 - IPv6 + + Pay only the required fee of %1 + + + + EditAddressDialog - Tor - Tor + + Edit Address + Modifier l'adresse - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Se connecter au réseau Raven au travers d'un mandataire SOCKS5 séparé pour les services cachés de Tor. + + &Label + É&tiquette - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Utiliser un mandataire SOCKS5 séparé pour atteindre les pairs grâce aux services cachés de Tor : + + The label associated with this address list entry + L'étiquette associée à cette entrée de la liste d'adresses - &Window - &Fenêtre + + The address associated with this address list entry. This can only be modified for sending addresses. + L'adresse associée à cette entrée de la liste d'adresses. Cela ne peut être modifié que pour les adresses d'envoi. - &Hide the icon from the system tray. - &Cacher l'icône dans la zone de notification. + + &Address + &Adresse - Hide tray icon - Cacher l'icône de la zone de notification + + New receiving address + Nouvelle adresse de réception - Show only a tray icon after minimizing the window. - N'afficher qu'une icône dans la zone de notification après minimisation. + + New sending address + Nouvelle adresse d’envoi - &Minimize to the tray instead of the taskbar - &Minimiser dans la zone de notification au lieu de la barre des tâches + + Edit receiving address + Modifier l’adresse de réception - M&inimize on close - M&inimiser lors de la fermeture + + Edit sending address + Modifier l’adresse d'envoi - &Display - &Affichage + + The entered address "%1" is not a valid Raven address. + L'adresse saisie « %1 » n'est pas une adresse Raven valide. - User Interface &language: - &Langue de l'interface utilisateur : + + The entered address "%1" is already in the address book. + L’adresse saisie « %1 » est déjà présente dans le carnet d'adresses. - The user interface language can be set here. This setting will take effect after restarting %1. - La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de %1. + + Could not unlock wallet. + Impossible de déverrouiller le porte-monnaie. - &Unit to show amounts in: - &Unité d'affichage des montants : + + New key generation failed. + Échec de génération de la nouvelle clé. + + + FreespaceChecker - Choose the default subdivision unit to show in the interface and when sending coins. - Choisir la sous-unité par défaut d'affichage dans l'interface et lors d'envoi de pièces. + + A new data directory will be created. + Un nouveau répertoire de données sera créé. - Whether to show coin control features or not. - Afficher ou non les fonctions de contrôle des pièces. + + name + nom - &OK - &OK + + Directory already exists. Add %1 if you intend to create a new directory here. + Le répertoire existe déjà. Ajouter %1 si vous comptez créer un nouveau répertoire ici. - &Cancel - A&nnuler + + Path already exists, and is not a directory. + Le chemin existe déjà et n'est pas un répertoire. - default - par défaut + + Cannot create data directory here. + Impossible de créer un répertoire de données ici. + + + + FreezeAddress + + + Frame + - none - aucune + + Restricted Asset: + - Confirm options reset - Confirmer la réinitialisation des options + + Address: + - Client restart required to activate changes. - Le redémarrage du client est exigé pour activer les changements. + + Custom Change Address + - Client will be shut down. Do you want to proceed? - Le client sera arrêté. Voulez-vous continuer ? + + IPFS / Hash: + - This change would require a client restart. - Ce changement demanderait un redémarrage du client. + + Single Address Options + - The supplied proxy address is invalid. - L'adresse de serveur mandataire fournie est invalide. + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + - OverviewPage + GUIUtil::SyncWarningMessage - Form - Formulaire + + Warning: transaction while syncing wallet! + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Les informations affichées peuvent être obsolètes. Votre porte-monnaie est automatiquement synchronisé avec le réseau Raven lorsque la connexion s'établit, or ce processus n'est pas encore terminé. + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - Watch-only: - Juste-regarder : + + version + version - Available: - Disponible : + + + (%1-bit) + (%1-bit) - Your current spendable balance - Votre solde actuel disponible + + About %1 + À propos de %1 - Pending: - En attente : + + Command-line options + Options de ligne de commande - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total des transactions qui doivent encore être confirmées et qui ne sont pas prises en compte dans le solde disponible + + Usage: + Utilisation : - Immature: - Immature : + + command-line options + options de ligne de commande - Mined balance that has not yet matured - Le solde miné n'est pas encore mûr + + UI Options: + Options de l'IU : - Balances - Soldes + + Choose data directory on startup (default: %u) + Choisir un répertoire de données au démarrage (par défaut : %u) - Total: - Total : + + Set language, for example "de_DE" (default: system locale) + Définir la langue, par exemple « fr_CA » (par défaut : la langue du système) - Your current total balance - Votre solde total actuel + + Start minimized + Démarrer minimisé - Your current balance in watch-only addresses - Votre balance actuelle en adresses juste-regarder + + Set SSL root certificates for payment request (default: -system-) + Définir les certificats SSL racine pour les requêtes de paiement (par défaut : -system-) - Spendable: - Disponible : + + Show splash screen on startup (default: %u) + Afficher l'écran d'accueil au démarrage (par défaut : %u) - Recent transactions - Transactions récentes + + Reset all settings changed in the GUI + Réinitialiser tous les paramètres changés dans l'IUG + + + + Intro + + + Welcome + Bienvenue + + + + Welcome to %1. + Bienvenue à %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Puisque c'est la première fois que le logiciel est lancé, vous pouvez choisir où %1 stockera ses données. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + Quand vous allez cliquer sur OK, %1 va commencer à télécharger et à traiter la blockchain complète %4 (%2GB) en commençant par les plus anciennes transactions dans %3 quand %4 a été initialement lancé. + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + Cette synchronisation initiale est très longue et peut révéler des problèmes matériels de votre ordinateur qui étaient passés inaperçus auparavant. Chaque fois que vous exécuterez %1, il poursuivra le téléchargement là où il s'est arrêté. + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + Si vous avez choisi de limiter le stockage de la chaîne de blocs (élagage), les données historiques doivent toujours être téléchargées et traitées, mais elles seront supprimées par la suite afin de maintenir une faible utilisation du disque. + + + + Use the default data directory + Utiliser le répertoire de données par défaut + + + + Use a custom data directory: + Utiliser un répertoire de données personnalisé : + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + Au moins %1 GB de données seront stockées dans ce répertoire, et elles augmenteront avec le temps. + + + + Approximately %1 GB of data will be stored in this directory. + Environ %1 Go de données seront stockées dans ce répertoire. + + + + %1 will download and store a copy of the Raven block chain. + %1 va télécharger et stocker une copie de la blockchain de Ravencoin. + + + + The wallet will also be stored in this directory. + Le portefeuille sera également stocké dans ce répertoire. + + + + Error: Specified data directory "%1" cannot be created. + Erreur : le répertoire de données spécifié « %1 » ne peut pas être créé. + + + + Error + Erreur + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulaire + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Les transactions récentes ne sont peut-être pas encore visibles et par conséquent le solde de votre porte-monnaie est peut-être erroné. Cette information sera juste quand votre porte-monnaie aura fini de se synchroniser avec le réseau Raven, comme décrit ci-dessous. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Toute tentative de dépense de ravens affectés par des transactions qui ne sont pas encore affichées ne sera pas acceptée par le réseau. + + + + Number of blocks left + Nombre de blocs restants + + + + + + Unknown... + Inconnu... + + + + Last block time + Estampille temporelle du dernier bloc + + + + Progress + Progression + + + + Progress increase per hour + Avancement de la progression par heure + + + + + calculating... + calcul en cours... + + + + Estimated time left until synced + Temps estimé avant la fin de la synchronisation + + + + Hide + Cacher + + + + Unknown. Syncing Headers (%1)... + Inconnu. Synchronisation des en-têtes (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + Autre + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Ouvrir une URI + + + + Open payment request from URI or file + Ouvrir une demande de paiement à partir d'une URI ou d'un fichier + + + + URI: + URI : + + + + Select payment request file + Choisir le fichier de demande de paiement + + + + Select payment request file to open + Choisir le fichier de demande de paiement à ouvrir + + + + OptionsDialog + + + Options + Options + + + + &Main + &Principaux + + + + Automatically start %1 after logging in to the system. + Démarrer %1 automatiquement après avoir ouvert une session sur l'ordinateur. + + + + &Start %1 on system login + &Démarrer %1 lors de l'ouverture d'une session + + + + Size of &database cache + Taille du cache de la base de &données + + + + MB + Mo + + + + Number of script &verification threads + Nombre de fils de &vérification de script + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adresse IP du mandataire (p. ex. IPv4 : 127.0.0.1 / IPv6 : ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + Indique si le proxy SOCKS5 par défaut fourni est utilisé pour atteindre les pairs via ce type de réseau. + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + &Cacher l'icône + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimiser au lieu de quitter l'application lorsque la fenêtre est fermée. Si cette option est activée, l'application ne sera fermée qu'en sélectionnant Quitter dans le menu. + + + + &Currency Unit: + &Device: + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL de tiers (p. ex. un explorateur de blocs) apparaissant dans l'onglet des transactions comme éléments du menu contextuel. %s dans l'URL est remplacé par le hachage de la transaction. Les URL multiples sont séparées par une barre verticale |. + + + + Active command-line options that override above options: + Options de ligne de commande actives qui remplacent les options ci-dessus : + + + + Open the %1 configuration file from the working directory. + Ouvrez le fichier de configuration %1 à partir du répertoire de travail. + + + + Open Configuration File + Ouvrir le fichier de configuration + + + + Reset all client options to default. + Réinitialiser toutes les options du client aux valeurs par défaut. + + + + &Reset Options + &Réinitialiser les options + + + + &Network + &Réseau + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, < 0 = laisser ce nombre de cœurs inutilisés) + + + + W&allet + &Porte-monnaie + + + + Expert + Expert + + + + Enable coin &control features + Activer les fonctions de &contrôle des pièces + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Si vous désactivé la dépense de la monnaie non confirmée, la monnaie d'une transaction ne peut pas être utilisée tant que cette transaction n'a pas reçu au moins une confirmation. Celai affecte aussi le calcul de votre solde. + + + + &Spend unconfirmed change + &Dépenser la monnaie non confirmée + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Ouvrir automatiquement le port du client Raven sur le routeur. Cela ne fonctionne que si votre routeur prend en charge l'UPnP et si la fonction est activée. + + + + Map port using &UPnP + Mapper le port avec l'&UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + Autoriser les connexions entrantes + + + + Connect to the Raven network through a SOCKS5 proxy. + Se connecter au réseau Raven par un mandataire SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + Se &connecter par un mandataire SOCKS5 (mandataire par défaut) : + + + + + Proxy &IP: + &IP du mandataire : + + + + + &Port: + &Port : + + + + + Port of the proxy (e.g. 9050) + Port du mandataire (p. ex. 9050) + + + + Used for reaching peers via: + Utilisé pour rejoindre les pairs par : + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Se connecter au réseau Raven au travers d'un mandataire SOCKS5 séparé pour les services cachés de Tor. + + + + &Window + &Fenêtre + + + + Show only a tray icon after minimizing the window. + N'afficher qu'une icône dans la zone de notification après minimisation. + + + + &Minimize to the tray instead of the taskbar + &Minimiser dans la zone de notification au lieu de la barre des tâches + + + + M&inimize on close + M&inimiser lors de la fermeture + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Affichage + + + + User Interface &language: + &Langue de l'interface utilisateur : + + + + The user interface language can be set here. This setting will take effect after restarting %1. + La langue de l'interface utilisateur peut être définie ici. Ce réglage sera pris en compte après redémarrage de %1. + + + + &Unit to show amounts in: + &Unité d'affichage des montants : + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Choisir la sous-unité par défaut d'affichage dans l'interface et lors d'envoi de pièces. + + + + Whether to show coin control features or not. + Afficher ou non les fonctions de contrôle des pièces. + + + + &Third party transaction URLs + + + + + + Reset + Réinitialiser + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + A&nnuler + + + + default + par défaut + + + + none + aucune + + + + Confirm options reset + Confirmer la réinitialisation des options + + + + + Client restart required to activate changes. + Le redémarrage du client est exigé pour activer les changements. + + + + Client will be shut down. Do you want to proceed? + Le client sera arrêté. Voulez-vous continuer ? + + + + Configuration options + Options de configuration + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + Le fichier de configuration est utilisé pour spécifier des options utilisateur avancées qui remplacent les paramètres de l'interface graphique. De plus, toutes les options de la ligne de commande remplacent ce fichier de configuration. + + + + Error + Erreur + + + + The configuration file could not be opened. + Le fichier de configuration ne peut pas être ouvert. + + + + This change would require a client restart. + Ce changement demanderait un redémarrage du client. + + + + The supplied proxy address is invalid. + L'adresse de serveur mandataire fournie est invalide. + + + + OverviewPage + + + Form + Formulaire + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Les informations affichées peuvent être obsolètes. Votre porte-monnaie est automatiquement synchronisé avec le réseau Raven lorsque la connexion s'établit, or ce processus n'est pas encore terminé. + + + + Watch-only: + Juste-regarder : + + + + Available: + Disponible : + + + + Your current spendable balance + Votre solde actuel disponible + + + + Pending: + En attente : + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total des transactions qui doivent encore être confirmées et qui ne sont pas prises en compte dans le solde disponible + + + + Immature: + Immature : + + + + Mined balance that has not yet matured + Le solde miné n'est pas encore mûr + + + + Total: + Total : + + + + Your current total balance + Votre solde total actuel + + + + RVN Balances + Balance RVN + + + + Your current balance in watch-only addresses + Votre balance actuelle en adresses juste-regarder + + + + Spendable: + Disponible : + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transactions récentes + + + + Unconfirmed transactions to watch-only addresses + Transactions non confirmées vers des adresses juste-regarder + + + + Mined balance in watch-only addresses that has not yet matured + Le solde miné dans des adresses juste-regarder, qui n'est pas encore mûr + + + + Current total balance in watch-only addresses + Solde total actuel dans des adresses juste-regarder + + + + Send Asset + Envoyez l'Actif + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Erreur de demande de paiement + + + + Cannot start raven: click-to-pay handler + Impossible de démarrer le gestionnaire de cliquer-pour-payer raven: + + + + + + URI handling + Gestion des URI + + + + Payment request fetch URL is invalid: %1 + L'URL de récupération de la demande de paiement est invalide : %1 + + + + Invalid payment address %1 + Adresse de paiement invalide %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + L'URI ne peut pas être analysée ! Cela peut être causé par une adresse Raven invalide ou par des paramètres d'URI mal formés. + + + + Payment request file handling + Gestion des fichiers de demande de paiement + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Le fichier de demande de paiement ne peut pas être lu ! Cela peut être causé par un fichier de demande de paiement invalide. + + + + + + + + + Payment request rejected + Demande de paiement rejetée + + + + Payment request network doesn't match client network. + Le réseau de la demande de paiement ne correspond pas au réseau du client. + + + + Payment request expired. + La demande de paiement a expiré + + + + Payment request is not initialized. + La demande de paiement n'est pas initialisée. + + + + Unverified payment requests to custom payment scripts are unsupported. + Les demandes de paiements non vérifiées vers des scripts de paiement personnalisés ne sont pas prises en charge. + + + + + Invalid payment request. + Demande de paiement invalide. + + + + Requested payment amount of %1 is too small (considered dust). + Le paiement demandé d'un montant de %1 est trop faible (considéré comme de la poussière). + + + + Refund from %1 + Remboursement de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La demande de paiement %1 est trop grande (%2 octets, %3 octets permis). + + + + Error communicating with %1: %2 + Erreur de communication avec %1 : %2 + + + + Payment request cannot be parsed! + La demande de paiement ne peut pas être analysée ! + + + + Bad response from server %1 + Mauvaise réponse du serveur %1 + + + + Network request error + Erreur de demande réseau + + + + Payment acknowledged + Le paiement a été confirmé + + + + PeerTableModel + + + User Agent + Agent utilisateur + + + + Node/Service + Nœud/service + + + + NodeId + ID de nœud + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Montant + + + + Enter a Raven address (e.g. %1) + Saisir une adresse Raven (p. ex. %1) + + + + %1 d + %1 j + + + + %1 h + %1 h + + + + %1 m + %1 min + + + + + %1 s + %1 s + + + + None + Aucun + + + + N/A + N.D. + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 et %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ne s'est pas encore arrêté en toute sécurité... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Erreur : le répertoire de données indiqué « %1 » n'existe pas. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erreur : impossible d'analyser le fichier de configuration : %1. N’utiliser que la syntaxe clef=valeur. + + + + Error: %1 + Erreur : %1 + + + + QRImageWidget + + + &Save Image... + &Enregistrer l'image... + + + + &Copy Image + &Copier l'image + + + + Save QR Code + Enregistrer le code QR + + + + PNG Image (*.png) + Image PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N.D. + + + + Client version + Version du client + + + + &Information + &Informations + + + + Debug window + Fenêtre de débogage + + + + General + Général + + + + Using BerkeleyDB version + Version BerkeleyDB utilisée + + + + Datadir + Datadir + + + + Startup time + Heure de démarrage + + + + Network + Réseau + + + + Name + Nom + + + + Number of connections + Nombre de connexions + + + + Block chain + Chaîne de blocs + + + + Current number of blocks + Nombre actuel de blocs + + + + Memory Pool + Réserve de mémoire + + + + Current number of transactions + Nombre actuel de transactions + + + + Memory usage + Utilisation de la mémoire + + + + &Reset + Réinitialisation + + + + + Received + Reçu + + + + + Sent + Envoyé + + + + &Peers + &Pairs + + + + Banned peers + Pairs bannis + + + + + + Select a peer to view detailed information. + Choisir un pair pour voir l'information détaillée. + + + + Whitelisted + Dans la liste blanche + + + + Direction + Direction + + + + Version + Version + + + + Starting Block + Bloc de départ + + + + Synced Headers + En-têtes synchronisés + + + + Synced Blocks + Blocs synchronisés + + + + &Wallet Repair + + + + + Wallet Repair Options + Options de réparation du portefeuille + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent utilisateur + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Ouvrir le fichier journal de débogage de %1 à partir du répertoire de données actuel. Cela peut prendre quelques secondes pour les fichiers journaux de grande taille. + + + + Decrease font size + Diminuer la taille de police + + + + Increase font size + Augmenter la taille de police + + + + Services + Services + + + + Ban Score + Pointage des bannissements + + + + Connection Time + Temps de connexion + + + + Last Send + Dernier envoi + + + + Last Receive + Dernière réception + + + + Ping Time + Temps de ping + + + + The duration of a currently outstanding ping. + La durée d'un ping en cours. + + + + Ping Wait + Attente du ping + + + + Min Ping + Ping min. + + + + Time Offset + Décalage temporel + + + + Last block time + Estampille temporelle du dernier bloc + + + + &Open + &Ouvrir + + + + &Console + &Console + + + + &Network Traffic + Trafic &réseau + + + + Totals + Totaux + + + + In: + Entrant : + + + + Out: + Sortant : + + + + Debug log file + Fichier journal de débogage + + + + Clear console + Effacer la console + + + + 1 &hour + 1 &heure + + + + 1 &day + 1 &jour + + + + 1 &week + 1 &semaine + + + + 1 &year + 1 &an + + + + &Disconnect + &Déconnecter + + + + + + + Ban for + Bannir pendant + + + + &Unban + &Réhabiliter + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Bienvenue sur la console RPC de %1. + + + + Type <b>help</b> for an overview of available commands. + Taper <b>help</b> pour afficher une vue générale des commandes proposées. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + Utilisez les flèches haut et bas pour naviguer dans l'historique, et %1 pour effacer l'écran. + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + AVERTISSEMENT : Des tentatives d'escroqueries demandant aux utilisateurs de taper des commandes ici afin de voler le contenu de leur portefeuille ont été constatées. N'utilisez pas cette console sans comprendre pleinement les conséquences d'une commande. + + + + Network activity disabled + L'activité réseau est désactivée. + + + + (node id: %1) + (ID de nœud : %1) + + + + via %1 + par %1 + + + + + never + jamais + + + + Inbound + Entrant + + + + Outbound + Sortant + + + + Yes + Oui + + + + No + Non + + + + + Unknown + Inconnu + + + + RavenGUI + + + Sign &message... + Signer un &message... + + + + Synchronizing with network... + Synchronisation avec le réseau… + + + + &Overview + &Vue d'ensemble + + + + Node + Nœud + + + + Show general overview of wallet + Afficher une vue d’ensemble du porte-monnaie + + + + &Transactions + &Transactions + + + + Browse transaction history + Parcourir l'historique transactionnel + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + &Transférer les actifs + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + A venir prochainement + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Q&uitter + + + + Quit application + Quitter l’application + + + + &About %1 + À &propos de %1 + + + + Show information about %1 + Afficher des informations à propos de %1 + + + + About &Qt + À propos de &Qt + + + + Show information about Qt + Afficher des informations sur Qt + + + + &Options... + &Options… + + + + Modify configuration options for %1 + Modifier les options de configuration de %1 + + + + &Encrypt Wallet... + &Chiffrer le porte-monnaie... + + + + &Backup Wallet... + Sauvegarder le &porte-monnaie... + + + + &Change Passphrase... + &Changer la phrase de passe... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adresses d'&envoi... + + + + &Receiving addresses... + Adresses de &réception... + + + + Open &URI... + Ouvrir une &URI... + + + + &Wallet + + + + + Ravencoin Market Price + Ravencoin Prix du Marché + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Cliquer pour désactiver l'activité réseau. + + + + Network activity disabled. + L'activité réseau est désactivée. + + + + Click to enable network activity again. + Cliquer pour réactiver l'activité réseau. + + + + Syncing Headers (%1%)... + Synchronisation des en-têtes (%1)... + + + + Reindexing blocks on disk... + Réindexation des blocs sur le disque... + + + + Send coins to a Raven address + Envoyer des pièces à une adresse Raven + + + + Backup wallet to another location + Sauvegarder le porte-monnaie vers un autre emplacement + + + + Change the passphrase used for wallet encryption + Modifier la phrase de passe utilisée pour le chiffrement du porte-monnaie + + + + Open debugging and diagnostic console + Ouvrir une console de débogage et de diagnostic + + + + &Verify message... + &Vérifier un message... + + + + Raven + Raven + + + + Wallet + Porte-monnaie + + + + &Send + &Envoyer + + + + &Receive + &Recevoir + + + + &Show / Hide + &Afficher / cacher + + + + Show or hide the main Window + Afficher ou cacher la fenêtre principale + + + + Encrypt the private keys that belong to your wallet + Chiffrer les clés privées qui appartiennent à votre porte-monnaie + + + + Sign messages with your Raven addresses to prove you own them + Signer les messages avec vos adresses Raven pour prouver que vous les détenez + + + + Verify messages to ensure they were signed with specified Raven addresses + Vérifier les messages pour s'assurer qu'ils ont été signés avec les adresses Raven spécifiées + + + + &File + &Fichier + + + + &Help + &Aide + + + + Request payments (generates QR codes and raven: URIs) + Demander des paiements (génère des codes QR et des URI raven:) + + + + Show the list of used sending addresses and labels + Afficher la liste d'adresses d'envoi et d'étiquettes utilisées + + + + Show the list of used receiving addresses and labels + Afficher la liste d'adresses de réception et d'étiquettes utilisées + + + + Open a raven: URI or payment request + Ouvrir une URI raven: ou une demande de paiement + + + + &Command-line options + Options de ligne de &commande + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexation des blocs sur le disque... + + + + Processing blocks on disk... + Traitement des blocs sur le disque... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + en retard de %1 + + + + Last received block was generated %1 ago. + Le dernier bloc reçu avait été généré il y a %1. + + + + Transactions after this will not yet be visible. + Les transactions suivantes ne seront pas déjà visibles. + + + + Error + Erreur + + + + Warning + Avertissement + + + + Information + Information + + + + Up to date + À jour + + + + Show the %1 help message to get a list with possible Raven command-line options + Afficher le message d'aide de %1 pour obtenir la liste des options de ligne de commande Raven possibles. + + + + %1 client + Client %1 + + + + Connecting to peers... + Connexion aux pairs... + + + + Catching up... + Rattrapage… + + + + Date: %1 + + Date : %1 + + + + + + Amount: %1 + + Montant : %1 + + + + + Type: %1 + + Type : %1 + + + + + Label: %1 + + Étiquette : %1 + + + + + Address: %1 + + Adresse : %1 + + + + + Sent transaction + Transaction envoyée + + + + Incoming transaction + Transaction entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + La génération de clé HD est <b>activée</b> + + + + HD key generation is <b>disabled</b> + La génération de clé HD est <b>désactivée</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Le porte-monnaie est <b>chiffré</b> et actuellement <b>verrouillé</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Une erreur fatale est survenue. Raven ne peut plus continuer en toute sécurité et va s'arrêter. + + + + ReceiveCoinsDialog + + + &Amount: + &Montant : + + + + &Label: + &Étiquette : + + + + &Message: + M&essage : + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Réutiliser une adresse de réception utilisée précédemment. Réutiliser une adresse comporte des problèmes de sécurité et de confidentialité. À ne pas utiliser, sauf pour générer une demande de paiement faite au préalable. + + + + R&euse an existing receiving address (not recommended) + Ré&utiliser une adresse de réception existante (non recommandé) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un message facultatif à joindre à la demande de paiement et qui sera affiché à l'ouverture de celle-ci. Note : le message ne sera pas envoyé avec le paiement par le réseau Raven. + + + + + An optional label to associate with the new receiving address. + Un étiquette facultative à associer à la nouvelle adresse de réception. + + + + Use this form to request payments. All fields are <b>optional</b>. + Utiliser ce formulaire pour demander des paiements. Tous les champs sont <b>facultatifs</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Un montant facultatif à demander. Ne rien saisir ou un zéro pour ne pas demander de montant spécifique. + + + + Clear all fields of the form. + Effacer tous les champs du formulaire. + + + + Clear + Effacer + + + + Requested payments history + Historique des paiements demandés + + + + &Request payment + &Demander un paiement + + + + Show the selected request (does the same as double clicking an entry) + Afficher la demande choisie (comme double-cliquer sur une entrée) + + + + Show + Afficher + + + + Remove the selected entries from the list + Retirer les entrées sélectionnées de la liste + + + + Remove + Retirer + + + + Copy URI + Copier l'URI + + + + Copy label + Copier l’étiquette + + + + Copy message + Copier le message + + + + Copy amount + Copier le montant + + + + ReceiveRequestDialog + + + QR Code + Code QR + + + + Copy &URI + Copier l'&URI + + + + Copy &Address + Copier l'&adresse + + + + &Save Image... + &Enregistrer l'image... + + + + Request payment to %1 + Demande de paiement à %1 + + + + Payment information + Informations de paiement + + + + URI + URI + + + + Address + Adresse + + + + Amount + Montant + + + + Label + Étiquette - Unconfirmed transactions to watch-only addresses - Transactions non confirmées vers des adresses juste-regarder + + Message + Message - Mined balance in watch-only addresses that has not yet matured - Le solde miné dans des adresses juste-regarder, qui n'est pas encore mûr + + Resulting URI too long, try to reduce the text for label / message. + L'URI résultante est trop longue. Essayez de réduire le texte de l'étiquette ou du message. - Current total balance in watch-only addresses - Solde total actuel dans des adresses juste-regarder + + Error encoding URI into QR Code. + Erreur d'encodage de l'URI en code QR. - PaymentServer + RecentRequestsTableModel - Payment request error - Erreur de demande de paiement + + Date + Date - Cannot start raven: click-to-pay handler - Impossible de démarrer le gestionnaire de cliquer-pour-payer raven: + + Label + Étiquette - URI handling - Gestion des URI + + Message + Message - Payment request fetch URL is invalid: %1 - L'URL de récupération de la demande de paiement est invalide : %1 + + (no label) + (aucune étiquette) - Invalid payment address %1 - Adresse de paiement invalide %1 + + (no message) + (aucun message) - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - L'URI ne peut pas être analysée ! Cela peut être causé par une adresse Raven invalide ou par des paramètres d'URI mal formés. + + (no amount requested) + (aucun montant demandé) - Payment request file handling - Gestion des fichiers de demande de paiement + + Requested + Demandée + + + ReissueAssetDialog - Payment request file cannot be read! This can be caused by an invalid payment request file. - Le fichier de demande de paiement ne peut pas être lu ! Cela peut être causé par un fichier de demande de paiement invalide. + + Coin Control Features + - Payment request rejected - Demande de paiement rejetée + + Inputs... + - Payment request network doesn't match client network. - Le réseau de la demande de paiement ne correspond pas au réseau du client. + + automatically selected + - Payment request expired. - La demande de paiement a expiré + + Insufficient funds! + - Payment request is not initialized. - La demande de paiement n'est pas initialisée. + + + Quantity: + - Unverified payment requests to custom payment scripts are unsupported. - Les demandes de paiements non vérifiées vers des scripts de paiement personnalisés ne sont pas prises en charge. + + Bytes: + - Invalid payment request. - Demande de paiement invalide. + + Amount: + - Requested payment amount of %1 is too small (considered dust). - Le paiement demandé d'un montant de %1 est trop faible (considéré comme de la poussière). + + Dust: + - Refund from %1 - Remboursement de %1 + + Fee: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - La demande de paiement %1 est trop grande (%2 octets, %3 octets permis). + + After Fee: + - Error communicating with %1: %2 - Erreur de communication avec %1 : %2 + + Change: + - Payment request cannot be parsed! - La demande de paiement ne peut pas être analysée ! + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Bad response from server %1 - Mauvaise réponse du serveur %1 + + Custom change address + - Network request error - Erreur de demande réseau + + + Reissue Asset + - Payment acknowledged - Le paiement a été confirmé + + Select an asset to reissue: + - - - PeerTableModel - User Agent - Agent utilisateur + + Address: + - Node/Service - Nœud/service + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - NodeId - ID de nœud + + Verifier String: + - Ping - Ping + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - - - QObject - Amount - Montant + + Warning: + Attention: - Enter a Raven address (e.g. %1) - Saisir une adresse Raven (p. ex. %1) + + The number of assets that will be created + - %1 d - %1 j + + Unit: + - %1 h - %1 h + + e.g. 1.00000000 + ex: 1.00000000 - %1 m - %1 min + + If the owner of this asset will be able to issue more assets in the future + - %1 s - %1 s + + Reissuable + - None - Aucun + + Change IPFS/Txid Hash + - N/A - N.D. + + The ipfs/txid hash that contains information about the asset + - %1 ms - %1 ms - - - %n second(s) - %n seconde%n secondes - - - %n minute(s) - %n minute%n minutes - - - %n hour(s) - %n heure%n heures - - - %n day(s) - %n jour%n jours - - - %n week(s) - %n semaine%n semaines + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - %1 and %2 - %1 et %2 - - - %n year(s) - %n an%n ans + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ne s'est pas encore arrêté en toute sécurité... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Erreur : le répertoire de données indiqué « %1 » n'existe pas. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Erreur : impossible d'analyser le fichier de configuration : %1. N’utiliser que la syntaxe clef=valeur. + + Transaction Fee: + - Error: %1 - Erreur : %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Enregistrer l'image... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Copier l'image + + Warning: Fee estimation is currently not possible. + - Save QR Code - Enregistrer le code QR + + collapse fee-settings + - PNG Image (*.png) - Image PNG (*.png) + + Hide + - - - RPCConsole - N/A - N.D. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Version du client + + per kilobyte + - &Information - &Informations + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Fenêtre de débogage + + (read the tooltip) + - General - Général + + Recommended: + - Using BerkeleyDB version - Version BerkeleyDB utilisée + + Cus&tom: + - Datadir - Datadir + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Heure de démarrage + + Confirmation time target: + - Network - Réseau + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Nom + + Request Replace-By-Fee + - Number of connections - Nombre de connexions + + Clear + - Block chain - Chaîne de blocs + + Balance: + - Current number of blocks - Nombre actuel de blocs + + 123.456 RVN + 123.456 RVN - Memory Pool - Réserve de mémoire + + Copy quantity + - Current number of transactions - Nombre actuel de transactions + + Copy amount + - Memory usage - Utilisation de la mémoire + + Copy fee + - Received - Reçu + + Copy after fee + - Sent - Envoyé + + Copy bytes + - &Peers - &Pairs + + Copy dust + - Banned peers - Pairs bannis + + Copy change + Copiez la modification - Select a peer to view detailed information. - Choisir un pair pour voir l'information détaillée. + + Select an asset to reissue.. + - Whitelisted - Dans la liste blanche + + Select the asset you want to reissue. + - Direction - Direction + + %1 (%2 blocks) + - Version - Version + + Cost + - Starting Block - Bloc de départ + + Asset data couldn't be found + - Synced Headers - En-têtes synchronisés + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Blocs synchronisés + + Invalid Raven Destination Address + - User Agent - Agent utilisateur + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Ouvrir le fichier journal de débogage de %1 à partir du répertoire de données actuel. Cela peut prendre quelques secondes pour les fichiers journaux de grande taille. + + + Warning: Invalid Raven address + - Decrease font size - Diminuer la taille de police + + + Yes + - Increase font size - Augmenter la taille de police + + No + - Services - Services + + + Name + - Ban Score - Pointage des bannissements + + + Total Quantity + - Connection Time - Temps de connexion + + + Units + - Last Send - Dernier envoi + + + Can Reisssue + - Last Receive - Dernière réception + + + + IPFS Hash + - Ping Time - Temps de ping + + + + Txid Hash + - The duration of a currently outstanding ping. - La durée d'un ping en cours. + + Verifier String + - Ping Wait - Attente du ping + + + Current Verifier String + - Min Ping - Ping min. + + Please select a asset from the menu to display the assets current settings + - Time Offset - Décalage temporel + + Please select a asset from the menu to display the assets updated settings + - Last block time - Estampille temporelle du dernier bloc + + Current Quantity + - &Open - &Ouvrir + + Current Units + - &Console - &Console + + Can Reissue + - &Network Traffic - Trafic &réseau + + Unknown data hash type + - &Clear - &Effacer + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totaux + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Entrant : + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Sortant : + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Fichier journal de débogage + + + %1 to %2 + - Clear console - Effacer la console + + Are you sure you want to send? + Etes-vous sûr de vouloir envoyer ? - 1 &hour - 1 &heure + + added as transaction fee + - 1 &day - 1 &jour + + Total Amount %1 + - 1 &week - 1 &semaine + + or + ou - 1 &year - 1 &an + + Confirm reissue assets + - &Disconnect - &Déconnecter + + Copy + Copier: - Ban for - Bannir pendant + + Transaction ID Copied + - &Unban - &Réhabiliter + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Bienvenue sur la console RPC de %1. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Utiliser les touches de déplacement pour naviguer dans l'historique et <b>Ctrl-L</b> pour effacer l'écran. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Taper <b>help</b> pour afficher une vue générale des commandes proposées. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - AVERTISSEMENT : des fraudeurs sont réputés être à l'oeuvre, demandant aux utilisateurs de taper des commandes ici, et dérobant le contenu de leurs porte-monnaie. Ne pas utiliser cette console sans une compréhension parfaite des conséquences d'une commande. + + (no label) + - Network activity disabled - L'activité réseau est désactivée. + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 o + + Send Coins + Envoyer les pièces - %1 KB - %1 Ko + + Asset Balances + - %1 MB - %1 Mo + + + Search + - %1 GB - %1 Go + + Address List + - (node id: %1) - (ID de nœud : %1) + + Balance: + - via %1 - par %1 + + + Failed to create a change address + - never - jamais + + Failed to generate the correct transaction. Please try again + - Inbound - Entrant + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Sortant + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Oui + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Non + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Inconnu + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - &Montant : + + + Total Amount %1 + - &Label: - &Étiquette : + + + or + ou - &Message: - M&essage : + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Réutiliser une adresse de réception utilisée précédemment. Réutiliser une adresse comporte des problèmes de sécurité et de confidentialité. À ne pas utiliser, sauf pour générer une demande de paiement faite au préalable. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - Ré&utiliser une adresse de réception existante (non recommandé) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un message facultatif à joindre à la demande de paiement et qui sera affiché à l'ouverture de celle-ci. Note : le message ne sera pas envoyé avec le paiement par le réseau Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Un étiquette facultative à associer à la nouvelle adresse de réception. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Utiliser ce formulaire pour demander des paiements. Tous les champs sont <b>facultatifs</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Un montant facultatif à demander. Ne rien saisir ou un zéro pour ne pas demander de montant spécifique. + + This is an asset payment + Ceci est un paiement par Actif - Clear all fields of the form. - Effacer tous les champs du formulaire. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Effacer + + + + Memo: + - Requested payments history - Historique des paiements demandés + + Amount: + - &Request payment - &Demander un paiement + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Afficher la demande choisie (comme double-cliquer sur une entrée) + + &Label: + - Show - Afficher + + Asset: + Actif: - Remove the selected entries from the list - Retirer les entrées sélectionnées de la liste + + The Raven address to send the payment to + - Remove - Retirer + + Choose previously used address + - Copy URI - Copier l'URI + + Alt+A + - Copy label - Copier l’étiquette + + Paste address from clipboard + - Copy message - Copier le message + + Alt+P + - Copy amount - Copier le montant + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Code QR + + Message: + - Copy &URI - Copier l'&URI + + Transfer &To: + - Copy &Address - Copier l'&adresse + + Transfer Administrator Asset + - &Save Image... - &Enregistrer l'image... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Demande de paiement à %1 + + This is an unauthenticated payment request. + - Payment information - Informations de paiement + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adresse + + This is an authenticated payment request. + - Amount - Montant + + Enter a label for this address to add it to your address book + - Label - Étiquette + + Select to view administrator assets to transfer + - Message - Message + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - L'URI résultante est trop longue. Essayez de réduire le texte de l'étiquette ou du message. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Erreur d'encodage de l'URI en code QR. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Date + + Failed to get asset metadata for: + - Label - Étiquette + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Message + + Failed to get asset outpoints from database + - (no label) - (aucune étiquette) + + Selected Balance + - (no message) - (aucun message) + + Wallet Balance + - (no amount requested) - (aucun montant demandé) + + Select an administrator asset to transfer + - Requested - Demandée + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Envoyer des pièces + Coin Control Features Fonctions de contrôle des pièces + Inputs... Entrants... + automatically selected choisi automatiquement + Insufficient funds! Fonds insuffisants ! + Quantity: Quantité : + Bytes: Octets : + Amount: Montant : + Fee: Frais : + After Fee: Après les frais : + Change: Monnaie : + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Si cette option est activée et l'adresse de monnaie est vide ou invalide, la monnaie sera envoyée vers une adresse nouvellement générée. + Si cette option est activée et l'adresse de monnaie est vide ou invalide, la monnaie sera envoyée vers une adresse nouvellement générée. + Custom change address Adresse personnalisée de monnaie + Transaction Fee: Frais de transaction : + Choose... Choisir... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + L'utilisation des frais de repli peut entraîner l'envoi d'une transaction dont la confirmation prendra plusieurs heures ou jours (voire jamais). Pensez à choisir vos frais manuellement ou attendez d'avoir validé la chaîne complète. + + + + Warning: Fee estimation is currently not possible. + Avertissement : L'estimation des frais n'est actuellement pas possible. + + + collapse fee-settings réduire les paramètres des frais + per kilobyte par kilo-octet - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. Si les frais personnalisés sont définis à 1 000 satoshis et que la transaction est seulement de 250 octets, donc le « par kilo-octet » ne paiera que 250 satoshis de frais, alors que le « total au moins » paiera 1 000 satoshis. Pour des transactions supérieures à un kilo-octet, les deux paieront par kilo-octets. + Hide Cacher - total at least - total au moins - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Il est correct de payer les frais minimum tant que le volume transactionnel est inférieur à l'espace dans les blocs. Mais soyez conscient que cela pourrait résulter en une transaction n'étant jamais confirmée une fois qu'il y aura plus de transactions que le réseau ne pourra en traiter. + Il est correct de payer les frais minimum tant que le volume transactionnel est inférieur à l'espace dans les blocs. Mais soyez conscient que cela pourrait résulter en une transaction n'étant jamais confirmée une fois qu'il y aura plus de transactions que le réseau ne pourra en traiter. + (read the tooltip) - (lire l'infobulle) + (lire l'infobulle) + Recommended: Recommandés : + Custom: Personnalisés : + (Smart fee not initialized yet. This usually takes a few blocks...) (Les frais intelligents ne sont pas encore initialisés. Cela prend habituellement quelques blocs...) - normal - normal + + Request Replace-By-Fee + - fast - rapide + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indique que l'expéditeur peut souhaiter remplacer cette transaction par une nouvelle transaction payant des frais plus élevés (avant d'être confirmée). + Send to multiple recipients at once Envoyer à plusieurs destinataires à la fois + Add &Recipient Ajouter un &destinataire + Clear all fields of the form. Effacer tous les champs du formulaire. + Dust: Poussière : + Confirmation time target: Estimation du délai de confirmation : + Clear &All &Tout effacer + Balance: Solde : + Confirm the send action - Confirmer l’action d'envoi + Confirmer l’action d'envoi + S&end E&nvoyer + Copy quantity Copier la quantité + Copy amount Copier le montant + Copy fee Copier les frais + Copy after fee Copier après les frais + Copy bytes Copier les octets + Copy dust Copier la poussière + Copy change Copier la monnaie + + %1 (%2 blocks) + %1 (%2 blocs) + + + + + + %1 to %2 %1 à %2 + Are you sure you want to send? Voulez-vous vraiment envoyer ? + added as transaction fee ajoutés comme frais de transaction + Total Amount %1 Montant total %1 + or ou + Confirm send coins Confirmer l’envoi de pièces + The recipient address is not valid. Please recheck. - L'adresse du destinataire est invalide. Veuillez la revérifier. + L'adresse du destinataire est invalide. Veuillez la revérifier. + The amount to pay must be larger than 0. Le montant à payer doit être supérieur à 0. + The amount exceeds your balance. Le montant dépasse votre solde. + The total exceeds your balance when the %1 transaction fee is included. Le montant dépasse votre solde lorsque les frais de transaction de %1 sont inclus. + Duplicate address found: addresses should only be used once each. - Adresse identique trouvée : chaque adresse ne devrait être utilisée qu'une fois. + Adresse identique trouvée : chaque adresse ne devrait être utilisée qu'une fois. + Transaction creation failed! Échec de création de la transaction ! + The transaction was rejected with the following reason: %1 La transaction a été rejetée pour la raison suivante : %1 + A fee higher than %1 is considered an absurdly high fee. Des frais supérieurs à %1 sont considérés comme ridiculement élevés. + Payment request expired. La demande de paiement a expiré - - %n block(s) - %n bloc%n blocs - + Pay only the required fee of %1 Payer seulement les frais exigés de %1 + Estimated to begin confirmation within %n block(s). - Il est estimé que la confirmation commencera dans %n bloc.Il est estimé que la confirmation commencera dans %n blocs. + + Warning: Invalid Raven address Avertissement : adresse Raven invalide + Warning: Unknown change address Avertissement : adresse de monnaie inconnue + Confirm custom change address - Confimer l'adresse personnalisée de monnaie + Confimer l'adresse personnalisée de monnaie + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - L'adresse que vous avez sélectionnée pour la monnaie ne fait pas partie de ce porte-monnaie. Les fonds de ce porte-monnaie peuvent en partie ou en totalité être envoyés vers cette adresse. Êtes-vous certain ? + L'adresse que vous avez sélectionnée pour la monnaie ne fait pas partie de ce porte-monnaie. Les fonds de ce porte-monnaie peuvent en partie ou en totalité être envoyés vers cette adresse. Êtes-vous certain ? + (no label) (aucune étiquette) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: &Montant : - Pay &To: - &Payer à : - - + &Label: É&tiquette : + Choose previously used address Choisir une adresse déjà utilisée + This is a normal payment. Ceci est un paiement normal. + The Raven address to send the payment to - L'adresse Raven à laquelle envoyer le paiement + L'adresse Raven à laquelle envoyer le paiement + Alt+A Alt+A + Paste address from clipboard - Coller l'adresse du presse-papiers + Coller l'adresse du presse-papiers + Alt+P Alt+P + + + Remove this entry Retirer cette entrée + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Les frais seront déduits du montant envoyé. Le destinataire recevra moins de ravens que le montant saisi dans le champ de montant. Si plusieurs destinataires sont sélectionnés, les frais seront partagés également.. + S&ubtract fee from amount S&oustraire les frais du montant + Message: Message : + + Send &To: + + + + This is an unauthenticated payment request. - Cette demande de paiement n'est pas authentifiée. + Cette demande de paiement n'est pas authentifiée. + + + + + Send to: + Envoyer à: + This is an authenticated payment request. Cette demande de paiement est authentifiée. + Enter a label for this address to add it to the list of used addresses - Saisir une étiquette pour cette adresse afin de l'ajouter à la liste d'adresses utilisées + Saisir une étiquette pour cette adresse afin de l'ajouter à la liste d'adresses utilisées + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Un message qui était joint à l'URI raven: et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Raven. - - - Pay To: - Payer à : + Un message qui était joint à l'URI raven: et qui sera stocké avec la transaction pour référence. Note : ce message ne sera pas envoyé par le réseau Raven. + + Memo: Mémo : + Enter a label for this address to add it to your address book Saisir une étiquette pour cette adresse afin de l’ajouter à votre carnet d’adresses @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes Oui @@ -2316,149 +5616,194 @@ ShutdownWindow + %1 is shutting down... Arrêt de %1... + Do not shut down the computer until this window disappears. - Ne pas éteindre l'ordinateur jusqu'à la disparition de cette fenêtre. + Ne pas éteindre l'ordinateur jusqu'à la disparition de cette fenêtre. SignVerifyMessageDialog + Signatures - Sign / Verify a Message Signatures - Signer / vérifier un message + &Sign Message &Signer un message + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Vous pouvez signer des messages ou des accords avec vos adresses pour prouver que vous pouvez recevoir des ravens à ces dernières. Faites attention de ne rien signer de vague ou au hasard, car des attaques d'hameçonnage pourraient essayer de vous faire signer avec votre identité afin de l'usurper. Ne signez que des déclarations entièrement détaillées et avec lesquelles vous êtes d'accord. + Vous pouvez signer des messages ou des accords avec vos adresses pour prouver que vous pouvez recevoir des ravens à ces dernières. Faites attention de ne rien signer de vague ou au hasard, car des attaques d'hameçonnage pourraient essayer de vous faire signer avec votre identité afin de l'usurper. Ne signez que des déclarations entièrement détaillées et avec lesquelles vous êtes d'accord. + The Raven address to sign the message with - L'adresse Raven avec laquelle signer le message + L'adresse Raven avec laquelle signer le message + + Choose previously used address Choisir une adresse déjà utilisée + + Alt+A Alt+A + Paste address from clipboard Coller une adresse du presse-papiers + Alt+P Alt+P + Enter the message you want to sign here Saisir ici le message que vous désirez signer + Signature Signature + Copy the current signature to the system clipboard Copier la signature actuelle dans le presse-papiers + Sign the message to prove you own this Raven address Signer le message afin de prouver que vous détenez cette adresse Raven + Sign &Message Signer le &message + Reset all sign message fields Réinitialiser tous les champs de signature de message + + Clear &All &Tout effacer + &Verify Message &Vérifier un message - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Saisir ci-dessous l'adresse du destinataire, le message (s'assurer de copier fidèlement les retours à la ligne, les espaces, les tabulations, etc.) et la signature pour vérifier le message. Faire attention à ne pas déduire davantage de la signature que ce qui est contenu dans le message signé même, pour éviter d'être trompé par une attaque d'homme du milieu. Prendre en compte que cela ne fait que prouver que le signataire reçoit l'adresse et ne peut pas prouver la provenance d'une transaction ! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Saisir ci-dessous l'adresse du destinataire, le message (s'assurer de copier fidèlement les retours à la ligne, les espaces, les tabulations, etc.) et la signature pour vérifier le message. Faire attention à ne pas déduire davantage de la signature que ce qui est contenu dans le message signé même, pour éviter d'être trompé par une attaque d'homme du milieu. Prendre en compte que cela ne fait que prouver que le signataire reçoit l'adresse et ne peut pas prouver la provenance d'une transaction ! + The Raven address the message was signed with - L'adresse Raven avec laquelle le message a été signé + L'adresse Raven avec laquelle le message a été signé + Verify the message to ensure it was signed with the specified Raven address - Vérifier le message pour s'assurer qu'il a été signé avec l'adresse Raven spécifiée + Vérifier le message pour s'assurer qu'il a été signé avec l'adresse Raven spécifiée + Verify &Message Vérifier le &message + Reset all verify message fields Réinitialiser tous les champs de vérification de message - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature Cliquez sur « Signer le message » pour générer la signature + + The entered address is invalid. - L'adresse saisie est invalide. + L'adresse saisie est invalide. + + + + Please check the address and try again. - Veuillez vérifier l'adresse et ressayer. + Veuillez vérifier l'adresse et ressayer. + + The entered address does not refer to a key. - L'adresse saisie ne fait pas référence à une clé. + L'adresse saisie ne fait pas référence à une clé. + Wallet unlock was cancelled. Le déverrouillage du porte-monnaie a été annulé. + Private key for the entered address is not available. - La clé privée n'est pas disponible pour l'adresse saisie. + La clé privée n'est pas disponible pour l'adresse saisie. + Message signing failed. Échec de signature du message. + Message signed. Le message a été signé. + The signature could not be decoded. - La signature n'a pu être décodée. + La signature n'a pu être décodée. + + Please check the signature and try again. Veuillez vérifier la signature et ressayer. + The signature did not match the message digest. La signature ne correspond pas au condensé du message. + Message verification failed. Échec de vérification du message. + Message verified. Le message a été vérifié. @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s Ko/s @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Ouvert pendant encore %n blocOuvert pendant encore %n blocs + + Open until %1 - Ouvert jusqu'à %1 + Ouvert jusqu'à %1 + conflicted with a transaction with %1 confirmations est en conflit avec une transaction ayant %1 confirmations + %1/offline %1/hors ligne + 0/unconfirmed, %1 0/non confirmées, %1 + in memory pool dans la réserve de mémoire + not in memory pool pas dans la réserve de mémoire + abandoned abandonnée + %1/unconfirmed %1/non confirmée + %1 confirmations %1 confirmations + + Status État + + , has not been successfully broadcast yet , n’a pas encore été diffusée avec succès + + , broadcast through %n node(s) - , diffusée par %n nœud, diffusée par %n nœuds + + + Date Date + Source Source + Generated Générée + + + + + From De + + unknown inconnue + + + + + To À + + own address votre adresse + + + watch-only juste-regarder + + label étiquette + + + + + + + Credit Crédit + matures in %n more block(s) - arrivera à maturité dans %n blocarrivera à maturité dans %n blocs + + not accepted refusée + + + + + Debit Débit + Total debit Débit total + Total credit Crédit total + Transaction fee Frais de transaction + Net amount Montant net + + + + Message Message + + Comment Commentaire + + Transaction ID ID de la transaction + + Transaction total size Taille totale de la transaction + + Output index Index de sorties + + Merchant Marchand - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. Les pièces générées doivent mûrir pendant %1 blocs avant de pouvoir être dépensées. Lorsque ce bloc a été généré, il a été diffusé sur le réseau pour être ajouté à la chaîne de blocs. Si son intégration à la chaîne échoue, son état sera modifié en « refusée » et il ne sera pas possible de le dépenser. Cela peut arriver occasionnellement si un autre nœud génère un bloc à quelques secondes du vôtre. + + Net RVN amount + + + + Debug information Informations de débogage + Transaction Transaction + Inputs Entrées + Amount Montant + + true vrai + + false faux @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Ce panneau affiche une description détaillée de la transaction + Details for %1 Détails de %1 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date Date + Type Type + Label Étiquette + + + Amount + + + + + Asset + Actif + + Open for %n more block(s) - Ouvert pendant encore %n blocOuvert pendant encore %n blocs + + Open until %1 - Ouvert jusqu'à %1 + Ouvert jusqu'à %1 + Offline Hors ligne + Unconfirmed Non confirmée + Abandoned Abandonnée + Confirming (%1 of %2 recommended confirmations) Confirmation (%1 sur %2 confirmations recommandées) + Confirmed (%1 confirmations) Confirmée (%1 confirmations) + Conflicted En conflit + Immature (%1 confirmations, will be available after %2) Immature (%1 confirmations, sera disponible après %2) + This block was not received by any other nodes and will probably not be accepted! Ce bloc n’a été reçu par aucun autre nœud et ne sera probablement pas accepté ! + Generated but not accepted Générée mais refusée + Received with Reçue avec + Received from Reçue de + Sent to Envoyée à + Payment to yourself Paiement à vous-même + Mined Miné + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + Actifs envoyés + + + watch-only juste-regarder + (n/a) (n.d) + (no label) (aucune étiquette) + Transaction status. Hover over this field to show number of confirmations. État de la transaction. Survoler ce champ avec la souris pour afficher le nombre de confirmations. + Date and time that the transaction was received. Date et heure de réception de la transaction. + Type of transaction. Type de transaction. + Whether or not a watch-only address is involved in this transaction. Une adresse juste-regarder est-elle ou non impliquée dans cette transaction. + User-defined intent/purpose of the transaction. - Intention/but de la transaction défini par l'utilisateur. + Intention/but de la transaction défini par l'utilisateur. + Amount removed from or added to balance. Le montant a été ajouté ou soustrait du solde. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Toutes + Today Aujourd’hui + This week Cette semaine + This month Ce mois + Last month Le mois dernier + This year Cette année + Range... Plage… + Received with Reçue avec + Sent to Envoyée à + To yourself À vous-même + Mined Miné + Other Autres + Enter address or label to search Saisir une adresse ou une étiquette à rechercher + Min amount Montant min. + + Asset name + + + + Abandon transaction Abandonner la transaction + Copy address Copier l’adresse + Copy label Copier l’étiquette + Copy amount Copier le montant + Copy transaction ID - Copier l'ID de la transaction + Copier l'ID de la transaction + Copy raw transaction Copier la transaction brute + Copy full transaction details Copier tous les détails de la transaction + Edit label Modifier l’étiquette + Show transaction details Afficher les détails de la transaction + + Browse with: + + + + Export Transaction History - Exporter l'historique transactionnel + Exporter l'historique transactionnel + Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) + Confirmed Confirmée + Watch-only Juste-regarder + Date Date + Type Type + Label Étiquette + Address Adresse + + Asset + + + + ID ID + Exporting Failed - Échec d'exportation + Échec d'exportation + There was an error trying to save the transaction history to %1. - Une erreur est survenue lors de l'enregistrement de l'historique transactionnel vers %1. + Une erreur est survenue lors de l'enregistrement de l'historique transactionnel vers %1. + Exporting Successful - L'exportation est réussie + L'exportation est réussie + The transaction history was successfully saved to %1. - L'historique transactionnel a été enregistré avec succès vers %1. + L'historique transactionnel a été enregistré avec succès vers %1. + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + Actif reçu + + Asset Sent + Asset envoyé + + + + Copy asset name + + + + Range: Plage : + to à @@ -2936,978 +6513,1779 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. - Unité d'affichage des montants. Cliquer pour choisir une autre unité. + Unité d'affichage des montants. Cliquer pour choisir une autre unité. WalletFrame + No wallet has been loaded. - Aucun porte-monnaie n'a été chargé. + Aucun porte-monnaie n'a été chargé. WalletModel + Send Coins Envoyer des pièces + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exporter + Export the data in the current tab to a file - Exporter les données de l'onglet actuel vers un fichier + Exporter les données de l'onglet actuel vers un fichier + Backup Wallet Sauvegarder le porte-monnaie + Wallet Data (*.dat) Données du porte-monnaie (*.dat) + Backup Failed Échec de la sauvegarde + There was an error trying to save the wallet data to %1. - Une erreur est survenue lors de l'enregistrement des données du porte-monnaie vers %1. + Une erreur est survenue lors de l'enregistrement des données du porte-monnaie vers %1. + Backup Successful La sauvegarde est réussie + The wallet data was successfully saved to %1. Les données du porte-monnaie ont été enregistrées avec succès vers %1 + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Options : + Specify data directory Spécifier le répertoire de données + Connect to a node to retrieve peer addresses, and disconnect Se connecter à un nœud pour obtenir des adresses de pairs puis se déconnecter + Specify your own public address Spécifier votre propre adresse publique + Accept command line and JSON-RPC commands Accepter les commandes JSON-RPC et en ligne de commande - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Accepter des connexions de l'extérieur (par défaut : 1 si aucun -proxy ou -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Se connecter seulement aux nœuds précisés ; -noconnect ou -connect=0 seul pour désactiver les connexions automatiques - - + Distributed under the MIT software license, see the accompanying file %s or %s - Distribué sous la licence MIT d'utilisation d'un logiciel. Consulter le fichier joint %s ou %s + Distribué sous la licence MIT d'utilisation d'un logiciel. Consulter le fichier joint %s ou %s + If <category> is not supplied or if <category> = 1, output all debugging information. - Si <category> n'est pas indiqué ou si <category> = 1, extraire toutes les données de débogage. + Si <category> n'est pas indiqué ou si <category> = 1, extraire toutes les données de débogage. + Prune configured below the minimum of %d MiB. Please use a higher number. - L'élagage est configuré au-dessous du minimum de %d Mio. Veuillez utiliser un nombre plus élevé. + L'élagage est configuré au-dessous du minimum de %d Mio. Veuillez utiliser un nombre plus élevé. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Élagage : la dernière synchronisation de porte-monnaie va par-delà les données élaguées. Vous devez -reindex (réindexer, télécharger de nouveau toute la chaîne de blocs en cas de nœud élagué) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Les rebalayages sont impossibles en mode élagage. Vous devrez utiliser -reindex, ce qui téléchargera de nouveau la chaîne de blocs en entier. + Error: A fatal internal error occurred, see debug.log for details - Erreur : une erreur interne fatale s'est produite. Voir debug.log pour plus de détails + Erreur : une erreur interne fatale s'est produite. Voir debug.log pour plus de détails + Fee (in %s/kB) to add to transactions you send (default: %s) Les frais (en %s/ko) à ajouter aux transactions que vous envoyez (par défaut : %s) + Pruning blockstore... Élagage du magasin de blocs... + Run in the background as a daemon and accept commands Fonctionner en arrière-plan en tant que démon et accepter les commandes + Unable to start HTTP server. See debug log for details. Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails. + Raven Core Raven Core + The %s developers Les développeurs de %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) - Un taux de frais (en %s/Ko) qui sera utilisé si l'estimation de frais ne possède pas suffisamment de données (par défaut : %s) + Un taux de frais (en %s/Ko) qui sera utilisé si l'estimation de frais ne possède pas suffisamment de données (par défaut : %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Accepter les transactions relayées reçues de pairs de la liste blanche même si le nœud ne relaie pas les transactions (par défaut : %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Se lier à l'adresse donnée et toujours l'écouter. Utiliser la notation [host]:port pour l'IPv6 + Se lier à l'adresse donnée et toujours l'écouter. Utiliser la notation [host]:port pour l'IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + Impossible d’obtenir un verrou sur le répertoire de données %s. %s fonctionne probablement déjà. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - Impossible d’obtenir un verrou sur le répertoire de données %s. %s fonctionne probablement déjà. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Supprimer toutes les transactions du porte-monnaie et ne récupérer que ces parties de la chaîne de blocs avec -rescan au démarrage - Error loading %s: You can't enable HD on a already existing non-HD wallet - Erreur de chargement de %s : vous ne pouvez pas activer HD sur un porte-monnaie non HD existant + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Erreur de lecture de %s ! Toutes les clés ont été lues correctement, mais les données transactionnelles ou les entrées du carnet d'adresses sont peut-être manquantes ou incorrectes. - Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Erreur de lecture de %s ! Toutes les clés ont été lues correctement, mais les données transactionnelles ou les entrées du carnet d'adresses sont peut-être manquantes ou incorrectes. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Exécuter la commande lorsqu'une transaction de porte-monnaie change (%s dans la commande est remplacée par TxID) + Exécuter la commande lorsqu'une transaction de porte-monnaie change (%s dans la commande est remplacée par TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) - Si ce bloc est dans la chaîne, supposer qu'il est valide, ainsi que ces ancêtres, et ignorer potentiellement la vérification de leur script (0 pour tout vérifier, valeur par défaut : %s, réseau de test : %s) + Si ce bloc est dans la chaîne, supposer qu'il est valide, ainsi que ces ancêtres, et ignorer potentiellement la vérification de leur script (0 pour tout vérifier, valeur par défaut : %s, réseau de test : %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) - Réglage moyen maximal autorisé de décalage de l'heure d'un pair. La perspective locale du temps peut être influencée par les pairs, en avance ou en retard, de cette valeur. (Par défaut : %u secondes) + Réglage moyen maximal autorisé de décalage de l'heure d'un pair. La perspective locale du temps peut être influencée par les pairs, en avance ou en retard, de cette valeur. (Par défaut : %u secondes) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Frais totaux maximaux (en %s) à utiliser en une seule transaction de porte-monnaie ou transaction brute ; les définir trop bas pourrait interrompre les grosses transactions (par défaut : %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - Veuillez vérifier que l'heure et la date de votre ordinateur sont justes ! Si votre horloge n'est pas à l'heure, %s ne fonctionnera pas correctement. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + Veuillez vérifier que l'heure et la date de votre ordinateur sont justes ! Si votre horloge n'est pas à l'heure, %s ne fonctionnera pas correctement. + Please contribute if you find %s useful. Visit %s for further information about the software. - Si vous trouvez %s utile, vous pouvez y contribuer. Vous trouverez davantage d'informations à propos du logiciel sur %s. + Si vous trouvez %s utile, vous pouvez y contribuer. Vous trouverez davantage d'informations à propos du logiciel sur %s. + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) - Réduire les exigences de stockage en activant l'élagage (suppression) des anciens blocs. Cela permet d'appeler le RPC « pruneblockchain » pour supprimer des blocs précis et active l'élagage automatique des anciens blocs si une taille cible en Mio est fournie. Ce mode n'est pas compatible avec -txindex et -rescan. Avertissement : ramener ce paramètre à sa valeur antérieure exige de retélécharger l'intégralité de la chaîne de blocs (par défaut : 0 = désactiver l'élagage des blocs, 1 = permettre l'élagage manuel par RPC, >%u = élaguer automatiquement les fichiers de blocs pour rester en deçà de la taille cible précisée en Mio). + Réduire les exigences de stockage en activant l'élagage (suppression) des anciens blocs. Cela permet d'appeler le RPC « pruneblockchain » pour supprimer des blocs précis et active l'élagage automatique des anciens blocs si une taille cible en Mio est fournie. Ce mode n'est pas compatible avec -txindex et -rescan. Avertissement : ramener ce paramètre à sa valeur antérieure exige de retélécharger l'intégralité de la chaîne de blocs (par défaut : 0 = désactiver l'élagage des blocs, 1 = permettre l'élagage manuel par RPC, >%u = élaguer automatiquement les fichiers de blocs pour rester en deçà de la taille cible précisée en Mio). + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Définir le taux minimal de frais (en %s/ko) pour les transactions à inclure dans la création de blocs (par défaut : %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Définir le nombre de fils de vérification des scripts (%u à %d, 0 = auto, < 0 = laisser ce nombre de cœurs inutilisés, par défaut : %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - La base de données de blocs contient un bloc qui semble provenir du futur. Cela pourrait être causé par la date et l'heure erronées de votre ordinateur. Ne reconstruisez la base de données de blocs que si vous êtes certain que la date et l'heure de votre ordinateur sont justes. + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + La base de données de blocs contient un bloc qui semble provenir du futur. Cela pourrait être causé par la date et l'heure erronées de votre ordinateur. Ne reconstruisez la base de données de blocs que si vous êtes certain que la date et l'heure de votre ordinateur sont justes. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications - Ceci est une préversion de test - son utilisation est entièrement à vos risques - ne pas l'utiliser pour miner ou pour des applications marchandes + Ceci est une préversion de test - son utilisation est entièrement à vos risques - ne pas l'utiliser pour miner ou pour des applications marchandes + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Impossible de rebobiner la base de données à un état préfourche. Vous devrez retélécharger la chaîne de blocs + Use UPnP to map the listening port (default: 1 when listening and no -proxy) - Utiliser l'UPnP pour mapper le port d'écoute (par défaut : 1 en écoute et sans -proxy) + Utiliser l'UPnP pour mapper le port d'écoute (par défaut : 1 en écoute et sans -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times - Nom d'utilisateur et mot de passe haché pour les connexions JSON-RPC. Le champ <userpw> est au format : <USERNAME>:<SALT>$<HASH>. Un script python canonique est inclus dans share/rpcuser. Le client se connecte ensuite normalement en utilisant la paire d'arguments rpcuser=<USERNAME>/rpcpassword=<PASSWORD>. Cette option peut être spécifiée plusieurs fois. + Nom d'utilisateur et mot de passe haché pour les connexions JSON-RPC. Le champ <userpw> est au format : <USERNAME>:<SALT>$<HASH>. Un script python canonique est inclus dans share/rpcuser. Le client se connecte ensuite normalement en utilisant la paire d'arguments rpcuser=<USERNAME>/rpcpassword=<PASSWORD>. Cette option peut être spécifiée plusieurs fois. + Wallet will not create transactions that violate mempool chain limits (default: %u) Un porte-monnaie ne créera aucune transaction qui enfreint les limites de chaîne de la réserve de mémoire (par défaut : %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - Avertissement : le réseau ne semble pas totalement d'accord ! Certains mineurs semblent éprouver des problèmes. + Avertissement : le réseau ne semble pas totalement d'accord ! Certains mineurs semblent éprouver des problèmes. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. - Avertissement : nous ne semblons pas être en accord complet avec nos pairs ! Une mise à niveau pourrait être nécessaire pour vous ou pour d'autres nœuds du réseau. + Avertissement : nous ne semblons pas être en accord complet avec nos pairs ! Une mise à niveau pourrait être nécessaire pour vous ou pour d'autres nœuds du réseau. - You need to rebuild the database using -reindex-chainstate to change -txindex - Vous devez reconstruire la base de données avec -reindex-chainstate pour changer -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrompu, la récupération a échoué + -maxmempool must be at least %d MB - -maxmempool doit être d'au moins %d Mo + -maxmempool doit être d'au moins %d Mo + <category> can be: <category> peut être : + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string - Ajouter un commentaire à la chaîne d'agent utilisateur + Ajouter un commentaire à la chaîne d'agent utilisateur + Attempt to recover private keys from a corrupt wallet on startup - Tenter de récupérer les clés privées d'un porte-monnaie corrompu lors du démarrage + Tenter de récupérer les clés privées d'un porte-monnaie corrompu lors du démarrage + Block creation options: Options de création de blocs : - Cannot resolve -%s address: '%s' - Impossible de résoudre l'adresse -%s : « %s » + + Cannot resolve -%s address: '%s' + Impossible de résoudre l'adresse -%s : « %s » + Chain selection options: Options de sélection de la chaîne : + Change index out of range - L'index de changement est hors échelle + L'index de changement est hors échelle + Connection options: Options de connexion : + Copyright (C) %i-%i Tous droits réservés (C) %i-%i + Corrupted block database detected Une base de données de blocs corrompue a été détectée + Debugging/Testing options: Options de débogage/de test : + Do not load the wallet and disable wallet RPC calls Ne pas charger le porte-monnaie et désactiver les appels RPC + Do you want to rebuild the block database now? Voulez-vous reconstruire la base de données de blocs maintenant ? + Enable publish hash block in <address> Activer la publication du bloc de hachage dans <address> + Enable publish hash transaction in <address> Activer la publication de la transaction de hachage dans <address> + Enable publish raw block in <address> Activer la publication du bloc brut dans <address> + Enable publish raw transaction in <address> Activer la publication de la transaction brute dans <address> + Enable transaction replacement in the memory pool (default: %u) Activer le remplacement de transactions dans la réserve de mémoire (par défaut : %u) + Error initializing block database - Erreur d'initialisation de la base de données de blocs + Erreur d'initialisation de la base de données de blocs + Error initializing wallet database environment %s! - Erreur d'initialisation de l'environnement de la base de données du porte-monnaie %s ! + Erreur d'initialisation de l'environnement de la base de données du porte-monnaie %s ! + Error loading %s Erreur de chargement de %s + Error loading %s: Wallet corrupted Erreur de chargement de %s : porte-monnaie corrompu + Error loading %s: Wallet requires newer version of %s Erreur de chargement de %s : le porte-monnaie exige une version plus récente de %s - Error loading %s: You can't disable HD on a already existing HD wallet - Erreur de chargement de %s : vous ne pouvez pas désactiver HD sur un porte-monnaie HD existant - - + Error loading block database Erreur de chargement de la base de données de blocs + Error opening block database - Erreur d'ouverture de la base de données de blocs + Erreur d'ouverture de la base de données de blocs + Error: Disk space is low! - Erreur : l'espace disque est faible ! + Erreur : l'espace disque est faible ! + Failed to listen on any port. Use -listen=0 if you want this. - Échec d'écoute sur un port quelconque. Utiliser -listen=0 si vous le voulez. + Échec d'écoute sur un port quelconque. Utiliser -listen=0 si vous le voulez. + Importing... Importation... + Incorrect or no genesis block found. Wrong datadir for network? Bloc de genèse incorrect ou introuvable. Mauvais datadir pour le réseau ? + Initialization sanity check failed. %s is shutting down. - L'initialisation du test de cohérence a échoué. %s est en cours de fermeture. + L'initialisation du test de cohérence a échoué. %s est en cours de fermeture. - Invalid -onion address: '%s' - Adresse -onion invalide : « %s » + + Invalid amount for -%s=<amount>: '%s' + Montant invalide pour -%s=<amount> : « %s » - Invalid amount for -%s=<amount>: '%s' - Montant invalide pour -%s=<amount> : « %s » + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' Montant invalide pour -fallbackfee=<amount> : « %s » + Keep the transaction memory pool below <n> megabytes (default: %u) Garder la réserve de mémoire transactionnelle sous <n> mégaoctets (par défaut : %u) + + Loading P2P addresses... + Chargement des adresses P2P... + + + Loading banlist... - Chargement de la liste d'interdiction... + Chargement de la liste d'interdiction... + Location of the auth cookie (default: data dir) Emplacement du fichier témoin auth (par défaut : data dir) + Not enough file descriptors available. Pas assez de descripteurs de fichiers proposés. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Seulement se connecter aux nœuds du réseau <net> (IPv4, IPv6 ou oignon) + Print this help message and exit - Imprimer ce message d'aide et quitter + Imprimer ce message d'aide et quitter + Print version and exit Imprimer la version et quitter + Prune cannot be configured with a negative value. - L'élagage ne peut pas être configuré avec une valeur négative. + L'élagage ne peut pas être configuré avec une valeur négative. + Prune mode is incompatible with -txindex. - Le mode élagage n'est pas compatible avec -txindex. + Le mode élagage n'est pas compatible avec -txindex. + Rebuild chain state and block index from the blk*.dat files on disk - Reconstruire l'état de la chaîne et l'index des blocs à partir des fichiers blk*.dat sur le disque + Reconstruire l'état de la chaîne et l'index des blocs à partir des fichiers blk*.dat sur le disque + Rebuild chain state from the currently indexed blocks - Reconstruire l'état de la chaîne à partir des blocs indexés actuellement + Reconstruire l'état de la chaîne à partir des blocs indexés actuellement + + + + Replaying blocks... + + Rewinding blocks... Rebobinage des blocs... + Set database cache size in megabytes (%d to %d, default: %d) Définir la taille du cache de la base de données en mégaoctets (%d à %d, default: %d) - Set maximum block size in bytes (default: %d) - Définir la taille minimale de bloc en octets (par défaut : %d) - - + Specify wallet file (within data directory) Spécifiez le fichier de porte-monnaie (dans le répertoire de données) + The source code is available from %s. Le code source est disponible sur %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Impossible de se lier à %s sur cet ordinateur. %s fonctionne probablement déjà. + Unsupported argument -benchmark ignored, use -debug=bench. Argument non pris en charge -benchmark ignoré, utiliser -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argument non pris en charge -debugnet ignoré, utiliser -debug=net. + Unsupported argument -tor found, use -onion. Argument non pris en charge -tor trouvé, utiliser -onion + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + Mise à jour de la base de données UTXO + + + Use UPnP to map the listening port (default: %u) - Utiliser l'UPnP pour mapper le port d'écoute (par défaut : %u) + Utiliser l'UPnP pour mapper le port d'écoute (par défaut : %u) + Use the test chain Utiliser la chaîne de test + User Agent comment (%s) contains unsafe characters. - Le commentaire d'agent utilisateur (%s) contient des caractères dangereux. + Le commentaire d'agent utilisateur (%s) contient des caractères dangereux. + Verifying blocks... Vérification des blocs... - Verifying wallet... - Vérification du porte-monnaie... - - + Wallet %s resides outside data directory %s Le porte-monnaie %s réside en dehors du répertoire de données %s + Wallet debugging/testing options: Options de débogage/de test du porte-monnaie : + Wallet needed to be rewritten: restart %s to complete - Le porte-monnaie devait être réécrit : redémarrer %s pour terminer l'opération. + Le porte-monnaie devait être réécrit : redémarrer %s pour terminer l'opération. + Wallet options: Options du porte-monnaie : + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Permettre les connexions JSON-RPC de sources spécifiques. Valide pour <ip> qui sont une IP simple (p. ex. 1.2.3.4), un réseau/masque réseau (p. ex. 1.2.3.4/255.255.255.0) ou un réseau/CIDR (p. ex. 1.2.3.4/24). Cette option peut être être spécifiée plusieurs fois + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Se lier à l'adresse donnée et aux pairs s'y connectant. Utiliser la notation [host]:port pour l'IPv6 - - - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Se lier à l'adresse donnée pour écouter des connexions JSON-RPC. Utiliser la notation [host]:port pour l'IPv6. Cette option peut être spécifiée plusieurs fois (par défaut : se lier à toutes les interfaces) + Se lier à l'adresse donnée et aux pairs s'y connectant. Utiliser la notation [host]:port pour l'IPv6 + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Créer de nouveaux fichiers avec les permissions système par défaut, au lieu de umask 077 (effectif seulement avec la fonction du porte-monnaie désactivée) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Découvrir ses propres adresses (par défaut : 1 en écoute et sans externalip ou -proxy) + Error: Listening for incoming connections failed (listen returned error %s) - Erreur : l'écoute des connexions entrantes a échoué (l'écoute a retourné l'erreur %s) + Erreur : l'écoute des connexions entrantes a échoué (l'écoute a retourné l'erreur %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Exécuter une commande lorsqu'une alerte pertinente est reçue, ou si nous voyons une bifurcation vraiment étendue (%s dans la commande est remplacé par le message) + Exécuter une commande lorsqu'une alerte pertinente est reçue, ou si nous voyons une bifurcation vraiment étendue (%s dans la commande est remplacé par le message) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Les frais (en %s/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour le relais, le minage et la création de transactions (par défaut : %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Si paytxfee n'est pas défini, inclure suffisamment de frais afin que les transactions commencent la confirmation en moyenne avant n blocs (par défaut : %u) + Si paytxfee n'est pas défini, inclure suffisamment de frais afin que les transactions commencent la confirmation en moyenne avant n blocs (par défaut : %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) Montant invalide pour -maxtxfee=<amount> : « %s » (doit être au moins les frais minrelay de %s pour prévenir le blocage des transactions) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Quantité maximale de données dans les transactions du porteur de données que nous relayons et minons (par défaut : %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Aléer les authentifiants pour chaque connexion mandataire. Cela active l'isolement de flux de Tor (par défaut : %u) - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Définir la taille maximale en octets des transactions à priorité élevée et frais modiques (par défaut : %d) + Aléer les authentifiants pour chaque connexion mandataire. Cela active l'isolement de flux de Tor (par défaut : %u) + The transaction amount is too small to send after the fee has been deducted Le montant de la transaction est trop bas pour être envoyé une fois que les frais ont été déduits - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Utiliser une génération de clé hiérarchique déterministe (HD) après BIP32. N'a d'effet que lors de la création ou du lancement intitial du porte-monnaie - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Les pairs de la liste blanche ne peuvent pas être bannis DoS et leurs transactions sont toujours relayées, même si elles sont déjà dans le mempool, utile p. ex. pour une passerelle + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Vous devez reconstruire la base de données en utilisant -reindex afin de revenir au mode sans élagage. Cela retéléchargera complètement la chaîne de blocs. + (default: %u) (par défaut : %u) + Accept public REST requests (default: %u) Accepter les demandes REST publiques (par défaut : %u) + Automatically create Tor hidden service (default: %d) Créer automatiquement un service caché Tor (par défaut : %d) + Connect through SOCKS5 proxy Se connecter par un mandataire SOCKS5 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Erreur de lecture de la base de données, fermeture en cours. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup - Importe des blocs à partir d'un fichier blk000??.dat externe lors du démarrage + Importe des blocs à partir d'un fichier blk000??.dat externe lors du démarrage + Information Informations - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + Invalid -onion address or hostname: '%s' + L'adesse -onion ou le nom d'hôte est invalide + + + + Invalid -proxy address or hostname: '%s' + L'adresse ou le nom d'hôte du proxy est invalide : '%s'. + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Montant invalide pour -paytxfee=<montant> : « %s » (doit être au moins %s) - Invalid netmask specified in -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' Masque réseau invalide spécifié dans -whitelist : « %s » + Keep at most <n> unconnectable transactions in memory (default: %u) Garder au plus <n> transactions non connectables en mémoire (par défaut : %u) - Need to specify a port with -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' Un port doit être spécifié avec -whitebind : « %s » + Node relay options: Options de relais du nœud : + RPC server options: Options du serveur RPC : + Reducing -maxconnections from %d to %d, because of system limitations. Réduction de -maxconnections de %d à %d, due aux restrictions du système + Rescan the block chain for missing wallet transactions on startup Réanalyser la chaîne de blocs au démarrage, à la recherche de transactions de porte-monnaie manquantes + Send trace/debug info to console instead of debug.log file Envoyer les infos de débogage/trace à la console au lieu du fichier debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Envoyer si possible les transactions comme étant sans frais (par défaut : %u) - - + Show all debugging options (usage: --help -help-debug) Montrer toutes les options de débogage (utilisation : --help --help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Réduire le fichier debug.log lors du démarrage du client (par défaut : 1 sans -debug) + Signing transaction failed Échec de signature de la transaction + The transaction amount is too small to pay the fee Le montant de la transaction est trop bas pour que les frais soient payés + This is experimental software. Ceci est un logiciel expérimental. + Tor control port password (default: empty) Mot de passe du port de contrôle Tor (par défaut : vide) + Tor control port to use if onion listening enabled (default: %s) - Port de contrôle Tor à utiliser si l'écoute onion est activée (par défaut :%s) + Port de contrôle Tor à utiliser si l'écoute onion est activée (par défaut :%s) + Transaction amount too small Le montant de la transaction est trop bas + Transaction too large for fee policy La transaction est trop grosse pour la politique de frais + Transaction too large La transaction est trop grosse + Unable to bind to %s on this computer (bind returned error %s) - Impossible de se lier à %s sur cet ordinateur (bind a retourné l'erreur %s) + Impossible de se lier à %s sur cet ordinateur (bind a retourné l'erreur %s) + Upgrade wallet to latest format on startup Mettre à niveau le porte-monnaie au démarrage vers le format le plus récent + Username for JSON-RPC connections - Nom d'utilisateur pour les connexions JSON-RPC + Nom d'utilisateur pour les connexions JSON-RPC + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + Verifier string not found + + + + + Verifying wallet(s)... + Vérification du ou des portefeuilles... + + + Warning Avertissement + Warning: unknown new rules activated (versionbit %i) Avertissement : nouvelles règles inconnues activées (bit de version %i) + Whether to operate in a blocks only mode (default: %u) Fonctionner ou non en mode blocs seulement (par défaut : %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Supprimer toutes les transactions du porte-monnaie... + ZeroMQ notification options: Options de notification ZeroMQ + Password for JSON-RPC connections Mot de passe pour les connexions JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Exécuter la commande lorsque le meilleur bloc change (%s dans cmd est remplacé par le hachage du bloc) + Allow DNS lookups for -addnode, -seednode and -connect Autoriser les consultations DNS pour -addnode, -seednode et -connect - Loading addresses... - Chargement des adresses… - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = conserver les métadonnées de transmission, p. ex. les informations du propriétaire du compte et de demande de paiement, 2 = abandonner les métadonnées de transmission) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. La valeur -maxtxfee est très élevée ! Des frais aussi élevés pourraient être payés en une seule transaction. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Ne pas conserver de transactions dans la réserve de mémoire plus de <n> heures (par défaut : %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Octets équivalents par sigop dans les transactions pour relayer et miner (par défaut : %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + Erreur de chargement de %s : Vous ne pouvez pas activer la HD sur un portefeuille non HD déjà existant. + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + Erreur de chargement du portefeuille %s. Le paramètre -wallet doit seulement spécifier un nom de fichier (pas un dossier). + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Les frais (en %s/Ko) inférieurs à ce seuil sont considérés comme étant nuls pour la création de transactions (par défaut : %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) - Forcer le relais de transactions des pairs de la liste blanche même s'ils transgressent la politique locale de relais (par défaut : %d) + Forcer le relais de transactions des pairs de la liste blanche même s'ils transgressent la politique locale de relais (par défaut : %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Degré de profondeur de la vérification des blocs -checkblocks (0-4, par défaut : %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Maintenir un index complet des transactions, utilisé par l'appel RPC getrawtransaction (obtenir la transaction brute) (par défaut : %u) + Maintenir un index complet des transactions, utilisé par l'appel RPC getrawtransaction (obtenir la transaction brute) (par défaut : %u) + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Délai en secondes de refus de reconnexion pour les pairs présentant un mauvais comportement (par défaut : %u) + Output debugging information (default: %u, supplying <category> is optional) Extraire les informations de débogage (par défaut : %u, fournir <category> est facultatif) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Requête d'adresses de paires par consultation DNS, si il y a peu d'adresses (par défaut : 1 sauf si -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Définit la sérialisation de la transaction brute ou les données hexa de bloc retournées en mode non-verbose, non-segwit(0) ou segwit(1) (par défaut : %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Prendre en charge le filtrage des blocs et des transactions avec les filtres bloom (par défaut : %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. - Il s'agit des frais de transaction que vous pourriez payer si aucune estimation de frais n'est proposée. + Il s'agit des frais de transaction que vous pourriez payer si aucune estimation de frais n'est proposée. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. - Ce produit comprend des logiciels développés par le Projet OpenSSL pour être utilisés dans la boîte à outils OpenSSL %s, et un logiciel cryptographique écrit par Eric Young, ainsi qu'un logiciel UPnP écrit par Thomas Bernard. + Ce produit comprend des logiciels développés par le Projet OpenSSL pour être utilisés dans la boîte à outils OpenSSL %s, et un logiciel cryptographique écrit par Eric Young, ainsi qu'un logiciel UPnP écrit par Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. La taille totale de la chaîne de version de réseau (%i) dépasse la longueur maximale (%i). Réduire le nombre ou la taille des commentaires uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Tente de garder le trafic sortant sous la cible donnée (en Mio par 24 h), 0 = sans limite (par défaut : %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - L'argument non pris en charge -socks a été trouvé. Il n'est plus possible de définir la version de SOCKS, seuls les mandataires SOCKS5 sont pris en charge. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + L'argument non pris en charge -socks a été trouvé. Il n'est plus possible de définir la version de SOCKS, seuls les mandataires SOCKS5 sont pris en charge. + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argument non pris charge -whitelistalwaysrelay ignoré, utiliser -whitelistrelay et/ou -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Utiliser un serveur mandataire SOCKS5 séparé pour atteindre les pairs par les services cachés de Tor (par défaut : %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Avertissement : des versions de blocs inconnues sont minées ! Il est possible que des règles inconnues soient en vigeur + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Avertissement : le fichier du porte-monnaie est corrompu, les données ont été récupérées ! Le fichier %s original a été enregistré en tant que %s dans %s ; si votre solde ou vos transactions sont incorrects, vous devriez restaurer une sauvegarde. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. - Pairs de la liste blanche se connectant à partir de l'adresse IP donnée (p. ex. 1.2.3.4) ou du réseau noté CIDR (p. ex. 1.2.3.0/24). Peut être spécifié plusieurs fois. + Pairs de la liste blanche se connectant à partir de l'adresse IP donnée (p. ex. 1.2.3.4) ou du réseau noté CIDR (p. ex. 1.2.3.0/24). Peut être spécifié plusieurs fois. + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! La valeur %s est très élevée ! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (par défaut : %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Toujours demander les adresses des pairs par consultation DNS (par défaut : %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + Erreur de chargement du portefeuille %s. -Le nom de fichier du portefeuille doit être un fichier régulier. + + + + Error loading wallet %s. Duplicate -wallet filename specified. + Erreur de chargement du portefeuille %s. Le nom de fichier -wallet spécifié est en double. + + + + Error loading wallet %s. Invalid characters in -wallet filename. + Erreur de chargement du portefeuille %s. Caractères non valides dans le nom de fichier -wallet. + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Nombre de blocs à vérifier au démarrage (par défaut : %u, 0 = tous) + Include IP addresses in debug output (default: %u) Inclure les adresses IP à la sortie de débogage (par défaut : %u) - Invalid -proxy address: '%s' - Adresse -proxy invalide : « %s » + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first - La réserve de clés est épuisée, veuillez d'abord appeler « keypoolrefill » + La réserve de clés est épuisée, veuillez d'abord appeler « keypoolrefill » + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Écouter les connexions JSON-RPC sur <port> (par défaut : %u ou tesnet : %u) + Listen for connections on <port> (default: %u or testnet: %u) Écouter les connexions sur <port> (par défaut : %u ou tesnet : %u) + Maintain at most <n> connections to peers (default: %u) Garder au plus <n> connexions avec les pairs (par défaut : %u) + Make the wallet broadcast transactions Obliger le porte-monnaie à diffuser les transactions + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Tampon maximal de réception par connexion, <n>*1000 octets (par défaut : %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Tampon maximal d'envoi par connexion », <n>*1000 octets (par défaut : %u) + Tampon maximal d'envoi par connexion », <n>*1000 octets (par défaut : %u) + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + Prepend debug output with timestamp (default: %u) - Ajouter l'estampille temporelle au début de la sortie de débogage (par défaut : %u) + Ajouter l'estampille temporelle au début de la sortie de débogage (par défaut : %u) + Relay and mine data carrier transactions (default: %u) Relayer et miner les transactions du porteur de données (par défaut : %u) + Relay non-P2SH multisig (default: %u) Relayer les multisignatures non-P2SH (par défaut : %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Envoyer les transactions avec « full-RBF opt-in » activé (par défaut : %u) + Set key pool size to <n> (default: %u) Définir la taille de la réserve de clés à <n> (par défaut : %u) + Set maximum BIP141 block weight (default: %d) Définir le poids maximal de bloc BIP141 (par défaut : %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Définir le nombre de fils pour les appels RPC (par défaut : %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Spécifier le fichier de configuration (par défaut : %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) - Spécifier le délai d'expiration de la connexion en millisecondes (minimum : 1, par défaut : %d) + Spécifier le délai d'expiration de la connexion en millisecondes (minimum : 1, par défaut : %d) + Specify pid file (default: %s) Spécifier le fichier pid (par défaut : %s) + Spend unconfirmed change when sending transactions (default: %u) - Dépenser la monnaie non confirmée lors de l'envoi de transactions (par défaut : %u) + Dépenser la monnaie non confirmée lors de l'envoi de transactions (par défaut : %u) + Starting network threads... Démarrage des processus réseau... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Le porte-monnaie évitera de payer moins que les frais minimaux de relais. + This is the minimum transaction fee you pay on every transaction. - Il s'agit des frais minimaux que vous payez pour chaque transaction. + Il s'agit des frais minimaux que vous payez pour chaque transaction. + This is the transaction fee you will pay if you send a transaction. - Il s'agit des frais minimaux que vous payez si vous envoyez une transaction. + Il s'agit des frais minimaux que vous payez si vous envoyez une transaction. + Threshold for disconnecting misbehaving peers (default: %u) Seuil de déconnexion des pairs présentant un mauvais comportement (par défaut : %u) + Transaction amounts must not be negative Les montants transactionnels ne doivent pas être négatifs + Transaction has too long of a mempool chain La chaîne de la réserve de mémoire de la transaction est trop longue + Transaction must have at least one recipient La transaction doit comporter au moins un destinataire - Unknown network specified in -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' Réseau inconnu spécifié dans -onlynet : « %s » + Insufficient funds Fonds insuffisants + Loading block index... Chargement de l’index des blocs… - Add a node to connect to and attempt to keep the connection open - Ajouter un nœud auquel se connecter et tenter de garder la connexion ouverte - - + Loading wallet... Chargement du porte-monnaie… + Cannot downgrade wallet Impossible de revenir à une version inférieure du porte-monnaie - Cannot write default address - Impossible d'écrire l'adresse par défaut - - + Rescanning... Nouvelle analyse… - Done loading - Chargement terminé - - + Error Erreur diff --git a/src/qt/locale/raven_fr_CA.ts b/src/qt/locale/raven_fr_CA.ts index b653dcee08..1d62bb49f8 100644 --- a/src/qt/locale/raven_fr_CA.ts +++ b/src/qt/locale/raven_fr_CA.ts @@ -1,161 +1,8288 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Créer une nouvelle adresse + + &New + + + + Copy the currently selected address to the system clipboard - Copier l'adresse surligné a votre presse-papier + Copier l'adresse surligné a votre presse-papier + + + + &Copy + + + + + C&lose + + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + + &Export + + + + &Delete &Supprimer - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Entrer Mot de Passe + New passphrase Nouveau Mot de passe + Repeat new passphrase Répéter Mot de Passe - - - BanTableModel - - - RavenGUI - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - CoinControlDialog + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + (un)select all - Toute sélectionner + - - - EditAddressDialog - &Label - Record + + Tree mode + - &Address - Addresse + + List mode + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Welcome - Bienvenue + + View assets that you have the ownership asset for + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView - + AssetTableModel + + + Name + + + + + Quantity + + + - raven-core - + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + Toute sélectionner + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + Record + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Addresse + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bienvenue + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_fr_FR.ts b/src/qt/locale/raven_fr_FR.ts index c69be8aeb7..6aaf51c085 100644 --- a/src/qt/locale/raven_fr_FR.ts +++ b/src/qt/locale/raven_fr_FR.ts @@ -1,100 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Double cliquez afin de modifier l'adresse ou l'étiquette + Double cliquez afin de modifier l'adresse ou l'étiquette + Create a new address Créer une nouvelle adresse + &New &Nouveau + Copy the currently selected address to the system clipboard - Copier l'adresse sélectionnée dans le presse-papiers + Copier l'adresse sélectionnée dans le presse-papiers + &Copy &Copie + C&lose F&ermer + Delete the currently selected address from the list - Supprimer l'adresse sélectionnée de la liste + Supprimer l'adresse sélectionnée de la liste + Export the data in the current tab to a file - Exporter les données de l'onglet courant vers un fichier + Exporter les données de l'onglet courant vers un fichier + &Export &Exporter... + &Delete &Supprimer + Choose the address to send coins to Choisissez une adresse où envoyer les ravens + Choose the address to receive coins with Choisissez une adresse où recevoir les ravens + C&hoose C&hoisir + Sending addresses - Adresses d'envoi + Adresses d'envoi + Receiving addresses Adresses de réception + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + Copy &Label Copier &Étiquette + &Edit &Éditer + Export Address List - Exporter la liste d'adresses + Exporter la liste d'adresses + Comma separated file (*.csv) Valeurs séparées par des virgules (*.csv) + Exporting Failed - Échec de l'export + Échec de l'export + + + + There was an error trying to save the address list to %1. Please try again. + - + AddressTableModel + Label Étiquette + Address Adresse + (no label) (aucune étiquette) @@ -102,1777 +143,8150 @@ AskPassphraseDialog + Passphrase Dialog Dialogue mot de passe + Enter passphrase Entrez la phrase de passe + New passphrase Nouvelle phrase de passe + Repeat new passphrase Répétez la phrase de passe + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Chiffrer le porte-monnaie + + This operation needs your wallet passphrase to unlock the wallet. + + + + Unlock wallet Déverrouiller le porte-monnaie + + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet Décrypter le porte-monnaie + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Attention : Si vous chiffrez votre portefeuille et que vous perdez votre mot de passe vous <b> PERDREZ TOUS VOS RAVENS</b> ! + + Are you sure you wish to encrypt your wallet? + + + + + Wallet encrypted Portefeuille chiffré - - - BanTableModel - IP/Netmask - IP/Masque de sous réseau + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Banned Until - Banni jusque + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - - - RavenGUI - Sign &message... - Signer un &message... + + + + + Wallet encryption failed + - Synchronizing with network... - Synchronisation avec le réseau... + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Overview - &Vue d'ensemble + + + The supplied passphrases do not match. + - Node - Nœud + + Wallet unlock failed + - Show general overview of wallet - Affiche une vue d'ensemble du porte-monnaie + + + + The passphrase entered for the wallet decryption was incorrect. + - &Transactions - &Transactions + + Wallet decryption failed + - Browse transaction history - Permet de parcourir l'historique des transactions + + Wallet passphrase was successfully changed. + - E&xit - Qui&tter + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Quit application - Quitter l'application + + Asset Selection + - &About %1 - &À propos de %1 + + Quantity: + - Show information about %1 - Afficher les informations sur %1 + + Bytes: + - About &Qt - À propos de &Qt + + Amount: + - Show information about Qt - Afficher des informations sur Qt + + Dust: + - &Options... - &Options... + + Fee: + - Modify configuration options for %1 - Modifier les options de configuration pour %1 + + After Fee: + - &Encrypt Wallet... - &Chiffrer le portefeuille + + Change: + - &Backup Wallet... - &Sauvegarder le portefeuille + + (un)select all + - &Change Passphrase... - &Modifier le mot de passe + + Tree mode + - &Sending addresses... - &Adresses d'envoi + + List mode + - &Receiving addresses... - &Adresses de réception + + View assets that you have the ownership asset for + - Open &URI... - Ouvrir &URI + + View Administrator Assets + - Reindexing blocks on disk... - Réindexer les blocs sur le disque... + + Asset + - Send coins to a Raven address - Envoyer des pièces à une adresse Raven + + Amount + - Backup wallet to another location - Sauvegarder le porte-monnaie à un autre emplacement + + Received with label + - Change the passphrase used for wallet encryption - Modifier la phrase de passe utilisée pour le cryptage du porte-monnaie + + Received with address + - &Debug window - &Fenêtre de débogage + + Date + - Open debugging and diagnostic console - Ouvrir la console de débogage et de diagnostic + + Confirmations + - &Verify message... - &Vérification du message + + Confirmed + - Raven - Raven + + Copy address + - Wallet - Portefeuille + + Copy label + - &Send - &Envoyer + + + Copy amount + - &Receive - &Réception + + Copy transaction ID + - &Show / Hide - &Montrer / Cacher + + Lock unspent + - Show or hide the main Window - Montrer ou cacher la fenêtre principale + + Unlock unspent + - Encrypt the private keys that belong to your wallet - Crypter les clé privées qui appartiennent votre portefeuille + + Copy quantity + - Sign messages with your Raven addresses to prove you own them - Signer vos messages avec vos adresses Raven pour prouver que vous les détenez + + Copy fee + - &File - &Fichier + + Copy after fee + - &Settings - &Réglages + + Copy bytes + - &Help - &Aide + + Copy dust + - Tabs toolbar - Barre d'outils des onglets + + Copy change + - Request payments (generates QR codes and raven: URIs) - Demander des paiements (générer QR codes et raven: URIs) + + (%1 locked) + - Show the list of used sending addresses and labels - Montrer la liste des adresses d'envois utilisées et les étiquettes + + yes + - Open a raven: URI or payment request - Ouvrir un raven: URI ou demande de paiement + + no + - &Command-line options - &Options de ligne de commande + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - %n active connection(s) to Raven network - %n connexion active au réseau Raven%n connexions actives au réseau Raven + + + Can vary +/- %1 satoshi(s) per input. + - Indexing blocks on disk... - Indexation des blocs sur le disque... + + + (no label) + - %1 behind - en retard de %1 + + change from %1 (%2) + - Last received block was generated %1 ago. - Le dernier bloc reçu a été généré %1. + + (change) + + + + AssetTableModel - Transactions after this will not yet be visible. - Les transactions ne seront plus visible après ceci. + + Name + - Error - Erreur + + Quantity + + + + AssetsDialog - Warning - Attention + + + Send Coins + - Information - Information + + Asset Control Features + - Up to date - À jour + + Inputs... + - %1 client - %1 client + + automatically selected + - Catching up... - Rattrapage... + + Insufficient funds! + - Date: %1 - - Date: %1 - + + Quantity: + - Amount: %1 - - Montant:%1 - + + Bytes: + - Type: %1 - - Type: %1 - + + Amount: + - Label: %1 - - Étiquette: %1 - + + Dust: + - Address: %1 - - Adresse: %1 - + + Fee: + - Sent transaction - Transaction envoyée + + After Fee: + - Incoming transaction - Transaction entrante + + Change: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b> + + Custom change address + - - - CoinControlDialog - Coin Selection - Sélection de pièce + + Transaction Fee: + - Quantity: - Quantité: + + Choose... + - Bytes: - Octets: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Amount: - Montant : + + Warning: Fee estimation is currently not possible. + - Fee: - Frais : + + collapse fee-settings + - Dust: - Poussière: + + Hide + - After Fee: - Après frais: + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Change: - Change: + + per kilobyte + - (un)select all - (dé)sélectionné tout: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Tree mode - Mode arbre + + (read the tooltip) + - List mode - Mode list + + Recommended: + - Amount - Montant + + Custom: + - Received with label - Reçu avec : + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Received with address - Reçue avec l'adresse + + Confirmation time target: + - Date - Date + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Confirmations - Confirmations + + Request Replace-By-Fee + - Confirmed - Confirmée + + Confirm the send action + - Copy address - Copier l'adresse + + S&end + - Copy label - Copier l'étiquette + + Clear all fields of the form. + - Copy amount - Copier le montant + + Clear &All + - Copy transaction ID - Copier l'ID de transaction + + Transfer to multiple recipients at once + - Copy quantity - Copier la quantité + + Add &Recipient + - Copy fee - Copier les frais + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + Copy fee + + + + Copy after fee - Copier après les frais + + Copy bytes - Copier les octets + - yes - oui + + Copy dust + - no - non + + Copy change + - (no label) - (aucune étiquette) + + %1 (%2 blocks) + - - - EditAddressDialog - Edit Address - Éditer l'adresse + + + + + %1 to %2 + - &Label - &Étiquette + + Are you sure you want to send? + - &Address - &Adresse + + added as transaction fee + - - - FreespaceChecker - A new data directory will be created. - Un nouveau répertoire de données sera créé. + + Confirm send assets + - name - nom + + The recipient address is not valid. Please recheck. + - Path already exists, and is not a directory. - Le chemin existe déjà et ce n'est pas un répertoire. + + The amount to pay must be larger than 0. + - Cannot create data directory here. - Impossible de créer un répertoire ici. + + The amount exceeds your balance. + - - - HelpMessageDialog - version - version + + The total exceeds your balance when the %1 transaction fee is included. + - (%1-bit) - (%1-bit) + + Duplicate address found: addresses should only be used once each. + - About %1 - A propos %1 + + Transaction creation failed! + - Command-line options - Options de ligne de commande + + The transaction was rejected with the following reason: %1 + - Usage: - Utilisation : + + A fee higher than %1 is considered an absurdly high fee. + - command-line options - Options de ligne de commande + + Payment request expired. + - UI Options: - Options interface graphique: + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - Start minimized - Démarrer sous forme minimisée + + Warning: Invalid Raven address + - - - Intro - Welcome - Bienvenue + + Warning: Unknown change address + - Welcome to %1. - Bienvenue sur %1. + + Confirm custom change address + - Use the default data directory - Utiliser le répertoire par défaut + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Use a custom data directory: - Utiliser votre propre répertoire + + (no label) + + + + AssignQualifier - Error: Specified data directory "%1" cannot be created. - Erreur: Le répertoire de données "%1" n'a pas pu être créé. + + Frame + - Error - Erreur + + Select Type: + - - %n GB of free space available - %n GO d'espace libre disponible%n GO d'espace libre disponible + + + Select Qualifier: + - - (of %n GB needed) - (%n GB nécessaire)(%n GB nécessaire) + + + Address: + - - - ModalOverlay - Form - Formulaire + + IPFS / Hash: + - Hide - Cacher + + Custom Change Address + - - - OpenURIDialog - Open URI - Ouvrir URI + + Check + - Open payment request from URI or file - Ouvrir une demande de paiement depuis une URI ou un fichier + + Clear + - URI: - URI: + + Submit + - Select payment request file - Sélectionner un fichier de demande de paiement + + Assign Qualifier + - - - OptionsDialog - Options - Options + + Remove Qualifier + - &Main - &Principal + + Data has been validated, You can now submit the qualifier request + - Size of &database cache - Taille du cache de la base de données. + + Must have a qualifier asset selected + - MB - MO + + Address already has the qualifier assigned to it + - Accept connections from outside - Accepter les connexions venant de l'extérieur + + Address doesn't have the qualifier, so we can't remove it + - Allow incoming connections - Autoriser les connexions entrantes + + Unable to preform action at this time + + + + BanTableModel - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adresse IP du proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + IP/Netmask + IP/Masque de sous réseau - Reset all client options to default. - Réinitialiser toutes les options du client par défaut. + + Banned Until + Banni jusque + + + CoinControlDialog - &Reset Options - &Options de réinitialisation + + Coin Selection + Sélection de pièce - &Network - &Réseau + + Quantity: + Quantité: - Expert - Expert + + Bytes: + Octets: - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Ouvrir le port du client Raven automatiquement sur le routeur. Cela ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. + + Amount: + Montant : - Map port using &UPnP - Ouvrir le port avec l'&UPnP + + Fee: + Frais : - Proxy &IP: - Proxy &IP: + + Dust: + Poussière: - &Port: - &Port: + + After Fee: + Après frais: - Port of the proxy (e.g. 9050) - Port du proxy (e.g. 9050) + + Change: + Change: - Used for reaching peers via: - Utilisé pour contacter des pairs via: + + (un)select all + (dé)sélectionné tout: - IPv4 - IPv4 + + Tree mode + Mode arbre - IPv6 - IPv6 + + List mode + Mode list - Tor - Tor + + Amount + Montant - &Window - &Fenêtre + + Received with label + Reçu avec : - &Hide the icon from the system tray. - &Cacher l'icône dans la zone de notification. + + Received with address + Reçue avec l'adresse - Hide tray icon - Cacher l'icône de la zone de notification + + Date + Date - &Minimize to the tray instead of the taskbar - &Minimiser dans la barre système au lieu de la barre des tâches + + Confirmations + Confirmations - M&inimize on close - Mi&nimiser lors de la fermeture + + Confirmed + Confirmée - &Display - &Afficher + + Copy address + Copier l'adresse - User Interface &language: - Interface utilisateur &langage: + + Copy label + Copier l'étiquette - &OK - &OK + + + Copy amount + Copier le montant - &Cancel - &Annuler + + Copy transaction ID + Copier l'ID de transaction - default - defaut + + Lock unspent + - none - aucun + + Unlock unspent + - Confirm options reset - Confirmer les options de réinitialisation + + Copy quantity + Copier la quantité - Client restart required to activate changes. - Redémarrage du client nécessaire pour activer les changements. + + Copy fee + Copier les frais - This change would require a client restart. - Ce changement nécessiterait un redémarrage du client. + + Copy after fee + Copier après les frais - The supplied proxy address is invalid. - L'adresse du proxy est invalide. + + Copy bytes + Copier les octets - - - OverviewPage - Form - Formulaire + + Copy dust + - Watch-only: - Regarder seulement: + + Copy change + - Available: - Disponible: + + (%1 locked) + - Pending: - En attente: + + yes + oui - Immature: - Immature: + + no + non - Balances - Balances + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Total: - Total: + + Can vary +/- %1 satoshi(s) per input. + - Your current total balance - Votre balance totale courante + + + (no label) + (aucune étiquette) - Spendable: - Dépensable: + + change from %1 (%2) + - Recent transactions - Transactions récentes + + (change) + - - - PaymentServer - + - PeerTableModel + CreateAssetDialog - User Agent - Agent Utilisateur + + Coin Control Features + - Node/Service - Nœud/Service + + Inputs... + - - - QObject - Amount - Montant + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Éditer l'adresse + + + + &Label + &Étiquette + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adresse + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Un nouveau répertoire de données sera créé. + + + + name + nom + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + Le chemin existe déjà et ce n'est pas un répertoire. + + + + Cannot create data directory here. + Impossible de créer un répertoire ici. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + version + + + + + (%1-bit) + (%1-bit) + + + + About %1 + A propos %1 + + + + Command-line options + Options de ligne de commande + + + + Usage: + Utilisation : + + + + command-line options + Options de ligne de commande + + + + UI Options: + Options interface graphique: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Démarrer sous forme minimisée + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bienvenue + + + + Welcome to %1. + Bienvenue sur %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utiliser le répertoire par défaut + + + + Use a custom data directory: + Utiliser votre propre répertoire + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Erreur: Le répertoire de données "%1" n'a pas pu être créé. + + + + Error + Erreur + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulaire + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Cacher + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Ouvrir URI + + + + Open payment request from URI or file + Ouvrir une demande de paiement depuis une URI ou un fichier + + + + URI: + URI: + + + + Select payment request file + Sélectionner un fichier de demande de paiement + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Options + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Taille du cache de la base de données. + + + + MB + MO + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adresse IP du proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Réinitialiser toutes les options du client par défaut. + + + + &Reset Options + &Options de réinitialisation + + + + &Network + &Réseau + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + Expert + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Ouvrir le port du client Raven automatiquement sur le routeur. Cela ne fonctionne que si votre routeur supporte l'UPnP et si la fonctionnalité est activée. + + + + Map port using &UPnP + Ouvrir le port avec l'&UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port du proxy (e.g. 9050) + + + + Used for reaching peers via: + Utilisé pour contacter des pairs via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Fenêtre + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + &Minimiser dans la barre système au lieu de la barre des tâches + + + + M&inimize on close + Mi&nimiser lors de la fermeture + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Afficher + + + + User Interface &language: + Interface utilisateur &langage: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Annuler + + + + default + defaut + + + + none + aucun + + + + Confirm options reset + Confirmer les options de réinitialisation + + + + + Client restart required to activate changes. + Redémarrage du client nécessaire pour activer les changements. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Ce changement nécessiterait un redémarrage du client. + + + + The supplied proxy address is invalid. + L'adresse du proxy est invalide. + + + + OverviewPage + + + Form + Formulaire + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + Regarder seulement: + + + + Available: + Disponible: + + + + Your current spendable balance + + + + + Pending: + En attente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Immature: + + + + Mined balance that has not yet matured + + + + + Total: + Total: + + + + Your current total balance + Votre balance totale courante + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + Dépensable: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transactions récentes + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Agent Utilisateur + + + + Node/Service + Nœud/Service + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Montant + + + + Enter a Raven address (e.g. %1) + Entrer une adresse Raven (e.g. %1) + + + + %1 d + %1 j + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Aucun + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 et %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + &Copier image + + + + Save QR Code + Sauvegarder QR code + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Version du client + + + + &Information + &Information + + + + Debug window + Fenêtre de débogage + + + + General + Général + + + + Using BerkeleyDB version + Version BerkeleyDButilisée + + + + Datadir + + + + + Startup time + Le temps de démarrage + + + + Network + Réseau + + + + Name + Nom + + + + Number of connections + Nombre de connexions + + + + Block chain + Chaîne de bloc + + + + Current number of blocks + Nombre courant de blocs + + + + Memory Pool + Mémoire du pool + + + + Current number of transactions + Nombre courant de transactions + + + + Memory usage + Usage de la mémoire + + + + &Reset + + + + + + Received + Reçu + + + + + Sent + Envoyé + + + + &Peers + &Pairs + + + + Banned peers + Pairs bannis + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + Autorisé par la liste + + + + Direction + Direction + + + + Version + Version + + + + Starting Block + Bloc de départ + + + + Synced Headers + + + + + Synced Blocks + Blocs Synchronisés + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent Utilisateur + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Services + + + + Ban Score + Score de ban + + + + Connection Time + Temps de connexion + + + + Last Send + Dernier envoyé + + + + Last Receive + Dernier reçu + + + + Ping Time + Temps du ping + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + Attente du ping + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Ouvert + + + + &Console + &Console + + + + &Network Traffic + &Trafic réseau + + + + Totals + Totaux + + + + In: + Entrée: + + + + Out: + Sortie: + + + + Debug log file + Fichier du journal de débogage + + + + Clear console + Nettoyer la console + + + + 1 &hour + 1 &heure + + + + 1 &day + 1 &jour + + + + 1 &week + 1 &semaine + + + + 1 &year + 1 &an + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + via %1 + + + + + never + jamais + + + + Inbound + + + + + Outbound + + + + + Yes + Oui + + + + No + Non + + + + + Unknown + Inconnu + + + + RavenGUI + + + Sign &message... + Signer un &message... + + + + Synchronizing with network... + Synchronisation avec le réseau... + + + + &Overview + &Vue d'ensemble + + + + Node + Nœud + + + + Show general overview of wallet + Affiche une vue d'ensemble du porte-monnaie + + + + &Transactions + &Transactions + + + + Browse transaction history + Permet de parcourir l'historique des transactions + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Qui&tter + + + + Quit application + Quitter l'application + + + + &About %1 + &À propos de %1 + + + + Show information about %1 + Afficher les informations sur %1 + + + + About &Qt + À propos de &Qt + + + + Show information about Qt + Afficher des informations sur Qt + + + + &Options... + &Options... + + + + Modify configuration options for %1 + Modifier les options de configuration pour %1 + + + + &Encrypt Wallet... + &Chiffrer le portefeuille + + + + &Backup Wallet... + &Sauvegarder le portefeuille + + + + &Change Passphrase... + &Modifier le mot de passe + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Adresses d'envoi + + + + &Receiving addresses... + &Adresses de réception + + + + Open &URI... + Ouvrir &URI + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Réindexer les blocs sur le disque... + + + + Send coins to a Raven address + Envoyer des pièces à une adresse Raven + + + + Backup wallet to another location + Sauvegarder le porte-monnaie à un autre emplacement + + + + Change the passphrase used for wallet encryption + Modifier la phrase de passe utilisée pour le cryptage du porte-monnaie + + + + Open debugging and diagnostic console + Ouvrir la console de débogage et de diagnostic + + + + &Verify message... + &Vérification du message + + + + Raven + Raven + + + + Wallet + Portefeuille + + + + &Send + &Envoyer + + + + &Receive + &Réception + + + + &Show / Hide + &Montrer / Cacher + + + + Show or hide the main Window + Montrer ou cacher la fenêtre principale + + + + Encrypt the private keys that belong to your wallet + Crypter les clé privées qui appartiennent votre portefeuille + + + + Sign messages with your Raven addresses to prove you own them + Signer vos messages avec vos adresses Raven pour prouver que vous les détenez + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Fichier + + + + &Help + &Aide + + + + Request payments (generates QR codes and raven: URIs) + Demander des paiements (générer QR codes et raven: URIs) + + + + Show the list of used sending addresses and labels + Montrer la liste des adresses d'envois utilisées et les étiquettes + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + Ouvrir un raven: URI ou demande de paiement + + + + &Command-line options + &Options de ligne de commande + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexation des blocs sur le disque... + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + en retard de %1 + + + + Last received block was generated %1 ago. + Le dernier bloc reçu a été généré %1. + + + + Transactions after this will not yet be visible. + Les transactions ne seront plus visible après ceci. + + + + Error + Erreur + + + + Warning + Attention + + + + Information + Information + + + + Up to date + À jour + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 client + + + + Connecting to peers... + + + + + Catching up... + Rattrapage... + + + + Date: %1 + + Date: %1 + + + + + + Amount: %1 + + Montant:%1 + + + + + Type: %1 + + Type: %1 + + + + + Label: %1 + + Étiquette: %1 + + + + + Address: %1 + + Adresse: %1 + + + + + Sent transaction + Transaction envoyée + + + + Incoming transaction + Transaction entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Le porte-monnaie est <b>chiffré</b> et est actuellement <b>déverrouillé</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Le porte-monnaie est <b>chiffré</b> et est actuellement <b>verrouillé</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Montant : + + + + &Label: + &Étiquette : + + + + &Message: + Message : + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Nettoyer tous les champs du formulaire. + + + + Clear + Nettoyer + + + + Requested payments history + Historique des demandes de paiements. + + + + &Request payment + &Demande de paiement + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Montrer + + + + Remove the selected entries from the list + + + + + Remove + Retirer + + + + Copy URI + + + + + Copy label + Copier l'étiquette + + + + Copy message + + + + + Copy amount + Copier le montant + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + Copier &URI + + + + Copy &Address + Copier &Adresse + + + + &Save Image... + &Sauvegarder image + + + + Request payment to %1 + + + + + Payment information + + + + + URI + URI + + + + Address + Adresse + + + + Amount + Montant + + + + Label + Étiquette + + + + Message + Message + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Date + + + + Label + Étiquette + + + + Message + Message + + + + (no label) + (aucune étiquette) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Envoyer des pièces + + + + Coin Control Features + + + + + Inputs... + Sorties... + + + + automatically selected + Automatiquement sélectionné + + + + Insufficient funds! + Fonds insuffisants + + + + Quantity: + Quantité: + + + + Bytes: + Octets: + + + + Amount: + Montant : + + + + Fee: + Frais: + + + + After Fee: + Après frais: + + + + Change: + Change: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Frais de transaction + + + + Choose... + Choisir... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + par kilo octet + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Cacher + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Recommandé: + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Envoyer des pièces à plusieurs destinataires à la fois + + + + Add &Recipient + + + + + Clear all fields of the form. + Nettoyer tous les champs du formulaire. + + + + Dust: + Poussière: + + + + Confirmation time target: + + + + + Clear &All + Nettoyer &Tout + + + + Balance: + Solde : + + + + Confirm the send action + Confirmer l'action d'envoi + + + + S&end + E&voyer + + + + Copy quantity + Copier la quantité + + + + Copy amount + Copier le montant + + + + Copy fee + Copier les frais + + + + Copy after fee + Copier après les frais + + + + Copy bytes + Copier les octets + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + ou + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (aucune étiquette) + + + + SendCoinsEntry + + + + + A&mount: + &Montant : + + + + &Label: + &Étiquette : + + + + Choose previously used address + Choisir une adresse précédemment utilisée + + + + This is a normal payment. + C'est un paiement normal. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Coller une adresse depuis le presse-papiers + + + + Alt+P + Alt+P + + + + + + Remove this entry + Retirer cette entrée + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Message : + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Oui + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &Signer le message + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Choisir une adresse précédemment utilisée + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Coller une adresse depuis le presse-papiers + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Entrez ici le message que vous désirez signer + + + + Signature + Signature + + + + Copy the current signature to the system clipboard + Copier l'adresse courante dans le presse papier + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + &Signer le message + + + + Reset all sign message fields + + + + + + Clear &All + Nettoyer &Tout + + + + &Verify Message + &Vérifier message + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + Vérifier &Message + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KO/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + État + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Date + + + + Source + Source + + + + Generated + Généré + + + + + + + + From + De + + + + + unknown + inconnu + + + + + + + + To + Á + + + + + own address + Votre adresse + + + + + + watch-only + Lecture uniquement + + + + + label + Étiquette + + + + + + + + + + Credit + Crédit + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + Débit + + + + Total debit + Débit total + + + + Total credit + Crédit total + + + + Transaction fee + + + + + Net amount + Montant net + + + + + + + Message + Message + + + + + Comment + Commentaire + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Montant + + + + + true + vrai + + + + + false + faux + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Ce panneau affiche une description détaillée de la transaction + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Date + + + + Type + Type + + + + Label + Étiquette + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + Lecture uniquement + + + + (n/a) + + + + + (no label) + (aucune étiquette) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Toutes + + + + Today + Aujourd'hui + + + + This week + Cette semaine + + + + This month + Ce mois + + + + Last month + Mois dernier + + + + This year + Cette année + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + Autres + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Copier l'adresse + + + + Copy label + Copier l'étiquette + + + + Copy amount + Copier le montant + + + + Copy transaction ID + Copier l'ID de transaction + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Valeurs séparées par des virgules (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Date + + + + Type + Type + + + + Label + Étiquette + + + + Address + Adresse + + + + Asset + + + + + ID + ID + + + + Exporting Failed + Échec de l'export + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + à + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Options : + + + + Specify data directory + Spécifier le répertoire de données + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + Spécifier votre adresse publique + + + + Accept command line and JSON-RPC commands + Accepter les commandes de JSON-RPC et de la ligne de commande + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Fonctionner en arrière-plan en tant que démon et accepter les commandes + + + + Unable to start HTTP server. See debug log for details. + Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails. + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <category> peut être: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Options de création de bloc: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + Options de connexion: + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + Options de débogage/test + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + +Importation ... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + - Enter a Raven address (e.g. %1) - Entrer une adresse Raven (e.g. %1) + + Specify wallet file (within data directory) + - %1 d - %1 j + + The source code is available from %s. + - %1 h - %1 h + + Transaction fee and change calculation failed + - %1 m - %1 m + + Unable to bind to %s on this computer. %s is probably already running. + - %1 s - %1 s + + Unsupported argument -benchmark ignored, use -debug=bench. + - None - Aucun + + Unsupported argument -debugnet ignored, use -debug=net. + - N/A - N/A + + Unsupported argument -tor found, use -onion. + - %1 ms - %1 ms + + Unsupported logging category %s=%s. + - %1 and %2 - %1 et %2 + + Upgrading UTXO database + - - - QObject::QObject - - - QRImageWidget - &Copy Image - &Copier image + + Use UPnP to map the listening port (default: %u) + - Save QR Code - Sauvegarder QR code + + Use the test chain + - - - RPCConsole - N/A - N/A + + User Agent comment (%s) contains unsafe characters. + - Client version - Version du client + + Verifying blocks... + Vérifications des blocs... - &Information - &Information + + Wallet %s resides outside data directory %s + - Debug window - Fenêtre de débogage + + Wallet debugging/testing options: + - General - Général + + Wallet needed to be rewritten: restart %s to complete + - Using BerkeleyDB version - Version BerkeleyDButilisée + + Wallet options: + Options du portefeuille: - Startup time - Le temps de démarrage + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Network - Réseau + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Name - Nom + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Number of connections - Nombre de connexions + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Block chain - Chaîne de bloc + + Error: Listening for incoming connections failed (listen returned error %s) + - Current number of blocks - Nombre courant de blocs + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - Memory Pool - Mémoire du pool + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Current number of transactions - Nombre courant de transactions + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Memory usage - Usage de la mémoire + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Received - Reçu + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Sent - Envoyé + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Peers - &Pairs + + The transaction amount is too small to send after the fee has been deducted + - Banned peers - Pairs bannis + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Whitelisted - Autorisé par la liste + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Direction - Direction + + (default: %u) + (défaut: %u) - Version - Version + + Accept public REST requests (default: %u) + - Starting Block - Bloc de départ + + Automatically create Tor hidden service (default: %d) + - Synced Blocks - Blocs Synchronisés + + Connect through SOCKS5 proxy + Connecté au travers du proxy SOCKS5 - User Agent - Agent Utilisateur + + Error loading %s: You can't disable HD on an already existing HD wallet + - Services - Services + + Error reading from database, shutting down. + - Ban Score - Score de ban + + Error upgrading chainstate database + - Connection Time - Temps de connexion + + Imports blocks from external blk000??.dat file on startup + - Last Send - Dernier envoyé + + Information + Information - Last Receive - Dernier reçu + + Invalid -onion address or hostname: '%s' + - Ping Time - Temps du ping + + Invalid -proxy address or hostname: '%s' + - Ping Wait - Attente du ping + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Open - &Ouvert + + Invalid netmask specified in -whitelist: '%s' + - &Console - &Console + + Keep at most <n> unconnectable transactions in memory (default: %u) + - &Network Traffic - &Trafic réseau + + Need to specify a port with -whitebind: '%s' + - &Clear - &Nettoyer + + Node relay options: + Options du relais de nœud: - Totals - Totaux + + RPC server options: + Options de serveur RPC: - In: - Entrée: + + Reducing -maxconnections from %d to %d, because of system limitations. + - Out: - Sortie: + + Rescan the block chain for missing wallet transactions on startup + - Debug log file - Fichier du journal de débogage + + Send trace/debug info to console instead of debug.log file + Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log - Clear console - Nettoyer la console + + Show all debugging options (usage: --help -help-debug) + - 1 &hour - 1 &heure + + Shrink debug.log file on client startup (default: 1 when no -debug) + - 1 &day - 1 &jour + + Signing transaction failed + Transaction signée échouée - 1 &week - 1 &semaine + + The transaction amount is too small to pay the fee + - 1 &year - 1 &an + + This is experimental software. + C'est un logiciel expérimental. - %1 B - %1 O + + Tor control port password (default: empty) + - %1 KB - %1 KO + + Tor control port to use if onion listening enabled (default: %s) + - %1 MB - %1 MO + + Transaction amount too small + Montant de la transaction trop bas - %1 GB - %1 GO + + Transaction too large for fee policy + Montant de la transaction trop élevé pour la politique de frais - via %1 - via %1 + + Transaction too large + Transaction trop grande - never - jamais + + Unable to bind to %s on this computer (bind returned error %s) + - Yes - Oui + + Upgrade wallet to latest format on startup + - No - Non + + Username for JSON-RPC connections + Nom d'utilisateur pour les connexions JSON-RPC - Unknown - Inconnu + + Valid Verifier + - - - ReceiveCoinsDialog - &Amount: - Montant : + + Variable is not allow in the expression: ' + - &Label: - &Étiquette : + + Verifier String doesn't exist for asset: + - &Message: - Message : + + Verifier String for asset trasnfer, not found + - Clear all fields of the form. - Nettoyer tous les champs du formulaire. + + Verifier not found for asset: + - Clear - Nettoyer + + Verifier string can not be empty. To default to true, use "true" + - Requested payments history - Historique des demandes de paiements. + + Verifier string is empty + - &Request payment - &Demande de paiement + + Verifier string not found + - Show - Montrer + + Verifying wallet(s)... + - Remove - Retirer + + Warning + Attention - Copy label - Copier l'étiquette + + Warning: unknown new rules activated (versionbit %i) + - Copy amount - Copier le montant + + Whether to operate in a blocks only mode (default: %u) + - - - ReceiveRequestDialog - QR Code - QR Code + + You need to rebuild the database using -reindex to change -txindex + - Copy &URI - Copier &URI + + Zapping all transactions from wallet... + - Copy &Address - Copier &Adresse + + ZeroMQ notification options: + - &Save Image... - &Sauvegarder image + + Password for JSON-RPC connections + Mot de passe pour les connexions JSON-RPC - URI - URI + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - Address - Adresse + + Allow DNS lookups for -addnode, -seednode and -connect + - Amount - Montant + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Label - Étiquette + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Message - Message + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - - - RecentRequestsTableModel - Date - Date + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Label - Étiquette + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Message - Message + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - (no label) - (aucune étiquette) + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - - - SendCoinsDialog - Send Coins - Envoyer des pièces + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Inputs... - Sorties... + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - automatically selected - Automatiquement sélectionné + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Insufficient funds! - Fonds insuffisants + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Quantity: - Quantité: + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Bytes: - Octets: + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Amount: - Montant : + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Fee: - Frais: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - After Fee: - Après frais: + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Change: - Change: + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Transaction Fee: - Frais de transaction + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Choose... - Choisir... + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - per kilobyte - par kilo octet + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Hide - Cacher + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - total at least - Au total au moins + + Output debugging information (default: %u, supplying <category> is optional) + - Recommended: - Recommandé: + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - normal - normal + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - fast - rapide + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Send to multiple recipients at once - Envoyer des pièces à plusieurs destinataires à la fois + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Clear all fields of the form. - Nettoyer tous les champs du formulaire. + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Dust: - Poussière: + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Clear &All - Nettoyer &Tout + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Balance: - Solde : + + This address doesn't contain the correct tags to pass the verifier string check: + - Confirm the send action - Confirmer l'action d'envoi + + This is the transaction fee you may pay when fee estimates are not available. + - S&end - E&voyer + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Copy quantity - Copier la quantité + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Copy amount - Copier le montant + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Copy fee - Copier les frais + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Copy after fee - Copier après les frais + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Copy bytes - Copier les octets + + Unable to reissue asset: unit must be larger than current unit selection + - or - ou + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - (no label) - (aucune étiquette) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - - - SendCoinsEntry - A&mount: - &Montant : + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Pay &To: - Payer &à : + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - &Label: - &Étiquette : + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Choose previously used address - Choisir une adresse précédemment utilisée + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - This is a normal payment. - C'est un paiement normal. + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Alt+A - Alt+A + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Paste address from clipboard - Coller une adresse depuis le presse-papiers + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Alt+P - Alt+P + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Remove this entry - Retirer cette entrée + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Message: - Message : + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Pay To: - Payer à : + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Memo: - Memo: + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - - - SendConfirmationDialog - Yes - Oui + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - ShutdownWindow - - - SignVerifyMessageDialog - &Sign Message - &Signer le message + + %s is set very high! + - Choose previously used address - Choisir une adresse précédemment utilisée + + ' doesn't exist in the database + - Alt+A - Alt+A + + ' has already been used + - Paste address from clipboard - Coller une adresse depuis le presse-papiers + + ' is not a valid character in the expression: + - Alt+P - Alt+P + + ' the amount trying to reissue is to large + - Enter the message you want to sign here - Entrez ici le message que vous désirez signer + + (default: %s) + (défaut: %s) - Signature - Signature + + A space separated list of 12-words used to import a bip44 wallet + - Copy the current signature to the system clipboard - Copier l'adresse courante dans le presse papier + + Always query for peer addresses via DNS lookup (default: %u) + - Sign &Message - &Signer le message + + Asset Transfer amounts must be greater than 0 + - Clear &All - Nettoyer &Tout + + Asset doesn't exist: + - &Verify Message - &Vérifier message + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Verify &Message - Vérifier &Message + + Asset name is not valid + - - - SplashScreen - [testnet] - [testnet] + + Asset with this name is already in the mempool + - - - TrafficGraphWidget - KB/s - KO/s + + Done Loading + - - - TransactionDesc - Status - État + + Enable publish raw asset messages in <address> + - Date - Date + + Error creating %s: You can't create non-HD wallets with this version. + - Source - Source + + Error loading wallet %s. -wallet filename must be a regular file. + - Generated - Généré + + Error loading wallet %s. Duplicate -wallet filename specified. + - From - De + + Error loading wallet %s. Invalid characters in -wallet filename. + - unknown - inconnu + + Error not set + - To - Á + + Error writing bip 39 passphrase to database + - own address - Votre adresse + + Error writing bip 39 vchseed to database + - watch-only - Lecture uniquement + + Error writing bip 39 words to database + - label - Étiquette + + Every '(' must have a corresponding ')' in the expression: + - Credit - Crédit + + Failed to extract destination from change script + - Debit - Débit + + Failed to find restricted asset change address from inputs + - Total debit - Débit total + + Failed to get asset data from script + - Total credit - Crédit total + + Failed to get verifier string from output: + - Net amount - Montant net + + Failed to load Assets Database + - Message - Message + + Flag must be 1 or 0 + - Comment - Commentaire + + How many blocks to check at startup (default: %u, 0 = all) + - Amount - Montant + + Include IP addresses in debug output (default: %u) + - true - vrai + + Init Message Channels - Scanning Asset Transactions + - false - faux + + Insufficient asset funds + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Ce panneau affiche une description détaillée de la transaction + + Invalid Qualifier Name: + - - - TransactionTableModel - Date - Date + + Invalid expressions in verifier string: + - Type - Type + + Invalid parameter: amount must be + - Label - Étiquette + + Invalid parameter: amount must be between + - watch-only - Lecture uniquement + + Invalid parameter: asset amount can't be equal to or less than zero. + - (no label) - (aucune étiquette) + + Invalid parameter: asset amount greater than max money: + - - - TransactionView - All - Toutes + + Invalid parameter: asset_name ' + - Today - Aujourd'hui + + Invalid parameter: has_ipfs must be 0 or 1. + - This week - Cette semaine + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - This month - Ce mois + + Invalid parameter: reissuable must be 0 or 1 + - Last month - Mois dernier + + Invalid parameter: reissuable must be 0 + - This year - Cette année + + Invalid parameter: units must be + - Other - Autres + + Invalid parameter: units must be between 0-8. + - Copy address - Copier l'adresse + + Invalid syntax: + - Copy label - Copier l'étiquette + + Keypool ran out, please call keypoolrefill first + - Copy amount - Copier le montant + + Length is to large. Please use a smaller length + - Copy transaction ID - Copier l'ID de transaction + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Comma separated file (*.csv) - Valeurs séparées par des virgules (*.csv) + + Listen for connections on <port> (default: %u or testnet: %u) + - Date - Date + + Maintain at most <n> connections to peers (default: %u) + - Type - Type + + Make the wallet broadcast transactions + - Label - Étiquette + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Address - Adresse + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - ID - ID + + Mempool cleared + - Exporting Failed - Échec de l'export + + Multiple verifier strings found in transaction + - to - à + + Passphrase securing your 12-word mnemonic word-list + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Options : + + Prepend debug output with timestamp (default: %u) + - Specify data directory - Spécifier le répertoire de données + + Relay and mine data carrier transactions (default: %u) + - Specify your own public address - Spécifier votre adresse publique + + Relay non-P2SH multisig (default: %u) + - Accept command line and JSON-RPC commands - Accepter les commandes de JSON-RPC et de la ligne de commande + + Restricted asset transfer from address that has been frozen + - Run in the background as a daemon and accept commands - Fonctionner en arrière-plan en tant que démon et accepter les commandes + + Send transactions with full-RBF opt-in enabled (default: %u) + - Unable to start HTTP server. See debug log for details. - Impossible de démarrer le serveur HTTP. Voir le journal de débogage pour plus de détails. + + Set key pool size to <n> (default: %u) + - Raven Core - Raven Core + + Set maximum BIP141 block weight (default: %d) + - <category> can be: - <category> peut être: + + Set the Maximum reorg depth (default: %u) + - Block creation options: - Options de création de bloc: + + Set the number of threads to service RPC calls (default: %d) + - Connection options: - Options de connexion: + + Signing asset transaction failed + - Debugging/Testing options: - Options de débogage/test + + Specify configuration file (default: %s) + - Importing... - -Importation ... + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verifying blocks... - Vérifications des blocs... + + Specify pid file (default: %s) + Spécifier le pid du fichier (défaut: %s) - Verifying wallet... - Vérification du portefeuille... + + Spend unconfirmed change when sending transactions (default: %u) + - Wallet options: - Options du portefeuille: + + Starting network threads... + - (default: %u) - (défaut: %u) + + The symbol: ' + - Connect through SOCKS5 proxy - Connecté au travers du proxy SOCKS5 + + The verifier string has two operators without a tag between them + - Information - Information + + The wallet will avoid paying less than the minimum relay fee. + - Node relay options: - Options du relais de nœud: + + This is the minimum transaction fee you pay on every transaction. + - RPC server options: - Options de serveur RPC: + + This is the transaction fee you will pay if you send a transaction. + - Send trace/debug info to console instead of debug.log file - Envoyer les informations de débogage/trace à la console au lieu du fichier debug.log + + Threshold for disconnecting misbehaving peers (default: %u) + - Signing transaction failed - Transaction signée échouée + + Transaction amounts must not be negative + - This is experimental software. - C'est un logiciel expérimental. + + Transaction has too long of a mempool chain + - Transaction amount too small - Montant de la transaction trop bas + + Transaction must have at least one recipient + - Transaction too large for fee policy - Montant de la transaction trop élevé pour la politique de frais + + Turn off the databasing the messages sent with assets (default: %u) + - Transaction too large - Transaction trop grande + + Unable to generate initial keys + - Username for JSON-RPC connections - Nom d'utilisateur pour les connexions JSON-RPC + + Unable to get coin to verify restricted asset transfer from address + - Warning - Attention + + Unable to reissue asset: amount must be 0 or larger + - Password for JSON-RPC connections - Mot de passe pour les connexions JSON-RPC + + Unable to reissue asset: asset_name ' + - Loading addresses... - Chargement des adresses... + + Unable to reissue asset: reissuable is set to false + - (default: %s) - (défaut: %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Adresse -proxy invalide: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Specify pid file (default: %s) - Spécifier le pid du fichier (défaut: %s) + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Fonds insuffisants + Loading block index... - Chargement de l'index des blocs... + Chargement de l'index des blocs... + Loading wallet... Chargement du porte-monnaie... + Cannot downgrade wallet Vous ne pouvez pas rétrograder votre portefeuille - Cannot write default address - Impossible d'écrire l'adresse par défaut - - + Rescanning... Nouvelle analyse... - Done loading - Chargement terminé - - + Error Erreur diff --git a/src/qt/locale/raven_gl.ts b/src/qt/locale/raven_gl.ts index 6c774ac0e9..bc13a9e9be 100644 --- a/src/qt/locale/raven_gl.ts +++ b/src/qt/locale/raven_gl.ts @@ -1,1207 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Crear unha nova dirección + &New &Novo + Copy the currently selected address to the system clipboard Copiar a dirección seleccionada ao cartafol + &Copy &Copiar + C&lose &Pechar + Delete the currently selected address from the list Borrar a dirección actualmente seleccionada da listaxe + Export the data in the current tab to a file Exportar os datos da pestaña actual a un arquivo. + &Export &Exportar + &Delete &Borrar - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Diálogo de Contrasinal + Enter passphrase Introduce contrasinal + New passphrase Novo contrasinal + Repeat new passphrase Repite novo contrasinal - - - BanTableModel - - - RavenGUI - Sign &message... - &Asinar mensaxe... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Synchronizing with network... - Sincronizando coa rede... + + Encrypt wallet + - &Overview - &Vista xeral + + This operation needs your wallet passphrase to unlock the wallet. + - Show general overview of wallet - Amosar vista xeral do moedeiro + + Unlock wallet + - &Transactions - &Transacciones + + This operation needs your wallet passphrase to decrypt the wallet. + - Browse transaction history - Navegar historial de transaccións + + Decrypt wallet + - E&xit - &Saír + + Change passphrase + - Quit application - Saír da aplicación + + Enter the old passphrase and new passphrase to the wallet. + - About &Qt - Acerca de &Qt + + Confirm wallet encryption + - Show information about Qt - Amosar información acerca de Qt + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Options... - &Opcións... + + Are you sure you wish to encrypt your wallet? + - &Encrypt Wallet... - &Encriptar Moedeiro... + + + Wallet encrypted + - &Backup Wallet... - Copia de &Seguridade do Moedeiro... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - &Change Passphrase... - &Cambiar contrasinal... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Receiving addresses... - Direccións para recibir + + + + + Wallet encryption failed + - Reindexing blocks on disk... - Reindexando bloques no disco... + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Send coins to a Raven address - Enviar moedas a unha dirección Raven + + + The supplied passphrases do not match. + - Backup wallet to another location - Facer copia de seguridade do moedeiro noutra localización + + Wallet unlock failed + - Change the passphrase used for wallet encryption - Cambiar o contrasinal empregado para a encriptación do moedeiro + + + + The passphrase entered for the wallet decryption was incorrect. + - &Debug window - Ventana de &Depuración + + Wallet decryption failed + - Open debugging and diagnostic console - Abrir consola de depuración e diagnóstico + + Wallet passphrase was successfully changed. + - &Verify message... - &Verificar mensaxe... + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Raven - Raven + + Asset Selection + - Wallet - Moedeiro + + Quantity: + - &Send - &Enviar + + Bytes: + - &Receive - &Recibir + + Amount: + - &Show / Hide - &Amosar/Agachar + + Dust: + - Show or hide the main Window - Amosar ou agachar a ventana principal + + Fee: + - Encrypt the private keys that belong to your wallet - Encriptar as claves privadas que pertencen ao teu moedeiro + + After Fee: + - Sign messages with your Raven addresses to prove you own them - Asina mensaxes coas túas direccións Raven para probar que te pertencen + + Change: + - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensaxes para asegurar que foron asinados con direccións Raven dadas. + + (un)select all + - &File - &Arquivo + + Tree mode + - &Settings - Axus&tes + + List mode + - &Help - A&xuda + + View assets that you have the ownership asset for + - Tabs toolbar - Barra de ferramentas + + View Administrator Assets + - Request payments (generates QR codes and raven: URIs) - Solicitar pagos (xenera códigos QR e raven: URIs) + + Asset + - Show the list of used sending addresses and labels - Amosar a listaxe de direccións e etiquetas para enviar empregadas + + Amount + - Show the list of used receiving addresses and labels - Amosar a listaxe de etiquetas e direccións para recibir empregadas + + Received with label + - Open a raven: URI or payment request - Abrir un raven: URI ou solicitude de pago + + Received with address + - &Command-line options - Opcións da liña de comandos + + Date + - %1 behind - %1 detrás + + Confirmations + - Last received block was generated %1 ago. - O último bloque recibido foi xerado fai %1. + + Confirmed + - Transactions after this will not yet be visible. - As transaccións despois desta non serán todavía visibles. + + Copy address + - Error - Erro + + Copy label + - Warning - Precaución + + + Copy amount + - Information - Información + + Copy transaction ID + - Up to date - Actualizado + + Lock unspent + - Catching up... - Poñendo ao día... + + Unlock unspent + - Sent transaction - Transacción enviada + + Copy quantity + - Incoming transaction - Transacción entrante + + Copy fee + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - O moedeiro está <b>encriptado</b> e actualmente <b>desbloqueado</b> + + Copy after fee + - Wallet is <b>encrypted</b> and currently <b>locked</b> - O moedeiro está <b>encriptado</b> e actualmente <b>bloqueado</b> + + Copy bytes + - - - CoinControlDialog - Quantity: - Cantidade: + + Copy dust + - Bytes: - Bytes: + + Copy change + - Amount: - Importe: + + (%1 locked) + - Fee: - Pago: + + yes + - Change: - Cambiar: + + no + - (un)select all - (des)selecciona todo + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Tree mode - Modo árbore + + Can vary +/- %1 satoshi(s) per input. + - List mode - Modo lista + + + (no label) + - Amount - Cantidade + + change from %1 (%2) + - Date - Data + + (change) + + + + AssetTableModel - Confirmations - Confirmacións + + Name + - Confirmed - Confirmado + + Quantity + - + - EditAddressDialog + AssetsDialog - Edit Address - Modificar Dirección + + + Send Coins + - &Label - &Etiqueta + + Asset Control Features + - The label associated with this address list entry - A etiqueta asociada con esta entrada da listaxe de direccións + + Inputs... + - The address associated with this address list entry. This can only be modified for sending addresses. - A dirección asociada con esta entrada na listaxe de dirección. Esta so pode ser modificada por direccións para enviar. + + automatically selected + - &Address - &Dirección + + Insufficient funds! + - - - FreespaceChecker - A new data directory will be created. - Crearáse un novo directorio de datos. + + Quantity: + - name - nome + + Bytes: + - Directory already exists. Add %1 if you intend to create a new directory here. - O directorio xa existe. Engade %1 se queres crear un novo directorio aquí. + + Amount: + - Path already exists, and is not a directory. - A ruta xa existe e non é un directorio. + + Dust: + - Cannot create data directory here. - Non se pode crear directorio de datos aquí + + Fee: + - - - HelpMessageDialog - version - versión + + After Fee: + - Command-line options - Opcións da liña de comandos + + Change: + - Usage: - Emprego: + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - command-line options - opcións da liña de comandos + + Custom change address + - - - Intro - Welcome - Benvido + + Transaction Fee: + - Use the default data directory - Empregar o directorio de datos por defecto + + Choose... + - Use a custom data directory: - Empregar un directorio de datos personalizado + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Erro + + Warning: Fee estimation is currently not possible. + - - - ModalOverlay - Form - Formulario + + collapse fee-settings + - Last block time - Hora do último bloque + + Hide + - - - OpenURIDialog - Open URI - Abrir URI + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Open payment request from URI or file - Abrir solicitude de pago dende URI ou ficheiro + + per kilobyte + - URI: - URI: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Select payment request file - Seleccionar ficheiro de solicitude de pago + + (read the tooltip) + - - - OptionsDialog - Options - Opcións + + Recommended: + - &Main - &Principal + + Custom: + - Reset all client options to default. - Restaurar todas as opcións de cliente ás por defecto + + (Smart fee not initialized yet. This usually takes a few blocks...) + - &Reset Options - Opcións de &Restaurar + + Confirmation time target: + - &Network - &Rede + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - W&allet - Moedeiro + + Request Replace-By-Fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir automáticamente o porto do cliente Raven no router. Esto so funciona se o teu router soporta UPnP e está habilitado. + + Confirm the send action + - Map port using &UPnP - Mapear porto empregando &UPnP + + S&end + - Proxy &IP: - &IP do Proxy: + + Clear all fields of the form. + - &Port: - &Porto: + + Clear &All + - Port of the proxy (e.g. 9050) - Porto do proxy (exemplo: 9050) + + Transfer to multiple recipients at once + - &Window - &Xanela + + Add &Recipient + - Show only a tray icon after minimizing the window. - Amosar so un icono na bandexa tras minimiza-la xanela. + + Balance: + - &Minimize to the tray instead of the taskbar - &Minimizar á bandexa en lugar de á barra de tarefas. + + Copy quantity + - M&inimize on close - M&inimizar ao pechar + + Copy amount + - &Display - &Visualización + + Copy fee + - User Interface &language: - &Linguaxe de interface de usuario: + + Copy after fee + - &Unit to show amounts in: - &Unidade na que amosar as cantidades: + + Copy bytes + - Choose the default subdivision unit to show in the interface and when sending coins. - Escolle a unidade de subdivisión por defecto para amosar na interface e ao enviar moedas. + + Copy dust + - &OK - &OK + + Copy change + - &Cancel - &Cancelar + + %1 (%2 blocks) + - default - por defecto + + + + + %1 to %2 + - Confirm options reset - Confirmar opcións de restaurar + + Are you sure you want to send? + - The supplied proxy address is invalid. - A dirección de proxy suministrada é inválida. + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - OverviewPage + AssignQualifier - Form - Formulario + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Raven despois de que se estableza unha conexión, pero este proceso non está todavía rematado. + + Select Type: + - Your current spendable balance - O teu balance actualmente dispoñible + + Select Qualifier: + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transaccións que aínda teñen que ser confirmadas, e non contan todavía dentro do balance gastable + + Address: + - Immature: - Inmaduro: + + IPFS / Hash: + - Mined balance that has not yet matured - O balance minado todavía non madurou + + Custom Change Address + - Total: - Total: + + Check + - Your current total balance - O teu balance actual total + + Clear + - - - PaymentServer - + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - PeerTableModel - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - QObject + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Cantidade: + + + + Bytes: + Bytes: + + + + Amount: + Importe: + + + + Fee: + Pago: + + + + Dust: + + + + + After Fee: + + + + + Change: + Cambiar: + + + + (un)select all + (des)selecciona todo + + + Tree mode + Modo árbore + + + + List mode + Modo lista + + + Amount Cantidade - %1 h - %1 h + + Received with label + - %1 m - %1 m + + Received with address + - N/A - N/A + + Date + Data - - - QObject::QObject - - - QRImageWidget - + + + Confirmations + Confirmacións + + + + Confirmed + Confirmado + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - RPCConsole + CreateAssetDialog - N/A - N/A + + Coin Control Features + - Client version - Versión do cliente + + Inputs... + - &Information - &Información + + automatically selected + - Debug window - Ventana de Depuración + + Insufficient funds! + - Startup time - Tempo de arranque + + + Quantity: + - Network - Rede + + Bytes: + - Number of connections - Número de conexións + + Amount: + - Block chain - Cadea de bloques + + Dust: + - Current number of blocks - Número actual de bloques + + Fee: + - Last block time - Hora do último bloque + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Modificar Dirección + + + + &Label + &Etiqueta + + + + The label associated with this address list entry + A etiqueta asociada con esta entrada da listaxe de direccións + + + + The address associated with this address list entry. This can only be modified for sending addresses. + A dirección asociada con esta entrada na listaxe de dirección. Esta so pode ser modificada por direccións para enviar. + + + + &Address + &Dirección + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Crearáse un novo directorio de datos. + + + + name + nome + + + + Directory already exists. Add %1 if you intend to create a new directory here. + O directorio xa existe. Engade %1 se queres crear un novo directorio aquí. + + + + Path already exists, and is not a directory. + A ruta xa existe e non é un directorio. + + + + Cannot create data directory here. + Non se pode crear directorio de datos aquí + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versión + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Opcións da liña de comandos + + + + Usage: + Emprego: + + + + command-line options + opcións da liña de comandos + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Benvido + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Empregar o directorio de datos por defecto + + + + Use a custom data directory: + Empregar un directorio de datos personalizado + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Erro + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulario + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Hora do último bloque + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI + + + + Open payment request from URI or file + Abrir solicitude de pago dende URI ou ficheiro + + + + URI: + URI: + + + + Select payment request file + Seleccionar ficheiro de solicitude de pago + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opcións + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Restaurar todas as opcións de cliente ás por defecto + + + + &Reset Options + Opcións de &Restaurar + + + + &Network + &Rede + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Moedeiro + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir automáticamente o porto do cliente Raven no router. Esto so funciona se o teu router soporta UPnP e está habilitado. + + + + Map port using &UPnP + Mapear porto empregando &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + &IP do Proxy: + + + + + &Port: + &Porto: + + + + + Port of the proxy (e.g. 9050) + Porto do proxy (exemplo: 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Xanela + + + + Show only a tray icon after minimizing the window. + Amosar so un icono na bandexa tras minimiza-la xanela. + + + + &Minimize to the tray instead of the taskbar + &Minimizar á bandexa en lugar de á barra de tarefas. + + + + M&inimize on close + M&inimizar ao pechar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Visualización + + + + User Interface &language: + &Linguaxe de interface de usuario: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unidade na que amosar as cantidades: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Escolle a unidade de subdivisión por defecto para amosar na interface e ao enviar moedas. + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancelar + + + + default + por defecto + + + + none + + + + + Confirm options reset + Confirmar opcións de restaurar + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + A dirección de proxy suministrada é inválida. + + + + OverviewPage + + + Form + Formulario + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + A información amosada por estar desactualizada. O teu moedeiro sincronízase automáticamente coa rede Raven despois de que se estableza unha conexión, pero este proceso non está todavía rematado. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + O teu balance actualmente dispoñible + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transaccións que aínda teñen que ser confirmadas, e non contan todavía dentro do balance gastable + + + + Immature: + Inmaduro: + + + + Mined balance that has not yet matured + O balance minado todavía non madurou + + + + Total: + Total: + + + + Your current total balance + O teu balance actual total + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantidade + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versión do cliente + + + + &Information + &Información + + + + Debug window + Ventana de Depuración + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Tempo de arranque + + + + Network + Rede + + + + Name + + + + + Number of connections + Número de conexións + + + + Block chain + Cadea de bloques + + + + Current number of blocks + Número actual de bloques + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Hora do último bloque + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + &Tráfico de Rede + + + + Totals + Totais + + + + In: + Dentro: + + + + Out: + Fóra: + + + + Debug log file + Arquivo de log de depuración + + + + Clear console + Limpar consola + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Escribe <b>axuda</b> para unha vista xeral dos comandos dispoñibles. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + &Asinar mensaxe... + + + + Synchronizing with network... + Sincronizando coa rede... + + + + &Overview + &Vista xeral + + + + Node + + + + + Show general overview of wallet + Amosar vista xeral do moedeiro + + + + &Transactions + &Transacciones + + + + Browse transaction history + Navegar historial de transaccións + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Saír + + + + Quit application + Saír da aplicación + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Acerca de &Qt + + + + Show information about Qt + Amosar información acerca de Qt + + + + &Options... + &Opcións... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Encriptar Moedeiro... + + + + &Backup Wallet... + Copia de &Seguridade do Moedeiro... + + + + &Change Passphrase... + &Cambiar contrasinal... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Direccións para recibir + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexando bloques no disco... + + + + Send coins to a Raven address + Enviar moedas a unha dirección Raven + + + + Backup wallet to another location + Facer copia de seguridade do moedeiro noutra localización + + + + Change the passphrase used for wallet encryption + Cambiar o contrasinal empregado para a encriptación do moedeiro + + + + Open debugging and diagnostic console + Abrir consola de depuración e diagnóstico + + + + &Verify message... + &Verificar mensaxe... + + + + Raven + Raven + + + + Wallet + Moedeiro + + + + &Send + &Enviar + + + + &Receive + &Recibir + + + + &Show / Hide + &Amosar/Agachar + + + + Show or hide the main Window + Amosar ou agachar a ventana principal + + + + Encrypt the private keys that belong to your wallet + Encriptar as claves privadas que pertencen ao teu moedeiro + + + + Sign messages with your Raven addresses to prove you own them + Asina mensaxes coas túas direccións Raven para probar que te pertencen + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensaxes para asegurar que foron asinados con direccións Raven dadas. + + + + &File + &Arquivo + + + + &Help + A&xuda + + + + Request payments (generates QR codes and raven: URIs) + Solicitar pagos (xenera códigos QR e raven: URIs) + + + + Show the list of used sending addresses and labels + Amosar a listaxe de direccións e etiquetas para enviar empregadas + + + + Show the list of used receiving addresses and labels + Amosar a listaxe de etiquetas e direccións para recibir empregadas + + + + Open a raven: URI or payment request + Abrir un raven: URI ou solicitude de pago + + + + &Command-line options + Opcións da liña de comandos + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 detrás + + + + Last received block was generated %1 ago. + O último bloque recibido foi xerado fai %1. + + + + Transactions after this will not yet be visible. + As transaccións despois desta non serán todavía visibles. + + + + Error + Erro + + + + Warning + Precaución + + + + Information + Información + + + + Up to date + Actualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Poñendo ao día... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transacción enviada + + + + Incoming transaction + Transacción entrante + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + O moedeiro está <b>encriptado</b> e actualmente <b>desbloqueado</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + O moedeiro está <b>encriptado</b> e actualmente <b>bloqueado</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Cantidade: + + + + &Label: + &Etiqueta: + + + + &Message: + &Mensaxe: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilizar unha das direccións para recibir previas. Reutilizar direccións ten problemas de seguridade e privacidade. Non empregues esto agás que antes se fixese unha solicitude de rexeneración dun pago. + + + + R&euse an existing receiving address (not recommended) + R&eutilizar unha dirección para recibir existente (non recomendado) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Limpar tódolos campos do formulario + + + + Clear + Limpar + + + + Requested payments history + + + + + &Request payment + &Solicitar pago + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + Copiar &Dirección + + + + &Save Image... + &Gardar Imaxe... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Moedas Enviadas + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Fondos insuficientes + + + + Quantity: + Cantidade: + + + + Bytes: + Bytes: + + + + Amount: + Importe: + + + + Fee: + Pago: + + + + After Fee: + + + + + Change: + Cambiar: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Tarifa de transacción: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Enviar a múltiples receptores á vez + + + + Add &Recipient + Engadir &Receptor + + + + Clear all fields of the form. + Limpar tódolos campos do formulario + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + Limpar &Todo + + + + Balance: + Balance: + + + + Confirm the send action + Confirmar a acción de envío + + + + S&end + &Enviar + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &Cantidade: + + + + &Label: + &Etiqueta: + + + + Choose previously used address + Escoller dirección previamente empregada + + + + This is a normal payment. + Este é un pago normal + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección dende portapapeis + + + + Alt+P + Alt+P + + + + + + Remove this entry + Eliminar esta entrada + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mensaxe: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Introduce unha etiqueta para esta dirección para engadila á listaxe de direccións empregadas + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Sinaturas - Asinar / Verificar unha Mensaxe + + + + &Sign Message + &Asinar Mensaxe + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Escoller dirección previamente empregada + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Pegar dirección dende portapapeis + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduce a mensaxe que queres asinar aquí + + + + Signature + Sinatura + + + + Copy the current signature to the system clipboard + Copiar a sinatura actual ao portapapeis do sistema + + + + Sign the message to prove you own this Raven address + Asina a mensaxe para probar que posees esta dirección Raven + + + + Sign &Message + Asinar &Mensaxe + + + + Reset all sign message fields + Restaurar todos os campos de sinatura de mensaxe + + + + + Clear &All + Limpar &Todo + + + + &Verify Message + &Verificar Mensaxe + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Verificar a mensaxe para asegurar que foi asinada coa dirección Raven especificada + + + + Verify &Message + Verificar &Mensaxe + + + + Reset all verify message fields + Restaurar todos os campos de verificación de mensaxe + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Este panel amosa unha descripción detallada da transacción + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opcións: + + + + Specify data directory + Especificar directorio de datos + + + + Connect to a node to retrieve peer addresses, and disconnect + Conectar a nodo para recuperar direccións de pares, e desconectar + + + + Specify your own public address + Especificar a túa propia dirección pública + + + + Accept command line and JSON-RPC commands + Aceptar liña de comandos e comandos JSON-RPC + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Executar no fondo como un demo e aceptar comandos + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Core de Raven + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Enlazar a unha dirección dada e escoitar sempre nela. Emprega a notación [host]:post para IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Executar comando cando unha transacción do moedeiro cambia (%s no comando é substituído por TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <categoría> pode ser: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Opcións de creación de bloque: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Detectada base de datos de bloques corrupta. + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + Queres reconstruír a base de datos de bloques agora? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Erro inicializando a base de datos de bloques + + + + Error initializing wallet database environment %s! + Erro inicializando entorno de base de datos de moedeiro %s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Erro cargando base de datos do bloque + + + + Error opening block database + Erro abrindo base de datos de bloques + + + + Error: Disk space is low! + Erro: Espacio en disco escaso! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + Bloque genesis incorrecto o no existente. Datadir erróneo para a rede? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + Non hai suficientes descritores de arquivo dispoñibles. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + Especificar arquivo do moedeiro (dentro do directorio de datos) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Verificando bloques... + + + + Wallet %s resides outside data directory %s + O moedeiro %s reside fóra do directorio de datos %s + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Executar comando cando se recibe unha alerta relevante ou vemos un fork realmente longo (%s no cmd é substituído pola mensaxe) + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Información + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Enviar traza/información de depuración á consola en lugar de ao arquivo debug.log + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Recortar o arquivo debug.log ao arrancar o cliente (por defecto: 1 cando no-debug) + + + + Signing transaction failed + Fallou a sinatura da transacción + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + A cantidade da transacción é demasiado pequena + + + + Transaction too large for fee policy + + + + + Transaction too large + A transacción é demasiado grande + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Nome de usuario para conexións JSON-RPC + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Precaución + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Contrasinal para conexións JSON-RPC + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Executar comando cando o mellor bloque cambie (%s no comando é sustituído polo hash do bloque) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitir lookup de DNS para -addnote, -seednote e -connect + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + - &Open - &Abrir + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - &Console - &Consola + + This address doesn't contain the correct tags to pass the verifier string check: + - &Network Traffic - &Tráfico de Rede + + This is the transaction fee you may pay when fee estimates are not available. + - &Clear - &Limpar + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Totals - Totais + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - In: - Dentro: + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Out: - Fóra: + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Debug log file - Arquivo de log de depuración + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Clear console - Limpar consola + + Unable to reissue asset: unit must be larger than current unit selection + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Emprega as flechas arriba e abaixo para navegar polo historial, e <b>Ctrl-L</b> para limpar a pantalla. + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Type <b>help</b> for an overview of available commands. - Escribe <b>axuda</b> para unha vista xeral dos comandos dispoñibles. + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - %1 B - %1 B + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - %1 KB - %1 KB + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - %1 MB - %1 MB + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - %1 GB - %1 GB + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - - - ReceiveCoinsDialog - &Amount: - &Cantidade: + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - &Label: - &Etiqueta: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - &Message: - &Mensaxe: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilizar unha das direccións para recibir previas. Reutilizar direccións ten problemas de seguridade e privacidade. Non empregues esto agás que antes se fixese unha solicitude de rexeneración dun pago. + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - R&euse an existing receiving address (not recommended) - R&eutilizar unha dirección para recibir existente (non recomendado) + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Clear all fields of the form. - Limpar tódolos campos do formulario + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Clear - Limpar + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - &Request payment - &Solicitar pago + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - - - ReceiveRequestDialog - QR Code - Código QR + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Copy &URI - Copiar &URI + + %s is set very high! + - Copy &Address - Copiar &Dirección + + ' doesn't exist in the database + - &Save Image... - &Gardar Imaxe... + + ' has already been used + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Moedas Enviadas + + ' is not a valid character in the expression: + - Insufficient funds! - Fondos insuficientes + + ' the amount trying to reissue is to large + - Quantity: - Cantidade: + + (default: %s) + - Bytes: - Bytes: + + A space separated list of 12-words used to import a bip44 wallet + - Amount: - Importe: + + Always query for peer addresses via DNS lookup (default: %u) + - Fee: - Pago: + + Asset Transfer amounts must be greater than 0 + - Change: - Cambiar: + + Asset doesn't exist: + - Transaction Fee: - Tarifa de transacción: + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Send to multiple recipients at once - Enviar a múltiples receptores á vez + + Asset name is not valid + - Add &Recipient - Engadir &Receptor + + Asset with this name is already in the mempool + - Clear all fields of the form. - Limpar tódolos campos do formulario + + Done Loading + - Clear &All - Limpar &Todo + + Enable publish raw asset messages in <address> + - Balance: - Balance: + + Error creating %s: You can't create non-HD wallets with this version. + - Confirm the send action - Confirmar a acción de envío + + Error loading wallet %s. -wallet filename must be a regular file. + - S&end - &Enviar + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - SendCoinsEntry - A&mount: - &Cantidade: + + Error loading wallet %s. Invalid characters in -wallet filename. + - Pay &To: - Pagar &A: + + Error not set + - &Label: - &Etiqueta: + + Error writing bip 39 passphrase to database + - Choose previously used address - Escoller dirección previamente empregada + + Error writing bip 39 vchseed to database + - This is a normal payment. - Este é un pago normal + + Error writing bip 39 words to database + - Alt+A - Alt+A + + Every '(' must have a corresponding ')' in the expression: + - Paste address from clipboard - Pegar dirección dende portapapeis + + Failed to extract destination from change script + - Alt+P - Alt+P + + Failed to find restricted asset change address from inputs + - Remove this entry - Eliminar esta entrada + + Failed to get asset data from script + - Message: - Mensaxe: + + Failed to get verifier string from output: + - Enter a label for this address to add it to the list of used addresses - Introduce unha etiqueta para esta dirección para engadila á listaxe de direccións empregadas + + Failed to load Assets Database + - Pay To: - Pagar A: + + Flag must be 1 or 0 + - Memo: - Memo: + + How many blocks to check at startup (default: %u, 0 = all) + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Sinaturas - Asinar / Verificar unha Mensaxe + + Include IP addresses in debug output (default: %u) + - &Sign Message - &Asinar Mensaxe + + Init Message Channels - Scanning Asset Transactions + - Choose previously used address - Escoller dirección previamente empregada + + Insufficient asset funds + - Alt+A - Alt+A + + Invalid Qualifier Name: + - Paste address from clipboard - Pegar dirección dende portapapeis + + Invalid expressions in verifier string: + - Alt+P - Alt+P + + Invalid parameter: amount must be + - Enter the message you want to sign here - Introduce a mensaxe que queres asinar aquí + + Invalid parameter: amount must be between + - Signature - Sinatura + + Invalid parameter: asset amount can't be equal to or less than zero. + - Copy the current signature to the system clipboard - Copiar a sinatura actual ao portapapeis do sistema + + Invalid parameter: asset amount greater than max money: + - Sign the message to prove you own this Raven address - Asina a mensaxe para probar que posees esta dirección Raven + + Invalid parameter: asset_name ' + - Sign &Message - Asinar &Mensaxe + + Invalid parameter: has_ipfs must be 0 or 1. + - Reset all sign message fields - Restaurar todos os campos de sinatura de mensaxe + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Clear &All - Limpar &Todo + + Invalid parameter: reissuable must be 0 or 1 + - &Verify Message - &Verificar Mensaxe + + Invalid parameter: reissuable must be 0 + - Verify the message to ensure it was signed with the specified Raven address - Verificar a mensaxe para asegurar que foi asinada coa dirección Raven especificada + + Invalid parameter: units must be + - Verify &Message - Verificar &Mensaxe + + Invalid parameter: units must be between 0-8. + - Reset all verify message fields - Restaurar todos os campos de verificación de mensaxe + + Invalid syntax: + - - - SplashScreen - [testnet] - [testnet] + + Keypool ran out, please call keypoolrefill first + - - - TrafficGraphWidget - KB/s - KB/s + + Length is to large. Please use a smaller length + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Este panel amosa unha descripción detallada da transacción + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opcións: + + Listen for connections on <port> (default: %u or testnet: %u) + - Specify data directory - Especificar directorio de datos + + Maintain at most <n> connections to peers (default: %u) + - Connect to a node to retrieve peer addresses, and disconnect - Conectar a nodo para recuperar direccións de pares, e desconectar + + Make the wallet broadcast transactions + - Specify your own public address - Especificar a túa propia dirección pública + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Accept command line and JSON-RPC commands - Aceptar liña de comandos e comandos JSON-RPC + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Run in the background as a daemon and accept commands - Executar no fondo como un demo e aceptar comandos + + Mempool cleared + - Raven Core - Core de Raven + + Multiple verifier strings found in transaction + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Enlazar a unha dirección dada e escoitar sempre nela. Emprega a notación [host]:post para IPv6 + + Passphrase securing your 12-word mnemonic word-list + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Executar comando cando unha transacción do moedeiro cambia (%s no comando é substituído por TxID) + + Prepend debug output with timestamp (default: %u) + - <category> can be: - <categoría> pode ser: + + Relay and mine data carrier transactions (default: %u) + - Block creation options: - Opcións de creación de bloque: + + Relay non-P2SH multisig (default: %u) + - Corrupted block database detected - Detectada base de datos de bloques corrupta. + + Restricted asset transfer from address that has been frozen + - Do you want to rebuild the block database now? - Queres reconstruír a base de datos de bloques agora? + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error initializing block database - Erro inicializando a base de datos de bloques + + Set key pool size to <n> (default: %u) + - Error initializing wallet database environment %s! - Erro inicializando entorno de base de datos de moedeiro %s! + + Set maximum BIP141 block weight (default: %d) + - Error loading block database - Erro cargando base de datos do bloque + + Set the Maximum reorg depth (default: %u) + - Error opening block database - Erro abrindo base de datos de bloques + + Set the number of threads to service RPC calls (default: %d) + - Error: Disk space is low! - Erro: Espacio en disco escaso! + + Signing asset transaction failed + - Failed to listen on any port. Use -listen=0 if you want this. - Fallou escoitar en calquera porto. Emprega -listen=0 se queres esto. + + Specify configuration file (default: %s) + - Incorrect or no genesis block found. Wrong datadir for network? - Bloque genesis incorrecto o no existente. Datadir erróneo para a rede? + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Invalid -onion address: '%s' - Dirección -onion inválida: '%s' + + Specify pid file (default: %s) + - Not enough file descriptors available. - Non hai suficientes descritores de arquivo dispoñibles. + + Spend unconfirmed change when sending transactions (default: %u) + - Specify wallet file (within data directory) - Especificar arquivo do moedeiro (dentro do directorio de datos) + + Starting network threads... + - Verifying blocks... - Verificando bloques... + + The symbol: ' + - Verifying wallet... - Verificando moedeiro... + + The verifier string has two operators without a tag between them + - Wallet %s resides outside data directory %s - O moedeiro %s reside fóra do directorio de datos %s + + The wallet will avoid paying less than the minimum relay fee. + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Executar comando cando se recibe unha alerta relevante ou vemos un fork realmente longo (%s no cmd é substituído pola mensaxe) + + This is the minimum transaction fee you pay on every transaction. + - Information - Información + + This is the transaction fee you will pay if you send a transaction. + - Send trace/debug info to console instead of debug.log file - Enviar traza/información de depuración á consola en lugar de ao arquivo debug.log + + Threshold for disconnecting misbehaving peers (default: %u) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Recortar o arquivo debug.log ao arrancar o cliente (por defecto: 1 cando no-debug) + + Transaction amounts must not be negative + - Signing transaction failed - Fallou a sinatura da transacción + + Transaction has too long of a mempool chain + - Transaction amount too small - A cantidade da transacción é demasiado pequena + + Transaction must have at least one recipient + - Transaction too large - A transacción é demasiado grande + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - Nome de usuario para conexións JSON-RPC + + Unable to generate initial keys + - Warning - Precaución + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Contrasinal para conexións JSON-RPC + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Executar comando cando o mellor bloque cambie (%s no comando é sustituído polo hash do bloque) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Permitir lookup de DNS para -addnote, -seednote e -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Cargando direccións... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Dirección -proxy inválida: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Rede descoñecida especificada en -onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + Rede descoñecida especificada en -onlynet: '%s' + Insufficient funds Fondos insuficientes + Loading block index... Cargando índice de bloques... - Add a node to connect to and attempt to keep the connection open - Engadir un nodo ao que conectarse e tentar manter a conexión aberta - - + Loading wallet... Cargando moedeiro... + Cannot downgrade wallet Non se pode desactualizar o moedeiro - Cannot write default address - Non se pode escribir a dirección por defecto - - + Rescanning... Rescaneando... - Done loading - Carga completa - - + Error Erro diff --git a/src/qt/locale/raven_he.ts b/src/qt/locale/raven_he.ts index fa93545723..c2814680b2 100644 --- a/src/qt/locale/raven_he.ts +++ b/src/qt/locale/raven_he.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label יש ללחוץ עם הכפתור הימני כדי לערוך כתובת או תווית + Create a new address יצירת כתובת חדשה + &New &חדש + Copy the currently selected address to the system clipboard העתקת הכתובת המסומנת ללוח הגזירים + &Copy ה&עתקה + C&lose סגירה + Delete the currently selected address from the list מחיקת הכתובת שנבחרה מהרשימה + Export the data in the current tab to a file יצוא הנתונים מהלשונית הנוכחית לקובץ + &Export י&צוא + &Delete מ&חיקה + Choose the address to send coins to נא לבחור את הכתובת אליה ברצונך לשלוח את המטבעות + Choose the address to receive coins with נא לבחור את הכתובת לקבלת המטבעות + C&hoose &בחירה + Sending addresses כתובת לשליחה + Receiving addresses כתובות לקבלה + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. אלו הן כתובות הביטקוין שלך לשליחת תשלומים. חשוב לבדוק את כמות הכתובות המקבלות לפני שליחת מטבעות. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. אלו הן כתובות הביטקוין שלך לקבלת תשלומים. מומלץ להשתמש בכתובת חדשה לכל העברה. + &Copy Address ה&עתקת כתובת + Copy &Label העתקת &תוית + &Edit &עריכה + Export Address List יצוא רשימת הכתובות + Comma separated file (*.csv) קובץ מופרד בפסיקים (‎*.csv) + Exporting Failed יצוא נכשל + There was an error trying to save the address list to %1. Please try again. אירעה שגיאה בעת הניסיון לשמור את רשימת הכתובת אל %1. נא לנסות שוב. @@ -103,14 +125,17 @@ AddressTableModel + Label תווית + Address כתובת + (no label) (ללא תוית) @@ -118,3012 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog דו־שיח מילת צופן + Enter passphrase נא להזין מילת צופן + New passphrase מילת צופן חדשה + Repeat new passphrase נא לחזור על מילת הצופן החדשה + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. נא להזין את מילת הצופן לארנק.<br/>נא להשתמש במילת צופן המורכבת מ<b>עשרה או יותר תווים אקראיים</b>, או <b>שמונה מילים ומעלה</b>. + Encrypt wallet הצפנת הארנק + This operation needs your wallet passphrase to unlock the wallet. פעולה זו דורשת את מילת הצופן של הארנק שלך כדי לשחרר את הארנק. + Unlock wallet שחרור הארנק + This operation needs your wallet passphrase to decrypt the wallet. פעולה זו דורשת את מילת הצופן של הארנק שלך כדי לפענח את הארנק. + Decrypt wallet פענוח הארנק + Change passphrase החלפת מילת הצופן + Enter the old passphrase and new passphrase to the wallet. נא להזין את מילת הצופן הישנה וחדשה לארנק + Confirm wallet encryption אימות הצפנת הארנק + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! אזהרה: איבוד מילת הצופן לאחר הצפנת הארנק עשויה לגרום לכך <b>שכל הביטקוינים שלך יאבדו</b>! + Are you sure you wish to encrypt your wallet? להצפין את הארנק? + + Wallet encrypted הארנק מוצפן + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 ייסגר כעת כדי לסיים את תהליך ההצפנה. נא לשים לב כי הצפנת הארנק שלך לא יכול להגן על הביטקוינים שלך מפני גניבה או נוזקה שתוקפת את מחשבך. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. חשוב: כל הגיבויים הקודמים שערכת לארנק שלך אמורים להתחלף עם קובץ הארנק המוצפן שנוצר כרגע. מטעמי אבטחה, הגיבויים הקודמים של קובץ הארנק שאינו מוגן הופכים לחסרי תועלת ברגע התחלת השימוש בארנק החדש והמוצפן. + + + + Wallet encryption failed הצפנת הארנק נכשלה + Wallet encryption failed due to an internal error. Your wallet was not encrypted. הצפנת הארנק נכשלה עקב תקלה פנימית. הארנק שלך לא הוצפן. + + The supplied passphrases do not match. מילות הצופן שסופקו אינן תואמות. + Wallet unlock failed שחרור האנרק נכשל + + + The passphrase entered for the wallet decryption was incorrect. מילת הצופן שהוזנה לצורך פענוח הארנק שגויה. + Wallet decryption failed פענוח הארנק נכשל + Wallet passphrase was successfully changed. מילת הצופן של הארנק הוחלפה בהצלחה. + + Warning: The Caps Lock key is on! אזהרה: מקש ה־Caps Lock פעיל! - BanTableModel + AssetControlDialog - IP/Netmask - IP/מסכת רשת + + Asset Selection + - Banned Until - חסום עד + + Quantity: + - - - RavenGUI - Sign &message... - &חתימה על הודעה… + + Bytes: + - Synchronizing with network... - בסנכרון עם הרשת… + + Amount: + - &Overview - &סקירה + + Dust: + - Node - מפרק + + Fee: + - Show general overview of wallet - הצגת סקירה כללית של הארנק + + After Fee: + - &Transactions - ה&עברות + + Change: + - Browse transaction history - עיון בהיסטוריית ההעברות + + (un)select all + - E&xit - י&ציאה + + Tree mode + - Quit application - יציאה מהתכנית + + List mode + - &About %1 - &אודות %1 + + View assets that you have the ownership asset for + - Show information about %1 - הצג מידע על %1 + + View Administrator Assets + - About &Qt - על אודות Qt + + Asset + - Show information about Qt - הצגת מידע על Qt + + Amount + - &Options... - &אפשרויות… + + Received with label + - Modify configuration options for %1 - שינוי אפשרויות התצורה עבור %1 + + Received with address + - &Encrypt Wallet... - ה&צפנת הארנק… + + Date + - &Backup Wallet... - &גיבוי הארנק… + + Confirmations + - &Change Passphrase... - ה&חלפת מילת הצופן… + + Confirmed + - &Sending addresses... - כתובת ה&שליחה… + + Copy address + - &Receiving addresses... - כתובות ה&קבלה… + + Copy label + - Open &URI... - פתיחת &כתובת משאב… + + + Copy amount + - Click to disable network activity. - יש ללחוץ כדי לנטרל פעילות רשת. + + Copy transaction ID + - Network activity disabled. - פעילות הרשת נוטרלה. + + Lock unspent + - Click to enable network activity again. - יש ללחוץ כדי להפעיל את פעילות הרשת מחדש. + + Unlock unspent + - Syncing Headers (%1%)... - הכותרות מתעדכנות (%1%)... + + Copy quantity + - Reindexing blocks on disk... - המקטעים נוספים למפתח בכונן… + + Copy fee + - Send coins to a Raven address - שליחת מטבעות לכתובת ביטקוין + + Copy after fee + - Backup wallet to another location - גיבוי הארנק למיקום אחר + + Copy bytes + - Change the passphrase used for wallet encryption - החלפת מילת הצופן להצפנת הארנק + + Copy dust + - &Debug window - חלון &ניפוי + + Copy change + - Open debugging and diagnostic console - פתיחת לוח הבקרה לאבחון ולניפוי + + (%1 locked) + - &Verify message... - &אימות הודעה… + + yes + - Raven - ביטקוין + + no + - Wallet - ארנק + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &שליחה + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &קבלה + + + (no label) + - &Show / Hide - ה&צגה / הסתרה + + change from %1 (%2) + - Show or hide the main Window - הצגה או הסתרה של החלון הראשי + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - הצפנת המפתחות הפרטיים ששייכים לארנק שלך + + Name + - Sign messages with your Raven addresses to prove you own them - חתום על הודעות עם כתובות הביטקוין שלך כדי להוכיח שהן בבעלותך + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - אמת הודעות כדי להבטיח שהן נחתמו עם כתובת ביטקוין מסוימות + + + Send Coins + - &File - &קובץ + + Asset Control Features + - &Settings - ה&גדרות + + Inputs... + - &Help - ע&זרה + + automatically selected + - Tabs toolbar - סרגל כלים לשוניות + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - בקשת תשלומים (יצירה של קודים מסוג QR וסכימות כתובות משאב של :raven) + + Quantity: + - Show the list of used sending addresses and labels - הצג את רשימת הכתובות לשליחה שהיו בשימוש לרבות התוויות + + Bytes: + - Show the list of used receiving addresses and labels - הצגת רשימת הכתובות והתוויות הנמצאות בשימוש + + Amount: + - Open a raven: URI or payment request - פתיחת ביטקוין: כתובת משאב או בקשת תשלום + + Dust: + - &Command-line options - אפשרויות &שורת הפקודה + + Fee: + - - %n active connection(s) to Raven network - חיבור אחד פעיל לרשת ביטקוין%n חיבורים פעילים לרשת ביטקוין + + + After Fee: + - Processing blocks on disk... - מעבד בלוקים על הדיסק... + + Change: + - %1 behind - %1 מאחור + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - המקטע האחרון שהתקבל נוצר לפני %1. + + Custom change address + - Transactions after this will not yet be visible. - ההעברות שבוצעו לאחר העברה זו לא יופיעו. + + Transaction Fee: + - Error - שגיאה + + Choose... + - Warning - אזהרה + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - מידע + + Warning: Fee estimation is currently not possible. + - Up to date - עדכני + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - יש להציג את הודעת העזרה של %1 כדי להציג רשימה עם אפשרויות שורת פקודה לביטקוין + + Hide + - %1 client - לקוח %1 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Connecting to peers... - מתבצעת התחברות לעמיתים… + + per kilobyte + - Catching up... - מתבצע עדכון… + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Date: %1 - - תאריך: %1 - + + (read the tooltip) + - Amount: %1 - - כמות: %1 - + + Recommended: + - Type: %1 - - סוג: %1 - + + Custom: + - Label: %1 - - תווית: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Address: %1 - - כתובת: %1 - + + Confirmation time target: + - Sent transaction - העברת שליחה + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Incoming transaction - העברת קבלה + + Request Replace-By-Fee + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - הארנק <b>מוצפן</b> ו<b>פתוח</b> כרגע + + Confirm the send action + - Wallet is <b>encrypted</b> and currently <b>locked</b> - הארנק <b>מוצפן</b> ו<b>נעול</b> כרגע + + S&end + - A fatal error occurred. Raven can no longer continue safely and will quit. - אירעה שגיאה חמורה. אין אפשרות להשתמש עוד בביטקוין באופן מאובטח והיישום ייסגר. + + Clear all fields of the form. + - - - CoinControlDialog - Coin Selection - בחירת מטבע + + Clear &All + - Quantity: - כמות: + + Transfer to multiple recipients at once + - Bytes: - בתים: + + Add &Recipient + - Amount: - סכום: + + Balance: + - Fee: - עמלה: + + Copy quantity + - Dust: - אבק: + + Copy amount + - After Fee: - לאחר עמלה: + + Copy fee + - Change: - עודף: + + Copy after fee + - (un)select all - ביטול/אישור הבחירה + + Copy bytes + - Tree mode - מצב עץ + + Copy dust + - List mode - מצב רשימה + + Copy change + - Amount + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/מסכת רשת + + + + Banned Until + חסום עד + + + + CoinControlDialog + + + Coin Selection + בחירת מטבע + + + + Quantity: + כמות: + + + + Bytes: + בתים: + + + + Amount: + סכום: + + + + Fee: + עמלה: + + + + Dust: + אבק: + + + + After Fee: + לאחר עמלה: + + + + Change: + עודף: + + + + (un)select all + ביטול/אישור הבחירה + + + + Tree mode + מצב עץ + + + + List mode + מצב רשימה + + + + Amount כמות + Received with label התקבל עם תווית + Received with address התקבל עם כתובת + Date תאריך + Confirmations אישורים + Confirmed מאושר + Copy address העתקת הכתובת + Copy label העתקת התווית + + Copy amount העתקת הסכום + Copy transaction ID העתקת מזהה ההעברה + Lock unspent נעילת יתרה + Unlock unspent פתיחת יתרה + Copy quantity העתקת הכמות + Copy fee העתקת העמלה + Copy after fee העתקה אחרי העמלה + Copy bytes העתקת בתים + Copy dust העתקת אבק + Copy change העתקת השינוי + + (%1 locked) + + + + yes כן + no לא + This label turns red if any recipient receives an amount smaller than the current dust threshold. תווית זו הופכת לאדומה אם מישהו מהנמענים מקבל סכום נמוך יותר מסף האבק הנוכחי. + Can vary +/- %1 satoshi(s) per input. יכול להשתנות במגמה של +/- %1 סנטושי לקלט. + + (no label) (ללא תוית) - - - EditAddressDialog - Edit Address - עריכת כתובת + + change from %1 (%2) + - &Label - ת&ווית + + (change) + + + + CreateAssetDialog - The label associated with this address list entry - התווית המשויכת לרשומה הזו ברשימת הכתובות + + Coin Control Features + - The address associated with this address list entry. This can only be modified for sending addresses. - הכתובת המשויכת עם רשומה זו ברשימת הכתובות. ניתן לשנות זאת רק עבור כתובות לשליחה. + + Inputs... + - &Address - &כתובת + + automatically selected + - New receiving address - כתובת קבלה חדשה + + Insufficient funds! + - New sending address - כתובת שליחה חדשה + + + Quantity: + - Edit receiving address - עריכת כתובת הקבלה + + Bytes: + - Edit sending address - עריכת כתובת השליחה + + Amount: + - The entered address "%1" is not a valid Raven address. - הכתובת שהוקלדה „%1” היא אינה כתובת ביטקוין תקנית. + + Dust: + - The entered address "%1" is already in the address book. - הכתובת שהוקלדה „%1” כבר נמצאת בספר הכתובות. + + Fee: + - Could not unlock wallet. - לא ניתן לשחרר את הארנק. + + After Fee: + - New key generation failed. - יצירת המפתח החדש נכשלה. + + Change: + - - - FreespaceChecker - A new data directory will be created. - תיקיית נתונים חדשה תיווצר. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - name - שם + + Custom change address + - Directory already exists. Add %1 if you intend to create a new directory here. - התיקייה כבר קיימת. ניתן להוסיף %1 אם יש ליצור תיקייה חדשה כאן. + + Name: + - Path already exists, and is not a directory. - הנתיב כבר קיים ואינו מצביע על תיקייה. + + A-Z 0-9 and . or _ as the second character + - Cannot create data directory here. - לא ניתן ליצור כאן תיקיית נתונים. + + The name of the asset you would like to create + - - - HelpMessageDialog - version - גרסה + + Check Availabilty + - (%1-bit) - (%1-סיביות) + + Address: + - About %1 - על אודות %1 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Command-line options - אפשרויות שורת פקודה + + Verifier String: + - Usage: - שימוש: + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - command-line options - אפשרויות שורת פקודה + + Warning: + - UI Options: - אפשרויות ממשק + + The number of assets that will be created + - Choose data directory on startup (default: %u) - נא לבחור תיקיית נתונים עם הפתיחה (בררת מחדל: %u) + + Units: + - Set language, for example "de_DE" (default: system locale) - הגדרת השפה, לדוגמה „he_IL” (בררת מחדל: שפת העמרכת) + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Start minimized - התחל ממוזער + + e.g. 1 + - Set SSL root certificates for payment request (default: -system-) - הגדרת אישורי בסיס SSL לבקשות תשלומים (בררת מחדל: -מערכת-) + + If the owner of this asset will be able to issue more assets in the future + - Show splash screen on startup (default: %u) - הצג מסך פתיחה בעת הפעלה (ברירת מחדל: %u) + + Reissuable + - Reset all settings changed in the GUI - איפוס כל שינויי הגדרות התצוגה + + Does this asset have an ipfs hash to go with it + - - - Intro - Welcome - ברוך בואך + + Add IPFS/Txid Hash + - Welcome to %1. - ברוך הבא ל %1. + + The ipfs/txid hash that contains information about the asset + - As this is the first time the program is launched, you can choose where %1 will store its data. - כיוון שזו ההפעלה הראשונה של התכנית, ניתן לבחור היכן יאוחסן המידע של %1. + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Use the default data directory - שימוש בבררת המחדל של תיקיית הנתונים. + + ERROR TEXT + - Use a custom data directory: - שימוש בתיקיית נתונים מותאמת אישית: + + Transaction Fee: + - Error: Specified data directory "%1" cannot be created. - שגיאה: לא ניתן ליצור את תיקיית הנתונים שצוינה „%1“. + + Choose... + - Error - שגיאה + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - - ModalOverlay - Form - טופס + + Warning: Fee estimation is currently not possible. + - Number of blocks left - מספר מקטעים שנותרו + + collapse fee-settings + - Unknown... - לא ידוע... + + Hide + - Last block time - זמן המקטע האחרון + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Progress - התקדמות + + per kilobyte + - Progress increase per hour - התקדמות לפי שעה + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - calculating... - נערך חישוב… + + (read the tooltip) + - Estimated time left until synced - הזמן המוערך שנותר עד הסנכרון + + Recommended: + - Hide - הסתר + + C&ustom: + - Unknown. Syncing Headers (%1)... - לא ידוע. הכותרות מתעדכנות (%1)… + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - OpenURIDialog - Open URI - פתיחת כתובת משאב + + Confirmation time target: + - Open payment request from URI or file - פתיחת בקשת תשלום מכתובת משאב או מקובץ + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - URI: - כתובת משאב: + + Request Replace-By-Fee + - Select payment request file - בחירת קובץ בקשת תשלום + + Create Asset + - Select payment request file to open - בחירת קובץ בקשת תשלום לפתיחה + + Clear + - - - OptionsDialog - Options - אפשרויות + + Balance: + - &Main - &ראשי + + 123.456 RVN + - Automatically start %1 after logging in to the system. - להפעיל את %1 אוטומטית לאחר הכניסה למערכת. + + Copy quantity + - &Start %1 on system login - ה&פעלת %1 עם הכניסה למערכת + + Copy amount + - Size of &database cache - גודל מ&טמון מסד הנתונים + + Copy fee + - MB - מ״ב + + Copy after fee + - Number of script &verification threads - מספר תהליכי ה&אימות של הסקריפט + + Copy bytes + - Accept connections from outside - קבלת חיבורים מבחוץ + + Copy dust + - Allow incoming connections - לאפשר חיבורים נכנסים + + Copy change + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - כתובת ה־IP של המתווך (לדוגמה IPv4: 127.0.0.1‏ / IPv6: ::1) + + %1 (%2 blocks) + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - כתובות צד־שלישי (כגון: סייר מקטעים) שמופיעים בלשונית ההעברות בתור פריטים בתפריט ההקשר. %s בכתובת מוחלף בגיבוב ההעברה. מספר כתובות יופרדו בפס אנכי |. + + Main Asset + - Third party transaction URLs - כתובות העברה צד־שלישי + + Sub Asset + - Active command-line options that override above options: - אפשרויות פעילות בשורת הפקודה שדורסות את האפשרויות שלהלן: + + Unique Asset + - Reset all client options to default. - איפוס כל אפשרויות התכנית לבררת המחדל. + + Messaging Channel Asset + - &Reset Options - &איפוס אפשרויות + + Qualifier Asset + - &Network - &רשת + + Sub Qualifier Asset + - (0 = auto, <0 = leave that many cores free) - (0 = אוטומטי, <0 = להשאיר כזאת כמות של ליבות חופשיות) + + Restricted Asset + - W&allet - &ארנק + + Asset Type + - Expert - מומחה + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Enable coin &control features - הפעלת תכונות &בקרת מטבעות + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - אם אפשרות ההשקעה של עודף בלתי מאושר תנוטרל, לא ניתן יהיה להשתמש בעודף מההעברה עד שלהעברה יהיה לפחות אישור אחד. פעולה זו גם משפיעה על חישוב המאזן שלך. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Spend unconfirmed change - עודף &בלתי מאושר מההשקעה + + + + Warning: Invalid Raven address + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - פתיחת הפתחה של ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מופעל ונתמך בנתב. + + Warning: Restricted Assets Reissuance requires an address + - Map port using &UPnP - מיפוי פתחה באמצעות UPnP + + Valid Asset + - Proxy &IP: - כתובת ה־IP של המ&תווך: + + Invalid: Asset name already in use + - &Port: - &פתחה: + + Error: Asset Database not in sync + - Port of the proxy (e.g. 9050) - הפתחה של המתווך (למשל 9050) + + + %1 to %2 + - IPv4 - IPv4 + + Are you sure you want to send? + - IPv6 - IPv6 + + added as transaction fee + - Tor - Tor + + Total Amount %1 + - &Window - &חלון + + or + - &Hide the icon from the system tray. - ה&סתרת הסמל ממגש המערכת. + + Confirm send assets + - Hide tray icon - הסתרת הסמל במגש המערכת + + Invalid: + - Show only a tray icon after minimizing the window. - הצג סמל מגש בלבד לאחר מזעור החלון. + + Copy + - &Minimize to the tray instead of the taskbar - מ&זעור למגש במקום לשורת המשימות + + Transaction ID Copied + - M&inimize on close - מ&זעור עם סגירה + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - &Display - ת&צוגה + + Warning: Unknown change address + - User Interface &language: - &שפת מנשק המשתמש: + + Confirm custom change address + - The user interface language can be set here. This setting will take effect after restarting %1. - ניתן להגדיר כאן את שפת מנשק המשתמש. הגדרה זו תיכנס לתוקף לאחר הפעלה של %1 מחדש. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - &Unit to show amounts in: - י&חידת מידה להצגת כמויות: + + (no label) + - Choose the default subdivision unit to show in the interface and when sending coins. - ניתן לבחור את בררת המחדל ליחידת החלוקה שתוצג במנשק ובעת שליחת מטבעות. + + Pay only the required fee of %1 + + + + EditAddressDialog - Whether to show coin control features or not. - האם להציג תכונות שליטת מטבע או לא. + + Edit Address + עריכת כתובת - &OK - &אישור + + &Label + ת&ווית - &Cancel - &ביטול + + The label associated with this address list entry + התווית המשויכת לרשומה הזו ברשימת הכתובות - default - בררת מחדל + + The address associated with this address list entry. This can only be modified for sending addresses. + הכתובת המשויכת עם רשומה זו ברשימת הכתובות. ניתן לשנות זאת רק עבור כתובות לשליחה. - none - ללא + + &Address + &כתובת - Confirm options reset - אישור איפוס האפשרויות + + New receiving address + כתובת קבלה חדשה - Client restart required to activate changes. - נדרשת הפעלה מחדש של הלקוח כדי להפעיל את השינויים. + + New sending address + כתובת שליחה חדשה - Client will be shut down. Do you want to proceed? - הלקוח יכבה. להמשיך? + + Edit receiving address + עריכת כתובת הקבלה - This change would require a client restart. - שינוי זה ידרוש הפעלה מחדש של תכנית הלקוח. + + Edit sending address + עריכת כתובת השליחה - The supplied proxy address is invalid. - כתובת המתווך שסופקה אינה תקינה. + + The entered address "%1" is not a valid Raven address. + הכתובת שהוקלדה „%1” היא אינה כתובת ביטקוין תקנית. - - - OverviewPage - Form - טופס + + The entered address "%1" is already in the address book. + הכתובת שהוקלדה „%1” כבר נמצאת בספר הכתובות. - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת הביטקוין לאחר יצירת החיבור, אך התהליך טרם הסתיים. + + Could not unlock wallet. + לא ניתן לשחרר את הארנק. - Watch-only: - צפייה בלבד: + + New key generation failed. + יצירת המפתח החדש נכשלה. + + + FreespaceChecker - Available: - זמין: + + A new data directory will be created. + תיקיית נתונים חדשה תיווצר. - Your current spendable balance - היתרה הזמינה הנוכחית + + name + שם - Pending: - בהמתנה: + + Directory already exists. Add %1 if you intend to create a new directory here. + התיקייה כבר קיימת. ניתן להוסיף %1 אם יש ליצור תיקייה חדשה כאן. - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - הסכום הכולל של העברות שטרם אושרו ועדיין אינן נספרות בחישוב היתרה הזמינה + + Path already exists, and is not a directory. + הנתיב כבר קיים ואינו מצביע על תיקייה. - Immature: - לא בשל: + + Cannot create data directory here. + לא ניתן ליצור כאן תיקיית נתונים. + + + FreezeAddress - Mined balance that has not yet matured - מאזן שנכרה וטרם הבשיל + + Frame + - Balances - מאזנים + + Restricted Asset: + - Total: - סך הכול: + + Address: + - Your current total balance - סך כל היתרה הנוכחית שלך + + Custom Change Address + - Your current balance in watch-only addresses - המאזן הנוכחי שלך בכתובות לקריאה בלבד + + IPFS / Hash: + - Spendable: - ניתנים לבזבוז + + Single Address Options + - Recent transactions - העברות אחרונות + + Global Options + - Unconfirmed transactions to watch-only addresses - העברות בלתי מאושרות לכתובות לצפייה בלבד + + Free&ze trading on this address + - Mined balance in watch-only addresses that has not yet matured - מאזן לאחר כרייה בכתובות לצפייה בלבד שעדיין לא הבשילו + + Unfreeze tradin&g on this address + - Current total balance in watch-only addresses - המאזן הכולל הנוכחי בכתובות לצפייה בלבד + + Freeze all &trading for the selected restricted asset + - - - PaymentServer - Payment request error - שגיאת בקשת תשלום + + &Unfreeze all trading for the selected restricted asset + - Cannot start raven: click-to-pay handler - לא ניתן להפעיל את המקשר raven: click-to-pay + + Check + - URI handling - טיפול בכתובות + + Clear + - Invalid payment address %1 - כתובת תשלום שגויה %1 + + Submit + - Payment request rejected - בקשת התשלום נדחתה + + Data has been validated, You can now submit the restriction transaction + - Payment request network doesn't match client network. - רשת בקשת התשלום אינה תואמת לרשת הלקוח. + + Must have a restricted asset selected + - Payment request expired. - בקשת התשלום פגה. + + Address is already frozen + - Payment request is not initialized. - בקשת התשלום לא הופעלה. + + Address is not frozen + - Unverified payment requests to custom payment scripts are unsupported. - בקשות תשלום לתסריטי תשלום מותאמים אישית שלא עברו וידוא אינן נתמכות. + + Restricted asset is already frozen globally + - Invalid payment request. - בקשת תשלום שגויה. + + Restricted asset is not frozen globally + - Refund from %1 - זיכוי מאת %1 + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Error communicating with %1: %2 - שגיאה בעת יצירת קשר עם %1:‏ %2 + + Warning: transaction while syncing wallet! + - Payment request cannot be parsed! - לא ניתן לפענח את בקשת התשלום! + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - Bad response from server %1 - תגובה שגויה מהשרת %1 + + version + גרסה - Network request error - שגיאת בקשת רשת + + + (%1-bit) + (%1-סיביות) - Payment acknowledged - התשלום אושר + + About %1 + על אודות %1 - - - PeerTableModel - User Agent - סוכן משתמש + + Command-line options + אפשרויות שורת פקודה - - - QObject - Amount - כמות + + Usage: + שימוש: - Enter a Raven address (e.g. %1) - נא להזין כתובת ביטקוין (למשל: %1) + + command-line options + אפשרויות שורת פקודה - %1 d - %1 ימים + + UI Options: + אפשרויות ממשק - %1 h - %1 שעות + + Choose data directory on startup (default: %u) + נא לבחור תיקיית נתונים עם הפתיחה (בררת מחדל: %u) - %1 m - %1 דקות + + Set language, for example "de_DE" (default: system locale) + הגדרת השפה, לדוגמה „he_IL” (בררת מחדל: שפת העמרכת) - %1 s - %1 שניות + + Start minimized + התחל ממוזער - None - ללא + + Set SSL root certificates for payment request (default: -system-) + הגדרת אישורי בסיס SSL לבקשות תשלומים (בררת מחדל: -מערכת-) - N/A - לא זמין + + Show splash screen on startup (default: %u) + הצג מסך פתיחה בעת הפעלה (ברירת מחדל: %u) - %1 ms - %1 מילישניות + + Reset all settings changed in the GUI + איפוס כל שינויי הגדרות התצוגה - - %n second(s) - שנייה אחת%n שניות + + + Intro + + + Welcome + ברוך בואך - - %n minute(s) - דקה אחת%n דקות + + + Welcome to %1. + ברוך הבא ל %1. - - %n hour(s) - שעה אחת%n שעות + + + As this is the first time the program is launched, you can choose where %1 will store its data. + כיוון שזו ההפעלה הראשונה של התכנית, ניתן לבחור היכן יאוחסן המידע של %1. - - %n day(s) - יום אחד%n ימים + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - - %n week(s) - שבוע אחד%n שבועות + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - %1 and %2 - %1 ו%2 + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + - - %n year(s) - שנה אחת%n שנים + + + Use the default data directory + שימוש בבררת המחדל של תיקיית הנתונים. - %1 didn't yet exit safely... - הסגירה של %1 לא הושלמה בהצלחה עדיין… + + Use a custom data directory: + שימוש בתיקיית נתונים מותאמת אישית: - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - שגיאה: תיקיית הנתונים שצוינה „%1” אינה קיימת. + + Raven + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - שגיאה: לא ניתן לפענח את התצורה: %1. יש להשתמש אך ורק בתחביר מפתח=ערך. + + At least %1 GB of data will be stored in this directory, and it will grow over time. + - Error: %1 - שגיאה: %1 + + Approximately %1 GB of data will be stored in this directory. + - - - QRImageWidget - &Save Image... - &שמירת תמונה… + + %1 will download and store a copy of the Raven block chain. + - &Copy Image - העתקת ת&מונה + + The wallet will also be stored in this directory. + - Save QR Code - שמירת קוד QR + + Error: Specified data directory "%1" cannot be created. + שגיאה: לא ניתן ליצור את תיקיית הנתונים שצוינה „%1“. - PNG Image (*.png) - תמונת PNG (‏‎*.png) + + Error + שגיאה + + + + %n GB of free space available + + + + + (of %n GB needed) + - RPCConsole + MnemonicDialog - N/A - לא זמין + + HD Wallet Setup + + + + MnemonicDialog1 - Client version - גרסת מנשק + + HD Wallet Setup + - &Information - מי&דע + + Select the type of wallet to create. + - Debug window - חלון ניפוי + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - General - כללי + + Please choose what you would like to do: + - Using BerkeleyDB version - שימוש ב־BerkeleyDB גרסה + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Datadir - Datadir + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Startup time - זמן עלייה + + Accept + - Network - רשת + + You are choosing to create a new wallet using new seed words. + - Name - שם + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - Number of connections - מספר חיבורים + + New HD Wallet Creation + - Block chain - שרשרת מקטעים + + BIP39 Compliant Seed Words: + - Current number of blocks - מספר המקטעים הנוכחי + + Generate New Seed Words + - Memory Pool - מאגר זכרון + + These 12 generated seed words will be used. + - Current number of transactions - מספר הפעולה הנוכחי + + Passphrase: + - Memory usage - שימוש בזכרון + + Enter a Passphrase to protect your seed words (optional). + - Received - התקבלו + + You may enter an optional Passphrase to protect your seed words. + - Sent - נשלחו + + Warning: + - &Peers - &עמיתים + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Banned peers - משתמשים חסומים + + Accept + - Select a peer to view detailed information. - נא לבחור בעמית כדי להציג מידע מפורט. + + Go Back + - Whitelisted - ברשימה הלבנה + + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 - Direction - כיוון + + Previous HD Wallet Re-creation + - Version - גרסה + + BIP39 Compliant Seed Words: + - Starting Block - בלוק התחלה + + Enter the 12 seed words from your previous wallet here. + - Synced Headers - כותרות עדכניות + + Passphrase: + - Synced Blocks - בלוקים מסונכרנים + + You will need the Passphrase if your previous wallet used one. + - User Agent - סוכן משתמש + + Enter the Passphrase from your previous wallet if it used one. + - Decrease font size - הקטן גודל גופן + + Warning: + - Increase font size - הגדל גודל גופן + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Services - שירותים + + Accept + - Ban Score - דירוג חסימה + + Go Back + - Connection Time - זמן החיבור + + Words are not valid, please check the words and try again + + + + ModalOverlay - Last Send - שליחה אחרונה + + Form + טופס - Last Receive - קבלה אחרונה + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - Ping Time - זמן המענה + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - Time Offset - הפרש זמן + + Number of blocks left + מספר מקטעים שנותרו + + + + Unknown... + לא ידוע... + + + Last block time זמן המקטע האחרון - &Open - &פתיחה + + Progress + התקדמות - &Console - מ&סוף בקרה + + Progress increase per hour + התקדמות לפי שעה - &Network Traffic - &תעבורת רשת + + + calculating... + נערך חישוב… - &Clear - &ניקוי + + Estimated time left until synced + הזמן המוערך שנותר עד הסנכרון - Totals - סכומים + + Hide + הסתר - In: - נכנס: + + Unknown. Syncing Headers (%1)... + לא ידוע. הכותרות מתעדכנות (%1)… + + + MyRestrictedAssetsTableModel - Out: - יוצא: + + Date + - Debug log file - קובץ יומן ניפוי + + Type + - Clear console - ניקוי מסוף הבקרה + + Address + - 1 &hour - 1 שעה + + Asset Name + - 1 &day - 1& יום + + Tagged + - 1 &week - 1 & שבוע + + Untagged + - 1 &year - 1 & שנה + + Frozen + - &Disconnect - &ניתוק + + Unfrozen + - Ban for - חסימה למשך + + Other + - &Unban - &שחרור חסימה + + watch-only + - Welcome to the %1 RPC console. - ברוך בואך למסוף ה־RPC של %1. + + (no label) + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - יש להשתמש בחצים למעלה ולמטה כדי לנווט בהיסטוריה, וב־<b>Ctrl-L</b> כדי לנקות את המסך. + + Date and time that the transaction was received. + - Type <b>help</b> for an overview of available commands. - ניתן להקליד <b>help</b> לקבלת סקירה של הפקודות הזמינות. + + Type of transaction. + - Network activity disabled - פעילות הרשת נוטרלה + + User-defined intent/purpose of the transaction. + - %1 B - %1 ב׳ + + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog - %1 KB - %1 ק״ב + + Open URI + פתיחת כתובת משאב - %1 MB - %1 מ״ב + + Open payment request from URI or file + פתיחת בקשת תשלום מכתובת משאב או מקובץ - %1 GB - %1 ג״ב + + URI: + כתובת משאב: - via %1 - דרך %1 + + Select payment request file + בחירת קובץ בקשת תשלום - never - לעולם לא + + Select payment request file to open + בחירת קובץ בקשת תשלום לפתיחה + + + OptionsDialog - Inbound - תעבורה נכנסת + + Options + אפשרויות - Outbound - תעבורה יוצאת + + &Main + &ראשי - Yes - כן + + Automatically start %1 after logging in to the system. + להפעיל את %1 אוטומטית לאחר הכניסה למערכת. - No - לא + + &Start %1 on system login + ה&פעלת %1 עם הכניסה למערכת - Unknown - לא ידוע + + Size of &database cache + גודל מ&טמון מסד הנתונים - - - ReceiveCoinsDialog - &Amount: - &סכום: + + MB + מ״ב - &Label: - ת&ווית: + + Number of script &verification threads + מספר תהליכי ה&אימות של הסקריפט - &Message: - הו&דעה: + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + כתובת ה־IP של המתווך (לדוגמה IPv4: 127.0.0.1‏ / IPv6: ::1) - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - ניתן להשתמש שוב באחת מכתובות הקבלה שכבר נעשה בהן שימוש. לשימוש חוזר בכתובות ישנן השלכות אבטחה ופרטיות. מומלץ שלא להשתמש באפשרות זו למעט יצירה מחדש של בקשת תשלום שנוצרה בעבר. + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + - R&euse an existing receiving address (not recommended) - ש&ימוש &חוזר בכתובת קבלה קיימת (לא מומלץ) + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - הודעת רשות לצירוף לבקשת התשלום שתוצג בעת פתיחת הבקשה. לתשומת לבך: ההודעה לא תישלח עם התשלום ברשת ביטקוין. + + Hide the icon from the system tray. + - An optional label to associate with the new receiving address. - תווית רשות לשיוך עם כתובת הקבלה החדשה. + + &Hide tray icon + - Use this form to request payments. All fields are <b>optional</b>. - יש להשתמש בטופס זה כדי לבקש תשלומים. כל השדות הם בגדר <b>רשות</b>. + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + - An optional amount to request. Leave this empty or zero to not request a specific amount. - סכום כרשות לבקשה. ניתן להשאיר זאת ריק כדי לא לבקש סכום מסוים. + + &Currency Unit: + - Clear all fields of the form. - ניקוי של כל השדות בטופס. + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + - Clear - ניקוי + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + כתובות צד־שלישי (כגון: סייר מקטעים) שמופיעים בלשונית ההעברות בתור פריטים בתפריט ההקשר. %s בכתובת מוחלף בגיבוב ההעברה. מספר כתובות יופרדו בפס אנכי |. - Requested payments history - היסטוריית בקשות תשלום + + Active command-line options that override above options: + אפשרויות פעילות בשורת הפקודה שדורסות את האפשרויות שלהלן: - &Request payment - &בקשת תשלום + + Open the %1 configuration file from the working directory. + - Show the selected request (does the same as double clicking an entry) - הצגת בקשות נבחרות (דומה ללחיצה כפולה על רשומה) + + Open Configuration File + - Show - הצגה + + Reset all client options to default. + איפוס כל אפשרויות התכנית לבררת המחדל. - Remove the selected entries from the list - הסרת הרשומות הנבחרות מהרשימה + + &Reset Options + &איפוס אפשרויות - Remove - הסרה + + &Network + &רשת - Copy URI - העתקת כתובת + + (0 = auto, <0 = leave that many cores free) + (0 = אוטומטי, <0 = להשאיר כזאת כמות של ליבות חופשיות) - Copy label - העתקת התווית + + W&allet + &ארנק - Copy message - העתקת הודעה + + Expert + מומחה - Copy amount - העתקת הסכום + + Enable coin &control features + הפעלת תכונות &בקרת מטבעות - - - ReceiveRequestDialog - QR Code - קוד QR + + Enable fee control features + - Copy &URI - העתקת &כתובת משאב + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + אם אפשרות ההשקעה של עודף בלתי מאושר תנוטרל, לא ניתן יהיה להשתמש בעודף מההעברה עד שלהעברה יהיה לפחות אישור אחד. פעולה זו גם משפיעה על חישוב המאזן שלך. - Copy &Address - העתקת &כתובת + + &Spend unconfirmed change + עודף &בלתי מאושר מההשקעה - &Save Image... - &שמירת תמונה… + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + פתיחת הפתחה של ביטקוין בנתב באופן אוטומטי. עובד רק אם UPnP מופעל ונתמך בנתב. - Request payment to %1 - בקשת תשלום אל %1 + + Map port using &UPnP + מיפוי פתחה באמצעות UPnP - Payment information - פרטי תשלום + + Accept connections from outside. + - URI - כתובת + + Allow incomin&g connections + - Address - כתובת + + Connect to the Raven network through a SOCKS5 proxy. + - Amount - סכום + + &Connect through SOCKS5 proxy (default proxy): + - Label - תוית + + + Proxy &IP: + כתובת ה־IP של המ&תווך: - Message - הודעה + + + &Port: + &פתחה: - Resulting URI too long, try to reduce the text for label / message. - הכתובת שנוצרה ארוכה מדי, כדאי לנסות לקצר את הטקסט של התווית / הודעה. + + + Port of the proxy (e.g. 9050) + הפתחה של המתווך (למשל 9050) - - - RecentRequestsTableModel - Date - תאריך + + Used for reaching peers via: + - Label - תוית + + IPv4 + IPv4 - Message - הודעה + + IPv6 + IPv6 - (no label) - (ללא תוית) + + Tor + Tor - (no message) - (אין הודעה) + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + - (no amount requested) - (לא התבקש סכום) + + &Window + &חלון - - - SendCoinsDialog - Send Coins - שליחת מטבעות + + Show only a tray icon after minimizing the window. + הצג סמל מגש בלבד לאחר מזעור החלון. - Coin Control Features - תכונות בקרת מטבעות + + &Minimize to the tray instead of the taskbar + מ&זעור למגש במקום לשורת המשימות - Inputs... - קלטים… + + M&inimize on close + מ&זעור עם סגירה - automatically selected - בבחירה אוטומטית + + Only show toolbar icons. No text. + - Insufficient funds! - אין מספיק כספים! + + &Icons only + - Quantity: - כמות: + + &Display + ת&צוגה - Bytes: - בתים: + + User Interface &language: + &שפת מנשק המשתמש: - Amount: - סכום: + + The user interface language can be set here. This setting will take effect after restarting %1. + ניתן להגדיר כאן את שפת מנשק המשתמש. הגדרה זו תיכנס לתוקף לאחר הפעלה של %1 מחדש. - Fee: - עמלה: + + &Unit to show amounts in: + י&חידת מידה להצגת כמויות: - After Fee: - לאחר עמלה: + + Choose the default subdivision unit to show in the interface and when sending coins. + ניתן לבחור את בררת המחדל ליחידת החלוקה שתוצג במנשק ובעת שליחת מטבעות. + + + + Whether to show coin control features or not. + האם להציג תכונות שליטת מטבע או לא. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &אישור + + + + &Cancel + &ביטול + + + + default + בררת מחדל + + + + none + ללא + + + + Confirm options reset + אישור איפוס האפשרויות + + + + + Client restart required to activate changes. + נדרשת הפעלה מחדש של הלקוח כדי להפעיל את השינויים. + + + + Client will be shut down. Do you want to proceed? + הלקוח יכבה. להמשיך? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + שינוי זה ידרוש הפעלה מחדש של תכנית הלקוח. + + + + The supplied proxy address is invalid. + כתובת המתווך שסופקה אינה תקינה. + + + + OverviewPage + + + Form + טופס + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + המידע המוצג עשוי להיות מיושן. הארנק שלך מסתנכרן באופן אוטומטי עם רשת הביטקוין לאחר יצירת החיבור, אך התהליך טרם הסתיים. + + + + Watch-only: + צפייה בלבד: + + + + Available: + זמין: + + + + Your current spendable balance + היתרה הזמינה הנוכחית + + + + Pending: + בהמתנה: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + הסכום הכולל של העברות שטרם אושרו ועדיין אינן נספרות בחישוב היתרה הזמינה + + + + Immature: + לא בשל: + + + + Mined balance that has not yet matured + מאזן שנכרה וטרם הבשיל + + + + Total: + סך הכול: + + + + Your current total balance + סך כל היתרה הנוכחית שלך + + + + RVN Balances + + + + + Your current balance in watch-only addresses + המאזן הנוכחי שלך בכתובות לקריאה בלבד + + + + Spendable: + ניתנים לבזבוז + + + + Asset Balances + + + + + Search + + + + + Recent transactions + העברות אחרונות + + + + Unconfirmed transactions to watch-only addresses + העברות בלתי מאושרות לכתובות לצפייה בלבד + + + + Mined balance in watch-only addresses that has not yet matured + מאזן לאחר כרייה בכתובות לצפייה בלבד שעדיין לא הבשילו + + + + Current total balance in watch-only addresses + המאזן הכולל הנוכחי בכתובות לצפייה בלבד + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + שגיאת בקשת תשלום + + + + Cannot start raven: click-to-pay handler + לא ניתן להפעיל את המקשר raven: click-to-pay + + + + + + URI handling + טיפול בכתובות + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + כתובת תשלום שגויה %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + בקשת התשלום נדחתה + + + + Payment request network doesn't match client network. + רשת בקשת התשלום אינה תואמת לרשת הלקוח. + + + + Payment request expired. + בקשת התשלום פגה. + + + + Payment request is not initialized. + בקשת התשלום לא הופעלה. + + + + Unverified payment requests to custom payment scripts are unsupported. + בקשות תשלום לתסריטי תשלום מותאמים אישית שלא עברו וידוא אינן נתמכות. + + + + + Invalid payment request. + בקשת תשלום שגויה. + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + זיכוי מאת %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + שגיאה בעת יצירת קשר עם %1:‏ %2 + + + + Payment request cannot be parsed! + לא ניתן לפענח את בקשת התשלום! + + + + Bad response from server %1 + תגובה שגויה מהשרת %1 + + + + Network request error + שגיאת בקשת רשת + + + + Payment acknowledged + התשלום אושר + + + + PeerTableModel + + + User Agent + סוכן משתמש + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + כמות + + + + Enter a Raven address (e.g. %1) + נא להזין כתובת ביטקוין (למשל: %1) + + + + %1 d + %1 ימים + + + + %1 h + %1 שעות + + + + %1 m + %1 דקות + + + + + %1 s + %1 שניות + + + + None + ללא + + + + N/A + לא זמין + + + + %1 ms + %1 מילישניות + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 ו%2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + הסגירה של %1 לא הושלמה בהצלחה עדיין… + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + שגיאה: תיקיית הנתונים שצוינה „%1” אינה קיימת. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + שגיאה: לא ניתן לפענח את התצורה: %1. יש להשתמש אך ורק בתחביר מפתח=ערך. + + + + Error: %1 + שגיאה: %1 + + + + QRImageWidget + + + &Save Image... + &שמירת תמונה… + + + + &Copy Image + העתקת ת&מונה + + + + Save QR Code + שמירת קוד QR + + + + PNG Image (*.png) + תמונת PNG (‏‎*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + לא זמין + + + + Client version + גרסת מנשק + + + + &Information + מי&דע + + + + Debug window + חלון ניפוי + + + + General + כללי + + + + Using BerkeleyDB version + שימוש ב־BerkeleyDB גרסה + + + + Datadir + Datadir + + + + Startup time + זמן עלייה + + + + Network + רשת + + + + Name + שם + + + + Number of connections + מספר חיבורים + + + + Block chain + שרשרת מקטעים + + + + Current number of blocks + מספר המקטעים הנוכחי + + + + Memory Pool + מאגר זכרון + + + + Current number of transactions + מספר הפעולה הנוכחי + + + + Memory usage + שימוש בזכרון + + + + &Reset + + + + + + Received + התקבלו + + + + + Sent + נשלחו + + + + &Peers + &עמיתים + + + + Banned peers + משתמשים חסומים + + + + + + Select a peer to view detailed information. + נא לבחור בעמית כדי להציג מידע מפורט. + + + + Whitelisted + ברשימה הלבנה + + + + Direction + כיוון + + + + Version + גרסה + + + + Starting Block + בלוק התחלה + + + + Synced Headers + כותרות עדכניות + + + + Synced Blocks + בלוקים מסונכרנים + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + סוכן משתמש + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + הקטן גודל גופן + + + + Increase font size + הגדל גודל גופן + + + + Services + שירותים + + + + Ban Score + דירוג חסימה + + + + Connection Time + זמן החיבור + + + + Last Send + שליחה אחרונה + + + + Last Receive + קבלה אחרונה + + + + Ping Time + זמן המענה + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + הפרש זמן + + + + Last block time + זמן המקטע האחרון + + + + &Open + &פתיחה + + + + &Console + מ&סוף בקרה + + + + &Network Traffic + &תעבורת רשת + + + + Totals + סכומים + + + + In: + נכנס: + + + + Out: + יוצא: + + + + Debug log file + קובץ יומן ניפוי + + + + Clear console + ניקוי מסוף הבקרה + + + + 1 &hour + 1 שעה + + + + 1 &day + 1& יום + + + + 1 &week + 1 & שבוע + + + + 1 &year + 1 & שנה + + + + &Disconnect + &ניתוק + + + + + + + Ban for + חסימה למשך + + + + &Unban + &שחרור חסימה + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + ברוך בואך למסוף ה־RPC של %1. + + + + Type <b>help</b> for an overview of available commands. + ניתן להקליד <b>help</b> לקבלת סקירה של הפקודות הזמינות. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + פעילות הרשת נוטרלה + + + + (node id: %1) + + + + + via %1 + דרך %1 + + + + + never + לעולם לא + + + + Inbound + תעבורה נכנסת + + + + Outbound + תעבורה יוצאת + + + + Yes + כן + + + + No + לא + + + + + Unknown + לא ידוע + + + + RavenGUI + + + Sign &message... + &חתימה על הודעה… + + + + Synchronizing with network... + בסנכרון עם הרשת… + + + + &Overview + &סקירה + + + + Node + מפרק + + + + Show general overview of wallet + הצגת סקירה כללית של הארנק + + + + &Transactions + ה&עברות + + + + Browse transaction history + עיון בהיסטוריית ההעברות + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + י&ציאה + + + + Quit application + יציאה מהתכנית + + + + &About %1 + &אודות %1 + + + + Show information about %1 + הצג מידע על %1 + + + + About &Qt + על אודות Qt + + + + Show information about Qt + הצגת מידע על Qt + + + + &Options... + &אפשרויות… + + + + Modify configuration options for %1 + שינוי אפשרויות התצורה עבור %1 + + + + &Encrypt Wallet... + ה&צפנת הארנק… + + + + &Backup Wallet... + &גיבוי הארנק… + + + + &Change Passphrase... + ה&חלפת מילת הצופן… + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + כתובת ה&שליחה… + + + + &Receiving addresses... + כתובות ה&קבלה… + + + + Open &URI... + פתיחת &כתובת משאב… + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + יש ללחוץ כדי לנטרל פעילות רשת. + + + + Network activity disabled. + פעילות הרשת נוטרלה. + + + + Click to enable network activity again. + יש ללחוץ כדי להפעיל את פעילות הרשת מחדש. + + + + Syncing Headers (%1%)... + הכותרות מתעדכנות (%1%)... + + + + Reindexing blocks on disk... + המקטעים נוספים למפתח בכונן… + + + + Send coins to a Raven address + שליחת מטבעות לכתובת ביטקוין + + + + Backup wallet to another location + גיבוי הארנק למיקום אחר + + + + Change the passphrase used for wallet encryption + החלפת מילת הצופן להצפנת הארנק + + + + Open debugging and diagnostic console + פתיחת לוח הבקרה לאבחון ולניפוי + + + + &Verify message... + &אימות הודעה… + + + + Raven + ביטקוין + + + + Wallet + ארנק + + + + &Send + &שליחה + + + + &Receive + &קבלה + + + + &Show / Hide + ה&צגה / הסתרה + + + + Show or hide the main Window + הצגה או הסתרה של החלון הראשי + + + + Encrypt the private keys that belong to your wallet + הצפנת המפתחות הפרטיים ששייכים לארנק שלך + + + + Sign messages with your Raven addresses to prove you own them + חתום על הודעות עם כתובות הביטקוין שלך כדי להוכיח שהן בבעלותך + + + + Verify messages to ensure they were signed with specified Raven addresses + אמת הודעות כדי להבטיח שהן נחתמו עם כתובת ביטקוין מסוימות + + + + &File + &קובץ + + + + &Help + ע&זרה + + + + Request payments (generates QR codes and raven: URIs) + בקשת תשלומים (יצירה של קודים מסוג QR וסכימות כתובות משאב של :raven) + + + + Show the list of used sending addresses and labels + הצג את רשימת הכתובות לשליחה שהיו בשימוש לרבות התוויות + + + + Show the list of used receiving addresses and labels + הצגת רשימת הכתובות והתוויות הנמצאות בשימוש + + + + Open a raven: URI or payment request + פתיחת ביטקוין: כתובת משאב או בקשת תשלום + + + + &Command-line options + אפשרויות &שורת הפקודה + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + מעבד בלוקים על הדיסק... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 מאחור + + + + Last received block was generated %1 ago. + המקטע האחרון שהתקבל נוצר לפני %1. + + + + Transactions after this will not yet be visible. + ההעברות שבוצעו לאחר העברה זו לא יופיעו. + + + + Error + שגיאה + + + + Warning + אזהרה + + + + Information + מידע + + + + Up to date + עדכני + + + + Show the %1 help message to get a list with possible Raven command-line options + יש להציג את הודעת העזרה של %1 כדי להציג רשימה עם אפשרויות שורת פקודה לביטקוין + + + + %1 client + לקוח %1 + + + + Connecting to peers... + מתבצעת התחברות לעמיתים… + + + + Catching up... + מתבצע עדכון… + + + + Date: %1 + + תאריך: %1 + + + + + + Amount: %1 + + כמות: %1 + + + + + Type: %1 + + סוג: %1 + + + + + Label: %1 + + תווית: %1 + + + + + Address: %1 + + כתובת: %1 + + + + + Sent transaction + העברת שליחה + + + + Incoming transaction + העברת קבלה + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + הארנק <b>מוצפן</b> ו<b>פתוח</b> כרגע + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + הארנק <b>מוצפן</b> ו<b>נעול</b> כרגע + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + אירעה שגיאה חמורה. אין אפשרות להשתמש עוד בביטקוין באופן מאובטח והיישום ייסגר. + + + + ReceiveCoinsDialog + + + &Amount: + &סכום: + + + + &Label: + ת&ווית: + + + + &Message: + הו&דעה: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + ניתן להשתמש שוב באחת מכתובות הקבלה שכבר נעשה בהן שימוש. לשימוש חוזר בכתובות ישנן השלכות אבטחה ופרטיות. מומלץ שלא להשתמש באפשרות זו למעט יצירה מחדש של בקשת תשלום שנוצרה בעבר. + + + + R&euse an existing receiving address (not recommended) + ש&ימוש &חוזר בכתובת קבלה קיימת (לא מומלץ) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + הודעת רשות לצירוף לבקשת התשלום שתוצג בעת פתיחת הבקשה. לתשומת לבך: ההודעה לא תישלח עם התשלום ברשת ביטקוין. + + + + + An optional label to associate with the new receiving address. + תווית רשות לשיוך עם כתובת הקבלה החדשה. + + + + Use this form to request payments. All fields are <b>optional</b>. + יש להשתמש בטופס זה כדי לבקש תשלומים. כל השדות הם בגדר <b>רשות</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + סכום כרשות לבקשה. ניתן להשאיר זאת ריק כדי לא לבקש סכום מסוים. + + + + Clear all fields of the form. + ניקוי של כל השדות בטופס. + + + + Clear + ניקוי + + + + Requested payments history + היסטוריית בקשות תשלום + + + + &Request payment + &בקשת תשלום + + + + Show the selected request (does the same as double clicking an entry) + הצגת בקשות נבחרות (דומה ללחיצה כפולה על רשומה) + + + + Show + הצגה + + + + Remove the selected entries from the list + הסרת הרשומות הנבחרות מהרשימה + + + + Remove + הסרה + + + + Copy URI + העתקת כתובת + + + + Copy label + העתקת התווית + + + + Copy message + העתקת הודעה + + + + Copy amount + העתקת הסכום + + + + ReceiveRequestDialog + + + QR Code + קוד QR + + + + Copy &URI + העתקת &כתובת משאב + + + + Copy &Address + העתקת &כתובת + + + + &Save Image... + &שמירת תמונה… + + + + Request payment to %1 + בקשת תשלום אל %1 + + + + Payment information + פרטי תשלום + + + + URI + כתובת + + + + Address + כתובת + + + + Amount + סכום + + + + Label + תוית + + + + Message + הודעה + + + + Resulting URI too long, try to reduce the text for label / message. + הכתובת שנוצרה ארוכה מדי, כדאי לנסות לקצר את הטקסט של התווית / הודעה. + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + תאריך + + + + Label + תוית + + + + Message + הודעה + + + + (no label) + (ללא תוית) + + + + (no message) + (אין הודעה) + + + + (no amount requested) + (לא התבקש סכום) + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + שליחת מטבעות + + + + Coin Control Features + תכונות בקרת מטבעות + + + + Inputs... + קלטים… + + + + automatically selected + בבחירה אוטומטית + + + + Insufficient funds! + אין מספיק כספים! + + + + Quantity: + כמות: + + + + Bytes: + בתים: + + + + Amount: + סכום: + + + + Fee: + עמלה: + + + + After Fee: + לאחר עמלה: + + + + Change: + עודף: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + אם אפשרות זו מופעלת אך כתובת העודף ריקה או שגויה, העודף יישלח לכתובת חדשה שתיווצר. + + + + Custom change address + כתובת לעודף מותאמת אישית + + + + Transaction Fee: + עמלת העברה: + + + + Choose... + בחר... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + צמצום הגדרות עמלה + + + + per kilobyte + עבור קילו-בית + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + הסתר + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + מומלץ: + + + + Custom: + מותאם אישית: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + שליחה למספר מוטבים בו־זמנית + + + + Add &Recipient + הוספת &מוטב + + + + Clear all fields of the form. + ניקוי של כל השדות בטופס. + + + + Dust: + אבק: + + + + Confirmation time target: + + + + + Clear &All + &ניקוי הכול + + + + Balance: + מאזן: + + + + Confirm the send action + אישור פעולת השליחה + + + + S&end + &שליחה + + + + Copy quantity + העתקת הכמות + + + + Copy amount + העתקת הסכום + + + + Copy fee + העתקת העמלה + + + + Copy after fee + העתקה אחרי העמלה + + + + Copy bytes + העתקת בתים + + + + Copy dust + העתקת אבק + + + + Copy change + העתקת השינוי + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + לשלוח? + + + + added as transaction fee + נוספה עמלת העברה + + + + Total Amount %1 + סכום כולל %1 + + + + or + או + + + + Confirm send coins + אימות שליחת מטבעות + + + + The recipient address is not valid. Please recheck. + כתובת הנמען שגויה. נא לבדוק שוב. + + + + The amount to pay must be larger than 0. + הסכום לתשלום צריך להיות גדול מ־0. + + + + The amount exceeds your balance. + הסכום חורג מהמאזן שלך. + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + נמצאה כתובת כפולה: יש להשתמש בכל כתובת פעם אחת בלבד. + + + + Transaction creation failed! + יצירת ההעברה נכשלה! + + + + The transaction was rejected with the following reason: %1 + ההעברה נדחתה מהסיבות הבאות: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + עמלה מעל לסכום של %1 נחשבת לעמלה גבוהה באופן מוגזם. + + + + Payment request expired. + בקשת התשלום פגה. + + + + Pay only the required fee of %1 + תשלום של העמלה הנדרשת בלבד על סך %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + אזהרה: כתובת ביטקיון שגויה + + + + Warning: Unknown change address + אזהרה: כתובת החלפה בלתי ידועה + + + + Confirm custom change address + אימות כתובת החלפה בהתאמה אישית + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + הכתובת שבחרת עבור ההחלפה אינה חלק מארנק זה. כל ההסכום שבארנק שלך עשוי להישלח לכתובת זו. מקובל עליך? + + + + (no label) + (ללא תוית) + + + + SendCoinsEntry + + + + + A&mount: + &כמות: + + + + &Label: + ת&ווית: + + + + Choose previously used address + בחירת כתובת שהייתה בשימוש + + + + This is a normal payment. + זהו תשלום רגיל. + + + + The Raven address to send the payment to + כתובת הביטקוין של המוטב + + + + Alt+A + Alt+A + + + + Paste address from clipboard + הדבקת כתובת מלוח הגזירים + + + + Alt+P + Alt+P + + + + + + Remove this entry + הסרת רשומה זו + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + העמלה תנוכה מהסכום שנשלח. הנמען יקבל פחות ביטקוינים ממה שהזנת בשדה הסכום. אם נבחרו מספר נמענים, העמלה תחולק באופן שווה. + + + + S&ubtract fee from amount + ה&חסרת העמלה מהסכום + + + + Message: + הודעה: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + זוהי בקשה מאומתת לתשלום. + + + + Enter a label for this address to add it to the list of used addresses + יש להזין תווית עבור כתובת זו כדי להוסיף אותה לרשימת הכתובות בשימוש + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + הודעה שצורפה לביטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת הביטקוין. + + + + + Memo: + תזכורת: + + + + Enter a label for this address to add it to your address book + נא להזין תווית לכתובת זו כדי להוסיף אותה לספר הכתובות שלך + + + + SendConfirmationDialog + + + + Yes + כן + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + אין לכבות את המחשב עד שחלון זה נעלם. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + חתימות - חתימה או אימות של הודעה + + + + &Sign Message + חתימה על הו&דעה + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + כתובת הביטקוין אתה לחתום אתה את ההודעה + + + + + Choose previously used address + בחירת כתובת שהייתה בשימוש + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + הדבקת כתובת מלוח הגזירים + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + יש להוסיף כאן את ההודעה עליה לחתום + + + + Signature + חתימה + + + + Copy the current signature to the system clipboard + העתקת החתימה הנוכחית ללוח הגזירים + + + + Sign the message to prove you own this Raven address + ניתן לחתום על ההודעה כדי להוכיח שכתובת הביטקוין הזו בבעלותך. + + + + Sign &Message + &חתימה על הודעה + + + + Reset all sign message fields + איפוס כל שדות החתימה על הודעה + + + + + Clear &All + &ניקוי הכול + + + + &Verify Message + &אימות הודעה + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + כתובת הביטקוין שאתה נחתמה ההודעה + + + + Verify the message to ensure it was signed with the specified Raven address + ניתן לאמת את ההודעה כדי להבטיח שהיא נחתמה עם כתובת הביטקוין הנתונה + + + + Verify &Message + &אימות הודעה + + + + Reset all verify message fields + איפוס כל שדות אימות ההודעה + + + + Click "Sign Message" to generate signature + יש ללחוץ על „חתימת ההודעה“ כדי לייצר חתימה + + + + + The entered address is invalid. + הכתובת שהוזנה שגויה. + + + + + + + Please check the address and try again. + נא לבדוק את הכתובת ולנסות שוב. + + + + + The entered address does not refer to a key. + הכתובת שהוזנה לא מתייחסת למפתח. + + + + Wallet unlock was cancelled. + שחרור הארנק בוטל. + + + + Private key for the entered address is not available. + המפתח הפרטי לכתובת שהוכנסה אינו זמין. + + + + Message signing failed. + חתימת ההודעה נכשלה. + + + + Message signed. + ההודעה נחתמה. + + + + The signature could not be decoded. + לא ניתן לפענח את החתימה. + + + + + Please check the signature and try again. + נא לבדוק את החתימה ולנסות שוב. + + + + The signature did not match the message digest. + החתימה לא תואמת את תקציר ההודעה. + + + + Message verification failed. + וידוא ההודעה נכשל. + + + + Message verified. + ההודעה עברה וידוא. + + + + SplashScreen + + + [testnet] + [רשת-בדיקה] + + + + TrafficGraphWidget + + + KB/s + ק״ב/ש׳ + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + במאגר הזיכרון + + + + not in memory pool + לא במאגר הזיכרון + + + + abandoned + ננטש + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + מצב + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + תאריך + + + + Source + מקור + + + + Generated + + + + + + + + + From + מאת + + + + + unknown + לא ידוע + + + + + + + + To + אל + + + + + own address + כתובת עצמית + + + + + + watch-only + צפייה בלבד + + + + + label + תווית + + + + + + + + + + Credit + אשראי + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + חיוב + + + + Total debit + חיוב כולל + + + + Total credit + אשראי כול + + + + Transaction fee + עמלת העברה + + + + Net amount + סכום נטו + + + + + + + Message + הודעה + + + + + Comment + הערה + + + + + Transaction ID + מזהה העברה + + + + + Transaction total size + גודל ההעברה הכללי + + + + + Output index + מפתח פלט + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + פרטי ניפוי שגיאות + + + + Transaction + העברה + + + + Inputs + אמצעי קלט + + + + Amount + סכום + + + + + true + אמת + + + + + false + שקר + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + חלונית זו מציגה תיאור מפורט של ההעברה + + + + Details for %1 + פרטים עבור %1 + + + + TransactionTableModel + + + Date + תאריך + + + + Type + סוג + + + + Label + תוית + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + ננטש + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + התקבל עם + + + + Received from + התקבל מאת + + + + Sent to + נשלח אל + + + + Payment to yourself + תשלום לעצמך + + + + Mined + נכרו + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + צפייה בלבד + + + + (n/a) + (לא זמין) + + + + (no label) + (ללא תוית) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + סוג ההעברה. + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + הכול + + + + Today + היום + + + + This week + השבוע + + + + This month + החודש + + + + Last month + חודש שעבר + + + + This year + השנה הזאת + + + + Range... + טווח… + + + + Received with + התקבל עם + + + + Sent to + נשלח אל + + + + To yourself + לעצמך + + + + Mined + נכרו + + + + Other + אחר + + + + Enter address or label to search + נא להזין כתובת או תווית לחיפוש + + + + Min amount + סכום מזערי + + + + Asset name + + + + + Abandon transaction + נטישת העברה + + + + Copy address + העתקת הכתובת + + + + Copy label + העתקת התווית + + + + Copy amount + העתקת הסכום + + + + Copy transaction ID + העתקת מזהה ההעברה + + + + Copy raw transaction + העתקת העברה גולמית + + + + Copy full transaction details + העתקת פרטי ההעברה המלאים + + + + Edit label + עריכת תווית + + + + Show transaction details + הצגת פרטי העברה + + + + Browse with: + + + + + Export Transaction History + יצוא היסטוריית העברה + + + + Comma separated file (*.csv) + קובץ מופרד בפסיקים (‎*.csv) + + + + Confirmed + + + + + Watch-only + צפייה בלבד + + + + Date + תאריך + + + + Type + סוג + + + + Label + תוית + + + + Address + כתובת + + + + Asset + + + + + ID + מזהה + + + + Exporting Failed + יצוא נכשל + + + + There was an error trying to save the transaction history to %1. + אירעה שגיאה בעת ניסיון שמירת היסטוריית ההעברות אל %1. + + + + Exporting Successful + הייצוא נכשל + + + + The transaction history was successfully saved to %1. + היסטוריית ההעברות נשמרה בהצלחה אל %1. + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + טווח: + + + + to + עד + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + יחידת המידה להצגת הסכומים. יש ללחוץ כדי לבחור ביחידת מידה אחרת. + + + + WalletFrame + + + No wallet has been loaded. + לא נטען ארנק. + + + + WalletModel + + + Send Coins + שליחת מטבעות + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &יצוא + + + + Export the data in the current tab to a file + יצוא הנתונים בלשונית הנוכחית לקובץ + + + + Backup Wallet + גיבוי הארנק + + + + Wallet Data (*.dat) + נתוני ארנק (‎*.dat) + + + + Backup Failed + הגיבוי נכשל + + + + There was an error trying to save the wallet data to %1. + אירעה שגיאה בעת הניסיון לשמור את נתוני הארנק אל %1. + + + + Backup Successful + הגיבוי הצליח + + + + The wallet data was successfully saved to %1. + נתוני הארנק נשמרו בהצלחה אל %1. + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + אפשרויות: + + + + Specify data directory + ציון תיקיית נתונים + + + + Connect to a node to retrieve peer addresses, and disconnect + יש להתחבר למפרק כדי לדלות כתובות עמיתים ואז להתנתק + + + + Specify your own public address + נא לציין את הכתובת הפומבית שלך + + + + Accept command line and JSON-RPC commands + קבלת פקודות משורת הפקודה ומ־JSON-RPC - Change: - עודף: + + Distributed under the MIT software license, see the accompanying file %s or %s + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - אם אפשרות זו מופעלת אך כתובת העודף ריקה או שגויה, העודף יישלח לכתובת חדשה שתיווצר. + + If <category> is not supplied or if <category> = 1, output all debugging information. + - Custom change address - כתובת לעודף מותאמת אישית + + Prune configured below the minimum of %d MiB. Please use a higher number. + - Transaction Fee: - עמלת העברה: + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - Choose... - בחר... + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - collapse fee-settings - צמצום הגדרות עמלה + + Error: A fatal internal error occurred, see debug.log for details + שגיאה: סניה קלמה קריטית פנימית קרטה, פנה ל debug.log לפרטים - per kilobyte - עבור קילו-בית + + Fee (in %s/kB) to add to transactions you send (default: %s) + - Hide - הסתר + + Pruning blockstore... + - total at least - סה''כ לפחות + + Run in the background as a daemon and accept commands + ריצה כסוכן ברקע וקבלת פקודות - Recommended: - מומלץ: + + Unable to start HTTP server. See debug log for details. + - Custom: - מותאם אישית: + + Raven Core + ליבת ביטקוין - normal - רגיל + + The %s developers + ה %s מפתחים - fast - מהיר + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - Send to multiple recipients at once - שליחה למספר מוטבים בו־זמנית + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - Add &Recipient - הוספת &מוטב + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - Clear all fields of the form. - ניקוי של כל השדות בטופס. + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + להתאגד לכתובת נתונה להאזין לה תמיד. יש להשתמש בצורה ‎[host]:port עבור IPv6. - Dust: - אבק: + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Clear &All - &ניקוי הכול + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Balance: - מאזן: + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Confirm the send action - אישור פעולת השליחה + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - S&end - &שליחה + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + מחיקת כל העברות הארנק ולשחזר רק את החלקים המסוימים בשרשרת המקטעים באמצעות ‎-rescan עם ההפעלה - Copy quantity - העתקת הכמות + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Copy amount - העתקת הסכום + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Copy fee - העתקת העמלה + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + ביצוע פקודה כאשר העברה בארנק משתנה (%s ב־cmd יוחלף ב־TxID) - Copy after fee - העתקה אחרי העמלה + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Copy bytes - העתקת בתים + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Copy dust - העתקת אבק + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - Copy change - העתקת השינוי + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Are you sure you want to send? - לשלוח? + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - added as transaction fee - נוספה עמלת העברה + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Total Amount %1 - סכום כולל %1 + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - or - או + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Confirm send coins - אימות שליחת מטבעות + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - The recipient address is not valid. Please recheck. - כתובת הנמען שגויה. נא לבדוק שוב. + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + - The amount to pay must be larger than 0. - הסכום לתשלום צריך להיות גדול מ־0. + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - The amount exceeds your balance. - הסכום חורג מהמאזן שלך. + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Duplicate address found: addresses should only be used once each. - נמצאה כתובת כפולה: יש להשתמש בכל כתובת פעם אחת בלבד. + + This is the transaction fee you may discard if change is smaller than dust at this level + - Transaction creation failed! - יצירת ההעברה נכשלה! + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - The transaction was rejected with the following reason: %1 - ההעברה נדחתה מהסיבות הבאות: %1 + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - A fee higher than %1 is considered an absurdly high fee. - עמלה מעל לסכום של %1 נחשבת לעמלה גבוהה באופן מוגזם. + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + שימוש ב־UPnP כדי למפות את הפתחה להאזנה (בררת מחדל: 1 בעת האזנה ובלי ‎-proxy) - Payment request expired. - בקשת התשלום פגה. + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - - %n block(s) - מקטע אחד%n מקטעים + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Pay only the required fee of %1 - תשלום של העמלה הנדרשת בלבד על סך %1 + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + אזהרה: נראה כי הרשת אינה מסכימה באופן מלא! חלק מהכורים חווים תקלות. - Warning: Invalid Raven address - אזהרה: כתובת ביטקיון שגויה + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Warning: Unknown change address - אזהרה: כתובת החלפה בלתי ידועה + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Confirm custom change address - אימות כתובת החלפה בהתאמה אישית + + %d of last 100 blocks have unexpected version + - The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - הכתובת שבחרת עבור ההחלפה אינה חלק מארנק זה. כל ההסכום שבארנק שלך עשוי להישלח לכתובת זו. מקובל עליך? + + %s corrupt, salvage failed + - (no label) - (ללא תוית) + + -maxmempool must be at least %d MB + ‎-maxmempool חייב להיות לפחות %d מ״ב - - - SendCoinsEntry - A&mount: - &כמות: + + <category> can be: + <קטגוריה> יכולה להיות: - Pay &To: - לשלם ל&טובת: + + Accept connections from outside (default: 1 if no -proxy or -connect) + - &Label: - ת&ווית: + + Append comment to the user agent string + הוספת הערה למחרוזת סוכן המשתמש - Choose previously used address - בחירת כתובת שהייתה בשימוש + + Attempt to recover private keys from a corrupt wallet on startup + - This is a normal payment. - זהו תשלום רגיל. + + Block creation options: + אפשרויות יצירת מקטע: - The Raven address to send the payment to - כתובת הביטקוין של המוטב + + Cannot resolve -%s address: '%s' + - Alt+A - Alt+A + + Chain selection options: + אפשרויות בחירת שרשרת: - Paste address from clipboard - הדבקת כתובת מלוח הגזירים + + Change index out of range + אינדקס העודף מחוץ לתחום - Alt+P - Alt+P + + Connection options: + הגדרות חיבור: - Remove this entry - הסרת רשומה זו + + Copyright (C) %i-%i + כל הזכויות שמורות (C) %i-‏%i - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - העמלה תנוכה מהסכום שנשלח. הנמען יקבל פחות ביטקוינים ממה שהזנת בשדה הסכום. אם נבחרו מספר נמענים, העמלה תחולק באופן שווה. + + Corrupted block database detected + התגלה מסד נתוני מקטעים לא תקין - S&ubtract fee from amount - ה&חסרת העמלה מהסכום + + Debugging/Testing options: + אפשרויות ניפוי/בדיקה: - Message: - הודעה: + + Do not load the wallet and disable wallet RPC calls + לא לטעון את הארנק ולנטרל קריאות RPC - This is an authenticated payment request. - זוהי בקשה מאומתת לתשלום. + + Do you want to rebuild the block database now? + האם לבנות מחדש את מסד נתוני המקטעים? - Enter a label for this address to add it to the list of used addresses - יש להזין תווית עבור כתובת זו כדי להוסיף אותה לרשימת הכתובות בשימוש + + Enable publish hash block in <address> + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - הודעה שצורפה לביטקוין: כתובת שתאוחסן בהעברה לצורך מעקב מצדך. לתשומת לבך: הודעה זו לא תישלח ברשת הביטקוין. + + Enable publish hash transaction in <address> + - Pay To: - תשלום לטובת: + + Enable publish raw block in <address> + - Memo: - תזכורת: + + Enable publish raw transaction in <address> + - Enter a label for this address to add it to your address book - נא להזין תווית לכתובת זו כדי להוסיף אותה לספר הכתובות שלך + + Enable transaction replacement in the memory pool (default: %u) + - - - SendConfirmationDialog - Yes - כן + + Error initializing block database + שגיאה באתחול מסד נתוני המקטעים - - - ShutdownWindow - Do not shut down the computer until this window disappears. - אין לכבות את המחשב עד שחלון זה נעלם. + + Error initializing wallet database environment %s! + שגיאה באתחול סביבת מסד נתוני הארנקים %s! - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - חתימות - חתימה או אימות של הודעה + + Error loading %s + שגיאה בטעינת %s - &Sign Message - חתימה על הו&דעה + + Error loading %s: Wallet corrupted + - The Raven address to sign the message with - כתובת הביטקוין אתה לחתום אתה את ההודעה + + Error loading %s: Wallet requires newer version of %s + - Choose previously used address - בחירת כתובת שהייתה בשימוש + + Error loading block database + שגיאה בטעינת מסד נתוני המקטעים - Alt+A - Alt+A + + Error opening block database + שגיאה בטעינת מסד נתוני המקטעים - Paste address from clipboard - הדבקת כתובת מלוח הגזירים + + Error: Disk space is low! + שגיאה: מעט מקום פנוי בכונן! - Alt+P - Alt+P + + Failed to listen on any port. Use -listen=0 if you want this. + האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. - Enter the message you want to sign here - יש להוסיף כאן את ההודעה עליה לחתום + + Importing... + מתבצע יבוא… - Signature - חתימה + + Incorrect or no genesis block found. Wrong datadir for network? + מקטע הפתיח הוא שגוי או לא נמצא. תיקיית נתונים שגויה עבור הרשת? - Copy the current signature to the system clipboard - העתקת החתימה הנוכחית ללוח הגזירים + + Initialization sanity check failed. %s is shutting down. + - Sign the message to prove you own this Raven address - ניתן לחתום על ההודעה כדי להוכיח שכתובת הביטקוין הזו בבעלותך. + + Invalid amount for -%s=<amount>: '%s' + סכום שגוי עבור ‎-%s=<amount>:‏ '%s' - Sign &Message - &חתימה על הודעה + + Invalid amount for -discardfee=<amount>: '%s' + - Reset all sign message fields - איפוס כל שדות החתימה על הודעה + + Invalid amount for -fallbackfee=<amount>: '%s' + סכום שגוי עבור ‎-fallbackfee=<amount>:‏ '%s' - Clear &All - &ניקוי הכול + + Keep the transaction memory pool below <n> megabytes (default: %u) + - &Verify Message - &אימות הודעה + + Loading P2P addresses... + - The Raven address the message was signed with - כתובת הביטקוין שאתה נחתמה ההודעה + + Loading banlist... + טוען רשימת חסומים... - Verify the message to ensure it was signed with the specified Raven address - ניתן לאמת את ההודעה כדי להבטיח שהיא נחתמה עם כתובת הביטקוין הנתונה + + Location of the auth cookie (default: data dir) + - Verify &Message - &אימות הודעה + + Not enough file descriptors available. + אין מספיק מידע על הקובץ - Reset all verify message fields - איפוס כל שדות אימות ההודעה + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + תמיד להתחבר למפרקים ברשת <net>‏ (ipv4,‏ ipv6 או onion) - Click "Sign Message" to generate signature - יש ללחוץ על „חתימת ההודעה“ כדי לייצר חתימה + + Print this help message and exit + להדפיס הודעת עזרה זו ולצאת - The entered address is invalid. - הכתובת שהוזנה שגויה. + + Print version and exit + הדפס גירסא וצא - Please check the address and try again. - נא לבדוק את הכתובת ולנסות שוב. + + Prune cannot be configured with a negative value. + - The entered address does not refer to a key. - הכתובת שהוזנה לא מתייחסת למפתח. + + Prune mode is incompatible with -txindex. + - Wallet unlock was cancelled. - שחרור הארנק בוטל. + + Rebuild chain state and block index from the blk*.dat files on disk + - Private key for the entered address is not available. - המפתח הפרטי לכתובת שהוכנסה אינו זמין. + + Rebuild chain state from the currently indexed blocks + - Message signing failed. - חתימת ההודעה נכשלה. + + Replaying blocks... + - Message signed. - ההודעה נחתמה. + + Rewinding blocks... + - The signature could not be decoded. - לא ניתן לפענח את החתימה. + + Set database cache size in megabytes (%d to %d, default: %d) + הגדרת גודל מטמון מסדי הנתונים במגה בתים (%d עד %d, בררת מחדל: %d) - Please check the signature and try again. - נא לבדוק את החתימה ולנסות שוב. + + Specify wallet file (within data directory) + ציון קובץ ארנק (בתוך תיקיית הנתונים) - The signature did not match the message digest. - החתימה לא תואמת את תקציר ההודעה. + + The source code is available from %s. + - Message verification failed. - וידוא ההודעה נכשל. + + Transaction fee and change calculation failed + - Message verified. - ההודעה עברה וידוא. + + Unable to bind to %s on this computer. %s is probably already running. + - - - SplashScreen - [testnet] - [רשת-בדיקה] + + Unsupported argument -benchmark ignored, use -debug=bench. + - - - TrafficGraphWidget - KB/s - ק״ב/ש׳ + + Unsupported argument -debugnet ignored, use -debug=net. + - - - TransactionDesc - in memory pool - במאגר הזיכרון + + Unsupported argument -tor found, use -onion. + - not in memory pool - לא במאגר הזיכרון + + Unsupported logging category %s=%s. + - abandoned - ננטש + + Upgrading UTXO database + - Status - מצב + + Use UPnP to map the listening port (default: %u) + - Date - תאריך + + Use the test chain + - Source - מקור + + User Agent comment (%s) contains unsafe characters. + - From - מאת + + Verifying blocks... + המקטעים מאומתים… - unknown - לא ידוע + + Wallet %s resides outside data directory %s + הארנק %s יושב מחוץ לתיקיית הנתונים %s - To - אל + + Wallet debugging/testing options: + אפשרות דיבוג/בדיקת ארנק: - own address - כתובת עצמית + + Wallet needed to be rewritten: restart %s to complete + יש לכתוב את הארנק מחדש: יש להפעיל את %s כדי להמשיך - watch-only - צפייה בלבד + + Wallet options: + אפשרויות הארנק: - label - תווית + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Credit - אשראי + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Debit - חיוב + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Total debit - חיוב כולל + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Total credit - אשראי כול + + Error: Listening for incoming connections failed (listen returned error %s) + - Transaction fee - עמלת העברה + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + הרץ פקודה כאשר ההתראה הרלוונטית מתקבלת או כשאנחנו עדים לפיצול ארוך מאוד (%s בשורת הפקודה יוחלף ע"י ההודעה) - Net amount - סכום נטו + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Message - הודעה + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Comment - הערה + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Transaction ID - מזהה העברה + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Transaction total size - גודל ההעברה הכללי + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Output index - מפתח פלט + + The transaction amount is too small to send after the fee has been deducted + סכום העברה נמוך מדי לשליחה אחרי גביית העמלה - Debug information - פרטי ניפוי שגיאות + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Transaction - העברה + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Inputs - אמצעי קלט + + (default: %u) + (בררת מחדל: %u) - Amount - סכום + + Accept public REST requests (default: %u) + - true - אמת + + Automatically create Tor hidden service (default: %d) + - false - שקר + + Connect through SOCKS5 proxy + התחברות דרך מתווך SOCKS5 - - - TransactionDescDialog - This pane shows a detailed description of the transaction - חלונית זו מציגה תיאור מפורט של ההעברה + + Error loading %s: You can't disable HD on an already existing HD wallet + - Details for %1 - פרטים עבור %1 + + Error reading from database, shutting down. + - - - TransactionTableModel - Date - תאריך + + Error upgrading chainstate database + - Type - סוג + + Imports blocks from external blk000??.dat file on startup + - Label - תוית + + Information + מידע - Abandoned - ננטש + + Invalid -onion address or hostname: '%s' + - Received with - התקבל עם + + Invalid -proxy address or hostname: '%s' + - Received from - התקבל מאת + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + כמות לא תקינה עבור ‎-paytxfee=<amount>‎:‏ '%s' (חייבת להיות לפחות %s) - Sent to - נשלח אל + + Invalid netmask specified in -whitelist: '%s' + מסכת הרשת שצוינה עם ‎-whitelist שגויה: '%s' - Payment to yourself - תשלום לעצמך + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Mined - נכרו + + Need to specify a port with -whitebind: '%s' + עליך לציין פתחה עם ‎-whitebind:‏ '%s' - watch-only - צפייה בלבד + + Node relay options: + אפשרויות ממסר מפרק: - (n/a) - (לא זמין) + + RPC server options: + הגדרות שרת RPC - (no label) - (ללא תוית) + + Reducing -maxconnections from %d to %d, because of system limitations. + - Type of transaction. - סוג ההעברה. + + Rescan the block chain for missing wallet transactions on startup + - - - TransactionView - All - הכול + + Send trace/debug info to console instead of debug.log file + שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log - Today - היום + + Show all debugging options (usage: --help -help-debug) + הצגת כל אפשרויות הניפוי (שימוש: ‎--help -help-debug) - This week - השבוע + + Shrink debug.log file on client startup (default: 1 when no -debug) + כיווץ הקובץ debug.log בהפעלת הלקוח (בררת מחדל: 1 ללא ‎-debug) - This month - החודש + + Signing transaction failed + החתימה על ההעברה נכשלה - Last month - חודש שעבר + + The transaction amount is too small to pay the fee + סכום ההעברה נמוך מכדי לשלם את העמלה - This year - השנה הזאת + + This is experimental software. + זוהי תכנית נסיונית. - Range... - טווח… + + Tor control port password (default: empty) + - Received with - התקבל עם + + Tor control port to use if onion listening enabled (default: %s) + - Sent to - נשלח אל + + Transaction amount too small + סכום ההעברה קטן מדי - To yourself - לעצמך + + Transaction too large for fee policy + ההעברה גבוהה מדי עבור מדיניות העמלות - Mined - נכרו + + Transaction too large + סכום ההעברה גדול מדי - Other - אחר + + Unable to bind to %s on this computer (bind returned error %s) + לא ניתן להתאגד עם הפתחה %s במחשב זה (פעולת האיגוד החזירה את השגיאה %s) - Enter address or label to search - נא להזין כתובת או תווית לחיפוש + + Upgrade wallet to latest format on startup + עדכן ארק לפורמט העדכני בהפעלה - Min amount - סכום מזערי + + Username for JSON-RPC connections + שם משתמש לחיבורי JSON-RPC - Abandon transaction - נטישת העברה + + Valid Verifier + - Copy address - העתקת הכתובת + + Variable is not allow in the expression: ' + - Copy label - העתקת התווית + + Verifier String doesn't exist for asset: + - Copy amount - העתקת הסכום + + Verifier String for asset trasnfer, not found + - Copy transaction ID - העתקת מזהה ההעברה + + Verifier not found for asset: + - Copy raw transaction - העתקת העברה גולמית + + Verifier string can not be empty. To default to true, use "true" + - Copy full transaction details - העתקת פרטי ההעברה המלאים + + Verifier string is empty + - Edit label - עריכת תווית + + Verifier string not found + - Show transaction details - הצגת פרטי העברה + + Verifying wallet(s)... + - Export Transaction History - יצוא היסטוריית העברה + + Warning + אזהרה - Comma separated file (*.csv) - קובץ מופרד בפסיקים (‎*.csv) + + Warning: unknown new rules activated (versionbit %i) + - Watch-only - צפייה בלבד + + Whether to operate in a blocks only mode (default: %u) + - Date - תאריך + + You need to rebuild the database using -reindex to change -txindex + - Type - סוג + + Zapping all transactions from wallet... + - Label - תוית + + ZeroMQ notification options: + - Address - כתובת + + Password for JSON-RPC connections + ססמה לחיבורי JSON-RPC - ID - מזהה + + Execute command when the best block changes (%s in cmd is replaced by block hash) + יש לבצע פקודה זו כשהמקטע הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב המקטע) - Exporting Failed - יצוא נכשל + + Allow DNS lookups for -addnode, -seednode and -connect + הפעלת בדיקת DNS עבור ‎-addnode,‏ ‎-seednode ו־‎-connect - There was an error trying to save the transaction history to %1. - אירעה שגיאה בעת ניסיון שמירת היסטוריית ההעברות אל %1. + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Exporting Successful - הייצוא נכשל + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - The transaction history was successfully saved to %1. - היסטוריית ההעברות נשמרה בהצלחה אל %1. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Range: - טווח: + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - to - עד + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - יחידת המידה להצגת הסכומים. יש ללחוץ כדי לבחור ביחידת מידה אחרת. + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - - - WalletFrame - No wallet has been loaded. - לא נטען ארנק. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - - - WalletModel - Send Coins - שליחת מטבעות + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - - - WalletView - &Export - &יצוא + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Export the data in the current tab to a file - יצוא הנתונים בלשונית הנוכחית לקובץ + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Backup Wallet - גיבוי הארנק + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Wallet Data (*.dat) - נתוני ארנק (‎*.dat) + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Backup Failed - הגיבוי נכשל + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - There was an error trying to save the wallet data to %1. - אירעה שגיאה בעת הניסיון לשמור את נתוני הארנק אל %1. + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Backup Successful - הגיבוי הצליח + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - The wallet data was successfully saved to %1. - נתוני הארנק נשמרו בהצלחה אל %1. + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - - - raven-core - Options: - אפשרויות: + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Specify data directory - ציון תיקיית נתונים + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Connect to a node to retrieve peer addresses, and disconnect - יש להתחבר למפרק כדי לדלות כתובות עמיתים ואז להתנתק + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Specify your own public address - נא לציין את הכתובת הפומבית שלך + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Accept command line and JSON-RPC commands - קבלת פקודות משורת הפקודה ומ־JSON-RPC + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - קבלת חיבורים מבחוץ (בררת מחדל: 1 אם לא במצב ‎-proxy או ‎-connect/-noconnet) + + Output debugging information (default: %u, supplying <category> is optional) + - Error: A fatal internal error occurred, see debug.log for details - שגיאה: סניה קלמה קריטית פנימית קרטה, פנה ל debug.log לפרטים + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Run in the background as a daemon and accept commands - ריצה כסוכן ברקע וקבלת פקודות + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Raven Core - ליבת ביטקוין + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - The %s developers - ה %s מפתחים + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - להתאגד לכתובת נתונה להאזין לה תמיד. יש להשתמש בצורה ‎[host]:port עבור IPv6. + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - מחיקת כל העברות הארנק ולשחזר רק את החלקים המסוימים בשרשרת המקטעים באמצעות ‎-rescan עם ההפעלה + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - ביצוע פקודה כאשר העברה בארנק משתנה (%s ב־cmd יוחלף ב־TxID) + + The default height that is required before rewards are allowed to be sent out + - Use UPnP to map the listening port (default: 1 when listening and no -proxy) - שימוש ב־UPnP כדי למפות את הפתחה להאזנה (בררת מחדל: 1 בעת האזנה ובלי ‎-proxy) + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. - אזהרה: נראה כי הרשת אינה מסכימה באופן מלא! חלק מהכורים חווים תקלות. + + This address doesn't contain the correct tags to pass the verifier string check: + - You need to rebuild the database using -reindex-chainstate to change -txindex - עליך לבנות מחדש את מסד הנתונים בעזרת ‎-reindex-chainstate כדי לשנות את ‎-txindex + + This is the transaction fee you may pay when fee estimates are not available. + - -maxmempool must be at least %d MB - ‎-maxmempool חייב להיות לפחות %d מ״ב + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - <category> can be: - <קטגוריה> יכולה להיות: + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Append comment to the user agent string - הוספת הערה למחרוזת סוכן המשתמש + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Block creation options: - אפשרויות יצירת מקטע: + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Chain selection options: - אפשרויות בחירת שרשרת: + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Change index out of range - אינדקס העודף מחוץ לתחום + + Unable to reissue asset: unit must be larger than current unit selection + - Connection options: - הגדרות חיבור: + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Copyright (C) %i-%i - כל הזכויות שמורות (C) %i-‏%i + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + המשתנה ‎-socks נמצא אך אין בו תמיכה עוד. הגדרת גרסת SOCKS אינה אפשרית עוד, קיימת תמיכה רק ב־SOCKS5. - Corrupted block database detected - התגלה מסד נתוני מקטעים לא תקין + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Debugging/Testing options: - אפשרויות ניפוי/בדיקה: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Do not load the wallet and disable wallet RPC calls - לא לטעון את הארנק ולנטרל קריאות RPC + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Do you want to rebuild the block database now? - האם לבנות מחדש את מסד נתוני המקטעים? + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Error initializing block database - שגיאה באתחול מסד נתוני המקטעים + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Error initializing wallet database environment %s! - שגיאה באתחול סביבת מסד נתוני הארנקים %s! + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Error loading %s - שגיאה בטעינת %s + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Error loading block database - שגיאה בטעינת מסד נתוני המקטעים + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Error opening block database - שגיאה בטעינת מסד נתוני המקטעים + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Error: Disk space is low! - שגיאה: מעט מקום פנוי בכונן! + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Failed to listen on any port. Use -listen=0 if you want this. - האזנה נכשלה בכל פורט. השתמש ב- -listen=0 אם ברצונך בכך. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Importing... - מתבצע יבוא… + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Incorrect or no genesis block found. Wrong datadir for network? - מקטע הפתיח הוא שגוי או לא נמצא. תיקיית נתונים שגויה עבור הרשת? + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Invalid -onion address: '%s' - כתובת onion- שגויה: '%s' + + %s is set very high! + - Invalid amount for -%s=<amount>: '%s' - סכום שגוי עבור ‎-%s=<amount>:‏ '%s' + + ' doesn't exist in the database + - Invalid amount for -fallbackfee=<amount>: '%s' - סכום שגוי עבור ‎-fallbackfee=<amount>:‏ '%s' + + ' has already been used + - Loading banlist... - טוען רשימת חסומים... + + ' is not a valid character in the expression: + - Not enough file descriptors available. - אין מספיק מידע על הקובץ + + ' the amount trying to reissue is to large + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - תמיד להתחבר למפרקים ברשת <net>‏ (ipv4,‏ ipv6 או onion) + + (default: %s) + (ברירת מחדל: %s) - Print this help message and exit - להדפיס הודעת עזרה זו ולצאת + + A space separated list of 12-words used to import a bip44 wallet + - Print version and exit - הדפס גירסא וצא + + Always query for peer addresses via DNS lookup (default: %u) + תמיד לתשאל את כתובת העמיתים באמצעות חיפוש DNS (בררת מחדל: %u) - Set database cache size in megabytes (%d to %d, default: %d) - הגדרת גודל מטמון מסדי הנתונים במגה בתים (%d עד %d, בררת מחדל: %d) + + Asset Transfer amounts must be greater than 0 + - Set maximum block size in bytes (default: %d) - הגדרת קובץ מקטע מרבי בבתים (בררת מחדל: %d) + + Asset doesn't exist: + - Specify wallet file (within data directory) - ציון קובץ ארנק (בתוך תיקיית הנתונים) + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Verifying blocks... - המקטעים מאומתים… + + Asset name is not valid + - Verifying wallet... - הארנק מאומת… + + Asset with this name is already in the mempool + - Wallet %s resides outside data directory %s - הארנק %s יושב מחוץ לתיקיית הנתונים %s + + Done Loading + - Wallet debugging/testing options: - אפשרות דיבוג/בדיקת ארנק: + + Enable publish raw asset messages in <address> + - Wallet needed to be rewritten: restart %s to complete - יש לכתוב את הארנק מחדש: יש להפעיל את %s כדי להמשיך + + Error creating %s: You can't create non-HD wallets with this version. + - Wallet options: - אפשרויות הארנק: + + Error loading wallet %s. -wallet filename must be a regular file. + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - הרץ פקודה כאשר ההתראה הרלוונטית מתקבלת או כשאנחנו עדים לפיצול ארוך מאוד (%s בשורת הפקודה יוחלף ע"י ההודעה) + + Error loading wallet %s. Duplicate -wallet filename specified. + - The transaction amount is too small to send after the fee has been deducted - סכום העברה נמוך מדי לשליחה אחרי גביית העמלה + + Error loading wallet %s. Invalid characters in -wallet filename. + - (default: %u) - (בררת מחדל: %u) + + Error not set + - Connect through SOCKS5 proxy - התחברות דרך מתווך SOCKS5 + + Error writing bip 39 passphrase to database + - Information - מידע + + Error writing bip 39 vchseed to database + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - כמות לא תקינה עבור ‎-paytxfee=<amount>‎:‏ '%s' (חייבת להיות לפחות %s) + + Error writing bip 39 words to database + - Invalid netmask specified in -whitelist: '%s' - מסכת הרשת שצוינה עם ‎-whitelist שגויה: '%s' + + Every '(' must have a corresponding ')' in the expression: + - Need to specify a port with -whitebind: '%s' - עליך לציין פתחה עם ‎-whitebind:‏ '%s' + + Failed to extract destination from change script + - Node relay options: - אפשרויות ממסר מפרק: + + Failed to find restricted asset change address from inputs + - RPC server options: - הגדרות שרת RPC + + Failed to get asset data from script + - Send trace/debug info to console instead of debug.log file - שלח מידע דיבאג ועקבה לקונסולה במקום לקובץ debug.log + + Failed to get verifier string from output: + - Show all debugging options (usage: --help -help-debug) - הצגת כל אפשרויות הניפוי (שימוש: ‎--help -help-debug) + + Failed to load Assets Database + - Shrink debug.log file on client startup (default: 1 when no -debug) - כיווץ הקובץ debug.log בהפעלת הלקוח (בררת מחדל: 1 ללא ‎-debug) + + Flag must be 1 or 0 + - Signing transaction failed - החתימה על ההעברה נכשלה + + How many blocks to check at startup (default: %u, 0 = all) + כמה מקטעים לבדוק עם ההפעלה (בררת מחדל: %u,‏ 0 = הכול) - The transaction amount is too small to pay the fee - סכום ההעברה נמוך מכדי לשלם את העמלה + + Include IP addresses in debug output (default: %u) + לכלול את כתובת ה־IP בפלט ניפוי השגיאות (בררת מחדל: %u) - This is experimental software. - זוהי תכנית נסיונית. + + Init Message Channels - Scanning Asset Transactions + - Transaction amount too small - סכום ההעברה קטן מדי + + Insufficient asset funds + - Transaction too large for fee policy - ההעברה גבוהה מדי עבור מדיניות העמלות + + Invalid Qualifier Name: + - Transaction too large - סכום ההעברה גדול מדי + + Invalid expressions in verifier string: + - Unable to bind to %s on this computer (bind returned error %s) - לא ניתן להתאגד עם הפתחה %s במחשב זה (פעולת האיגוד החזירה את השגיאה %s) + + Invalid parameter: amount must be + - Upgrade wallet to latest format on startup - עדכן ארק לפורמט העדכני בהפעלה + + Invalid parameter: amount must be between + - Username for JSON-RPC connections - שם משתמש לחיבורי JSON-RPC + + Invalid parameter: asset amount can't be equal to or less than zero. + - Warning - אזהרה + + Invalid parameter: asset amount greater than max money: + - Password for JSON-RPC connections - ססמה לחיבורי JSON-RPC + + Invalid parameter: asset_name ' + - Execute command when the best block changes (%s in cmd is replaced by block hash) - יש לבצע פקודה זו כשהמקטע הטוב ביותר משתנה (%s בפקודה יוחלף בגיבוב המקטע) + + Invalid parameter: has_ipfs must be 0 or 1. + - Allow DNS lookups for -addnode, -seednode and -connect - הפעלת בדיקת DNS עבור ‎-addnode,‏ ‎-seednode ו־‎-connect + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Loading addresses... - הכתובות בטעינה… + + Invalid parameter: reissuable must be 0 or 1 + - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - המשתנה ‎-socks נמצא אך אין בו תמיכה עוד. הגדרת גרסת SOCKS אינה אפשרית עוד, קיימת תמיכה רק ב־SOCKS5. + + Invalid parameter: reissuable must be 0 + - (default: %s) - (ברירת מחדל: %s) + + Invalid parameter: units must be + - Always query for peer addresses via DNS lookup (default: %u) - תמיד לתשאל את כתובת העמיתים באמצעות חיפוש DNS (בררת מחדל: %u) + + Invalid parameter: units must be between 0-8. + - How many blocks to check at startup (default: %u, 0 = all) - כמה מקטעים לבדוק עם ההפעלה (בררת מחדל: %u,‏ 0 = הכול) + + Invalid syntax: + - Include IP addresses in debug output (default: %u) - לכלול את כתובת ה־IP בפלט ניפוי השגיאות (בררת מחדל: %u) + + Keypool ran out, please call keypoolrefill first + - Invalid -proxy address: '%s' - כתובת ‎-proxy לא תקינה: '%s' + + Length is to large. Please use a smaller length + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) האזנה לחיבורי JSON-RPC דרך <port> (בררת מחדל: %u או ברשת הבדיקה: %u) + Listen for connections on <port> (default: %u or testnet: %u) האזנה לחיבורים על גבי <port> (בררת מחדל: %u או לרשת הבדיקה: %u) + Maintain at most <n> connections to peers (default: %u) לשמור על <n> חיבורים לעמיתים לכל היותר (בררת מחדל: %u) + Make the wallet broadcast transactions להגדיר את הארנק להפצת העברות + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) הגדרת גודל מאגר המפתחות לכדי <n> (בררת מחדל: %u) + Set maximum BIP141 block weight (default: %d) הגדרת משקל מרבי למקטע BIP141 (בררת מחדל: %d) + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + Specify configuration file (default: %s) הגדרת קובץ תצורה (בררת מחדל: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) ציון תפוגת זמן ההמתנה לחיבור במילישניות (מינימום: 1, בררת מחדל: %d) + Specify pid file (default: %s) ציון קובץ pid (בררת מחדל: %s) + + Spend unconfirmed change when sending transactions (default: %u) + + + + Starting network threads... תהליכי הרשת מופעלים… + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + This is the minimum transaction fee you pay on every transaction. זו עמלת ההעברה המזערית שתיגבה מכל העברה שלך. + This is the transaction fee you will pay if you send a transaction. זו עמלת ההעברה שתיגבה ממך במידה של שליחת העברה. + Threshold for disconnecting misbehaving peers (default: %u) סף לניתוק עמיתים סוררים (בררת מחדל: %u) + Transaction amounts must not be negative סכומי ההעברה לא יכולים להיות שליליים + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient להעברה חייב להיות לפחות נמען אחד - Unknown network specified in -onlynet: '%s' - רשת לא ידועה צוינה דרך ‎-onlynet:‏ '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + רשת לא ידועה צוינה דרך ‎-onlynet:‏ '%s' + + + Insufficient funds אין מספיק כספים + Loading block index... מפתח המקטעים נטען… - Add a node to connect to and attempt to keep the connection open - הוספת מפרק להתחברות ולנסות לשמור על החיבור פתוח - - + Loading wallet... הארנק בטעינה… + Cannot downgrade wallet לא ניתן להחזיר את גרסת הארנק - Cannot write default address - לא ניתן לכתוב את כתובת בררת המחדל - - + Rescanning... סריקה מחדש… - Done loading - טעינה הושלמה - - + Error שגיאה diff --git a/src/qt/locale/raven_hi_IN.ts b/src/qt/locale/raven_hi_IN.ts index 15f5ef17c5..82fb936b01 100644 --- a/src/qt/locale/raven_hi_IN.ts +++ b/src/qt/locale/raven_hi_IN.ts @@ -1,474 +1,8289 @@ - - - + AddressBookPage + Right-click to edit address or label पते या लेबल को संपादित करने के लिए राइट-क्लिक करें + Create a new address नया पता लिखिए ! + &New नया + Copy the currently selected address to the system clipboard चुनिन्दा पते को सिस्टम क्लिपबोर्ड पर कापी करे ! + + &Copy + + + + + C&lose + + + + Delete the currently selected address from the list सूची से वर्तमान में चयनित पता हटाएं + + Export the data in the current tab to a file + + + + + &Export + + + + &Delete &मिटाए !! - - - AddressTableModel - - - AskPassphraseDialog - Enter passphrase - पहचान शब्द/अक्षर डालिए ! + + Choose the address to send coins to + - New passphrase - नया पहचान शब्द/अक्षर डालिए ! + + Choose the address to receive coins with + - Repeat new passphrase - दोबारा नया पहचान शब्द/अक्षर डालिए ! + + C&hoose + - - - BanTableModel - - - RavenGUI - Synchronizing with network... - नेटवर्क से समकालिक (मिल) रहा है ... + + Sending addresses + - &Overview - &विवरण + + Receiving addresses + - Show general overview of wallet - वॉलेट का सामानया विवरण दिखाए ! + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - &Transactions - & लेन-देन - + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - Browse transaction history - देखिए पुराने लेन-देन के विवरण ! + + &Copy Address + - E&xit - बाहर जायें + + Copy &Label + - Quit application - अप्लिकेशन से बाहर निकलना ! + + &Edit + - &Options... - &विकल्प + + Export Address List + - &Backup Wallet... - &बैकप वॉलेट + + Comma separated file (*.csv) + - Change the passphrase used for wallet encryption - पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! + + Exporting Failed + - Raven - बीटकोइन + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - Wallet - वॉलेट + + Label + - &File - &फाइल + + Address + - &Settings - &सेट्टिंग्स + + (no label) + + + + AskPassphraseDialog - &Help - &मदद + + Passphrase Dialog + - Tabs toolbar - टैबस टूलबार + + Enter passphrase + पहचान शब्द/अक्षर डालिए ! - %1 behind - %1 पीछे + + New passphrase + नया पहचान शब्द/अक्षर डालिए ! - Error - भूल + + Repeat new passphrase + दोबारा नया पहचान शब्द/अक्षर डालिए ! - Warning - चेतावनी + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Information - जानकारी + + Encrypt wallet + - Up to date - नवीनतम + + This operation needs your wallet passphrase to unlock the wallet. + - Sent transaction - भेजी ट्रांजक्शन + + Unlock wallet + - Incoming transaction - प्राप्त हुई ट्रांजक्शन + + This operation needs your wallet passphrase to decrypt the wallet. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है + + Decrypt wallet + - Wallet is <b>encrypted</b> and currently <b>locked</b> - वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है + + Change passphrase + - - - CoinControlDialog - Amount: - राशि : + + Enter the old passphrase and new passphrase to the wallet. + - Amount - राशि + + Confirm wallet encryption + - Date - taareek + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Confirmed - पक्का + + Are you sure you wish to encrypt your wallet? + - - - EditAddressDialog - Edit Address - पता एडिट करना + + + Wallet encrypted + - &Label - &लेबल + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - &Address - &पता + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - - - FreespaceChecker - - - HelpMessageDialog - version - संस्करण + + + + + Wallet encryption failed + - Usage: - खपत : + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - - - Intro - Error - भूल + + + The supplied passphrases do not match. + - - - ModalOverlay - Form - फार्म + + Wallet unlock failed + - - - OpenURIDialog - - - OptionsDialog - Options - विकल्प + + + + The passphrase entered for the wallet decryption was incorrect. + - W&allet - वॉलेट + + Wallet decryption failed + - &OK - &ओके + + Wallet passphrase was successfully changed. + - &Cancel - &कैन्सल + + + Warning: The Caps Lock key is on! + - + - OverviewPage + AssetControlDialog - Form - फार्म + + Asset Selection + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - राशि + + Quantity: + - N/A - लागू नही - + + Bytes: + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - लागू नही - + + Amount: + - &Information - जानकारी + + Dust: + - - - ReceiveCoinsDialog - &Amount: - राशि : + + Fee: + - &Label: - लेबल: + + After Fee: + - - - ReceiveRequestDialog - Copy &Address - &पता कॉपी करे + + Change: + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - सिक्के भेजें| + + (un)select all + - Amount: - राशि : + + Tree mode + - Send to multiple recipients at once - एक साथ कई प्राप्तकर्ताओं को भेजें + + List mode + - Balance: - बाकी रकम : + + View assets that you have the ownership asset for + - Confirm the send action - भेजने की पुष्टि करें + + View Administrator Assets + - - - SendCoinsEntry - A&mount: - अमाउंट: + + Asset + - Pay &To: - प्राप्तकर्ता: + + Amount + - &Label: - लेबल: + + Received with label + - Alt+A - Alt-A + + Received with address + - Paste address from clipboard - Clipboard से एड्रेस paste करें + + Date + - Alt+P - Alt-P + + Confirmations + - Pay To: - प्राप्तकर्ता: + + Confirmed + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt-A + + Copy address + - Paste address from clipboard - Clipboard से एड्रेस paste करें + + Copy label + - Alt+P - Alt-P + + + Copy amount + - Signature - हस्ताक्षर + + Copy transaction ID + - - - SplashScreen - [testnet] - [टेस्टनेट] + + Lock unspent + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - ये खिड़की आपको लेन-देन का विस्तृत विवरण देगी ! + + Unlock unspent + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - विकल्प: + + Copy quantity + - Specify data directory - डेटा डायरेक्टरी बताएं + + Copy fee + - Run in the background as a daemon and accept commands - बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें + + Copy after fee + - Verifying blocks... - ब्लॉक्स जाँचे जा रहा है... + + Copy bytes + - Verifying wallet... - वॉलेट जाँचा जा रहा है... + + Copy dust + - Information - जानकारी + + Copy change + - Warning - चेतावनी + + (%1 locked) + - Loading addresses... - पता पुस्तक आ रही है... + + yes + - Loading block index... - ब्लॉक इंडेक्स आ रहा है... + + no + - Loading wallet... - वॉलेट आ रहा है... + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Rescanning... - रि-स्केनी-इंग... + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + - Done loading - लोड हो गया| + + (change) + + + + + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + राशि : + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + राशि + + + + Received with label + + + + + Received with address + + + + + Date + taareek + + + + Confirmations + + + + + Confirmed + पक्का + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + पता एडिट करना + + + + &Label + &लेबल + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &पता + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + संस्करण + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + खपत : + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + भूल + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + फार्म + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + विकल्प + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + वॉलेट + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &ओके + + + + &Cancel + &कैन्सल + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + फार्म + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + राशि + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + लागू नही + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + लागू नही + + + + + Client version + + + + + &Information + जानकारी + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + नेटवर्क से समकालिक (मिल) रहा है ... + + + + &Overview + &विवरण + + + + Node + + + + + Show general overview of wallet + वॉलेट का सामानया विवरण दिखाए ! + + + + &Transactions + & लेन-देन + + + + + Browse transaction history + देखिए पुराने लेन-देन के विवरण ! + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + बाहर जायें + + + + Quit application + अप्लिकेशन से बाहर निकलना ! + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &विकल्प + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + &बैकप वॉलेट + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + पहचान शब्द/अक्षर जो वॉलेट एनक्रिपशन के लिए इस्तेमाल किया है उसे बदलिए! + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + बीटकोइन + + + + Wallet + वॉलेट + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &फाइल + + + + &Help + &मदद + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 पीछे + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + भूल + + + + Warning + चेतावनी + + + + Information + जानकारी + + + + Up to date + नवीनतम + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + भेजी ट्रांजक्शन + + + + Incoming transaction + प्राप्त हुई ट्रांजक्शन + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड नहीं है + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + वॉलेट एन्क्रिप्टेड है तथा अभी लॉक्ड है + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + राशि : + + + + &Label: + लेबल: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &पता कॉपी करे + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + सिक्के भेजें| + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + राशि : + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + एक साथ कई प्राप्तकर्ताओं को भेजें + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + बाकी रकम : + + + + Confirm the send action + भेजने की पुष्टि करें + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + अमाउंट: + + + + &Label: + लेबल: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt-A + + + + Paste address from clipboard + Clipboard से एड्रेस paste करें + + + + Alt+P + Alt-P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt-A + + + + Paste address from clipboard + Clipboard से एड्रेस paste करें + + + + Alt+P + Alt-P + + + + Enter the message you want to sign here + + + + + Signature + हस्ताक्षर + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [टेस्टनेट] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + ये खिड़की आपको लेन-देन का विस्तृत विवरण देगी ! + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + विकल्प: + + + + Specify data directory + डेटा डायरेक्टरी बताएं + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + बैकग्राउंड में डेमॉन बन कर रन करे तथा कमांड्स स्वीकार करें + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + ब्लॉक्स जाँचे जा रहा है... + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + जानकारी + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + चेतावनी + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + ब्लॉक इंडेक्स आ रहा है... + + + + Loading wallet... + वॉलेट आ रहा है... + + + + Cannot downgrade wallet + + + + + Rescanning... + रि-स्केनी-इंग... + Error भूल diff --git a/src/qt/locale/raven_hr.ts b/src/qt/locale/raven_hr.ts index 4b9f975049..a5e1da4928 100644 --- a/src/qt/locale/raven_hr.ts +++ b/src/qt/locale/raven_hr.ts @@ -1,1121 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label Desni klik za uređivanje adresa i oznaka + Create a new address Dodajte novu adresu + &New &Nova + Copy the currently selected address to the system clipboard Kopiraj trenutno odabranu adresu u međuspremnik + &Copy &Kopiraj + C&lose &Zatvori + Delete the currently selected address from the list Brisanje trenutno odabrane adrese s popisa. + Export the data in the current tab to a file Izvoz podataka iz trenutnog lista u datoteku + &Export &Izvozi + &Delete Iz&briši + Choose the address to send coins to Odaberi adresu na koju šalješ novac + Choose the address to receive coins with Odaberi adresu na koju primaš novac + C&hoose &Odaberi + + Sending addresses + + + + + Receiving addresses + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Ovo su vaše Raven adrese za slanje novca. Uvijek provjerite iznos i adresu primatelja prije slanja novca. + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address &Kopiraj adresu + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + Exporting Failed Izvoz neuspješan - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Dijalog lozinke + Enter passphrase Unesite lozinku + New passphrase Nova lozinka + Repeat new passphrase Ponovite novu lozinku - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - BanTableModel - + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - RavenGUI + AssetTableModel - Sign &message... - P&otpišite poruku... + + Name + - Synchronizing with network... - Usklađivanje s mrežom ... + + Quantity + + + + AssetsDialog - &Overview - &Pregled + + + Send Coins + - Node - Čvor + + Asset Control Features + - Show general overview of wallet - Prikaži opći pregled novčanika + + Inputs... + - &Transactions - &Transakcije + + automatically selected + - Browse transaction history - Pretraži povijest transakcija + + Insufficient funds! + - E&xit - &Izlaz + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + Izbor ulaza transakcije + + + + Quantity: + Količina: + + + + Bytes: + Bajtova: + + + + Amount: + Iznos: + + + + Fee: + Naknada: + + + + Dust: + Prah: + + + + After Fee: + + + + + Change: + Vraćeno: + + + + (un)select all + Izaberi sve/ništa + + + + Tree mode + + + + + List mode + + + + + Amount + Iznos + + + + Received with label + Primljeno pod oznakom + + + + Received with address + Primljeno na adresu + + + + Date + Datum + + + + Confirmations + Broj potvrda + + + + Confirmed + Potvrđeno + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Uredi adresu + + + + &Label + &Oznaka + + + + The label associated with this address list entry + Oznaka raven adrese + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Raven adresa. Izmjene adrese su moguće samo za adrese za slanje. + + + + &Address + &Adresa + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Stvoren će biti novi direktorij za podatke. + + + + name + ime + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + Nije moguće stvoriti direktorij za podatke na tom mjestu. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + verzija + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + Opcije programa u naredbenoj liniji + + + + Usage: + Upotreba: + + + + command-line options + opcije programa u naredbenoj liniji + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Dobrodošli + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Greška + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Oblik + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Posljednje vrijeme bloka + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Otvori URI adresu + + + + Open payment request from URI or file + Otvori zahtjev za plaćanje iz URI adrese ili datoteke + + + + URI: + URI: + + + + Select payment request file + Izaberi datoteku zahtjeva za plaćanje + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Postavke + + + + &Main + &Glavno + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Veličina predmemorije baze podataka + + + + MB + MB + + + + Number of script &verification threads + Broj CPU niti za verifikaciju transakcija + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP adresa proxy servera (npr. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizirati aplikaciju umjesto zatvoriti, kada se zatvori prozor. Kada je ova opcija omogućena, aplikacija će biti zatvorena tek nakon odabira naredbe Izlaz u izborniku. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Nastavi sve postavke programa na početne vrijednosti. + + + + &Reset Options + Po&nastavi postavke + + + + &Network + &Mreža + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + &Novčanik + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + &Trošenje nepotvrđenih vraćenih iznosa + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatski otvori port Raven klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. + + + + Map port using &UPnP + Mapiraj port koristeći &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Vrata: + + + + + Port of the proxy (e.g. 9050) + Proxy vrata (npr. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Prozor + + + + Show only a tray icon after minimizing the window. + Prikaži samo ikonu u sistemskoj traci nakon minimiziranja prozora + + + + &Minimize to the tray instead of the taskbar + &Minimiziraj u sistemsku traku umjesto u traku programa + + + + M&inimize on close + M&inimiziraj kod zatvaranja + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Prikaz + + + + User Interface &language: + Jezi&k sučelja: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Jedinica za prikaz iznosa: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Izaberite željeni najmanji dio ravena koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &U redu + + + + &Cancel + &Odustani + + + + default + standardne vrijednosti + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + Priložena proxy adresa je nevažeća. + + + + OverviewPage + + + Form + Oblik + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s Raven mrežom kada je veza uspostavljena, ali taj proces još nije završen. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Ukupno: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Iznos + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Verzija klijenta + + + + &Information + &Informacije + + + + Debug window + Konzola za dijagnostiku + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Mreža + + + + Name + Ime + + + + Number of connections + Broj veza + + + + Block chain + Lanac blokova + + + + Current number of blocks + Trenutni broj blokova + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Primljeno + + + + + Sent + Poslano + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Smjer + + + + Version + Verzija + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + Trajanje veze + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Posljednje vrijeme bloka + + + + &Open + &Otvori + + + + &Console + &Konzola + + + + &Network Traffic + &Mrežni promet + + + + Totals + Ukupno: + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + Očisti konzolu + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + Nepoznato + + + + RavenGUI + + + Sign &message... + P&otpišite poruku... + + + + Synchronizing with network... + Usklađivanje s mrežom ... + + + + &Overview + &Pregled + + + + Node + Čvor + + + + Show general overview of wallet + Prikaži opći pregled novčanika + + + + &Transactions + &Transakcije + + + + Browse transaction history + Pretraži povijest transakcija + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Izlaz + + + + Quit application + Izlazak iz programa + + + + &About %1 + &Više o %1 + + + + Show information about %1 + + + + + About &Qt + Više o &Qt + + + + Show information about Qt + Prikaži informacije o Qt + + + + &Options... + Pos&tavke... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Ši&friraj novčanik... + + + + &Backup Wallet... + Spremi &kopiju novčanika... + + + + &Change Passphrase... + Promjena &lozinke... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adrese za &slanje + + + + &Receiving addresses... + Adrese za &primanje + + + + Open &URI... + Otvori &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Re-indeksiranje blokova na disku... + + + + Send coins to a Raven address + Slanje novca na raven adresu + + + + Backup wallet to another location + Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + + + Change the passphrase used for wallet encryption + Promijenite lozinku za šifriranje novčanika + + + + Open debugging and diagnostic console + Otvori konzolu za dijagnostiku + + + + &Verify message... + &Potvrdite poruku... + + + + Raven + Raven + + + + Wallet + Novčanik + + + + &Send + &Pošalji + + + + &Receive + Pri&mi + + + + &Show / Hide + Po&kaži / Sakrij + + + + Show or hide the main Window + Prikaži ili sakrij glavni prozor + + + + Encrypt the private keys that belong to your wallet + Šifriranje privatnih ključeva koji u novčaniku + + + + Sign messages with your Raven addresses to prove you own them + Poruku potpišemo s raven adresom, kako bi dokazali vlasništvo nad tom adresom + + + + Verify messages to ensure they were signed with specified Raven addresses + Provjeravanje poruke, kao dokaz, da je potpisana navedenom raven adresom + + + + &File + &Datoteka + + + + &Help + &Pomoć + + + + Request payments (generates QR codes and raven: URIs) + Zatraži uplatu (stvara QR kod i raven: URI adresu) + + + + Show the list of used sending addresses and labels + Prikaži popis korištenih adresa i oznaka za slanje novca + + + + Show the list of used receiving addresses and labels + Prikaži popis korištenih adresa i oznaka za primanje novca + + + + Open a raven: URI or payment request + Otvori raven: URI adresu ili zahtjev za uplatu + + + + &Command-line options + Opcije &naredbene linije + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + Zadnji primljeni blok je bio ustvaren prije %1. + + + + Transactions after this will not yet be visible. + Transakcije izvršene za tim blokom nisu još prikazane. + + + + Error + Greška + + + + Warning + Upozorenje + + + + Information + Informacija + + + + Up to date + Ažurno + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Ažuriranje... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Iznos: %1 + + + + + Type: %1 + + Vrsta: %1 + + + + + Label: %1 + + Oznaka: %1 + + + + + Address: %1 + + Adresa: %1 + + + + + Sent transaction + Poslana transakcija + + + + Incoming transaction + Dolazna transakcija + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Iznos: + + + + &Label: + &Oznaka: + + + + &Message: + &Poruka: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Obriši sva polja + + + + Clear + + + + + Requested payments history + + + + + &Request payment + &Zatraži plaćanje + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Pokaži + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR kôd + + + + Copy &URI + Kopiraj &URI + + + + Copy &Address + Kopiraj &adresu + + + + &Save Image... + &Spremi sliku... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Slanje novca + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Nedovoljna sredstva + + + + Quantity: + Količina: + + + + Bytes: + Bajtova: + + + + Amount: + Iznos: + + + + Fee: + Naknada: + + + + After Fee: + + + + + Change: + Vraćeno: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Naknada za transakciju: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Pošalji novce većem broju primatelja u jednoj transakciji + + + + Add &Recipient + &Dodaj primatelja + + + + Clear all fields of the form. + Obriši sva polja + + + + Dust: + Prah: + + + + Confirmation time target: + + + + + Clear &All + Obriši &sve + + + + Balance: + Stanje: + + + + Confirm the send action + Potvrdi akciju slanja + + + + S&end + &Pošalji + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &Iznos: + + + + &Label: + &Oznaka: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Zalijepi adresu iz međuspremnika + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Poruka: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &Potpišite poruku + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Zalijepi adresu iz međuspremnika + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Upišite poruku koju želite potpisati ovdje + + + + Signature + Potpis + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + &Potpišite poruku + + + + Reset all sign message fields + + + + + + Clear &All + Obriši &sve + + + + &Verify Message + &Potvrdite poruku + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + &Potvrdite poruku + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Ovaj prozor prikazuje detaljni opis transakcije + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + Izvoz neuspješan + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Postavke: + + + + Specify data directory + Odaberi direktorij za datoteke + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + Odaberi vlastitu javnu adresu + + + + Accept command line and JSON-RPC commands + Prihvati komande iz tekst moda i JSON-RPC + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Izvršavaj u pozadini kao uslužnik i prihvaćaj komande + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Opcije za kreiranje bloka: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + Pogreška: Nema dovoljno prostora na disku! + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + - Quit application - Izlazak iz programa + + Wallet needed to be rewritten: restart %s to complete + - &About %1 - &Više o %1 + + Wallet options: + - About &Qt - Više o &Qt + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Show information about Qt - Prikaži informacije o Qt + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - &Options... - Pos&tavke... + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - &Encrypt Wallet... - Ši&friraj novčanik... + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - &Backup Wallet... - Spremi &kopiju novčanika... + + Error: Listening for incoming connections failed (listen returned error %s) + - &Change Passphrase... - Promjena &lozinke... + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - &Sending addresses... - Adrese za &slanje + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - &Receiving addresses... - Adrese za &primanje + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Open &URI... - Otvori &URI... + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Reindexing blocks on disk... - Re-indeksiranje blokova na disku... + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Send coins to a Raven address - Slanje novca na raven adresu + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Backup wallet to another location - Napravite sigurnosnu kopiju novčanika na drugoj lokaciji + + The transaction amount is too small to send after the fee has been deducted + - Change the passphrase used for wallet encryption - Promijenite lozinku za šifriranje novčanika + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - &Debug window - Konzola za dijagnostiku + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Open debugging and diagnostic console - Otvori konzolu za dijagnostiku + + (default: %u) + - &Verify message... - &Potvrdite poruku... + + Accept public REST requests (default: %u) + - Raven - Raven + + Automatically create Tor hidden service (default: %d) + - Wallet - Novčanik + + Connect through SOCKS5 proxy + - &Send - &Pošalji + + Error loading %s: You can't disable HD on an already existing HD wallet + - &Receive - Pri&mi + + Error reading from database, shutting down. + - &Show / Hide - Po&kaži / Sakrij + + Error upgrading chainstate database + - Show or hide the main Window - Prikaži ili sakrij glavni prozor + + Imports blocks from external blk000??.dat file on startup + - Encrypt the private keys that belong to your wallet - Šifriranje privatnih ključeva koji u novčaniku + + Information + Informacija - Sign messages with your Raven addresses to prove you own them - Poruku potpišemo s raven adresom, kako bi dokazali vlasništvo nad tom adresom + + Invalid -onion address or hostname: '%s' + - Verify messages to ensure they were signed with specified Raven addresses - Provjeravanje poruke, kao dokaz, da je potpisana navedenom raven adresom + + Invalid -proxy address or hostname: '%s' + - &File - &Datoteka + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Settings - &Postavke + + Invalid netmask specified in -whitelist: '%s' + - &Help - &Pomoć + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Tabs toolbar - Traka kartica + + Need to specify a port with -whitebind: '%s' + - Request payments (generates QR codes and raven: URIs) - Zatraži uplatu (stvara QR kod i raven: URI adresu) + + Node relay options: + - Show the list of used sending addresses and labels - Prikaži popis korištenih adresa i oznaka za slanje novca + + RPC server options: + - Show the list of used receiving addresses and labels - Prikaži popis korištenih adresa i oznaka za primanje novca + + Reducing -maxconnections from %d to %d, because of system limitations. + - Open a raven: URI or payment request - Otvori raven: URI adresu ili zahtjev za uplatu + + Rescan the block chain for missing wallet transactions on startup + - &Command-line options - Opcije &naredbene linije + + Send trace/debug info to console instead of debug.log file + Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku - - %n active connection(s) to Raven network - %n aktivna veza na Raven mrežu%n aktivnih veza na Raven mrežu%n aktivnih veza na Raven mrežu + + + Show all debugging options (usage: --help -help-debug) + - - Processed %n block(s) of transaction history. - Obrađen %n blok povijesti transakcije.Obrađeno %n bloka povijesti transakcije.Obrađeno %n blokova povijesti transakcije. + + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Last received block was generated %1 ago. - Zadnji primljeni blok je bio ustvaren prije %1. + + Signing transaction failed + - Transactions after this will not yet be visible. - Transakcije izvršene za tim blokom nisu još prikazane. + + The transaction amount is too small to pay the fee + - Error - Greška + + This is experimental software. + - Warning - Upozorenje + + Tor control port password (default: empty) + - Information - Informacija + + Tor control port to use if onion listening enabled (default: %s) + - Up to date - Ažurno + + Transaction amount too small + - Catching up... - Ažuriranje... + + Transaction too large for fee policy + - Date: %1 - - Datum: %1 - + + Transaction too large + - Amount: %1 - - Iznos: %1 - + + Unable to bind to %s on this computer (bind returned error %s) + - Type: %1 - - Vrsta: %1 - + + Upgrade wallet to latest format on startup + - Label: %1 - - Oznaka: %1 - + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC veze - Address: %1 - - Adresa: %1 - + + Valid Verifier + - Sent transaction - Poslana transakcija + + Variable is not allow in the expression: ' + - Incoming transaction - Dolazna transakcija + + Verifier String doesn't exist for asset: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Novčanik je <b>šifriran</b> i trenutno <b>otključan</b> + + Verifier String for asset trasnfer, not found + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Novčanik je <b>šifriran</b> i trenutno <b>zaključan</b> + + Verifier not found for asset: + - - - CoinControlDialog - Coin Selection - Izbor ulaza transakcije + + Verifier string can not be empty. To default to true, use "true" + - Quantity: - Količina: + + Verifier string is empty + - Bytes: - Bajtova: + + Verifier string not found + - Amount: - Iznos: + + Verifying wallet(s)... + - Fee: - Naknada: + + Warning + Upozorenje - Dust: - Prah: + + Warning: unknown new rules activated (versionbit %i) + - Change: - Vraćeno: + + Whether to operate in a blocks only mode (default: %u) + - (un)select all - Izaberi sve/ništa + + You need to rebuild the database using -reindex to change -txindex + - Amount - Iznos + + Zapping all transactions from wallet... + - Received with label - Primljeno pod oznakom + + ZeroMQ notification options: + - Received with address - Primljeno na adresu + + Password for JSON-RPC connections + Lozinka za JSON-RPC veze - Date - Datum + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Izvršite naredbu kada se najbolji blok promjeni (%s u cmd je zamjenjen sa block hash) - Confirmations - Broj potvrda + + Allow DNS lookups for -addnode, -seednode and -connect + Dozvoli DNS upite za -addnode, -seednode i -connect - Confirmed - Potvrđeno + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - - - EditAddressDialog - Edit Address - Uredi adresu + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - &Label - &Oznaka + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - The label associated with this address list entry - Oznaka raven adrese + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - The address associated with this address list entry. This can only be modified for sending addresses. - Raven adresa. Izmjene adrese su moguće samo za adrese za slanje. + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - &Address - &Adresa + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - - - FreespaceChecker - A new data directory will be created. - Stvoren će biti novi direktorij za podatke. + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - name - ime + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Cannot create data directory here. - Nije moguće stvoriti direktorij za podatke na tom mjestu. + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - - - HelpMessageDialog - version - verzija + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - (%1-bit) - (%1-bit) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Command-line options - Opcije programa u naredbenoj liniji + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Usage: - Upotreba: + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - command-line options - opcije programa u naredbenoj liniji + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - - - Intro - Welcome - Dobrodošli + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Error - Greška + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - - - ModalOverlay - Form - Oblik + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Last block time - Posljednje vrijeme bloka + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - - - OpenURIDialog - Open URI - Otvori URI adresu + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Open payment request from URI or file - Otvori zahtjev za plaćanje iz URI adrese ili datoteke + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - URI: - URI: + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Select payment request file - Izaberi datoteku zahtjeva za plaćanje + + Output debugging information (default: %u, supplying <category> is optional) + - - - OptionsDialog - Options - Postavke + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - &Main - &Glavno + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Size of &database cache - Veličina predmemorije baze podataka + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - MB - MB + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Number of script &verification threads - Broj CPU niti za verifikaciju transakcija + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Allow incoming connections - Dozvoli povezivanje izvana + + Support filtering of blocks and transaction with bloom filters (default: %u) + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP adresa proxy servera (npr. IPv4: 127.0.0.1 / IPv6: ::1) + + The default height that is required before rewards are allowed to be sent out + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizirati aplikaciju umjesto zatvoriti, kada se zatvori prozor. Kada je ova opcija omogućena, aplikacija će biti zatvorena tek nakon odabira naredbe Izlaz u izborniku. + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Reset all client options to default. - Nastavi sve postavke programa na početne vrijednosti. + + This address doesn't contain the correct tags to pass the verifier string check: + - &Reset Options - Po&nastavi postavke + + This is the transaction fee you may pay when fee estimates are not available. + - &Network - &Mreža + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - W&allet - &Novčanik + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - &Spend unconfirmed change - &Trošenje nepotvrđenih vraćenih iznosa + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatski otvori port Raven klijenta na ruteru. To radi samo ako ruter podržava UPnP i ako je omogućen. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Map port using &UPnP - Mapiraj port koristeći &UPnP + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Proxy &IP: - Proxy &IP: + + Unable to reissue asset: unit must be larger than current unit selection + - &Port: - &Vrata: + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Port of the proxy (e.g. 9050) - Proxy vrata (npr. 9050) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - &Window - &Prozor + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Show only a tray icon after minimizing the window. - Prikaži samo ikonu u sistemskoj traci nakon minimiziranja prozora + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - &Minimize to the tray instead of the taskbar - &Minimiziraj u sistemsku traku umjesto u traku programa + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - M&inimize on close - M&inimiziraj kod zatvaranja + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - &Display - &Prikaz + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - User Interface &language: - Jezi&k sučelja: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - &Unit to show amounts in: - &Jedinica za prikaz iznosa: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Choose the default subdivision unit to show in the interface and when sending coins. - Izaberite željeni najmanji dio ravena koji će biti prikazan u sučelju i koji će se koristiti za plaćanje. + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - &OK - &U redu + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - &Cancel - &Odustani + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - default - standardne vrijednosti + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - The supplied proxy address is invalid. - Priložena proxy adresa je nevažeća. + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - OverviewPage - Form - Oblik + + %s is set very high! + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Prikazani podatci mogu biti zastarjeli. Vaš novčanik se automatski sinkronizira s Raven mrežom kada je veza uspostavljena, ali taj proces još nije završen. + + ' doesn't exist in the database + - Total: - Ukupno: + + ' has already been used + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Iznos + + ' is not a valid character in the expression: + - N/A - N/A + + ' the amount trying to reissue is to large + - %1 and %2 - %1 i %2 + + (default: %s) + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + A space separated list of 12-words used to import a bip44 wallet + - Client version - Verzija klijenta + + Always query for peer addresses via DNS lookup (default: %u) + - &Information - &Informacije + + Asset Transfer amounts must be greater than 0 + - Debug window - Konzola za dijagnostiku + + Asset doesn't exist: + - Network - Mreža + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Name - Ime + + Asset name is not valid + - Number of connections - Broj veza + + Asset with this name is already in the mempool + - Block chain - Lanac blokova + + Done Loading + - Current number of blocks - Trenutni broj blokova + + Enable publish raw asset messages in <address> + - Received - Primljeno + + Error creating %s: You can't create non-HD wallets with this version. + - Sent - Poslano + + Error loading wallet %s. -wallet filename must be a regular file. + - Direction - Smjer + + Error loading wallet %s. Duplicate -wallet filename specified. + - Version - Verzija + + Error loading wallet %s. Invalid characters in -wallet filename. + - Connection Time - Trajanje veze + + Error not set + - Last block time - Posljednje vrijeme bloka + + Error writing bip 39 passphrase to database + - &Open - &Otvori + + Error writing bip 39 vchseed to database + - &Console - &Konzola + + Error writing bip 39 words to database + - &Network Traffic - &Mrežni promet + + Every '(' must have a corresponding ')' in the expression: + - Totals - Ukupno: + + Failed to extract destination from change script + - Clear console - Očisti konzolu + + Failed to find restricted asset change address from inputs + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Koristite tipke gore i dolje za izbor već korištenih naredbi. <b>Ctrl-L</b> kako bi očistili ekran i povijest naredbi. + + Failed to get asset data from script + - Unknown - Nepoznato + + Failed to get verifier string from output: + - - - ReceiveCoinsDialog - &Amount: - &Iznos: + + Failed to load Assets Database + - &Label: - &Oznaka: + + Flag must be 1 or 0 + - &Message: - &Poruka: + + How many blocks to check at startup (default: %u, 0 = all) + - Clear all fields of the form. - Obriši sva polja + + Include IP addresses in debug output (default: %u) + - &Request payment - &Zatraži plaćanje + + Init Message Channels - Scanning Asset Transactions + - Show - Pokaži + + Insufficient asset funds + - - - ReceiveRequestDialog - QR Code - QR kôd + + Invalid Qualifier Name: + - Copy &URI - Kopiraj &URI + + Invalid expressions in verifier string: + - Copy &Address - Kopiraj &adresu + + Invalid parameter: amount must be + - &Save Image... - &Spremi sliku... + + Invalid parameter: amount must be between + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Slanje novca + + Invalid parameter: asset amount can't be equal to or less than zero. + - Insufficient funds! - Nedovoljna sredstva + + Invalid parameter: asset amount greater than max money: + - Quantity: - Količina: + + Invalid parameter: asset_name ' + - Bytes: - Bajtova: + + Invalid parameter: has_ipfs must be 0 or 1. + - Amount: - Iznos: + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Fee: - Naknada: + + Invalid parameter: reissuable must be 0 or 1 + - Change: - Vraćeno: + + Invalid parameter: reissuable must be 0 + - Transaction Fee: - Naknada za transakciju: + + Invalid parameter: units must be + - Send to multiple recipients at once - Pošalji novce većem broju primatelja u jednoj transakciji + + Invalid parameter: units must be between 0-8. + - Add &Recipient - &Dodaj primatelja + + Invalid syntax: + - Clear all fields of the form. - Obriši sva polja + + Keypool ran out, please call keypoolrefill first + - Dust: - Prah: + + Length is to large. Please use a smaller length + - Clear &All - Obriši &sve + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Balance: - Stanje: + + Listen for connections on <port> (default: %u or testnet: %u) + - Confirm the send action - Potvrdi akciju slanja + + Maintain at most <n> connections to peers (default: %u) + - S&end - &Pošalji + + Make the wallet broadcast transactions + - - - SendCoinsEntry - A&mount: - &Iznos: + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Pay &To: - &Primatelj plaćanja: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - &Label: - &Oznaka: + + Mempool cleared + - Alt+A - Alt+A + + Multiple verifier strings found in transaction + - Paste address from clipboard - Zalijepi adresu iz međuspremnika + + Passphrase securing your 12-word mnemonic word-list + - Alt+P - Alt+P + + Prepend debug output with timestamp (default: %u) + - Message: - Poruka: + + Relay and mine data carrier transactions (default: %u) + - Pay To: - Primatelj plaćanja: + + Relay non-P2SH multisig (default: %u) + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - &Sign Message - &Potpišite poruku + + Restricted asset transfer from address that has been frozen + - Alt+A - Alt+A + + Send transactions with full-RBF opt-in enabled (default: %u) + - Paste address from clipboard - Zalijepi adresu iz međuspremnika + + Set key pool size to <n> (default: %u) + - Alt+P - Alt+P + + Set maximum BIP141 block weight (default: %d) + - Enter the message you want to sign here - Upišite poruku koju želite potpisati ovdje + + Set the Maximum reorg depth (default: %u) + - Signature - Potpis + + Set the number of threads to service RPC calls (default: %d) + - Sign &Message - &Potpišite poruku + + Signing asset transaction failed + - Clear &All - Obriši &sve + + Specify configuration file (default: %s) + - &Verify Message - &Potvrdite poruku + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verify &Message - &Potvrdite poruku + + Specify pid file (default: %s) + - - - SplashScreen - [testnet] - [testnet] + + Spend unconfirmed change when sending transactions (default: %u) + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Ovaj prozor prikazuje detaljni opis transakcije + + Starting network threads... + - - - TransactionTableModel - - - TransactionView - Exporting Failed - Izvoz neuspješan + + The symbol: ' + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Postavke: + + The verifier string has two operators without a tag between them + - Specify data directory - Odaberi direktorij za datoteke + + The wallet will avoid paying less than the minimum relay fee. + - Specify your own public address - Odaberi vlastitu javnu adresu + + This is the minimum transaction fee you pay on every transaction. + - Accept command line and JSON-RPC commands - Prihvati komande iz tekst moda i JSON-RPC + + This is the transaction fee you will pay if you send a transaction. + - Run in the background as a daemon and accept commands - Izvršavaj u pozadini kao uslužnik i prihvaćaj komande + + Threshold for disconnecting misbehaving peers (default: %u) + - Raven Core - Raven Core + + Transaction amounts must not be negative + - Block creation options: - Opcije za kreiranje bloka: + + Transaction has too long of a mempool chain + - Error: Disk space is low! - Pogreška: Nema dovoljno prostora na disku! + + Transaction must have at least one recipient + - Information - Informacija + + Turn off the databasing the messages sent with assets (default: %u) + - Send trace/debug info to console instead of debug.log file - Šalji trace/debug informacije na konzolu umjesto u debug.log datoteku + + Unable to generate initial keys + - Username for JSON-RPC connections - Korisničko ime za JSON-RPC veze + + Unable to get coin to verify restricted asset transfer from address + - Warning - Upozorenje + + Unable to reissue asset: amount must be 0 or larger + - Password for JSON-RPC connections - Lozinka za JSON-RPC veze + + Unable to reissue asset: asset_name ' + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Izvršite naredbu kada se najbolji blok promjeni (%s u cmd je zamjenjen sa block hash) + + Unable to reissue asset: reissuable is set to false + - Allow DNS lookups for -addnode, -seednode and -connect - Dozvoli DNS upite za -addnode, -seednode i -connect + + Unable to reissue asset: reissuable must be 0 or 1 + - Loading addresses... - Učitavanje adresa... + + Unable to reissue asset: unit must be between 8 and -1 + - Invalid -proxy address: '%s' - Nevaljala -proxy adresa: '%s' + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Nedovoljna sredstva + Loading block index... Učitavanje indeksa blokova... - Add a node to connect to and attempt to keep the connection open - Doda čvor s kojim se želite povezati i nastoji održati vezu otvorenu - - + Loading wallet... Učitavanje novčanika... + Cannot downgrade wallet Nije moguće novčanik vratiti na prijašnju verziju. - Cannot write default address - Nije moguće upisati zadanu adresu. - - + Rescanning... Ponovno pretraživanje... - Done loading - Učitavanje gotovo - - + Error Greška diff --git a/src/qt/locale/raven_id_ID.ts b/src/qt/locale/raven_id_ID.ts index 2648d9e1db..95652654f4 100644 --- a/src/qt/locale/raven_id_ID.ts +++ b/src/qt/locale/raven_id_ID.ts @@ -1,112 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label Klik-kanan untuk mengubah alamat atau label + Create a new address Buat alamat baru + &New &Baru + Copy the currently selected address to the system clipboard Salin alamat yang dipilih ke clipboard + &Copy &Menyalin + C&lose T&utup + Delete the currently selected address from the list Hapus alamat yang sementara dipilih dari daftar + Export the data in the current tab to a file Ekspor data dalam tab sekarang ke sebuah berkas + &Export &Ekspor + &Delete &Hapus + Choose the address to send coins to Pilih alamat untuk mengirim koin + Choose the address to receive coins with Piih alamat untuk menerima koin + C&hoose &Pilih + Sending addresses Alamat-alamat pengirim + Receiving addresses Alamat-alamat penerima + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Ini adalah alamat- alamat Raven Anda untuk mengirimkan pembayaran. Selalu periksa jumlah dan alamat penerima sebelum mengirimkan koin. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Ini adalah alamat- alamat Raven Anda untuk menerima pembayaran. Dianjurkan untuk menggunakan alamat penerima yang baru setiap melakukan transaksi. + &Copy Address &Salin Alamat + Copy &Label Salin& Label + &Edit &Ubah + Export Address List Ekspor Daftar Alamat + Comma separated file (*.csv) File yang berformat(*.csv) + Exporting Failed Mengekspor Gagal - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Label + Address Alamat + (no label) (tidak ada label) @@ -114,1902 +143,8151 @@ AskPassphraseDialog + Passphrase Dialog Dialog Kata kunci + Enter passphrase Masukkan kata kunci + New passphrase Kata kunci baru + Repeat new passphrase Ulangi kata kunci baru + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Masukan kata sandi baru ke dompet.<br/>Mohon gunakan kata sandi <b>sepuluh karakter acak atau lebih</b>, atau <b> delapan atau lebih beberapa kata </​​b>. + Encrypt wallet Enkripsi dompet + This operation needs your wallet passphrase to unlock the wallet. Operasi ini memerlukan kata sandi dompet Anda untuk membuka dompet. + Unlock wallet Buka dompet + This operation needs your wallet passphrase to decrypt the wallet. Operasi ini memerlukan kata sandi dompet Anda untuk mendekripsikan dompet. + Decrypt wallet Dekripsi dompet + Change passphrase Ganti kata sandi + Enter the old passphrase and new passphrase to the wallet. Masukkan kata sandi lama dan kata sandi baru ke dompet. + Confirm wallet encryption Konfirmasi pengenkripsian dompet + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Peringatan: Jika Anda enkripsi dompet Anda dan lupa kata sandi anda, Anda akan <b>KEHILANGAN SEMUA RAVEN ANDA</b>! + Are you sure you wish to encrypt your wallet? Apakah Anda yakin ingin enkripsi dompet Anda? + + Wallet encrypted Dompet terenkripsi + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 sekarang akan ditutup untuk menyelesaikan proses enkripsi. Ingatlah bahwa mengenkripsi dompet Anda tidak dapat sepenuhnya melindungi komputer Anda dari pencurian malware yang menginfeksi komputer Anda. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. PENTING: Backup sebelumnya yang Anda buat dari file dompet Anda harus diganti dengan file dompet terenkripsi yang baru dibuat. Demi keamanan, backup file dompet sebelumnya yang tidak dienkripsi sebelumnya akan menjadi tidak berguna begitu Anda mulai menggunakan dompet terenkripsi yang baru. + + + + Wallet encryption failed Pengenkripsian dompet gagal + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Pengenkripsian dompet gagal karena kesalahan internal. Dompet Anda tidak dienkripsi. + + The supplied passphrases do not match. Kata sandi yang dimasukkan tidak cocok. + Wallet unlock failed Membuka dompet gagal + + + The passphrase entered for the wallet decryption was incorrect. Kata sandi yang dimasukkan untuk dekripsi dompet salah. + Wallet decryption failed Dekripsi dompet gagal + Wallet passphrase was successfully changed. Kata sandi berhasil diganti. + + Warning: The Caps Lock key is on! Peringatan: Tombol Caps Lock aktif! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmask + + Asset Selection + Pemilihan Aset - Banned Until - Di banned sampai + + Quantity: + - - - RavenGUI - Sign &message... - Pesan &penanda... + + Bytes: + - Synchronizing with network... - Sinkronisasi dengan jaringan... + + Amount: + - &Overview - &Kilasan + + Dust: + - Node - Node + + Fee: + - Show general overview of wallet - Tampilkan gambaran umum dompet Anda + + After Fee: + - &Transactions - &Transaksi + + Change: + - Browse transaction history - Lihat riwayat transaksi + + (un)select all + - E&xit - K&eluar + + Tree mode + - Quit application - Keluar dari aplikasi + + List mode + - &About %1 - &Tentang%1 + + View assets that you have the ownership asset for + - Show information about %1 - Tampilkan informasi perihal %1 + + View Administrator Assets + - About &Qt - Mengenai &Qt + + Asset + - Show information about Qt - Tampilkan informasi mengenai Qt + + Amount + Jumlah - &Options... - &Pilihan... + + Received with label + - Modify configuration options for %1 - Pengubahan opsi konfigurasi untuk %1 + + Received with address + Diterima dengan alamat - &Encrypt Wallet... - &Enkripsi Dompet... + + Date + Tanggal - &Backup Wallet... - &Cadangkan Dompet... + + Confirmations + Konfirmasi - &Change Passphrase... - &Ubah Kata Kunci... + + Confirmed + Telah dikonfirmasi - &Sending addresses... - &Alamat-alamat untuk mengirim... + + Copy address + Salin Alamat - &Receiving addresses... - &Alamat-alamat untuk menerima... + + Copy label + - Open &URI... - Buka &URI + + + Copy amount + - Click to disable network activity. - Klik untuk menonaktifkan aktivitas jaringan. + + Copy transaction ID + - Network activity disabled. - Aktivitas jaringan dinonaktifkan. + + Lock unspent + - Click to enable network activity again. - Klik untuk mengaktifkan aktivitas jaringan lagi. + + Unlock unspent + - Syncing Headers (%1%)... - Menyinkronkan Header (%1%) ... + + Copy quantity + - Reindexing blocks on disk... - Mengindex ulang blok di dalam disk... + + Copy fee + - Send coins to a Raven address - Kirim koin ke alamat Raven + + Copy after fee + - Backup wallet to another location - Cadangkan dompet ke lokasi lain + + Copy bytes + - Change the passphrase used for wallet encryption - Ubah kata kunci yang digunakan untuk enkripsi dompet + + Copy dust + - &Debug window - &Jendela Debug + + Copy change + - Open debugging and diagnostic console - Buka konsol debug dan diagnosa + + (%1 locked) + - &Verify message... - &Verifikasi pesan... + + yes + - Raven - Raven + + no + - Wallet - Dompet + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Kirim + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Menerima + + + (no label) + - &Show / Hide - &Tampilkan / Sembunyikan + + change from %1 (%2) + - Show or hide the main Window - Tampilkan atau sembunyikan jendela utama + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Enkripsi private key yang dimiliki dompet Anda + + Name + Nama - Sign messages with your Raven addresses to prove you own them - Tanda tangani sebuah pesan menggunakan alamat Raven Anda untuk membuktikan bahwa Anda adalah pemilik alamat tersebut + + Quantity + Kuantitas + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verifikasi pesan untuk memastikan bahwa pesan tersebut ditanda tangani oleh suatu alamat Raven tertentu + + + Send Coins + Kirim Token - &File - &Berkas + + Asset Control Features + - &Settings - &Pengaturan + + Inputs... + - &Help - &Bantuan + + automatically selected + - Tabs toolbar - Baris tab + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Permintaan pembayaran (membuat kode QR dan raven: URIs) + + Quantity: + - Show the list of used sending addresses and labels - Tampilkan daftar alamat dan label yang terkirim + + Bytes: + - Show the list of used receiving addresses and labels - Tampilkan daftar alamat dan label yang diterima + + Amount: + Jumlah - Open a raven: URI or payment request - Buka URI raven: atau permintaan pembayaran + + Dust: + - &Command-line options - &pilihan Command-line + + Fee: + - - %n active connection(s) to Raven network - %n koneksi aktif ke jaringan Raven + + + After Fee: + - Indexing blocks on disk... - Pengindeksan blok pada disk ... + + Change: + - Processing blocks on disk... - Memproses blok pada disk ... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - %n blok dari riwayat transaksi diproses. + + + Custom change address + - %1 behind - kurang %1 + + Transaction Fee: + Biaya Transaksi - Last received block was generated %1 ago. - Blok terakhir yang diterima %1 lalu. + + Choose... + - Transactions after this will not yet be visible. - Transaksi setelah ini belum akan terlihat. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Terjadi sebuah kesalahan + + Warning: Fee estimation is currently not possible. + - Warning - Peringatan + + collapse fee-settings + - Information - Informasi + + Hide + Sembunyikan - Up to date - Terbaru + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Tampilkan %1 pesan bantuan untuk mendapatkan daftar opsi baris perintah Raven yang memungkinkan + + per kilobyte + - %1 client - %1 klien + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Menghubungkan ke peer... + + (read the tooltip) + - Catching up... - Menyusul... + + Recommended: + - Date: %1 - - Tanggal: %1 - + + Custom: + - Amount: %1 - - Jumlah: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - Tipe: %1 - + + Confirmation time target: + - Label: %1 - - Label: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - Alamat: %1 - + + Request Replace-By-Fee + - Sent transaction - Transaksi terkirim + + Confirm the send action + - Incoming transaction - Transaksi diterima + + S&end + - HD key generation is <b>enabled</b> - Pembuatan kunci HD <b>diaktifkan</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - Pembuatan kunci HD <b>dinonaktifkan</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Dompet saat ini <b>terenkripsi</b> dan <b>terbuka</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Terjadi Kesalahan Fatal. Raven Tidak Dapat Melanjutkan Dengan Aman Dan Akan Keluar + + Balance: + - - - CoinControlDialog - Coin Selection - Pemilihan Koin + + Copy quantity + - Quantity: - Kuantitas: + + Copy amount + - Bytes: - Bytes: + + Copy fee + - Amount: - Jumlah: + + Copy after fee + - Fee: - Biaya: + + Copy bytes + - Dust: - Dust: + + Copy dust + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + Alamat + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + Kirimkan + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + Alamat sudah memiliki kualifikasi yang ditetapkan untuk itu + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Di banned sampai + + + + CoinControlDialog + + + Coin Selection + Pemilihan Koin + + + + Quantity: + Kuantitas: + + + + Bytes: + Bytes: + + + + Amount: + Jumlah: + + + + Fee: + Biaya: + + + + Dust: + Dust: + + + After Fee: Dengan Biaya: + Change: Kembalian: + (un)select all (Tidak)memilih semua + Tree mode Tree mode + List mode Mode daftar + Amount Jumlah + Received with label Diterima dengan label + Received with address Diterima dengan alamat + Date Tanggal + Confirmations Konfirmasi + Confirmed Terkonfirmasi + Copy address Salin alamat + Copy label Salin label + + Copy amount Salin Jumlah + Copy transaction ID Salain ID Transaksi + Lock unspent Kunci Yang Tidak Digunakan + Unlock unspent Buka Kunci Yang Tidak Digunakan + Copy quantity Salin Kuantitas + Copy fee Salin biaya + Copy after fee Salin Setelah Upah + Copy bytes Salin bytes + Copy dust Salin jumlah yang lebih kecil + Copy change Salin Perubahan + (%1 locked) (%1 terkunci) + yes Ya + no Tidak + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + (no label) (tidak ada label) - - - EditAddressDialog - Edit Address - Ubah Alamat + + change from %1 (%2) + - &Label - &Label + + (change) + + + + CreateAssetDialog - The label associated with this address list entry - Label yang terkait dengan daftar alamat + + Coin Control Features + - The address associated with this address list entry. This can only be modified for sending addresses. - Alamat yang terkait dengan daftar alamat. Hanya dapat diubah untuk alamat pengirim. + + Inputs... + - &Address - &Alamat + + automatically selected + - New receiving address - Alamat penerima baru + + Insufficient funds! + - New sending address - Alamat pengirim baru + + + Quantity: + - Edit receiving address - Ubah alamat penerima + + Bytes: + - Edit sending address - Ubah alamat pengirim + + Amount: + - The entered address "%1" is not a valid Raven address. - Alamat yang dimasukkan "%1" bukanlah alamat Raven yang valid. + + Dust: + - The entered address "%1" is already in the address book. - Alamat yang dimasukkan "%1" sudah ada di dalam buku alamat. + + Fee: + - Could not unlock wallet. - Tidak dapat membuka dompet. + + After Fee: + - New key generation failed. - Pembuatan kunci baru gagal. + + Change: + - - - FreespaceChecker - A new data directory will be created. - Sebuah data direktori baru telah dibuat. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - name - nama + + Custom change address + - Directory already exists. Add %1 if you intend to create a new directory here. - Direktori masih ada. Tambahlah %1 apabila Anda ingin membuat direktori baru disini. + + Name: + - Path already exists, and is not a directory. - Sudah ada path, dan itu bukan direktori. + + A-Z 0-9 and . or _ as the second character + - Cannot create data directory here. - Tidak bisa membuat direktori data disini. + + The name of the asset you would like to create + - - - HelpMessageDialog - version - versi + + Check Availabilty + - (%1-bit) - (%1-bit) + + Address: + - About %1 - Tentang %1 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Command-line options - Pilihan Command-line + + Verifier String: + - Usage: - Penggunaan: + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - command-line options - pilihan command-line + + Warning: + - UI Options: - Pilihan UI: + + The number of assets that will be created + - Choose data directory on startup (default: %u) - Pilih direktori data saat memulai (default: %u) + + Units: + - Set language, for example "de_DE" (default: system locale) - Pilih bahasa, contoh "id_ID" (default: system locale) + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Start minimized - Start minimized + + e.g. 1 + - Set SSL root certificates for payment request (default: -system-) - Pilih sertifikat root SSL untuk permintaan pembayaran {default: -system-) + + If the owner of this asset will be able to issue more assets in the future + - Show splash screen on startup (default: %u) - Tampilkan layar kilat saat memulai (default: %u) + + Reissuable + - Reset all settings changed in the GUI - Hapus semua pengaturan pada GUI. + + Does this asset have an ipfs hash to go with it + - - - Intro - Welcome - Selamat Datang + + Add IPFS/Txid Hash + - Welcome to %1. - Selamat Datang ke %1. + + The ipfs/txid hash that contains information about the asset + - As this is the first time the program is launched, you can choose where %1 will store its data. - Karena ini adalah pertama kalinya program dijalankan, Anda dapat memilih lokasi %1 akan menyimpan data. + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Use the default data directory - Gunakan direktori data default. + + ERROR TEXT + - Use a custom data directory: - Gunakan direktori pilihan Anda: + + Transaction Fee: + - Error: Specified data directory "%1" cannot be created. - Kesalahan: Direktori data "%1" tidak dapat dibuat. + + Choose... + Pilih - Error - Kesalahan + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - %n GB of free space available - %n GB ruang kosong tersedia. + + + Warning: Fee estimation is currently not possible. + - - (of %n GB needed) - (dari %n GB yang dibutuhkan) + + + collapse fee-settings + - - - ModalOverlay - Form - Formulir + + Hide + - Last block time - Waktu blok terakhir + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - OpenURIDialog - Open URI - Buka URI + + per kilobyte + - Open payment request from URI or file - Buka permintaan pembayaran dari URI atau data + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - URI: - URI: + + (read the tooltip) + - Select payment request file - Pilih data permintaan pembayaran + + Recommended: + - - - OptionsDialog - Options - Pilihan + + C&ustom: + - &Main - &Utama + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Size of &database cache - Ukuran cache &database + + Confirmation time target: + - MB - MB + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Number of script &verification threads - Jumlah script &verification threads + + Request Replace-By-Fee + - Accept connections from outside - Terima koneksi dari luar + + Create Asset + Buat Aset - Allow incoming connections - Perbolehkan koneksi masuk + + Clear + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + Salin Jumlah + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + Jenis Aset + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + Sahkan Aset + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + Apakah anda yakin ingin mengirimkan? + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + Atau + + + + Confirm send assets + + + + + Invalid: + Tidak Sah + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Ubah Alamat + + + + &Label + &Label + + + + The label associated with this address list entry + Label yang terkait dengan daftar alamat + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Alamat yang terkait dengan daftar alamat. Hanya dapat diubah untuk alamat pengirim. + + + + &Address + &Alamat + + + + New receiving address + Alamat penerima baru + + + + New sending address + Alamat pengirim baru + + + + Edit receiving address + Ubah alamat penerima + + + + Edit sending address + Ubah alamat pengirim + + + + The entered address "%1" is not a valid Raven address. + Alamat yang dimasukkan "%1" bukanlah alamat Raven yang valid. + + + + The entered address "%1" is already in the address book. + Alamat yang dimasukkan "%1" sudah ada di dalam buku alamat. + + + + Could not unlock wallet. + Tidak dapat membuka dompet. + + + + New key generation failed. + Pembuatan kunci baru gagal. + + + + FreespaceChecker + + + A new data directory will be created. + Sebuah data direktori baru telah dibuat. + + + + name + nama + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Direktori masih ada. Tambahlah %1 apabila Anda ingin membuat direktori baru disini. + + + + Path already exists, and is not a directory. + Sudah ada path, dan itu bukan direktori. + + + + Cannot create data directory here. + Tidak bisa membuat direktori data disini. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + Periksa + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versi + + + + + (%1-bit) + (%1-bit) + + + + About %1 + Tentang %1 + + + + Command-line options + Pilihan Command-line + + + + Usage: + Penggunaan: + + + + command-line options + pilihan command-line + + + + UI Options: + Pilihan UI: + + + + Choose data directory on startup (default: %u) + Pilih direktori data saat memulai (default: %u) + + + + Set language, for example "de_DE" (default: system locale) + Pilih bahasa, contoh "id_ID" (default: system locale) + + + + Start minimized + Start minimized + + + + Set SSL root certificates for payment request (default: -system-) + Pilih sertifikat root SSL untuk permintaan pembayaran {default: -system-) + + + + Show splash screen on startup (default: %u) + Tampilkan layar kilat saat memulai (default: %u) + + + + Reset all settings changed in the GUI + Hapus semua pengaturan pada GUI. + + + + Intro + + + Welcome + Selamat Datang + + + + Welcome to %1. + Selamat Datang ke %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Karena ini adalah pertama kalinya program dijalankan, Anda dapat memilih lokasi %1 akan menyimpan data. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Gunakan direktori data default. + + + + Use a custom data directory: + Gunakan direktori pilihan Anda: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Kesalahan: Direktori data "%1" tidak dapat dibuat. + + + + Error + Kesalahan + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Terima + + + + Go Back + Kembali + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulir + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + Tidak Diketahui + + + + Last block time + Waktu blok terakhir + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + Beku + + + + Unfrozen + Tidak dibekukan + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Buka URI + + + + Open payment request from URI or file + Buka permintaan pembayaran dari URI atau data + + + + URI: + URI: + + + + Select payment request file + Pilih data permintaan pembayaran + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Pilihan + + + + &Main + &Utama + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Ukuran cache &database + + + + MB + MB + + + + Number of script &verification threads + Jumlah script &verification threads + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) Alamat IP proxy (cth. IPv4: 127.0.0.1 / IPv6: ::1) - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimalisasi aplikasi ketika jendela ditutup. Ketika pilihan ini dipilih, aplikasi akan menutup seluruhnya jika anda memilih Keluar di menu yang tersedia. + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimalisasi aplikasi ketika jendela ditutup. Ketika pilihan ini dipilih, aplikasi akan menutup seluruhnya jika anda memilih Keluar di menu yang tersedia. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL pihak ketika (misalnya sebuah block explorer) yang mumcul dalam tab transaksi sebagai konteks menu. %s dalam URL diganti dengan kode transaksi. URL dipisahkan dengan tanda vertikal |. + + + + Active command-line options that override above options: + Pilihan command-line yang aktif menimpa diatas opsi: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Kembalikan semua pengaturan ke awal. + + + + &Reset Options + &Reset Pilihan + + + + &Network + &Jaringan + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = leave that many cores free) + + + + W&allet + D&ompet + + + + Expert + Ahli + + + + Enable coin &control features + Perbolehkan fitur &pengaturan koin + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jika Anda menonaktifkan perubahan saldo untuk transaksi yang belum dikonfirmasi, perubahan dari transaksi tidak dapat dilakukan sampai transaksi memiliki setidaknya satu konfirmasi. Hal ini juga mempengaruhi bagaimana saldo Anda dihitung. + + + + &Spend unconfirmed change + &Perubahan saldo untuk transaksi yang belum dikonfirmasi + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Otomatis membuka port client Raven di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable. + + + + Map port using &UPnP + Petakan port dengan &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Hubungkan ke jaringan Raven melalui SOCKS5 proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + IP Proxy: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port proxy (cth. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Jendela + + + + Show only a tray icon after minimizing the window. + Hanya tampilkan ikon tray setelah meminilisasi jendela + + + + &Minimize to the tray instead of the taskbar + &Meminilisasi ke tray daripada taskbar + + + + M&inimize on close + M&eminilisasi saat tutup + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Tampilan + + + + User Interface &language: + &Bahasa Antarmuka Pengguna: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unit untuk menunjukkan nilai: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Pilihan standar unit yang ingin ditampilkan pada layar aplikasi dan saat mengirim koin. + + + + Whether to show coin control features or not. + Ingin menunjukkan cara pengaturan koin atau tidak. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &YA + + + + &Cancel + &Batal + + + + default + standar + + + + none + tidak satupun + + + + Confirm options reset + Memastikan reset pilihan + + + + + Client restart required to activate changes. + Restart klien diperlukan untuk mengaktifkan perubahan. + + + + Client will be shut down. Do you want to proceed? + Klien akan dimatikan, apakah anda hendak melanjutkan? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Perubahan ini akan memerlukan restart klien + + + + The supplied proxy address is invalid. + Alamat proxy yang diisi tidak valid. + + + + OverviewPage + + + Form + Formulir + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Raven ketika sebuah hubungan terbentuk, namun proses ini belum selesai. + + + + Watch-only: + + + + + Available: + Tersedia: + + + + Your current spendable balance + Jumlah yang Anda bisa keluarkan sekarang + + + + Pending: + Ditunda + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Jumlah keseluruhan transaksi yang belum dikonfirmasi, dan belum saatnya dihitung sebagai pengeluaran saldo yang telah dibelanjakan. + + + + Immature: + Terlalu Muda: + + + + Mined balance that has not yet matured + Saldo ditambang yang masih terlalu muda + + + + Total: + Jumlah: + + + + Your current total balance + Jumlah saldo Anda sekarang + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Agen Pengguna + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + Terkirim + + + + Received + + + + + QObject + + + Amount + Nilai + + + + Enter a Raven address (e.g. %1) + Masukkan alamat Raven (contoh %1) + + + + %1 d + + + + + %1 h + %1 Jam + + + + %1 m + %1 menit + + + + + %1 s + + + + + None + Tdak Ada + + + + N/A + T/S + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 dan %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + Simpan kode QR + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + T/S + + + + Client version + Versi Klien + + + + &Information + &Informasi + + + + Debug window + Jendela debug + + + + General + Umum + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Waktu nyala + + + + Network + Jaringan + + + + Name + Nama + + + + Number of connections + Jumlah hubungan + + + + Block chain + Rantai blok + + + + Current number of blocks + Jumlah blok terkini + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Telah Diterima + + + + + Sent + Terkirim + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Arah + + + + Version + Versi + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agen Pengguna + + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Layanan + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Waktu blok terakhir + + + + &Open + &Buka + + + + &Console + &Konsol + + + + &Network Traffic + Kemacetan &Jaringan + + + + Totals + Total + + + + In: + Masuk: + + + + Out: + Keluar: + + + + Debug log file + Berkas catatan debug + + + + Clear console + Bersihkan konsol + + + + 1 &hour + 1 &jam + + + + 1 &day + 1 &hari + + + + 1 &week + 1 &minggu + + + + 1 &year + 1 &tahun + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Ketik <b>help</b> untuk menampilkan perintah tersedia. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + Ya + + + + No + Tidak + + + + + Unknown + Tidak diketahui + + + + RavenGUI + + + Sign &message... + Pesan &penanda... + + + + Synchronizing with network... + Sinkronisasi dengan jaringan... + + + + &Overview + &Kilasan + + + + Node + Node + + + + Show general overview of wallet + Tampilkan gambaran umum dompet Anda + + + + &Transactions + &Transaksi + + + + Browse transaction history + Lihat riwayat transaksi + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + Segera Hadir + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + K&eluar + + + + Quit application + Keluar dari aplikasi + + + + &About %1 + &Tentang%1 + + + + Show information about %1 + Tampilkan informasi perihal %1 + + + + About &Qt + Mengenai &Qt + + + + Show information about Qt + Tampilkan informasi mengenai Qt + + + + &Options... + &Pilihan... + + + + Modify configuration options for %1 + Pengubahan opsi konfigurasi untuk %1 + + + + &Encrypt Wallet... + &Enkripsi Dompet... + + + + &Backup Wallet... + &Cadangkan Dompet... + + + + &Change Passphrase... + &Ubah Kata Kunci... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Alamat-alamat untuk mengirim... + + + + &Receiving addresses... + &Alamat-alamat untuk menerima... + + + + Open &URI... + Buka &URI + + + + &Wallet + &Dompet + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Klik untuk menonaktifkan aktivitas jaringan. + + + + Network activity disabled. + Aktivitas jaringan dinonaktifkan. + + + + Click to enable network activity again. + Klik untuk mengaktifkan aktivitas jaringan lagi. + + + + Syncing Headers (%1%)... + Menyinkronkan Header (%1%) ... + + + + Reindexing blocks on disk... + Mengindex ulang blok di dalam disk... + + + + Send coins to a Raven address + Kirim koin ke alamat Raven + + + + Backup wallet to another location + Cadangkan dompet ke lokasi lain + + + + Change the passphrase used for wallet encryption + Ubah kata kunci yang digunakan untuk enkripsi dompet + + + + Open debugging and diagnostic console + Buka konsol debug dan diagnosa + + + + &Verify message... + &Verifikasi pesan... + + + + Raven + Raven + + + + Wallet + Dompet + + + + &Send + &Kirim + + + + &Receive + &Menerima + + + + &Show / Hide + &Tampilkan / Sembunyikan + + + + Show or hide the main Window + Tampilkan atau sembunyikan jendela utama + + + + Encrypt the private keys that belong to your wallet + Enkripsi private key yang dimiliki dompet Anda + + + + Sign messages with your Raven addresses to prove you own them + Tanda tangani sebuah pesan menggunakan alamat Raven Anda untuk membuktikan bahwa Anda adalah pemilik alamat tersebut + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifikasi pesan untuk memastikan bahwa pesan tersebut ditanda tangani oleh suatu alamat Raven tertentu + + + + &File + &Berkas + + + + &Help + &Bantuan + + + + Request payments (generates QR codes and raven: URIs) + Permintaan pembayaran (membuat kode QR dan raven: URIs) + + + + Show the list of used sending addresses and labels + Tampilkan daftar alamat dan label yang terkirim + + + + Show the list of used receiving addresses and labels + Tampilkan daftar alamat dan label yang diterima + + + + Open a raven: URI or payment request + Buka URI raven: atau permintaan pembayaran + + + + &Command-line options + &pilihan Command-line + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Pengindeksan blok pada disk ... + + + + Processing blocks on disk... + Memproses blok pada disk ... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + kurang %1 + + + + Last received block was generated %1 ago. + Blok terakhir yang diterima %1 lalu. + + + + Transactions after this will not yet be visible. + Transaksi setelah ini belum akan terlihat. + + + + Error + Terjadi sebuah kesalahan + + + + Warning + Peringatan + + + + Information + Informasi + + + + Up to date + Terbaru + + + + Show the %1 help message to get a list with possible Raven command-line options + Tampilkan %1 pesan bantuan untuk mendapatkan daftar opsi baris perintah Raven yang memungkinkan + + + + %1 client + %1 klien + + + + Connecting to peers... + Menghubungkan ke peer... + + + + Catching up... + Menyusul... + + + + Date: %1 + + Tanggal: %1 + + + + + + Amount: %1 + + Jumlah: %1 + + + + + Type: %1 + + Tipe: %1 + + + + + Label: %1 + + Label: %1 + + + + + Address: %1 + + Alamat: %1 + + + + + Sent transaction + Transaksi terkirim + + + + Incoming transaction + Transaksi diterima + + + + + Assets not yet active + Aset belum aktif + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Pembuatan kunci HD <b>diaktifkan</b> + + + + HD key generation is <b>disabled</b> + Pembuatan kunci HD <b>dinonaktifkan</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Dompet saat ini <b>terenkripsi</b> dan <b>terbuka</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Dompet saat ini <b>terenkripsi</b> dan <b>terkunci</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Terjadi Kesalahan Fatal. Raven Tidak Dapat Melanjutkan Dengan Aman Dan Akan Keluar + + + + ReceiveCoinsDialog + + + &Amount: + &Nilai: + + + + &Label: + &Label: + + + + &Message: + &Pesan: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + Gunakan lagi alamat penerima yang ada (tidak disarankan) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + Label opsional untuk mengasosiasikan dengan alamat penerima baru. + + + + Use this form to request payments. All fields are <b>optional</b>. + Gunakan form ini untuk meminta pembayaran. Semua bidang adalah <b>opsional</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Nilai permintaan opsional. Biarkan ini kosong atau nol bila tidak meminta nilai tertentu. + + + + Clear all fields of the form. + Hapus informasi dari form. + + + + Clear + Hapus + + + + Requested payments history + Riwayat pembayaran yang diminta Anda + + + + &Request payment + &Minta pembayaran + + + + Show the selected request (does the same as double clicking an entry) + Menunjukkan permintaan yang dipilih (sama dengan tekan pilihan dua kali) + + + + Show + Menunjukkan + + + + Remove the selected entries from the list + Menghapus informasi terpilih dari daftar + + + + Remove + Menghapus + + + + Copy URI + Salin URL + + + + Copy label + Salin label + + + + Copy message + Salin Pesan + + + + Copy amount + Salin Jumlah + + + + ReceiveRequestDialog + + + QR Code + Kode QR + + + + Copy &URI + Salin &URI + + + + Copy &Address + Salin &Alamat + + + + &Save Image... + &Simpan Gambaran... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Alamat + + + + Amount + Jumlah + + + + Label + Label + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Tanggal + + + + Label + Label + + + + Message + Pesan + + + + (no label) + (tidak ada label) + + + + (no message) + Tidak ada Pesan + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + Kembalian + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + Alamat + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + 123.456 RVN + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + Salin Biaya + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + Biaya + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + Ya + + + + No + Tidak + + + + + Name + Nama + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + Cari + + + + Address List + Daftar Alamat + + + + Balance: + Saldo + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Kirim Koin + + + + Coin Control Features + Cara Pengaturan Koin + + + + Inputs... + Masukan... + + + + automatically selected + Pemilihan otomatis + + + + Insufficient funds! + Saldo tidak mencukupi! + + + + Quantity: + Kuantitas: + + + + Bytes: + Bytes: + + + + Amount: + Nilai: + + + + Fee: + Biaya: + + + + After Fee: + Dengan Biaya: + + + + Change: + Uang Kembali: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Jiki ini dipilih, tetapi alamat pengembalian uang kosong atau salah, uang kembali akan dikirim ke alamat yang baru dibuat. + + + + Custom change address + Alamat uang kembali yang kustom + + + + Transaction Fee: + Biaya Transaksi: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Disarankan + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Kirim ke beberapa penerima sekaligus + + + + Add &Recipient + Tambahlah &Penerima + + + + Clear all fields of the form. + Hapus informasi dari form. + + + + Dust: + Dust: + + + + Confirmation time target: + + + + + Clear &All + Hapus &Semua + + + + Balance: + Saldo: + + + + Confirm the send action + Konfirmasi aksi pengiriman + + + + S&end + K&irim + + + + Copy quantity + Salin Kuantitas + + + + Copy amount + Salin Jumlah + + + + Copy fee + Salin biaya + + + + Copy after fee + Salin Setelah Upah + + + + Copy bytes + Salin bytes + + + + Copy dust + Salin dust + + + + Copy change + Salin Perubahan + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (tidak ada label) + + + + SendCoinsEntry + + + + + A&mount: + J&umlah: + + + + &Label: + &Label: + + + + Choose previously used address + Pilih alamat yang telah digunakan sebelumnya + + + + This is a normal payment. + Ini adalah pembayaran normal + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+J + + + + Paste address from clipboard + Tempel alamat dari salinan + + + + Alt+P + Alt+B + + + + + + Remove this entry + Hapus masukan ini + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Pesan: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Masukkan label untuk alamat ini untuk dimasukan dalam daftar alamat yang pernah digunakan + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Catatan Peringatan: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Kamu tidak dapat mematikan komputer sebelum jendela ini tertutup sendiri. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Tanda Tangan / Verifikasi sebuah Pesan + + + + &Sign Message + &Tandakan Pesan + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Pilih alamat yang telah digunakan sebelumnya + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Tempel alamat dari salinan + + + + Alt+P + Alt+B + + + + Enter the message you want to sign here + Masukan pesan yang ingin ditandai disini + + + + Signature + Tanda Tangan + + + + Copy the current signature to the system clipboard + Salin tanda tangan terpilih ke sistem klipboard + + + + Sign the message to prove you own this Raven address + Tandai pesan untuk menyetujui kamu pemiliki alamat Raven ini + + + + Sign &Message + Tandakan &Pesan + + + + Reset all sign message fields + Hapus semua bidang penanda pesan + + + + + Clear &All + Hapus &Semua + + + + &Verify Message + &Verifikasi Pesan + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + Verifikasi &Pesan + + + + Reset all verify message fields + Hapus semua bidang verifikasi pesan + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Jumlah + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Jendela ini menampilkan deskripsi rinci dari transaksi tersebut + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Label + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (tidak ada label) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Salin alamat + + + + Copy label + Salin label + + + + Copy amount + Salin Jumlah + + + + Copy transaction ID + Salain ID Transaksi + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Berkas yang berformat(*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Label + + + + Address + Alamat + + + + Asset + + + + + ID + + + + + Exporting Failed + Mengekspor Gagal + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Pilihan: + + + + Specify data directory + Tentukan direktori data - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL pihak ketika (misalnya sebuah block explorer) yang mumcul dalam tab transaksi sebagai konteks menu. %s dalam URL diganti dengan kode transaksi. URL dipisahkan dengan tanda vertikal |. + + Connect to a node to retrieve peer addresses, and disconnect + Hubungkan ke node untuk menerima alamat peer, dan putuskan - Third party transaction URLs - URL transaksi pihak ketiga + + Specify your own public address + Tentukan alamat publik Anda sendiri - Active command-line options that override above options: - Pilihan command-line yang aktif menimpa diatas opsi: + + Accept command line and JSON-RPC commands + Menerima perintah baris perintah dan JSON-RPC - Reset all client options to default. - Kembalikan semua pengaturan ke awal. + + Distributed under the MIT software license, see the accompanying file %s or %s + - &Reset Options - &Reset Pilihan + + If <category> is not supplied or if <category> = 1, output all debugging information. + - &Network - &Jaringan + + Prune configured below the minimum of %d MiB. Please use a higher number. + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = leave that many cores free) + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - W&allet - D&ompet + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - Expert - Ahli + + Error: A fatal internal error occurred, see debug.log for details + - Enable coin &control features - Perbolehkan fitur &pengaturan koin + + Fee (in %s/kB) to add to transactions you send (default: %s) + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Jika Anda menonaktifkan perubahan saldo untuk transaksi yang belum dikonfirmasi, perubahan dari transaksi tidak dapat dilakukan sampai transaksi memiliki setidaknya satu konfirmasi. Hal ini juga mempengaruhi bagaimana saldo Anda dihitung. + + Pruning blockstore... + - &Spend unconfirmed change - &Perubahan saldo untuk transaksi yang belum dikonfirmasi + + Run in the background as a daemon and accept commands + Berjalan dibelakang sebagai daemin dan menerima perintah - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Otomatis membuka port client Raven di router. Hanya berjalan apabila router anda mendukung UPnP dan di-enable. + + Unable to start HTTP server. See debug log for details. + - Map port using &UPnP - Petakan port dengan &UPnP + + Raven Core + Raven Core - Connect to the Raven network through a SOCKS5 proxy. - Hubungkan ke jaringan Raven melalui SOCKS5 proxy. + + The %s developers + - Proxy &IP: - IP Proxy: + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - &Port: - &Port: + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - Port of the proxy (e.g. 9050) - Port proxy (cth. 9050) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - IPv4 - IPv4 + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + - IPv6 - IPv6 + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Tor - Tor + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - &Window - &Jendela + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Show only a tray icon after minimizing the window. - Hanya tampilkan ikon tray setelah meminilisasi jendela + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Jalankan perintah ketika perubahan transaksi dompet (%s di cmd digantikan oleh TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Pilihan pembuatan blok: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + Pilih koneksi: + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Menemukan database blok yang rusak + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + Jangan memuat dompet dan menonaktifkan panggilan dompet RPC + + + + Do you want to rebuild the block database now? + Apakah Anda ingin coba membangun kembali database blok sekarang? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Kesalahan menginisialisasi database blok + + + + Error initializing wallet database environment %s! + Kesalahan menginisialisasi dompet pada database%s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Gagal memuat database blok + + + + Error opening block database + Menemukan masalah membukakan database blok + + + + Error: Disk space is low! + Gagal: Hard disk hampir terisi! + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + mengimpor... + + + + Incorrect or no genesis block found. Wrong datadir for network? + Tidak bisa cari blok pertama, atau blok pertama salah. Salah direktori untuk jaringan? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + Deskripsi berkas tidak tersedia dengan cukup. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + Tentukan arsip dompet (dalam direktori data) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + - &Minimize to the tray instead of the taskbar - &Meminilisasi ke tray daripada taskbar + + Unsupported argument -tor found, use -onion. + - M&inimize on close - M&eminilisasi saat tutup + + Unsupported logging category %s=%s. + - &Display - &Tampilan + + Upgrading UTXO database + - User Interface &language: - &Bahasa Antarmuka Pengguna: + + Use UPnP to map the listening port (default: %u) + - &Unit to show amounts in: - &Unit untuk menunjukkan nilai: + + Use the test chain + - Choose the default subdivision unit to show in the interface and when sending coins. - Pilihan standar unit yang ingin ditampilkan pada layar aplikasi dan saat mengirim koin. + + User Agent comment (%s) contains unsafe characters. + - Whether to show coin control features or not. - Ingin menunjukkan cara pengaturan koin atau tidak. + + Verifying blocks... + Blok-blok sedang diverifikasi... - &OK - &YA + + Wallet %s resides outside data directory %s + Dompet %s ada diluar direktori data %s - &Cancel - &Batal + + Wallet debugging/testing options: + - default - standar + + Wallet needed to be rewritten: restart %s to complete + - none - tidak satupun + + Wallet options: + Opsi dompet: - Confirm options reset - Memastikan reset pilihan + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Client restart required to activate changes. - Restart klien diperlukan untuk mengaktifkan perubahan. + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Client will be shut down. Do you want to proceed? - Klien akan dimatikan, apakah anda hendak melanjutkan? + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - This change would require a client restart. - Perubahan ini akan memerlukan restart klien + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - The supplied proxy address is invalid. - Alamat proxy yang diisi tidak valid. + + Error: Listening for incoming connections failed (listen returned error %s) + - - - OverviewPage - Form - Formulir + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Informasi terlampir mungkin sudah kedaluwarsa. Dompet Anda secara otomatis mensinkronisasi dengan jaringan Raven ketika sebuah hubungan terbentuk, namun proses ini belum selesai. + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Available: - Tersedia: + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Your current spendable balance - Jumlah yang Anda bisa keluarkan sekarang + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Pending: - Ditunda + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Jumlah keseluruhan transaksi yang belum dikonfirmasi, dan belum saatnya dihitung sebagai pengeluaran saldo yang telah dibelanjakan. + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Immature: - Terlalu Muda: + + The transaction amount is too small to send after the fee has been deducted + - Mined balance that has not yet matured - Saldo ditambang yang masih terlalu muda + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Balances - Saldo: + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Total: - Jumlah: + + (default: %u) + - Your current total balance - Jumlah saldo Anda sekarang + + Accept public REST requests (default: %u) + - - - PaymentServer - - - PeerTableModel - User Agent - Agen Pengguna + + Automatically create Tor hidden service (default: %d) + - - - QObject - Amount - Nilai + + Connect through SOCKS5 proxy + Hubungkan melalui proxy SOCKS5 - Enter a Raven address (e.g. %1) - Masukkan alamat Raven (contoh %1) + + Error loading %s: You can't disable HD on an already existing HD wallet + - %1 h - %1 Jam + + Error reading from database, shutting down. + - %1 m - %1 menit + + Error upgrading chainstate database + - N/A - T/S + + Imports blocks from external blk000??.dat file on startup + - %1 and %2 - %1 dan %2 + + Information + Informasi - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - T/S + + Invalid -onion address or hostname: '%s' + - Client version - Versi Klien + + Invalid -proxy address or hostname: '%s' + - &Information - &Informasi + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - Debug window - Jendela debug + + Invalid netmask specified in -whitelist: '%s' + - General - Umum + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Startup time - Waktu nyala + + Need to specify a port with -whitebind: '%s' + - Network - Jaringan + + Node relay options: + - Name - Nama + + RPC server options: + Opsi server RPC: - Number of connections - Jumlah hubungan + + Reducing -maxconnections from %d to %d, because of system limitations. + - Block chain - Rantai blok + + Rescan the block chain for missing wallet transactions on startup + - Current number of blocks - Jumlah blok terkini + + Send trace/debug info to console instead of debug.log file + Kirim info jejak/debug ke konsol bukan berkas debug.log - Sent - Terkirim + + Show all debugging options (usage: --help -help-debug) + - Version - Versi + + Shrink debug.log file on client startup (default: 1 when no -debug) + Mengecilkan berkas debug.log saat klien berjalan (Standar: 1 jika tidak -debug) - User Agent - Agen Pengguna - - + + Signing transaction failed + Tandatangani transaksi tergagal - Services - Layanan + + The transaction amount is too small to pay the fee + - Last block time - Waktu blok terakhir + + This is experimental software. + - &Open - &Buka + + Tor control port password (default: empty) + - &Console - &Konsol + + Tor control port to use if onion listening enabled (default: %s) + - &Network Traffic - Kemacetan &Jaringan + + Transaction amount too small + Nilai transaksi terlalu kecil - &Clear - &Kosongkan + + Transaction too large for fee policy + - Totals - Total + + Transaction too large + Transaksi terlalu besar - In: - Masuk: + + Unable to bind to %s on this computer (bind returned error %s) + - Out: - Keluar: + + Upgrade wallet to latest format on startup + - Debug log file - Berkas catatan debug + + Username for JSON-RPC connections + Nama pengguna untuk hubungan JSON-RPC - Clear console - Bersihkan konsol + + Valid Verifier + - 1 &hour - 1 &jam + + Variable is not allow in the expression: ' + - 1 &day - 1 &hari + + Verifier String doesn't exist for asset: + - 1 &week - 1 &minggu + + Verifier String for asset trasnfer, not found + - 1 &year - 1 &tahun + + Verifier not found for asset: + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Gunakan panah keatas dan kebawah untuk menampilkan sejarah, dan <b>Ctrl-L</b> untuk bersihkan layar. + + Verifier string can not be empty. To default to true, use "true" + - Type <b>help</b> for an overview of available commands. - Ketik <b>help</b> untuk menampilkan perintah tersedia. + + Verifier string is empty + - %1 B - %1 B + + Verifier string not found + - %1 KB - %1 KB + + Verifying wallet(s)... + - %1 MB - %1 MB + + Warning + Peringatan - %1 GB - %1 GB + + Warning: unknown new rules activated (versionbit %i) + - Yes - Ya + + Whether to operate in a blocks only mode (default: %u) + - No - Tidak + + You need to rebuild the database using -reindex to change -txindex + - Unknown - Tidak diketahui + + Zapping all transactions from wallet... + Setiap transaksi dalam dompet sedang di-'Zap'... - - - ReceiveCoinsDialog - &Amount: - &Nilai: + + ZeroMQ notification options: + - &Label: - &Label: + + Password for JSON-RPC connections + Kata sandi untuk hubungan JSON-RPC - &Message: - &Pesan: + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Menjalankan perintah ketika perubahan blok terbaik (%s dalam cmd digantikan oleh hash blok) - R&euse an existing receiving address (not recommended) - Gunakan lagi alamat penerima yang ada (tidak disarankan) + + Allow DNS lookups for -addnode, -seednode and -connect + Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect - An optional label to associate with the new receiving address. - Label opsional untuk mengasosiasikan dengan alamat penerima baru. + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Use this form to request payments. All fields are <b>optional</b>. - Gunakan form ini untuk meminta pembayaran. Semua bidang adalah <b>opsional</b>. + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Nilai permintaan opsional. Biarkan ini kosong atau nol bila tidak meminta nilai tertentu. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Clear all fields of the form. - Hapus informasi dari form. + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Clear - Hapus + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Requested payments history - Riwayat pembayaran yang diminta Anda + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - &Request payment - &Minta pembayaran + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Show the selected request (does the same as double clicking an entry) - Menunjukkan permintaan yang dipilih (sama dengan tekan pilihan dua kali) + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Show - Menunjukkan + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Remove the selected entries from the list - Menghapus informasi terpilih dari daftar + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Remove - Menghapus + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Copy label - Salin label + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Copy amount - Salin Jumlah + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - - - ReceiveRequestDialog - QR Code - Kode QR + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Copy &URI - Salin &URI + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Copy &Address - Salin &Alamat + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - &Save Image... - &Simpan Gambaran... + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Address - Alamat + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Amount - Jumlah + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Label - Label + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - - - RecentRequestsTableModel - Label - Label + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - (no label) - (tidak ada label) + + Output debugging information (default: %u, supplying <category> is optional) + - - - SendCoinsDialog - Send Coins - Kirim Koin + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Coin Control Features - Cara Pengaturan Koin + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Inputs... - Masukan... + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - automatically selected - Pemilihan otomatis + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Insufficient funds! - Saldo tidak mencukupi! + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Quantity: - Kuantitas: + + The default height that is required before rewards are allowed to be sent out + - Bytes: - Bytes: + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Amount: - Nilai: + + This address doesn't contain the correct tags to pass the verifier string check: + - Fee: - Biaya: + + This is the transaction fee you may pay when fee estimates are not available. + - After Fee: - Dengan Biaya: + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Change: - Uang Kembali: + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Jiki ini dipilih, tetapi alamat pengembalian uang kosong atau salah, uang kembali akan dikirim ke alamat yang baru dibuat. + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Custom change address - Alamat uang kembali yang kustom + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Transaction Fee: - Biaya Transaksi: + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Recommended: - Disarankan + + Unable to reissue asset: unit must be larger than current unit selection + - normal - normal + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - fast - cepat + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Send to multiple recipients at once - Kirim ke beberapa penerima sekaligus + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Add &Recipient - Tambahlah &Penerima + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Clear all fields of the form. - Hapus informasi dari form. + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Dust: - Dust: + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Clear &All - Hapus &Semua + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Balance: - Saldo: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Confirm the send action - Konfirmasi aksi pengiriman + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - S&end - K&irim + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Copy quantity - Salin Kuantitas + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Copy amount - Salin Jumlah + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Copy fee - Salin biaya + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Copy after fee - Salin Setelah Upah + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Copy bytes - Salin bytes + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Copy dust - Salin dust + + %s is set very high! + - Copy change - Salin Perubahan + + ' doesn't exist in the database + - (no label) - (tidak ada label) + + ' has already been used + - - - SendCoinsEntry - A&mount: - J&umlah: + + ' is not a valid character in the expression: + - Pay &To: - Kirim &Ke: + + ' the amount trying to reissue is to large + - &Label: - &Label: + + (default: %s) + - Choose previously used address - Pilih alamat yang telah digunakan sebelumnya + + A space separated list of 12-words used to import a bip44 wallet + - This is a normal payment. - Ini adalah pembayaran normal + + Always query for peer addresses via DNS lookup (default: %u) + - Alt+A - Alt+J + + Asset Transfer amounts must be greater than 0 + - Paste address from clipboard - Tempel alamat dari salinan + + Asset doesn't exist: + - Alt+P - Alt+B + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Remove this entry - Hapus masukan ini + + Asset name is not valid + - Message: - Pesan: + + Asset with this name is already in the mempool + - Enter a label for this address to add it to the list of used addresses - Masukkan label untuk alamat ini untuk dimasukan dalam daftar alamat yang pernah digunakan + + Done Loading + - Pay To: - Kirim Ke: + + Enable publish raw asset messages in <address> + - Memo: - Catatan Peringatan: + + Error creating %s: You can't create non-HD wallets with this version. + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Kamu tidak dapat mematikan komputer sebelum jendela ini tertutup sendiri. + + Error loading wallet %s. -wallet filename must be a regular file. + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Tanda Tangan / Verifikasi sebuah Pesan + + Error loading wallet %s. Duplicate -wallet filename specified. + - &Sign Message - &Tandakan Pesan + + Error loading wallet %s. Invalid characters in -wallet filename. + - Choose previously used address - Pilih alamat yang telah digunakan sebelumnya + + Error not set + - Alt+A - Alt+A + + Error writing bip 39 passphrase to database + - Paste address from clipboard - Tempel alamat dari salinan + + Error writing bip 39 vchseed to database + - Alt+P - Alt+B + + Error writing bip 39 words to database + - Enter the message you want to sign here - Masukan pesan yang ingin ditandai disini + + Every '(' must have a corresponding ')' in the expression: + - Signature - Tanda Tangan + + Failed to extract destination from change script + - Copy the current signature to the system clipboard - Salin tanda tangan terpilih ke sistem klipboard + + Failed to find restricted asset change address from inputs + - Sign the message to prove you own this Raven address - Tandai pesan untuk menyetujui kamu pemiliki alamat Raven ini + + Failed to get asset data from script + - Sign &Message - Tandakan &Pesan + + Failed to get verifier string from output: + - Reset all sign message fields - Hapus semua bidang penanda pesan + + Failed to load Assets Database + - Clear &All - Hapus &Semua + + Flag must be 1 or 0 + - &Verify Message - &Verifikasi Pesan + + How many blocks to check at startup (default: %u, 0 = all) + - Verify &Message - Verifikasi &Pesan + + Include IP addresses in debug output (default: %u) + - Reset all verify message fields - Hapus semua bidang verifikasi pesan + + Init Message Channels - Scanning Asset Transactions + - - - SplashScreen - [testnet] - [testnet] + + Insufficient asset funds + - - - TrafficGraphWidget - KB/s - KB/s + + Invalid Qualifier Name: + - - - TransactionDesc - Amount - Jumlah + + Invalid expressions in verifier string: + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Jendela ini menampilkan deskripsi rinci dari transaksi tersebut + + Invalid parameter: amount must be + - - - TransactionTableModel - Label - Label + + Invalid parameter: amount must be between + - (no label) - (tidak ada label) + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - TransactionView - Copy address - Salin alamat + + Invalid parameter: asset amount greater than max money: + - Copy label - Salin label + + Invalid parameter: asset_name ' + - Copy amount - Salin Jumlah + + Invalid parameter: has_ipfs must be 0 or 1. + - Copy transaction ID - Salain ID Transaksi + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Comma separated file (*.csv) - Berkas yang berformat(*.csv) + + Invalid parameter: reissuable must be 0 or 1 + - Label - Label + + Invalid parameter: reissuable must be 0 + - Address - Alamat + + Invalid parameter: units must be + - Exporting Failed - Mengekspor Gagal + + Invalid parameter: units must be between 0-8. + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Pilihan: + + Invalid syntax: + - Specify data directory - Tentukan direktori data + + Keypool ran out, please call keypoolrefill first + - Connect to a node to retrieve peer addresses, and disconnect - Hubungkan ke node untuk menerima alamat peer, dan putuskan + + Length is to large. Please use a smaller length + - Specify your own public address - Tentukan alamat publik Anda sendiri + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Accept command line and JSON-RPC commands - Menerima perintah baris perintah dan JSON-RPC + + Listen for connections on <port> (default: %u or testnet: %u) + - Run in the background as a daemon and accept commands - Berjalan dibelakang sebagai daemin dan menerima perintah + + Maintain at most <n> connections to peers (default: %u) + - Raven Core - Raven Core + + Make the wallet broadcast transactions + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Jalankan perintah ketika perubahan transaksi dompet (%s di cmd digantikan oleh TxID) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Block creation options: - Pilihan pembuatan blok: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Connection options: - Pilih koneksi: + + Mempool cleared + - Corrupted block database detected - Menemukan database blok yang rusak + + Multiple verifier strings found in transaction + - Do not load the wallet and disable wallet RPC calls - Jangan memuat dompet dan menonaktifkan panggilan dompet RPC + + Passphrase securing your 12-word mnemonic word-list + - Do you want to rebuild the block database now? - Apakah Anda ingin coba membangun kembali database blok sekarang? + + Prepend debug output with timestamp (default: %u) + - Error initializing block database - Kesalahan menginisialisasi database blok + + Relay and mine data carrier transactions (default: %u) + - Error initializing wallet database environment %s! - Kesalahan menginisialisasi dompet pada database%s! + + Relay non-P2SH multisig (default: %u) + - Error loading block database - Gagal memuat database blok + + Restricted asset transfer from address that has been frozen + - Error opening block database - Menemukan masalah membukakan database blok + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error: Disk space is low! - Gagal: Hard disk hampir terisi! + + Set key pool size to <n> (default: %u) + - Importing... - mengimpor... + + Set maximum BIP141 block weight (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - Tidak bisa cari blok pertama, atau blok pertama salah. Salah direktori untuk jaringan? + + Set the Maximum reorg depth (default: %u) + - Invalid -onion address: '%s' - Alamat -onion salah: '%s' + + Set the number of threads to service RPC calls (default: %d) + - Not enough file descriptors available. - Deskripsi berkas tidak tersedia dengan cukup. + + Signing asset transaction failed + - Set maximum block size in bytes (default: %d) - Atur ukuran maksimal untuk blok dalam byte (biasanya: %d) + + Specify configuration file (default: %s) + - Specify wallet file (within data directory) - Tentukan arsip dompet (dalam direktori data) + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verifying blocks... - Blok-blok sedang diverifikasi... + + Specify pid file (default: %s) + - Verifying wallet... - Dompet sedang diverifikasi... + + Spend unconfirmed change when sending transactions (default: %u) + - Wallet %s resides outside data directory %s - Dompet %s ada diluar direktori data %s + + Starting network threads... + - Wallet options: - Opsi dompet: + + The symbol: ' + - Connect through SOCKS5 proxy - Hubungkan melalui proxy SOCKS5 + + The verifier string has two operators without a tag between them + - Information - Informasi + + The wallet will avoid paying less than the minimum relay fee. + - RPC server options: - Opsi server RPC: + + This is the minimum transaction fee you pay on every transaction. + - Send trace/debug info to console instead of debug.log file - Kirim info jejak/debug ke konsol bukan berkas debug.log + + This is the transaction fee you will pay if you send a transaction. + - Shrink debug.log file on client startup (default: 1 when no -debug) - Mengecilkan berkas debug.log saat klien berjalan (Standar: 1 jika tidak -debug) + + Threshold for disconnecting misbehaving peers (default: %u) + - Signing transaction failed - Tandatangani transaksi tergagal + + Transaction amounts must not be negative + - Transaction amount too small - Nilai transaksi terlalu kecil + + Transaction has too long of a mempool chain + - Transaction too large - Transaksi terlalu besar + + Transaction must have at least one recipient + - Username for JSON-RPC connections - Nama pengguna untuk hubungan JSON-RPC + + Turn off the databasing the messages sent with assets (default: %u) + - Warning - Peringatan + + Unable to generate initial keys + - Zapping all transactions from wallet... - Setiap transaksi dalam dompet sedang di-'Zap'... + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Kata sandi untuk hubungan JSON-RPC + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Menjalankan perintah ketika perubahan blok terbaik (%s dalam cmd digantikan oleh hash blok) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Izinkan peninjauan DNS untuk -addnote, -seednode dan -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Memuat alamat... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Alamat -proxy salah: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + Jaringan tidak diketahui yang ditentukan dalam -onlynet: '%s' + Insufficient funds Saldo tidak mencukupi + Loading block index... Memuat indeks blok... - Add a node to connect to and attempt to keep the connection open - Tambahkan node untuk dihubungkan dan upaya untuk menjaga hubungan tetap terbuka - - + Loading wallet... Memuat dompet... + Cannot downgrade wallet Tidak dapat menurunkan versi dompet - Cannot write default address - Tidak dapat menyimpan alamat standar - - + Rescanning... Memindai ulang... - Done loading - Memuat selesai - - + Error Gagal diff --git a/src/qt/locale/raven_it.ts b/src/qt/locale/raven_it.ts index 32da798df8..43a11d95c5 100644 --- a/src/qt/locale/raven_it.ts +++ b/src/qt/locale/raven_it.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label - Tasto destro per modificare l'indirizzo o l'etichetta + Tasto destro per modificare l'indirizzo o l'etichetta + Create a new address Crea un nuovo indirizzo + &New &Nuovo + Copy the currently selected address to the system clipboard - Copia negli appunti l'indirizzo attualmente selezionato + Copia negli appunti l'indirizzo attualmente selezionato + &Copy &Copia + C&lose C&hiudi + Delete the currently selected address from the list - Rimuove dalla lista l'indirizzo attualmente selezionato + Rimuove dalla lista l'indirizzo attualmente selezionato + Export the data in the current tab to a file Esporta su file i dati contenuti nella tabella corrente + &Export &Esporta + &Delete &Elimina + Choose the address to send coins to - Scegli l'indirizzo a cui inviare raven + Scegli l'indirizzo a cui inviare raven + Choose the address to receive coins with - Scegli l'indirizzo con cui ricevere raven + Scegli l'indirizzo con cui ricevere raven + C&hoose Sc&egli + Sending addresses - Indirizzi d'invio + Indirizzi d'invio + Receiving addresses Indirizzi di ricezione + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - Questo è un elenco di indirizzi Raven a cui puoi inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare raven. + Questo è un elenco di indirizzi Raven a cui puoi inviare pagamenti. Controlla sempre l'importo e l'indirizzo del beneficiario prima di inviare raven. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Questi sono i tuoi indirizzi Raven che puoi usare per ricevere pagamenti. Si raccomanda di generare un nuovo indirizzo per ogni transazione. + &Copy Address - &Copia l'indirizzo + &Copia l'indirizzo + Copy &Label - Copia &l'etichetta + Copia &l'etichetta + &Edit &Modifica + Export Address List Esporta Lista Indirizzi + Comma separated file (*.csv) Testo CSV (*.csv) + Exporting Failed Esportazione Fallita + There was an error trying to save the address list to %1. Please try again. Si è verificato un errore tentando di salvare la lista degli indirizzi su %1. Si prega di riprovare. @@ -103,14 +125,17 @@ AddressTableModel + Label Etichetta + Address Indirizzo + (no label) (nessuna etichetta) @@ -118,2064 +143,5355 @@ AskPassphraseDialog + Passphrase Dialog Finestra passphrase + Enter passphrase Inserisci la passphrase + New passphrase Nuova passphrase + Repeat new passphrase Ripeti la nuova passphrase + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Inserisci la nuova passphrase per il portamonete.<br/>Si consiglia di utilizzare <b>almeno dieci caratteri casuali</b> oppure <b>otto o più parole</b>. + Encrypt wallet Cifra il portamonete + This operation needs your wallet passphrase to unlock the wallet. Questa operazione necessita della passphrase per sbloccare il portamonete. + Unlock wallet Sblocca il portamonete + This operation needs your wallet passphrase to decrypt the wallet. - Quest'operazione necessita della passphrase per decifrare il portamonete, + Quest'operazione necessita della passphrase per decifrare il portamonete, + Decrypt wallet Decifra il portamonete + Change passphrase Cambia la passphrase + Enter the old passphrase and new passphrase to the wallet. Inserisci la vecchia e la nuova passphrase per il portamonete. + Confirm wallet encryption Conferma la cifratura del portamonete + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Attenzione: perdendo la passphrase di un portamonete cifrato <b>TUTTI I PROPRI RAVEN ANDRANNO PERSI</b>! + Are you sure you wish to encrypt your wallet? Si è sicuri di voler cifrare il portamonete? + + Wallet encrypted Portamonete cifrato + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: qualsiasi backup del file portamonete effettuato in precedenza dovrà essere sostituito con il file del portamonete cifrato appena generato. Per ragioni di sicurezza, i precedenti backup del file del portamonete non cifrato diventeranno inservibili non appena si inizierà ad utilizzare il nuovo portamonete cifrato. + + + + Wallet encryption failed Il processo di crittografia del tuo portafogli è fallito + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Crittaggio fallito a causa di un errore interno. Il portamonete non è stato crittato. + + The supplied passphrases do not match. Le frasi di accesso non corrispondono. + Wallet unlock failed Sbloccaggio del portafoglio fallito + + + The passphrase entered for the wallet decryption was incorrect. La frase inserita per decrittografare il tuo portafoglio è incorretta + Wallet decryption failed Decrittazione del portamonete fallita. + Wallet passphrase was successfully changed. La frase di accesso al portamonete è stata cambiata con successo. + + Warning: The Caps Lock key is on! Attenzione: è attivo il tasto blocco maiuscole ! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmask + + Asset Selection + - Banned Until - Bannato fino a + + Quantity: + - - - RavenGUI - Sign &message... - Firma &messaggio... + + Bytes: + - Synchronizing with network... - Sincronizzazione con la rete in corso... + + Amount: + - &Overview - &Sintesi + + Dust: + - Node - Nodo + + Fee: + - Show general overview of wallet - Mostra lo stato generale del portamonete + + After Fee: + - &Transactions - &Transazioni + + Change: + - Browse transaction history - Mostra la cronologia delle transazioni + + (un)select all + - E&xit - &Esci + + Tree mode + - Quit application - Chiudi applicazione + + List mode + - &About %1 - &Informazioni su %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mostra informazioni su %1 + + View Administrator Assets + - About &Qt - Informazioni su &Qt + + Asset + - Show information about Qt - Mostra le informazioni su Qt + + Amount + - &Options... - &Opzioni... + + Received with label + - Modify configuration options for %1 - Modifica le opzioni di configurazione per %1 + + Received with address + - &Encrypt Wallet... - &Cifra il portamonete... + + Date + - &Backup Wallet... - &Backup portamonete... + + Confirmations + - &Change Passphrase... - &Cambia passphrase... + + Confirmed + - &Sending addresses... - &Indirizzi d'invio... + + Copy address + - &Receiving addresses... - Indirizzi di &ricezione... + + Copy label + - Open &URI... - Apri &URI... + + + Copy amount + - Click to disable network activity. - Clicca per disattivare la rete. + + Copy transaction ID + - Network activity disabled. - Attività di rete disabilitata + + Lock unspent + - Click to enable network activity again. - Clicca per abilitare nuovamente l'attività di rete + + Unlock unspent + - Syncing Headers (%1%)... - Sincronizzazione Headers (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Re-indicizzazione blocchi su disco... + + Copy fee + - Send coins to a Raven address - Invia fondi ad un indirizzo Raven + + Copy after fee + - Backup wallet to another location - Effettua il backup del portamonete + + Copy bytes + - Change the passphrase used for wallet encryption - Cambia la passphrase utilizzata per la cifratura del portamonete + + Copy dust + - &Debug window - Finestra di &debug + + Copy change + - Open debugging and diagnostic console - Apri la console di debugging e diagnostica + + (%1 locked) + - &Verify message... - &Verifica messaggio... + + yes + - Raven - Raven + + no + - Wallet - Portamonete + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Invia + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Ricevi + + + (no label) + - &Show / Hide - &Mostra / Nascondi + + change from %1 (%2) + - Show or hide the main Window - Mostra o nascondi la Finestra principale + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Cifra le chiavi private che appartengono al tuo portamonete + + Name + - Sign messages with your Raven addresses to prove you own them - Firma messaggi con i tuoi indirizzi Raven per dimostrarne il possesso + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verifica che i messaggi siano stati firmati con gli indirizzi Raven specificati + + + Send Coins + - &File - &File + + Asset Control Features + - &Settings - &Impostazioni + + Inputs... + - &Help - &Aiuto + + automatically selected + - Tabs toolbar - Barra degli strumenti + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Richiedi pagamenti (genera codici QR e raven: URI) + + Quantity: + - Show the list of used sending addresses and labels - Mostra la lista degli indirizzi di invio utilizzati + + Bytes: + - Show the list of used receiving addresses and labels - Mostra la lista degli indirizzi di ricezione utilizzati + + Amount: + - Open a raven: URI or payment request - Apri un raven: URI o una richiesta di pagamento + + Dust: + - &Command-line options - Opzioni della riga di &comando - - - %n active connection(s) to Raven network - %n connessione attiva alla rete Raven%n connessioni alla rete Raven attive + + Fee: + - Indexing blocks on disk... - Indicizzando i blocchi su disco... + + After Fee: + - Processing blocks on disk... - Processando i blocchi su disco... - - - Processed %n block(s) of transaction history. - Elaborato %n blocco dello storico transazioni.Elaborati %n blocchi dello storico transazioni. + + Change: + - %1 behind - Indietro di %1 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - L'ultimo blocco ricevuto è stato generato %1 fa. + + Custom change address + - Transactions after this will not yet be visible. - Le transazioni effettuate successivamente non sono ancora visibili. + + Transaction Fee: + - Error - Errore + + Choose... + - Warning - Attenzione + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - Informazioni + + Warning: Fee estimation is currently not possible. + - Up to date - Aggiornato + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - Mostra il messaggio di aiuto di %1 per ottenere una lista di opzioni di comando per Raven + + Hide + - %1 client - %1 client + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Connecting to peers... - Connessione ai peers + + per kilobyte + - Catching up... - In aggiornamento... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Date: %1 - - Data: %1 - + + (read the tooltip) + - Amount: %1 - - Quantità: %1 - + + Recommended: + - Type: %1 - - Tipo: %1 - + + Custom: + - Label: %1 - - Etichetta: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Address: %1 - - Indirizzo: %1 - + + Confirmation time target: + - Sent transaction - Transazione inviata + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Incoming transaction - Transazione ricevuta + + Request Replace-By-Fee + - HD key generation is <b>enabled</b> - La creazione della chiave HD è <b>abilitata</b> + + Confirm the send action + - HD key generation is <b>disabled</b> - La creazione della chiave HD è <b>disabilitata</b> + + S&end + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Il portamonete è <b>cifrato</b> ed attualmente <b>sbloccato</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Il portamonete è <b>cifrato</b> ed attualmente <b>bloccato</b> + + Clear &All + - A fatal error occurred. Raven can no longer continue safely and will quit. - Si è verificato un errore critico. Raven non può più funzionare in maniera sicura e verrà chiuso. + + Transfer to multiple recipients at once + - - - CoinControlDialog - Coin Selection - Selezione Input + + Add &Recipient + - Quantity: - Quantità: + + Balance: + - Bytes: - Byte: + + Copy quantity + - Amount: - Importo: + + Copy amount + - Fee: - Commissione: + + Copy fee + - Dust: - Trascurabile: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Bannato fino a + + + + CoinControlDialog + + + Coin Selection + Selezione Input + + + + Quantity: + Quantità: + + + + Bytes: + Byte: + + + + Amount: + Importo: + + + + Fee: + Commissione: + + + + Dust: + Trascurabile: + + + After Fee: Dopo Commissione: + Change: Resto: + (un)select all (de)seleziona tutto + Tree mode Modalità Albero + List mode Modalità Lista + Amount Importo + Received with label - Ricevuto con l'etichetta + Ricevuto con l'etichetta + Received with address - Ricevuto con l'indirizzo + Ricevuto con l'indirizzo + Date Data + Confirmations Conferme + Confirmed Confermato + Copy address Copia indirizzo + Copy label Copia etichetta + + Copy amount - Copia l'importo + Copia l'importo + Copy transaction ID - Copia l'ID transazione + Copia l'ID transazione + Lock unspent Bloccare non spesi + Unlock unspent Sbloccare non spesi + Copy quantity Copia quantità + Copy fee Copia commissione + Copy after fee Copia dopo commissione + Copy bytes Copia byte + Copy dust Copia trascurabile + Copy change Copia resto + (%1 locked) (%1 bloccato) + yes + no no + This label turns red if any recipient receives an amount smaller than the current dust threshold. Questa etichetta diventerà rossa se uno qualsiasi dei destinatari riceverà un importo inferiore alla corrente soglia minima per la movimentazione della valuta. + Can vary +/- %1 satoshi(s) per input. Può variare di +/- %1 satoshi per input. + + (no label) (nessuna etichetta) + change from %1 (%2) cambio da %1 (%2) + (change) (resto) - EditAddressDialog + CreateAssetDialog - Edit Address - Modifica l'indirizzo + + Coin Control Features + - &Label - &Etichetta + + Inputs... + - The label associated with this address list entry - L'etichetta associata con questa voce della lista degli indirizzi + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - L'indirizzo associato con questa voce della lista degli indirizzi. Può essere modificato solo per gli indirizzi d'invio. + + Insufficient funds! + - &Address - &Indirizzo + + + Quantity: + - New receiving address - Nuovo indirizzo di ricezione + + Bytes: + - New sending address - Nuovo indirizzo d'invio + + Amount: + - Edit receiving address - Modifica indirizzo di ricezione + + Dust: + - Edit sending address - Modifica indirizzo d'invio + + Fee: + - The entered address "%1" is not a valid Raven address. - L'indirizzo inserito "%1" non è un indirizzo raven valido. + + After Fee: + - The entered address "%1" is already in the address book. - L'indirizzo inserito "%1" è già in rubrica. + + Change: + - Could not unlock wallet. - Impossibile sbloccare il portamonete. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Generazione della nuova chiave non riuscita. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Sarà creata una nuova cartella dati. + + Name: + - name - nome + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Cartella già esistente. Aggiungi %1 se intendi creare qui una nuova cartella. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Il percorso è già esistente e non è una cartella. + + Check Availabilty + - Cannot create data directory here. - Impossibile creare una cartella dati qui. + + Address: + - - - HelpMessageDialog - version - versione + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Informazioni %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opzioni della riga di comando + + Warning: + - Usage: - Utilizzo: + + The number of assets that will be created + - command-line options - opzioni della riga di comando + + Units: + - UI Options: - Opzioni interfaccia: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Seleziona la directory dei dati all'avvio (default: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Imposta la lingua, ad esempio "it_IT" (default: locale di sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Avvia ridotto a icona + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Imposta un certificato SSL root per le richieste di pagamento (default: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostra schermata iniziale all'avvio (default: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reimposta tutti i campi dell'interfaccia grafica + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Benvenuto + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Benvenuto su %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Dato che questa è la prima volta che il programma viene lanciato, puoi scegliere dove %1 salverà i suoi dati. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 scaricherà e salverà una copia della Blockchain di Raven. Saranno salvati almeno %2GB di dati in questo percorso e continueranno ad aumentare col tempo. Anche il portafoglio verrà salvato in questo percorso. + + Choose... + - Use the default data directory - Usa la cartella dati predefinita + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Usa una cartella dati personalizzata: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Errore: La cartella dati "%1" specificata non può essere creata. + + collapse fee-settings + - Error - Errore + + Hide + - - %n GB of free space available - GB di spazio libero disponibile%n GB di spazio disponibile + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (di %nGB richiesti)(%n GB richiesti) + + + per kilobyte + - - - ModalOverlay - Form - Modulo + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Number of blocks left - Numero di blocchi mancanti + + (read the tooltip) + - Unknown... - Sconosciuto... + + Recommended: + - Last block time - Ora del blocco più recente + + C&ustom: + - Progress - Progresso + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress increase per hour - Aumento dei progressi per ogni ora + + Confirmation time target: + - calculating... - calcolando... + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Estimated time left until synced - Tempo stimato al completamento della sincronizzazione. + + Request Replace-By-Fee + - Hide - Nascondi + + Create Asset + - Unknown. Syncing Headers (%1)... - Sconosciuto. Sincronizzazione Headers (%1)... + + Clear + - - - OpenURIDialog - Open URI - Apri URI + + Balance: + - Open payment request from URI or file - Apri richiesta di pagamento da URI o file + + 123.456 RVN + - URI: - URI: + + Copy quantity + - Select payment request file - Seleziona il file di richiesta di pagamento + + Copy amount + - Select payment request file to open - Seleziona il file di richiesta di pagamento da aprire + + Copy fee + - - - OptionsDialog - Options - Opzioni + + Copy after fee + - &Main - &Principale + + Copy bytes + - Automatically start %1 after logging in to the system. - Avvia automaticamente %1 una volta effettuato l'accesso al sistema. + + Copy dust + - &Start %1 on system login - &Start %1 all'accesso al sistema + + Copy change + - Size of &database cache - Dimensione della cache del &database. + + %1 (%2 blocks) + - MB - MB + + Main Asset + - Number of script &verification threads - Numero di thread di &verifica degli script + + Sub Asset + - Accept connections from outside - Accetta connessioni provenienti dall'esterno + + Unique Asset + - Allow incoming connections - Permetti connessioni in ingresso + + Messaging Channel Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Indirizzo IP del proxy (ad es. IPv4: 127.0.0.1 / IPv6: ::1) + + Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Riduci ad icona invece di uscire dall'applicazione quando la finestra viene chiusa. Attivando questa opzione l'applicazione terminerà solo dopo aver selezionato Esci dal menu File. + + Sub Qualifier Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL di terze parti (ad es. un block explorer) che appaiono nella tabella delle transazioni come voci nel menu contestuale. "%s" nell'URL è sostituito dall'hash della transazione. -Per specificare più URL separarli con una barra verticale "|". + + Restricted Asset + - Third party transaction URLs - URL di transazione di terze parti + + Asset Type + - Active command-line options that override above options: - Opzioni della riga di comando attive che sostituiscono i settaggi sopra elencati: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Reset all client options to default. - Reimposta tutte le opzioni del client allo stato predefinito. + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Reset Options - &Ripristina Opzioni + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Network - Rete + + + + Warning: Invalid Raven address + - (0 = auto, <0 = leave that many cores free) - (0 = automatico, <0 = lascia questo numero di core liberi) + + Warning: Restricted Assets Reissuance requires an address + - W&allet - Port&amonete + + Valid Asset + - Expert - Esperti + + Invalid: Asset name already in use + - Enable coin &control features - Abilita le funzionalità di coin &control + + Error: Asset Database not in sync + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Disabilitando l'uso di resti non confermati, il resto di una transazione non potrà essere speso fino a quando non avrà ottenuto almeno una conferma. Questa impostazione influisce inoltre sul calcolo del saldo. + + + %1 to %2 + - &Spend unconfirmed change - &Spendi resti non confermati + + Are you sure you want to send? + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Apri automaticamente la porta del client Raven sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo. + + added as transaction fee + - Map port using &UPnP - Mappa le porte tramite &UPnP + + Total Amount %1 + - Connect to the Raven network through a SOCKS5 proxy. - Connessione alla rete Raven attraverso un proxy SOCKS5. + + or + - &Connect through SOCKS5 proxy (default proxy): - &Connessione attraverso proxy SOCKS5 (proxy predefinito): + + Confirm send assets + - Proxy &IP: - &IP del proxy: + + Invalid: + - &Port: - &Porta: + + Copy + - Port of the proxy (e.g. 9050) - Porta del proxy (ad es. 9050) + + Transaction ID Copied + - Used for reaching peers via: - Utilizzata per connettersi attraverso: + + Asset transaction sent to network: + - - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Mostra se la proxy SOCKS5 fornita viene utilizzata per raggiungere i peers attraverso questo tipo di rete. + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Unknown change address + - IPv6 - IPv6 + + Confirm custom change address + - Tor - Tor + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Connette alla rete Raven attraverso un proxy SOCKS5 separato per Tor. + + (no label) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Usa un proxy SOCKS5 separato per connettersi ai peers attraverso Tor: + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - &Finestra + + Edit Address + Modifica l'indirizzo - &Hide the icon from the system tray. - &Nascondi l'icona nella barra delle applicazioni. + + &Label + &Etichetta - Hide tray icon - Nascondi l'icona della barra applicazioni + + The label associated with this address list entry + L'etichetta associata con questa voce della lista degli indirizzi - Show only a tray icon after minimizing the window. - Mostra solo nella tray bar quando si riduce ad icona. + + The address associated with this address list entry. This can only be modified for sending addresses. + L'indirizzo associato con questa voce della lista degli indirizzi. Può essere modificato solo per gli indirizzi d'invio. - &Minimize to the tray instead of the taskbar - &Minimizza nella tray bar invece che sulla barra delle applicazioni + + &Address + &Indirizzo - M&inimize on close - M&inimizza alla chiusura + + New receiving address + Nuovo indirizzo di ricezione - &Display - &Mostra + + New sending address + Nuovo indirizzo d'invio - User Interface &language: - &Lingua Interfaccia Utente: + + Edit receiving address + Modifica indirizzo di ricezione - The user interface language can be set here. This setting will take effect after restarting %1. - La lingua dell'interfaccia utente può essere impostata qui. L'impostazione avrà effetto dopo il riavvio %1. + + Edit sending address + Modifica indirizzo d'invio - &Unit to show amounts in: - &Unità di misura con cui visualizzare gli importi: + + The entered address "%1" is not a valid Raven address. + L'indirizzo inserito "%1" non è un indirizzo raven valido. - Choose the default subdivision unit to show in the interface and when sending coins. - Scegli l'unità di suddivisione predefinita da utilizzare per l'interfaccia e per l'invio di raven. + + The entered address "%1" is already in the address book. + L'indirizzo inserito "%1" è già in rubrica. - Whether to show coin control features or not. - Specifica se le funzionalita di coin control saranno visualizzate. + + Could not unlock wallet. + Impossibile sbloccare il portamonete. - &OK - &OK + + New key generation failed. + Generazione della nuova chiave non riuscita. + + + FreespaceChecker - &Cancel - &Cancella + + A new data directory will be created. + Sarà creata una nuova cartella dati. - default - predefinito + + name + nome - none - nessuno + + Directory already exists. Add %1 if you intend to create a new directory here. + Cartella già esistente. Aggiungi %1 se intendi creare qui una nuova cartella. - Confirm options reset - Conferma ripristino opzioni + + Path already exists, and is not a directory. + Il percorso è già esistente e non è una cartella. - Client restart required to activate changes. - È necessario un riavvio del client per applicare le modifiche. + + Cannot create data directory here. + Impossibile creare una cartella dati qui. + + + FreezeAddress - Client will be shut down. Do you want to proceed? - Il client sarà arrestato. Si desidera procedere? + + Frame + - This change would require a client restart. - Questa modifica richiede un riavvio del client. + + Restricted Asset: + - The supplied proxy address is invalid. - L'indirizzo proxy che hai fornito non è valido. + + Address: + - - - OverviewPage - Form - Modulo + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Le informazioni visualizzate potrebbero non essere aggiornate. Il portamonete si sincronizza automaticamente con la rete Raven una volta stabilita una connessione, ma questo processo non è ancora stato completato. + + IPFS / Hash: + - Watch-only: - Sola lettura: + + Single Address Options + - Available: - Disponibile: + + Global Options + - Your current spendable balance - Il tuo saldo spendibile attuale + + Free&ze trading on this address + - Pending: - In attesa: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totale delle transazioni in corso di conferma e che non sono ancora conteggiate nel saldo spendibile + + Freeze all &trading for the selected restricted asset + - Immature: - Immaturo: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - Importo generato dal mining e non ancora maturato + + Check + - Balances - Saldo + + Clear + - Total: - Totale: + + Submit + - Your current total balance - Il tuo saldo totale attuale + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - Il tuo saldo attuale negli indirizzi di sola lettura + + Must have a restricted asset selected + - Spendable: - Spendibile: + + Address is already frozen + - Recent transactions - Transazioni recenti + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - Transazioni non confermate su indirizzi di sola lettura + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - Importo generato dal mining su indirizzi di sola lettura e non ancora maturato + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - Saldo corrente totale negli indirizzi di sola lettura + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - Errore di richiesta di pagamento + + Warning: transaction while syncing wallet! + - Cannot start raven: click-to-pay handler - Impossibile avviare raven: gestore click-to-pay + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI handling - Gestione URI + + version + versione - Payment request fetch URL is invalid: %1 - URL di recupero della Richiesta di pagamento non valido: %1 + + + (%1-bit) + (%1-bit) - Invalid payment address %1 - Indirizzo di pagamento non valido %1 + + About %1 + Informazioni %1 - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - Impossibile interpretare l'URI! I parametri dell'URI o l'indirizzo Raven potrebbero non essere corretti. + + Command-line options + Opzioni della riga di comando - Payment request file handling - Gestione del file di richiesta del pagamento + + Usage: + Utilizzo: - Payment request file cannot be read! This can be caused by an invalid payment request file. - Impossibile leggere il file della richiesta di pagamento! Il file della richiesta di pagamento potrebbe non essere valido + + command-line options + opzioni della riga di comando - Payment request rejected - Richiesta di pagamento respinta + + UI Options: + Opzioni interfaccia: - Payment request network doesn't match client network. - La rete della richiesta di pagamento non corrisponde alla rete del client. + + Choose data directory on startup (default: %u) + Seleziona la directory dei dati all'avvio (default: %u) - Payment request expired. - Richiesta di pagamento scaduta. + + Set language, for example "de_DE" (default: system locale) + Imposta la lingua, ad esempio "it_IT" (default: locale di sistema) - Payment request is not initialized. - La richiesta di pagamento non è stata inizializzata. + + Start minimized + Avvia ridotto a icona - Unverified payment requests to custom payment scripts are unsupported. - Le richieste di pagamento non verificate verso script di pagamento personalizzati non sono supportate. + + Set SSL root certificates for payment request (default: -system-) + Imposta un certificato SSL root per le richieste di pagamento (default: -system-) + + Show splash screen on startup (default: %u) + Mostra schermata iniziale all'avvio (default: %u) + + + + Reset all settings changed in the GUI + Reimposta tutti i campi dell'interfaccia grafica + + + + Intro + + + Welcome + Benvenuto + + + + Welcome to %1. + Benvenuto su %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Dato che questa è la prima volta che il programma viene lanciato, puoi scegliere dove %1 salverà i suoi dati. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Usa la cartella dati predefinita + + + + Use a custom data directory: + Usa una cartella dati personalizzata: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Errore: La cartella dati "%1" specificata non può essere creata. + + + + Error + Errore + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Modulo + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + Numero di blocchi mancanti + + + + + + Unknown... + Sconosciuto... + + + + Last block time + Ora del blocco più recente + + + + Progress + Progresso + + + + Progress increase per hour + Aumento dei progressi per ogni ora + + + + + calculating... + calcolando... + + + + Estimated time left until synced + Tempo stimato al completamento della sincronizzazione. + + + + Hide + Nascondi + + + + Unknown. Syncing Headers (%1)... + Sconosciuto. Sincronizzazione Headers (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Apri URI + + + + Open payment request from URI or file + Apri richiesta di pagamento da URI o file + + + + URI: + URI: + + + + Select payment request file + Seleziona il file di richiesta di pagamento + + + + Select payment request file to open + Seleziona il file di richiesta di pagamento da aprire + + + + OptionsDialog + + + Options + Opzioni + + + + &Main + &Principale + + + + Automatically start %1 after logging in to the system. + Avvia automaticamente %1 una volta effettuato l'accesso al sistema. + + + + &Start %1 on system login + &Start %1 all'accesso al sistema + + + + Size of &database cache + Dimensione della cache del &database. + + + + MB + MB + + + + Number of script &verification threads + Numero di thread di &verifica degli script + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Indirizzo IP del proxy (ad es. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Riduci ad icona invece di uscire dall'applicazione quando la finestra viene chiusa. Attivando questa opzione l'applicazione terminerà solo dopo aver selezionato Esci dal menu File. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL di terze parti (ad es. un block explorer) che appaiono nella tabella delle transazioni come voci nel menu contestuale. "%s" nell'URL è sostituito dall'hash della transazione. +Per specificare più URL separarli con una barra verticale "|". + + + + Active command-line options that override above options: + Opzioni della riga di comando attive che sostituiscono i settaggi sopra elencati: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reimposta tutte le opzioni del client allo stato predefinito. + + + + &Reset Options + &Ripristina Opzioni + + + + &Network + Rete + + + + (0 = auto, <0 = leave that many cores free) + (0 = automatico, <0 = lascia questo numero di core liberi) + + + + W&allet + Port&amonete + + + + Expert + Esperti + + + + Enable coin &control features + Abilita le funzionalità di coin &control + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Disabilitando l'uso di resti non confermati, il resto di una transazione non potrà essere speso fino a quando non avrà ottenuto almeno una conferma. Questa impostazione influisce inoltre sul calcolo del saldo. + + + + &Spend unconfirmed change + &Spendi resti non confermati + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Apri automaticamente la porta del client Raven sul router. Il protocollo UPnP deve essere supportato da parte del router ed attivo. + + + + Map port using &UPnP + Mappa le porte tramite &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Connessione alla rete Raven attraverso un proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Connessione attraverso proxy SOCKS5 (proxy predefinito): + + + + + Proxy &IP: + &IP del proxy: + + + + + &Port: + &Porta: + + + + + Port of the proxy (e.g. 9050) + Porta del proxy (ad es. 9050) + + + + Used for reaching peers via: + Utilizzata per connettersi attraverso: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Connette alla rete Raven attraverso un proxy SOCKS5 separato per Tor. + + + + &Window + &Finestra + + + + Show only a tray icon after minimizing the window. + Mostra solo nella tray bar quando si riduce ad icona. + + + + &Minimize to the tray instead of the taskbar + &Minimizza nella tray bar invece che sulla barra delle applicazioni + + + + M&inimize on close + M&inimizza alla chiusura + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Mostra + + + + User Interface &language: + &Lingua Interfaccia Utente: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + La lingua dell'interfaccia utente può essere impostata qui. L'impostazione avrà effetto dopo il riavvio %1. + + + + &Unit to show amounts in: + &Unità di misura con cui visualizzare gli importi: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Scegli l'unità di suddivisione predefinita da utilizzare per l'interfaccia e per l'invio di raven. + + + + Whether to show coin control features or not. + Specifica se le funzionalita di coin control saranno visualizzate. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancella + + + + default + predefinito + + + + none + nessuno + + + + Confirm options reset + Conferma ripristino opzioni + + + + + Client restart required to activate changes. + È necessario un riavvio del client per applicare le modifiche. + + + + Client will be shut down. Do you want to proceed? + Il client sarà arrestato. Si desidera procedere? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Questa modifica richiede un riavvio del client. + + + + The supplied proxy address is invalid. + L'indirizzo proxy che hai fornito non è valido. + + + + OverviewPage + + + Form + Modulo + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Le informazioni visualizzate potrebbero non essere aggiornate. Il portamonete si sincronizza automaticamente con la rete Raven una volta stabilita una connessione, ma questo processo non è ancora stato completato. + + + + Watch-only: + Sola lettura: + + + + Available: + Disponibile: + + + + Your current spendable balance + Il tuo saldo spendibile attuale + + + + Pending: + In attesa: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totale delle transazioni in corso di conferma e che non sono ancora conteggiate nel saldo spendibile + + + + Immature: + Immaturo: + + + + Mined balance that has not yet matured + Importo generato dal mining e non ancora maturato + + + + Total: + Totale: + + + + Your current total balance + Il tuo saldo totale attuale + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Il tuo saldo attuale negli indirizzi di sola lettura + + + + Spendable: + Spendibile: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transazioni recenti + + + + Unconfirmed transactions to watch-only addresses + Transazioni non confermate su indirizzi di sola lettura + + + + Mined balance in watch-only addresses that has not yet matured + Importo generato dal mining su indirizzi di sola lettura e non ancora maturato + + + + Current total balance in watch-only addresses + Saldo corrente totale negli indirizzi di sola lettura + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Errore di richiesta di pagamento + + + + Cannot start raven: click-to-pay handler + Impossibile avviare raven: gestore click-to-pay + + + + + + URI handling + Gestione URI + + + + Payment request fetch URL is invalid: %1 + URL di recupero della Richiesta di pagamento non valido: %1 + + + + Invalid payment address %1 + Indirizzo di pagamento non valido %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + Impossibile interpretare l'URI! I parametri dell'URI o l'indirizzo Raven potrebbero non essere corretti. + + + + Payment request file handling + Gestione del file di richiesta del pagamento + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Impossibile leggere il file della richiesta di pagamento! Il file della richiesta di pagamento potrebbe non essere valido + + + + + + + + + Payment request rejected + Richiesta di pagamento respinta + + + + Payment request network doesn't match client network. + La rete della richiesta di pagamento non corrisponde alla rete del client. + + + + Payment request expired. + Richiesta di pagamento scaduta. + + + + Payment request is not initialized. + La richiesta di pagamento non è stata inizializzata. + + + + Unverified payment requests to custom payment scripts are unsupported. + Le richieste di pagamento non verificate verso script di pagamento personalizzati non sono supportate. + + + + Invalid payment request. Richiesta di pagamento invalida - Requested payment amount of %1 is too small (considered dust). - L'importo di pagamento di %1 richiesto è troppo basso (considerato come trascurabile). + + Requested payment amount of %1 is too small (considered dust). + L'importo di pagamento di %1 richiesto è troppo basso (considerato come trascurabile). + + + + Refund from %1 + Rimborso da %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + La richiesta di pagamento %1 è troppo grande (%2 bytes, consentiti %3 bytes) + + + + Error communicating with %1: %2 + Errore di comunicazione con %1: %2 + + + + Payment request cannot be parsed! + La richiesta di pagamento non può essere processata! + + + + Bad response from server %1 + Risposta errata da parte del server %1 + + + + Network request error + Errore di richiesta di rete + + + + Payment acknowledged + Pagamento riconosciuto + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Nodo/Servizio + + + + NodeId + + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Importo + + + + Enter a Raven address (e.g. %1) + Inserisci un indirizzo Raven (ad es. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Nessuno + + + + N/A + N/D + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 e %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 non è ancora stato chiuso in modo sicuro + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Errore: %1 + + + + QRImageWidget + + + &Save Image... + &Salva immagine + + + + &Copy Image + &Copia immagine + + + + Save QR Code + Salva codice QR + + + + PNG Image (*.png) + Immagine PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versione client + + + + &Information + &Informazioni + + + + Debug window + Finestra di debug + + + + General + Generale + + + + Using BerkeleyDB version + Versione BerkeleyDB in uso + + + + Datadir + Datadir + + + + Startup time + Ora di avvio + + + + Network + Rete + + + + Name + Nome + + + + Number of connections + Numero di connessioni + + + + Block chain + Block chain + + + + Current number of blocks + Numero attuale di blocchi + + + + Memory Pool + Memory Pool + + + + Current number of transactions + Numero attuale di transazioni + + + + Memory usage + Utilizzo memoria + + + + &Reset + + + + + + Received + Ricevuto + + + + + Sent + Inviato + + + + &Peers + &Peer + + + + Banned peers + Peers bannati + + + + + + Select a peer to view detailed information. + Seleziona un peer per visualizzare informazioni più dettagliate. + + + + Whitelisted + Whitelisted/sicuri + + + + Direction + Direzione + + + + Version + Versione + + + + Starting Block + Blocco di partenza + + + + Synced Headers + Headers sincronizzati + + + + Synced Blocks + Blocchi sincronizzati + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Apri il file log del debug di %1 dalla cartella dati attuale. Può richiedere alcuni secondi per file di log di grandi dimensioni. + + + + Decrease font size + Riduci dimensioni font. + + + + Increase font size + Aumenta dimensioni font + + + + Services + Servizi + + + + Ban Score + Punteggio di Ban + + + + Connection Time + Tempo di Connessione + + + + Last Send + Ultimo Invio + + + + Last Receive + Ultima Ricezione + + + + Ping Time + Tempo di Ping + + + + The duration of a currently outstanding ping. + La durata di un ping attualmente in corso. + + + + Ping Wait + Attesa ping + + + + Min Ping + Ping Minimo + + + + Time Offset + Scarto Temporale + + + + Last block time + Ora del blocco più recente + + + + &Open + &Apri + + + + &Console + &Console + + + + &Network Traffic + &Traffico di Rete + + + + Totals + Totali + + + + In: + Entrata: + + + + Out: + Uscita: + + + + Debug log file + File log del Debug + + + + Clear console + Cancella console + + + + 1 &hour + 1 &ora + + + + 1 &day + 1 &giorno + + + + 1 &week + 1 &settimana + + + + 1 &year + 1 &anno + + + + &Disconnect + &Disconnetti + + + + + + + Ban for + Bannato per + + + + &Unban + &Sbanna + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Benvenuto nella console RPC di %1. + + + + Type <b>help</b> for an overview of available commands. + Scrivi <b>help</b> per un riassunto dei comandi disponibili. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Attività di rete disabilitata + + + + (node id: %1) + (id nodo: %1) + + + + via %1 + via %1 + + + + + never + mai + + + + Inbound + In entrata + + + + Outbound + In uscita + + + + Yes + Si + + + + No + No + + + + + Unknown + Sconosciuto + + + + RavenGUI + + + Sign &message... + Firma &messaggio... + + + + Synchronizing with network... + Sincronizzazione con la rete in corso... + + + + &Overview + &Sintesi + + + + Node + Nodo + + + + Show general overview of wallet + Mostra lo stato generale del portamonete + + + + &Transactions + &Transazioni + + + + Browse transaction history + Mostra la cronologia delle transazioni + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Esci + + + + Quit application + Chiudi applicazione + + + + &About %1 + &Informazioni su %1 + + + + Show information about %1 + Mostra informazioni su %1 + + + + About &Qt + Informazioni su &Qt + + + + Show information about Qt + Mostra le informazioni su Qt + + + + &Options... + &Opzioni... + + + + Modify configuration options for %1 + Modifica le opzioni di configurazione per %1 + + + + &Encrypt Wallet... + &Cifra il portamonete... + + + + &Backup Wallet... + &Backup portamonete... + + + + &Change Passphrase... + &Cambia passphrase... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Indirizzi d'invio... + + + + &Receiving addresses... + Indirizzi di &ricezione... + + + + Open &URI... + Apri &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Clicca per disattivare la rete. + + + + Network activity disabled. + Attività di rete disabilitata + + + + Click to enable network activity again. + Clicca per abilitare nuovamente l'attività di rete + + + + Syncing Headers (%1%)... + Sincronizzazione Headers (%1%)... + + + + Reindexing blocks on disk... + Re-indicizzazione blocchi su disco... + + + + Send coins to a Raven address + Invia fondi ad un indirizzo Raven + + + + Backup wallet to another location + Effettua il backup del portamonete + + + + Change the passphrase used for wallet encryption + Cambia la passphrase utilizzata per la cifratura del portamonete + + + + Open debugging and diagnostic console + Apri la console di debugging e diagnostica + + + + &Verify message... + &Verifica messaggio... + + + + Raven + Raven + + + + Wallet + Portamonete + + + + &Send + &Invia + + + + &Receive + &Ricevi + + + + &Show / Hide + &Mostra / Nascondi + + + + Show or hide the main Window + Mostra o nascondi la Finestra principale + + + + Encrypt the private keys that belong to your wallet + Cifra le chiavi private che appartengono al tuo portamonete + + + + Sign messages with your Raven addresses to prove you own them + Firma messaggi con i tuoi indirizzi Raven per dimostrarne il possesso + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifica che i messaggi siano stati firmati con gli indirizzi Raven specificati + + + + &File + &File + + + + &Help + &Aiuto + + + + Request payments (generates QR codes and raven: URIs) + Richiedi pagamenti (genera codici QR e raven: URI) + + + + Show the list of used sending addresses and labels + Mostra la lista degli indirizzi di invio utilizzati + + + + Show the list of used receiving addresses and labels + Mostra la lista degli indirizzi di ricezione utilizzati + + + + Open a raven: URI or payment request + Apri un raven: URI o una richiesta di pagamento + + + + &Command-line options + Opzioni della riga di &comando + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indicizzando i blocchi su disco... + + + + Processing blocks on disk... + Processando i blocchi su disco... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + Indietro di %1 + + + + Last received block was generated %1 ago. + L'ultimo blocco ricevuto è stato generato %1 fa. + + + + Transactions after this will not yet be visible. + Le transazioni effettuate successivamente non sono ancora visibili. + + + + Error + Errore + + + + Warning + Attenzione + + + + Information + Informazioni + + + + Up to date + Aggiornato + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostra il messaggio di aiuto di %1 per ottenere una lista di opzioni di comando per Raven + + + + %1 client + %1 client + + + + Connecting to peers... + Connessione ai peers + + + + Catching up... + In aggiornamento... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Quantità: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Etichetta: %1 + - Refund from %1 - Rimborso da %1 + + Address: %1 + + Indirizzo: %1 + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - La richiesta di pagamento %1 è troppo grande (%2 bytes, consentiti %3 bytes) + + Sent transaction + Transazione inviata - Error communicating with %1: %2 - Errore di comunicazione con %1: %2 + + Incoming transaction + Transazione ricevuta - Payment request cannot be parsed! - La richiesta di pagamento non può essere processata! + + + Assets not yet active + - Bad response from server %1 - Risposta errata da parte del server %1 + + Restricted Assets not yet active + - Network request error - Errore di richiesta di rete + + HD key generation is <b>enabled</b> + La creazione della chiave HD è <b>abilitata</b> - Payment acknowledged - Pagamento riconosciuto + + HD key generation is <b>disabled</b> + La creazione della chiave HD è <b>disabilitata</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Il portamonete è <b>cifrato</b> ed attualmente <b>sbloccato</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Il portamonete è <b>cifrato</b> ed attualmente <b>bloccato</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Si è verificato un errore critico. Raven non può più funzionare in maniera sicura e verrà chiuso. - PeerTableModel + ReceiveCoinsDialog - User Agent - User Agent + + &Amount: + &Importo: - Node/Service - Nodo/Servizio + + &Label: + &Etichetta: - Ping - Ping + + &Message: + &Messaggio: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Riutilizza uno degli indirizzi di ricezione generati in precedenza. Riutilizzare un indirizzo comporta problemi di sicurezza e privacy. Non selezionare questa opzione a meno che non si stia rigenerando una richiesta di pagamento creata in precedenza. + + + + R&euse an existing receiving address (not recommended) + R&iusa un indirizzo di ricezione (non raccomandato) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un messaggio opzionale da allegare e mostrare all'apertura della richiesta di pagamento. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Raven. + + + + + An optional label to associate with the new receiving address. + Un'etichetta opzionale da associare al nuovo indirizzo di ricezione. + + + + Use this form to request payments. All fields are <b>optional</b>. + Usa questo modulo per richiedere pagamenti. Tutti i campi sono <b>opzionali</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Un importo opzionale da associare alla richiesta. Lasciare vuoto o a zero per non richiedere un importo specifico. + + + + Clear all fields of the form. + Cancellare tutti i campi del modulo. + + + + Clear + Cancella + + + + Requested payments history + Cronologia pagamenti richiesti + + + + &Request payment + &Richiedi pagamento + + + + Show the selected request (does the same as double clicking an entry) + Mostra la richiesta selezionata (produce lo stesso effetto di un doppio click su una voce) + + + + Show + Mostra + + + + Remove the selected entries from the list + Rimuovi le voci selezionate dalla lista + + + + Remove + Rimuovi + + + + Copy URI + Copia URI + + + + Copy label + Copia etichetta + + + + Copy message + Copia il messaggio + + + + Copy amount + Copia l'importo - QObject + ReceiveRequestDialog + + QR Code + Codice QR + + + + Copy &URI + Copia &URI + + + + Copy &Address + Copia &Indirizzo + + + + &Save Image... + &Salva Immagine... + + + + Request payment to %1 + Richiesta di pagamento a %1 + + + + Payment information + Informazioni di pagamento + + + + URI + URI + + + + Address + Indirizzo + + + Amount Importo - Enter a Raven address (e.g. %1) - Inserisci un indirizzo Raven (ad es. %1) + + Label + Etichetta - %1 d - %1 d + + Message + Messaggio + + + + Resulting URI too long, try to reduce the text for label / message. + L'URI risultante è troppo lungo, prova a ridurre il testo nell'etichetta / messaggio. + + + + Error encoding URI into QR Code. + Errore nella codifica dell'URI nel codice QR. + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etichetta + + + + Message + Messaggio + + + + (no label) + (nessuna etichetta) + + + + (no message) + (nessun messaggio) + + + + (no amount requested) + (nessun importo richiesto) + + + + Requested + Richiesto + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + - %1 h - %1 h + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 m - %1 m + + Warning: + - %1 s - %1 s + + The number of assets that will be created + - None - Nessuno + + Unit: + - N/A - N/D + + e.g. 1.00000000 + - %1 ms - %1 ms + + If the owner of this asset will be able to issue more assets in the future + - - %n second(s) - %n secondo%n secondi + + + Reissuable + - - %n minute(s) - %n minuto%n minuti + + + Change IPFS/Txid Hash + - - %n hour(s) - %n ora%n ore + + + The ipfs/txid hash that contains information about the asset + - - %n day(s) - %n giorno%n giorni + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n week(s) - %n settimana%n settimane + + + ERROR TEXT + - %1 and %2 - %1 e %2 + + Current Asset Settings + - - %n year(s) - %n anno%n anni + + + Updated Asset Settings + - %1 didn't yet exit safely... - %1 non è ancora stato chiuso in modo sicuro + + Transaction Fee: + - - - QObject::QObject - Error: %1 - Errore: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Salva immagine + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Copia immagine + + Warning: Fee estimation is currently not possible. + - Save QR Code - Salva codice QR + + collapse fee-settings + - PNG Image (*.png) - Immagine PNG (*.png) + + Hide + - - - RPCConsole - N/A - N/D + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Versione client + + per kilobyte + - &Information - &Informazioni + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Finestra di debug + + (read the tooltip) + - General - Generale + + Recommended: + - Using BerkeleyDB version - Versione BerkeleyDB in uso + + Cus&tom: + - Datadir - Datadir + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Ora di avvio + + Confirmation time target: + - Network - Rete + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Nome + + Request Replace-By-Fee + - Number of connections - Numero di connessioni + + Clear + - Block chain - Block chain + + Balance: + - Current number of blocks - Numero attuale di blocchi + + 123.456 RVN + - Memory Pool - Memory Pool + + Copy quantity + - Current number of transactions - Numero attuale di transazioni + + Copy amount + - Memory usage - Utilizzo memoria + + Copy fee + - Received - Ricevuto + + Copy after fee + - Sent - Inviato + + Copy bytes + - &Peers - &Peer + + Copy dust + - Banned peers - Peers bannati + + Copy change + - Select a peer to view detailed information. - Seleziona un peer per visualizzare informazioni più dettagliate. + + Select an asset to reissue.. + - Whitelisted - Whitelisted/sicuri + + Select the asset you want to reissue. + - Direction - Direzione + + %1 (%2 blocks) + - Version - Versione + + Cost + - Starting Block - Blocco di partenza + + Asset data couldn't be found + - Synced Headers - Headers sincronizzati + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Blocchi sincronizzati + + Invalid Raven Destination Address + - User Agent - User Agent + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Apri il file log del debug di %1 dalla cartella dati attuale. Può richiedere alcuni secondi per file di log di grandi dimensioni. + + + Warning: Invalid Raven address + - Decrease font size - Riduci dimensioni font. + + + Yes + - Increase font size - Aumenta dimensioni font + + No + - Services - Servizi + + + Name + - Ban Score - Punteggio di Ban + + + Total Quantity + - Connection Time - Tempo di Connessione + + + Units + - Last Send - Ultimo Invio + + + Can Reisssue + - Last Receive - Ultima Ricezione + + + + IPFS Hash + - Ping Time - Tempo di Ping + + + + Txid Hash + - The duration of a currently outstanding ping. - La durata di un ping attualmente in corso. + + Verifier String + - Ping Wait - Attesa ping + + + Current Verifier String + - Min Ping - Ping Minimo + + Please select a asset from the menu to display the assets current settings + - Time Offset - Scarto Temporale + + Please select a asset from the menu to display the assets updated settings + - Last block time - Ora del blocco più recente + + Current Quantity + - &Open - &Apri + + Current Units + - &Console - &Console + + Can Reissue + - &Network Traffic - &Traffico di Rete + + Unknown data hash type + - &Clear - &Cancella + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totali + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Entrata: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Uscita: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - File log del Debug + + + %1 to %2 + - Clear console - Cancella console + + Are you sure you want to send? + - 1 &hour - 1 &ora + + added as transaction fee + - 1 &day - 1 &giorno + + Total Amount %1 + - 1 &week - 1 &settimana + + or + - 1 &year - 1 &anno + + Confirm reissue assets + - &Disconnect - &Disconnetti + + Copy + - Ban for - Bannato per + + Transaction ID Copied + - &Unban - &Sbanna + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Benvenuto nella console RPC di %1. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Usa le frecce direzionali per scorrere la cronologia, e <b>Ctrl-L</b> per cancellarla. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Scrivi <b>help</b> per un riassunto dei comandi disponibili. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Network activity disabled - Attività di rete disabilitata + + (no label) + - %1 B - %1 B + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 KB - %1 KB + + Send Coins + - %1 MB - %1 MB + + Asset Balances + - %1 GB - %1 GB + + + Search + - (node id: %1) - (id nodo: %1) + + Address List + - via %1 - via %1 + + Balance: + - never - mai + + + Failed to create a change address + - Inbound - In entrata + + Failed to generate the correct transaction. Please try again + - Outbound - In uscita + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Si + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - No - No + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Sconosciuto + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - - - ReceiveCoinsDialog - &Amount: - &Importo: + + + added as transaction fee + - &Label: - &Etichetta: + + + Total Amount %1 + - &Message: - &Messaggio: + + + or + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Riutilizza uno degli indirizzi di ricezione generati in precedenza. Riutilizzare un indirizzo comporta problemi di sicurezza e privacy. Non selezionare questa opzione a meno che non si stia rigenerando una richiesta di pagamento creata in precedenza. + + Confirm adding restriction + - R&euse an existing receiving address (not recommended) - R&iusa un indirizzo di ricezione (non raccomandato) + + Confirm removing resetricton + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un messaggio opzionale da allegare e mostrare all'apertura della richiesta di pagamento. Nota: Il messaggio non sarà inviato con il pagamento sulla rete Raven. + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Un'etichetta opzionale da associare al nuovo indirizzo di ricezione. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - Use this form to request payments. All fields are <b>optional</b>. - Usa questo modulo per richiedere pagamenti. Tutti i campi sono <b>opzionali</b>. + + Confirm adding qualifier + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Un importo opzionale da associare alla richiesta. Lasciare vuoto o a zero per non richiedere un importo specifico. + + Confirm removing qualifier + + + + SendAssetsEntry - Clear all fields of the form. - Cancellare tutti i campi del modulo. + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Cancella + + + + Memo: + - Requested payments history - Cronologia pagamenti richiesti + + Amount: + - &Request payment - &Richiedi pagamento + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Mostra la richiesta selezionata (produce lo stesso effetto di un doppio click su una voce) + + &Label: + - Show - Mostra + + Asset: + - Remove the selected entries from the list - Rimuovi le voci selezionate dalla lista + + The Raven address to send the payment to + - Remove - Rimuovi + + Choose previously used address + - Copy URI - Copia URI + + Alt+A + - Copy label - Copia etichetta + + Paste address from clipboard + - Copy message - Copia il messaggio + + Alt+P + - Copy amount - Copia l'importo + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Codice QR + + Message: + - Copy &URI - Copia &URI + + Transfer &To: + - Copy &Address - Copia &Indirizzo + + Transfer Administrator Asset + - &Save Image... - &Salva Immagine... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Richiesta di pagamento a %1 + + This is an unauthenticated payment request. + - Payment information - Informazioni di pagamento + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Indirizzo + + This is an authenticated payment request. + - Amount - Importo + + Enter a label for this address to add it to your address book + - Label - Etichetta + + Select to view administrator assets to transfer + - Message - Messaggio + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - L'URI risultante è troppo lungo, prova a ridurre il testo nell'etichetta / messaggio. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Errore nella codifica dell'URI nel codice QR. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Data + + Failed to get asset metadata for: + - Label - Etichetta + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Messaggio + + Failed to get asset outpoints from database + - (no label) - (nessuna etichetta) + + Selected Balance + - (no message) - (nessun messaggio) + + Wallet Balance + - (no amount requested) - (nessun importo richiesto) + + Select an administrator asset to transfer + - Requested - Richiesto + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Invia Raven + Coin Control Features Funzionalità di Coin Control + Inputs... Input... + automatically selected selezionato automaticamente + Insufficient funds! Fondi insufficienti! + Quantity: Quantità: + Bytes: Byte: + Amount: Importo: + Fee: Commissione: + After Fee: Dopo Commissione: + Change: Resto: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. In caso di abilitazione con indirizzo vuoto o non valido, il resto sarà inviato ad un nuovo indirizzo generato appositamente. + Custom change address Personalizza indirizzo di resto + Transaction Fee: Commissione di Transazione: + Choose... Scegli... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings minimizza le impostazioni di commissione + per kilobyte per kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Se la commissione personalizzata è impostata su 1000 satoshi e la transazione è di soli 250 byte, allora "per kilobyte" paga solo 250 satoshi di commissione, mentre "somma almeno" paga 1000 satoshi. Per transazioni più grandi di un kilobyte, entrambe le opzioni pagano al kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se la commissione personalizzata è impostata su 1000 satoshi e la transazione è di soli 250 byte, allora "per kilobyte" paga solo 250 satoshi di commissione, mentre "somma almeno" paga 1000 satoshi. Per transazioni più grandi di un kilobyte, entrambe le opzioni pagano al kilobyte. + Hide Nascondi - total at least - somma almeno - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Non vi è alcuna controindicazione a pagare la commissione minima, a patto che il volume delle transazioni sia inferiore allo spazio disponibile nei blocchi. Occorre comunque essere consapevoli che ciò potrebbe impedire la conferma delle transazioni nel caso in cui la rete risultasse satura. + (read the tooltip) (leggi il suggerimento) + Recommended: Raccomandata: + Custom: Personalizzata: + (Smart fee not initialized yet. This usually takes a few blocks...) - (Commissione intelligente non ancora inizializzata. Normalmente richiede un'attesa di alcuni blocchi...) + (Commissione intelligente non ancora inizializzata. Normalmente richiede un'attesa di alcuni blocchi...) - normal - normale + + Request Replace-By-Fee + - fast - veloce + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Invia simultaneamente a più beneficiari + Add &Recipient &Aggiungi beneficiario + Clear all fields of the form. Cancellare tutti i campi del modulo. + Dust: Trascurabile: + + Confirmation time target: + + + + Clear &All Cancella &tutto + Balance: Saldo: + Confirm the send action - Conferma l'azione di invio + Conferma l'azione di invio + S&end &Invia + Copy quantity Copia quantità + Copy amount - Copia l'importo + Copia l'importo + Copy fee Copia commissione + Copy after fee Copia dopo commissione + Copy bytes Copia byte + Copy dust Copia trascurabile + Copy change Copia resto + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 a %2 + Are you sure you want to send? Sei sicuro di voler inviare? + added as transaction fee Includi il costo della transazione + Total Amount %1 Importo Totale %1 + or o + Confirm send coins Conferma invio coins + The recipient address is not valid. Please recheck. - L'indirizzo del destinatario non è valido. Si prega di ricontrollare. + L'indirizzo del destinatario non è valido. Si prega di ricontrollare. + The amount to pay must be larger than 0. - L'importo da pagare deve essere maggiore di 0. + L'importo da pagare deve essere maggiore di 0. + The amount exceeds your balance. Non hai abbastanza fondi + The total exceeds your balance when the %1 transaction fee is included. Il totale è superiore al tuo saldo attuale includendo la commissione di %1. + Duplicate address found: addresses should only be used once each. Rilevato un indirizzo duplicato Ciascun indirizzo dovrebbe essere utilizzato una sola volta. + Transaction creation failed! Creazione della transazione fallita! + The transaction was rejected with the following reason: %1 La transazione è stata respinta per il seguente motivo: %1 + A fee higher than %1 is considered an absurdly high fee. Una commissione maggiore di %1 è considerata irragionevolmente elevata. + Payment request expired. Richiesta di pagamento scaduta. - - %n block(s) - %n blocco%n blocchi - + Pay only the required fee of %1 Paga solamente la commissione richiesta di %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address Attenzione: Indirizzo Raven non valido + Warning: Unknown change address Attenzione: Indirizzo per il resto sconosciuto + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) (nessuna etichetta) @@ -2183,85 +5499,117 @@ Per specificare più URL separarli con una barra verticale "|". SendCoinsEntry + + + A&mount: &Importo: - Pay &To: - Paga &a: - - + &Label: &Etichetta: + Choose previously used address Scegli un indirizzo usato precedentemente + This is a normal payment. Questo è un normale pagamento. + The Raven address to send the payment to - L'indirizzo Raven a cui vuoi inviare il pagamento + L'indirizzo Raven a cui vuoi inviare il pagamento + Alt+A Alt+A + Paste address from clipboard - Incollare l'indirizzo dagli appunti + Incollare l'indirizzo dagli appunti + Alt+P Alt+P + + + Remove this entry Rimuovi questa voce + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - La commissione sarà sottratta dall'importo che si sta inviando. Il beneficiario riceverà un totale di raven inferiore al valore digitato. Nel caso in cui siano stati selezionati più beneficiari la commissione sarà suddivisa in parti uguali. + La commissione sarà sottratta dall'importo che si sta inviando. Il beneficiario riceverà un totale di raven inferiore al valore digitato. Nel caso in cui siano stati selezionati più beneficiari la commissione sarà suddivisa in parti uguali. + S&ubtract fee from amount - S&ottrae la commissione dall'importo + S&ottrae la commissione dall'importo + Message: Messaggio: + + Send &To: + + + + This is an unauthenticated payment request. Questa è una richiesta di pagamento non autenticata. + + + Send to: + + + + This is an authenticated payment request. Questa è una richiesta di pagamento autenticata. + Enter a label for this address to add it to the list of used addresses - Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati + Inserisci un'etichetta per questo indirizzo per aggiungerlo alla lista degli indirizzi utilizzati + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Messaggio incluso nel raven URI e che sarà memorizzato con la transazione per vostro riferimento. Nota: Questo messaggio non sarà inviato attraverso la rete Raven. - Pay To: - Pagare a: - - + + Memo: Memo: - + + + Enter a label for this address to add it to your address book + + + SendConfirmationDialog + + Yes Si @@ -2269,10 +5617,12 @@ Per specificare più URL separarli con una barra verticale "|". ShutdownWindow + %1 is shutting down... Arresto di %1 in corso... + Do not shut down the computer until this window disappears. Non spegnere il computer fino a quando questa finestra non si sarà chiusa. @@ -2280,138 +5630,181 @@ Per specificare più URL separarli con una barra verticale "|". SignVerifyMessageDialog + Signatures - Sign / Verify a Message Firme - Firma / Verifica un messaggio + &Sign Message &Firma Messaggio + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. È possibile firmare messaggi/accordi con i propri indirizzi in modo da dimostrare di poter ricevere raven attraverso di essi. Si consiglia di prestare attenzione a non firmare dichiarazioni vaghe o casuali, attacchi di phishing potrebbero cercare di indurre ad apporre la firma su di esse. Si raccomanda di firmare esclusivamente dichiarazioni completamente dettagliate e delle quali si condivide in pieno il contenuto. + The Raven address to sign the message with - L'indirizzo Raven da utilizzare per firmare il messaggio + L'indirizzo Raven da utilizzare per firmare il messaggio + + Choose previously used address Scegli un indirizzo usato precedentemente + + Alt+A Alt+A + Paste address from clipboard - Incolla l'indirizzo dagli appunti + Incolla l'indirizzo dagli appunti + Alt+P Alt+P + Enter the message you want to sign here Inserisci qui il messaggio che vuoi firmare + Signature Firma + Copy the current signature to the system clipboard Copia la firma corrente nella clipboard + Sign the message to prove you own this Raven address Firma un messaggio per dimostrare di possedere questo indirizzo Raven + Sign &Message Firma &Messaggio + Reset all sign message fields Reimposta tutti i campi della firma messaggio + + Clear &All Cancella &Tutto + &Verify Message &Verifica Messaggio - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Per verificare il messaggio inserire l'indirizzo del firmatario, il messaggio e la firma nei campi sottostanti, assicurandosi di copiare esattamente anche ritorni a capo, spazi, tabulazioni, etc.. Si raccomanda di non lasciarsi fuorviare dalla firma a leggere più di quanto non sia riportato nel testo del messaggio stesso, in modo da evitare di cadere vittima di attacchi di tipo man-in-the-middle. Si ricorda che la verifica della firma dimostra soltanto che il firmatario può ricevere pagamenti con l'indirizzo corrispondente, non prova l'invio di alcuna transazione. + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Per verificare il messaggio inserire l'indirizzo del firmatario, il messaggio e la firma nei campi sottostanti, assicurandosi di copiare esattamente anche ritorni a capo, spazi, tabulazioni, etc.. Si raccomanda di non lasciarsi fuorviare dalla firma a leggere più di quanto non sia riportato nel testo del messaggio stesso, in modo da evitare di cadere vittima di attacchi di tipo man-in-the-middle. Si ricorda che la verifica della firma dimostra soltanto che il firmatario può ricevere pagamenti con l'indirizzo corrispondente, non prova l'invio di alcuna transazione. + The Raven address the message was signed with - L'indirizzo Raven con cui è stato contrassegnato il messaggio + L'indirizzo Raven con cui è stato contrassegnato il messaggio + Verify the message to ensure it was signed with the specified Raven address - Verifica il messaggio per accertare che sia stato firmato con l'indirizzo specificato + Verifica il messaggio per accertare che sia stato firmato con l'indirizzo specificato + Verify &Message Verifica &Messaggio + Reset all verify message fields Reimposta tutti i campi della verifica messaggio - Click "Sign Message" to generate signature - Clicca "Firma Messaggio" per generare una firma + + Click "Sign Message" to generate signature + Clicca "Firma Messaggio" per generare una firma + + The entered address is invalid. - L'indirizzo inserito non è valido. + L'indirizzo inserito non è valido. + + + + Please check the address and try again. - Per favore controlla l'indirizzo e prova di nuovo. + Per favore controlla l'indirizzo e prova di nuovo. + + The entered address does not refer to a key. - L'indirizzo raven inserito non è associato a nessuna chiave. + L'indirizzo raven inserito non è associato a nessuna chiave. + Wallet unlock was cancelled. Sblocco del portamonete annullato. + Private key for the entered address is not available. - La chiave privata per l'indirizzo inserito non è disponibile. + La chiave privata per l'indirizzo inserito non è disponibile. + Message signing failed. Firma messaggio fallita. + Message signed. Messaggio firmato. + The signature could not be decoded. Non è stato possibile decodificare la firma. + + Please check the signature and try again. Per favore controlla la firma e prova di nuovo. + The signature did not match the message digest. La firma non corrisponde al digest del messaggio. + Message verification failed. Verifica messaggio fallita. + Message verified. Messaggio verificato. @@ -2419,6 +5812,7 @@ Per specificare più URL separarli con una barra verticale "|". SplashScreen + [testnet] [testnet] @@ -2426,141 +5820,268 @@ Per specificare più URL separarli con una barra verticale "|". TrafficGraphWidget + KB/s KB/s TransactionDesc + + + Open for %n more block(s) + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + %1/offline %1/offline + 0/unconfirmed, %1 0/non confermati, %1 + + in memory pool + + + + + not in memory pool + + + + abandoned abbandonato + %1/unconfirmed %1/non confermato + %1 confirmations %1 conferme + + Status Stato + + , has not been successfully broadcast yet , non è ancora stata trasmessa con successo + + + + , broadcast through %n node(s) + + + + Date Data + Source Sorgente + Generated Generato + + + + + From Da + + unknown sconosciuto + + + + + To A + + own address proprio indirizzo + + + watch-only sola lettura + + label etichetta + + + + + + + Credit Credito + + + matures in %n more block(s) + + + not accepted non accettate + + + + + Debit Debito + Total debit Debito totale + Total credit Credito totale + Transaction fee Commissione transazione + Net amount Importo netto + + + + Message Messaggio + + Comment Commento + + Transaction ID ID della transazione + + + Transaction total size + + + + + + Output index + + + + + Merchant Commerciante + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + Debug information Informazione di debug + Transaction Transazione + Inputs Input + Amount Importo + + true vero + + false falso @@ -2568,240 +6089,424 @@ Per specificare più URL separarli con una barra verticale "|". TransactionDescDialog + This pane shows a detailed description of the transaction Questo pannello mostra una descrizione dettagliata della transazione - + + + Details for %1 + + + TransactionTableModel + Date Data + Type Tipo + Label Etichetta + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + Offline Offline + Unconfirmed Non confermata + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + Confirmed (%1 confirmations) Confermata (%1 conferme) + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + This block was not received by any other nodes and will probably not be accepted! Questo blocco non è stato ricevuto da alcun altro nodo e probabilmente non sarà accettato! + Generated but not accepted Generati, ma non accettati + Received with Ricevuto tramite + + Received from + + + + Sent to Inviato a + Payment to yourself Pagamento a te stesso + Mined Ottenuto dal mining + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only sola lettura + (n/a) (n/d) + (no label) (nessuna etichetta) + Transaction status. Hover over this field to show number of confirmations. Stato della transazione. Passare con il mouse su questo campo per visualizzare il numero di conferme. + Date and time that the transaction was received. Data e ora in cui la transazione è stata ricevuta. + Type of transaction. Tipo di transazione. + Whether or not a watch-only address is involved in this transaction. Indica se un indirizzo di sola lettura sia o meno coinvolto in questa transazione. + User-defined intent/purpose of the transaction. - Intento/scopo della transazione definito dall'utente. + Intento/scopo della transazione definito dall'utente. + Amount removed from or added to balance. Importo rimosso o aggiunto al saldo. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Tutti + Today Oggi + This week Questa settimana + This month Questo mese + Last month Il mese scorso + This year - Quest'anno + Quest'anno + Range... Intervallo... + Received with Ricevuto tramite + Sent to Inviato a + To yourself A te stesso + Mined Ottenuto dal mining + Other Altro + Enter address or label to search - Inserisci un indirizzo o un'etichetta da cercare + Inserisci un indirizzo o un'etichetta da cercare + Min amount Importo minimo + + Asset name + + + + + Abandon transaction + + + + Copy address Copia indirizzo + Copy label Copia etichetta + Copy amount - Copia l'importo + Copia l'importo + Copy transaction ID - Copia l'ID transazione + Copia l'ID transazione + Copy raw transaction Copia la transazione raw + + Copy full transaction details + + + + Edit label - Modifica l'etichetta + Modifica l'etichetta + Show transaction details Mostra i dettagli della transazione + + Browse with: + + + + Export Transaction History Esporta lo storico delle transazioni + Comma separated file (*.csv) Testo CSV (*.csv) + Confirmed Confermato + Watch-only Sola lettura + Date Data + Type Tipo + Label Etichetta + Address Indirizzo + + Asset + + + + ID ID + Exporting Failed Esportazione Fallita + There was an error trying to save the transaction history to %1. Si è verificato un errore durante il salvataggio dello storico delle transazioni in %1. + Exporting Successful Esportazione Riuscita + The transaction history was successfully saved to %1. - Lo storico delle transazioni e' stato salvato con successo in %1. + Lo storico delle transazioni e' stato salvato con successo in %1. + + + + Asset Issued + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Intervallo: + to a @@ -2809,13 +6514,15 @@ Per specificare più URL separarli con una barra verticale "|". UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. - Unità con cui visualizzare gli importi. Clicca per selezionare un'altra unità. + Unità con cui visualizzare gli importi. Clicca per selezionare un'altra unità. WalletFrame + No wallet has been loaded. Non è stato caricato alcun portamonete. @@ -2823,848 +6530,1763 @@ Per specificare più URL separarli con una barra verticale "|". WalletModel + Send Coins Invia Raven + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Esporta + Export the data in the current tab to a file Esporta su file i dati contenuti nella tabella corrente + Backup Wallet Backup Portamonete + Wallet Data (*.dat) Dati Portamonete (*.dat) + Backup Failed Backup Fallito + There was an error trying to save the wallet data to %1. Si è verificato un errore durante il salvataggio dei dati del portamonete in %1. + Backup Successful Backup eseguito con successo + The wallet data was successfully saved to %1. Il portamonete è stato correttamente salvato in %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opzioni: + Specify data directory Specifica la cartella dati + Connect to a node to retrieve peer addresses, and disconnect Connessione ad un nodo e successiva disconnessione per recuperare gli indirizzi dei peer + Specify your own public address Specifica il tuo indirizzo pubblico + Accept command line and JSON-RPC commands Accetta comandi da riga di comando e JSON-RPC + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. Se <category> non è specificato oppure se <category> = 1, mostra tutte le informazioni di debug. + Prune configured below the minimum of %d MiB. Please use a higher number. La modalità prune è configurata al di sotto del minimo di %d MB. Si prega di utilizzare un valore più elevato. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - Prune: l'ultima sincronizzazione del wallet risulta essere oltre la riduzione dei dati. È necessario eseguire un -reindex (scaricare nuovamente la blockchain in caso di nodo pruned) + Prune: l'ultima sincronizzazione del wallet risulta essere oltre la riduzione dei dati. È necessario eseguire un -reindex (scaricare nuovamente la blockchain in caso di nodo pruned) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Non è possibile un Rescan in modalità pruned. Sarà necessario utilizzare -reindex che farà scaricare nuovamente tutta la blockchain. + Error: A fatal internal error occurred, see debug.log for details Errore: si è presentato un errore interno fatale, consulta il file debug.log per maggiori dettagli + Fee (in %s/kB) to add to transactions you send (default: %s) Commissione (in %s/kB) da aggiungere alle transazioni inviate (default: %s) + Pruning blockstore... Pruning del blockstore... + Run in the background as a daemon and accept commands Esegui in background come demone ed accetta i comandi + Unable to start HTTP server. See debug log for details. Impossibile avviare il server HTTP. Dettagli nel log di debug. + Raven Core Raven Core + The %s developers Sviluppatori di %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Un importo (in %s/kB) che sarà utilizzato quando la stima delle commissioni non ha abbastanza dati (default: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Accetta le transazioni trasmesse ricevute da peers in whitelist anche se non si stanno trasmettendo transazioni (default: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Associa all'indirizzo indicato e resta permanentemente in ascolto su di esso. Usa la notazione [host]:porta per l'IPv6 + Associa all'indirizzo indicato e resta permanentemente in ascolto su di esso. Usa la notazione [host]:porta per l'IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. Non è possibile ottenere i dati sulla cartella %s. Probabilmente %s è già in esecuzione. - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Elimina tutte le transazioni dal portamonete e recupera solo quelle che fanno parte della blockchain attraverso il comando -rescan all'avvio. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Error loading %s: You can't enable HD on a already existing non-HD wallet - Errore caricamento %s: Non puoi abilitare HD in un portafoglio non-HD già esistente + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Elimina tutte le transazioni dal portamonete e recupera solo quelle che fanno parte della blockchain attraverso il comando -rescan all'avvio. + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Errore lettura %s! Tutte le chiavi sono state lette correttamente, ma i dati delle transazioni o della rubrica potrebbero essere mancanti o non corretti. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Esegue un comando quando lo stato di una transazione del portamonete cambia (%s in cmd è sostituito da TxID) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) - Regolazione della massima differenza media di tempo dei peer consentita. L'impostazione dell'orario locale può essere impostata in avanti o indietro di questa quantità. (default %u secondi) + Regolazione della massima differenza media di tempo dei peer consentita. L'impostazione dell'orario locale può essere impostata in avanti o indietro di questa quantità. (default %u secondi) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Totale massimo di commissioni (in %s) da usare in una transazione singola o di gruppo del wallet; valori troppo bassi possono abortire grandi transazioni (default: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. - Per favore controllate che la data del computer e l'ora siano corrette! Se il vostro orologio è sbagliato %s non funzionerà correttamente. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + Per favore controllate che la data del computer e l'ora siano corrette! Se il vostro orologio è sbagliato %s non funzionerà correttamente. + Please contribute if you find %s useful. Visit %s for further information about the software. Per favore contribuite se ritenete %s utile. Visitate %s per maggiori informazioni riguardo il software. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Imposta il numero di thread per la verifica degli script (da %u a %d, 0 = automatico, <0 = lascia questo numero di core liberi, predefinito: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - Il database dei blocchi contiene un blocco che sembra provenire dal futuro. Questo può essere dovuto alla data e ora del tuo computer impostate in modo scorretto. Ricostruisci il database dei blocchi se sei certo che la data e l'ora sul tuo computer siano corrette + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + Il database dei blocchi contiene un blocco che sembra provenire dal futuro. Questo può essere dovuto alla data e ora del tuo computer impostate in modo scorretto. Ricostruisci il database dei blocchi se sei certo che la data e l'ora sul tuo computer siano corrette + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Impossibile riportare il database ad un livello pre-fork. Dovrai riscaricare tutta la blockchain + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Utilizza UPnP per mappare la porta in ascolto (default: 1 quando in ascolto e -proxy non è specificato) - You need to rebuild the database using -reindex-chainstate to change -txindex - È necessario ricostruire il database usando -reindex per cambiare -txindex + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrotto, recupero fallito + -maxmempool must be at least %d MB -maxmempool deve essere almeno %d MB + <category> can be: Valori possibili per <category>: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string - Aggiungi commento alla stringa dell'applicazione utente + Aggiungi commento alla stringa dell'applicazione utente + Attempt to recover private keys from a corrupt wallet on startup - Prova a recuperare le chiavi private da un portafoglio corrotto all'avvio + Prova a recuperare le chiavi private da un portafoglio corrotto all'avvio + Block creation options: Opzioni creazione blocco: - Cannot resolve -%s address: '%s' - Impossobile risolvere l'indirizzo -%s: '%s' + + Cannot resolve -%s address: '%s' + Impossobile risolvere l'indirizzo -%s: '%s' + + + + Chain selection options: + + Change index out of range Cambio indice fuori paramentro + Connection options: Opzioni di connessione: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Rilevato database blocchi corrotto + Debugging/Testing options: Opzioni di Debug/Test: + Do not load the wallet and disable wallet RPC calls Disabilita il portamonete e le relative chiamate RPC + Do you want to rebuild the block database now? Vuoi ricostruire ora il database dei blocchi? + Enable publish hash block in <address> Abilita pubblicazione hash blocco in <address> + Enable publish hash transaction in <address> Abilità pubblicazione hash transazione in <address> + Enable publish raw block in <address> Abilita pubblicazione blocchi raw in <address> + Enable publish raw transaction in <address> Abilita pubblicazione transazione raw in <address> + Enable transaction replacement in the memory pool (default: %u) Abilita la sostituzione della transazione nel pool della memoria (default: %u) + Error initializing block database - Errore durante l'inizializzazione del database dei blocchi + Errore durante l'inizializzazione del database dei blocchi + Error initializing wallet database environment %s! - Errore durante l'inizializzazione dell'ambiente del database del portamonete %s! + Errore durante l'inizializzazione dell'ambiente del database del portamonete %s! + Error loading %s Errore caricamento %s + Error loading %s: Wallet corrupted Errore caricamento %s: Portafoglio corrotto + Error loading %s: Wallet requires newer version of %s Errore caricamento %s: il Portafoglio richiede una versione aggiornata di %s - Error loading %s: You can't disable HD on a already existing HD wallet - Errore caricamento %s: Non puoi disabilitare HD in un portafoglio HD già esistente - - + Error loading block database Errore durante il caricamento del database blocchi + Error opening block database - Errore durante l'apertura del database blocchi + Errore durante l'apertura del database blocchi + Error: Disk space is low! Errore: la spazio libero sul disco è insufficiente! + Failed to listen on any port. Use -listen=0 if you want this. - Nessuna porta disponibile per l'ascolto. Usa -listen=0 se vuoi procedere comunque. + Nessuna porta disponibile per l'ascolto. Usa -listen=0 se vuoi procedere comunque. + Importing... Importazione... + Incorrect or no genesis block found. Wrong datadir for network? - Blocco genesi non corretto o non trovato. È possibile che la cartella dati appartenga ad un'altra rete. + Blocco genesi non corretto o non trovato. È possibile che la cartella dati appartenga ad un'altra rete. + Initialization sanity check failed. %s is shutting down. Test di integrità iniziale fallito. %s si arresterà. - Invalid -onion address: '%s' - Indirizzo -onion non valido: '%s' + + Invalid amount for -%s=<amount>: '%s' + Importo non valido per -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Importo non valido per -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Importo non valido per -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Importo non valido per -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Mantieni la memory pool delle transazioni al di sotto di <n> megabytes (default: %u) + + Loading P2P addresses... + + + + Loading banlist... Caricamento bloccati... + Location of the auth cookie (default: data dir) Posizione del cookie di aiutorizzazione (default: data dir) + Not enough file descriptors available. Non ci sono abbastanza descrittori di file disponibili. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Connessione ai soli nodi appartenenti alla rete <net> (ipv4, ipv6 o Tor) + Print this help message and exit Mostra questo messaggio di aiuto ed esci + Print version and exit Mostra la versione ed esci + Prune cannot be configured with a negative value. La modalità prune non può essere configurata con un valore negativo. + Prune mode is incompatible with -txindex. - La modalità prune è incompatibile con l'opzione -txindex. + La modalità prune è incompatibile con l'opzione -txindex. + Rebuild chain state and block index from the blk*.dat files on disk - Ricostruisci lo stato della catena e l'indice dei blocchi partendo dai file blk*.dat presenti sul disco + Ricostruisci lo stato della catena e l'indice dei blocchi partendo dai file blk*.dat presenti sul disco + Rebuild chain state from the currently indexed blocks - Ricrea l'indice della catena dei blocchi partendo da quelli già indicizzati + Ricrea l'indice della catena dei blocchi partendo da quelli già indicizzati + + Replaying blocks... + + + + Rewinding blocks... Verifica blocchi... + Set database cache size in megabytes (%d to %d, default: %d) Imposta la dimensione della cache del database in megabyte (%d a %d, predefinito: %d) - Set maximum block size in bytes (default: %d) - Imposta la dimensione massima del blocco in byte (predefinito: %d) - - + Specify wallet file (within data directory) - Specifica il file del portamonete (all'interno della cartella dati) + Specifica il file del portamonete (all'interno della cartella dati) + The source code is available from %s. Il codice sorgente è disponibile in %s + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Impossibile collegarsi a %s su questo computer. Probabilmente %s è già in esecuzione. + Unsupported argument -benchmark ignored, use -debug=bench. Ignorata opzione -benchmark non supportata, utilizzare -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argomento -debugnet ignorato in quanto non supportato, usare -debug=net. + Unsupported argument -tor found, use -onion. Rilevato argomento -tor non supportato, utilizzare -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Usa UPnP per mappare la porta di ascolto (predefinito: %u) + + Use the test chain + + + + User Agent comment (%s) contains unsafe characters. Il commento del User Agent (%s) contiene caratteri non sicuri. + Verifying blocks... Verifica blocchi... - Verifying wallet... - Verifica portamonete... - - + Wallet %s resides outside data directory %s Il portamonete %s si trova al di fuori dalla cartella dati %s + Wallet debugging/testing options: Opzioni di Debug/Test del portafoglio: + Wallet needed to be rewritten: restart %s to complete Il portamonete necessita di essere riscritto: riavviare %s per completare + Wallet options: Opzioni portamonete: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Permette connessioni JSON-RPC dall'origine specificata. I valori validi per <ip> sono un singolo IP (ad es. 1.2.3.4), una network/netmask (ad es. 1.2.3.4/255.255.255.0) oppure una network/CIDR (ad es. 1.2.3.4/24). Questa opzione può essere specificata più volte. + Permette connessioni JSON-RPC dall'origine specificata. I valori validi per <ip> sono un singolo IP (ad es. 1.2.3.4), una network/netmask (ad es. 1.2.3.4/255.255.255.0) oppure una network/CIDR (ad es. 1.2.3.4/24). Questa opzione può essere specificata più volte. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Resta in ascolto sull'indirizzo indicato ed inserisce in whitelist i peer che vi si collegano. Usa la notazione [host]:porta per l'IPv6 - - - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Resta in attesa di connessioni JSON-RPC sull'indirizzo indicato. Usa la notazione [host]:porta per IPv6. Questa opzione può essere specificata più volte (predefinito: associa a tutte le interfacce) + Resta in ascolto sull'indirizzo indicato ed inserisce in whitelist i peer che vi si collegano. Usa la notazione [host]:porta per l'IPv6 + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Crea nuovi file con i permessi di default del sistema, invece che con umask 077 (ha effetto solo con funzionalità di portamonete disabilitate) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Scopre i propri indirizzi IP (predefinito: 1 se in ascolto ed -externalip o -proxy non sono specificati) + Error: Listening for incoming connections failed (listen returned error %s) Errore: attesa per connessioni in arrivo fallita (errore riportato %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Esegue un comando in caso di ricezione di un allarme pertinente o se si rileva un fork molto lungo (%s in cmd è sostituito dal messaggio) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Le commissioni (in %s/kB) inferiori a questo valore sono considerate pari a zero per trasmissione, mining e creazione della transazione (default: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Nel caso in cui paytxfee non sia impostato, include una commissione tale da ottenere un avvio delle conferme entro una media di n blocchi (predefinito: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Importo non valido per -maxtxfee=<amount>: '%s' (deve essere almeno pari alla commissione 'minrelay fee' di %s per prevenire transazioni bloccate) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Importo non valido per -maxtxfee=<amount>: '%s' (deve essere almeno pari alla commissione 'minrelay fee' di %s per prevenire transazioni bloccate) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Dimensione massima dei dati in transazioni di trasporto dati che saranno trasmesse ed incluse nei blocchi (predefinito: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Randomizza le credenziali per ogni connessione proxy. Permette la Tor stream isolation (predefinito: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Imposta la dimensione massima in byte delle transazioni ad alta-priorità/basse-commissioni (predefinito: %d) - - + The transaction amount is too small to send after the fee has been deducted - L'importo della transazione risulta troppo basso per l'invio una volta dedotte le commissioni. - - - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Usa la generazione gerarchica deterministica (HD) della chiave dopo BIP32. Valido solamente durante la creazione del portafoglio o al primo avvio + L'importo della transazione risulta troppo basso per l'invio una volta dedotte le commissioni. + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway I peer inclusi in whitelist non possono subire ban per DoS e le loro transazioni saranno sempre trasmesse, anche nel caso in cui si trovino già nel mempool. Ciò è utile ad es. per i gateway + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - Per ritornare alla modalità unpruned sarà necessario ricostruire il database utilizzando l'opzione -reindex. L'intera blockchain sarà riscaricata. + Per ritornare alla modalità unpruned sarà necessario ricostruire il database utilizzando l'opzione -reindex. L'intera blockchain sarà riscaricata. + (default: %u) (default: %u) + Accept public REST requests (default: %u) Accetta richieste REST pubbliche (predefinito: %u) + Automatically create Tor hidden service (default: %d) Crea automaticamente il servizio Tor (default: %d) + Connect through SOCKS5 proxy Connessione attraverso un proxy SOCKS5 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Errore durante lalettura del database. Arresto in corso. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup - Importa blocchi da un file blk000??.dat esterno all'avvio + Importa blocchi da un file blk000??.dat esterno all'avvio + Information Informazioni - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Importo non valido per -paytxfee=<amount>: '%s' (deve essere almeno %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Importo non valido per -paytxfee=<amount>: '%s' (deve essere almeno %s) - Invalid netmask specified in -whitelist: '%s' - Netmask non valida specificata in -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' + Netmask non valida specificata in -whitelist: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) Mantiene in memoria al massimo <n> transazioni non collegabili (predefinito: %u) - Need to specify a port with -whitebind: '%s' - È necessario specificare una porta con -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + È necessario specificare una porta con -whitebind: '%s' + Node relay options: Opzioni trasmissione nodo: + RPC server options: Opzioni server RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Riduzione -maxconnections da %d a %d a causa di limitazioni di sistema. + Rescan the block chain for missing wallet transactions on startup - Ripete la scansione della block chain per individuare le transazioni che mancano dal wallet all'avvio + Ripete la scansione della block chain per individuare le transazioni che mancano dal wallet all'avvio + Send trace/debug info to console instead of debug.log file Invia le informazioni di trace/debug alla console invece che al file debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Invia transazioni a zero commissioni se possibile (predefinito: %u) - - + Show all debugging options (usage: --help -help-debug) Mostra tutte le opzioni di debug (utilizzo: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) - Riduce il file debug.log all'avvio del client (predefinito: 1 se -debug non è impostato) + Riduce il file debug.log all'avvio del client (predefinito: 1 se -debug non è impostato) + Signing transaction failed Firma transazione fallita + The transaction amount is too small to pay the fee - L'importo della transazione è troppo basso per pagare la commissione + L'importo della transazione è troppo basso per pagare la commissione + This is experimental software. Questo è un software sperimentale. + Tor control port password (default: empty) Password porta controllo Tor (default: empty) + Tor control port to use if onion listening enabled (default: %s) Porta di controllo Tor da usare se in ascolto su onion (default: %s) + Transaction amount too small Importo transazione troppo piccolo + Transaction too large for fee policy Transazione troppo grande in base alla policy sulle commissioni + Transaction too large Transazione troppo grande + Unable to bind to %s on this computer (bind returned error %s) - Impossibile associarsi a %s su questo computer (l'associazione ha restituito l'errore %s) + Impossibile associarsi a %s su questo computer (l'associazione ha restituito l'errore %s) + Upgrade wallet to latest format on startup - Aggiorna il wallet all'ultimo formato all'avvio + Aggiorna il wallet all'ultimo formato all'avvio + Username for JSON-RPC connections Nome utente per connessioni JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Attenzione + Warning: unknown new rules activated (versionbit %i) Attenzione: nuove regole non conosciute attivate (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Imposta se operare in modalità solo blocchi (default: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Eliminazione dal portamonete di tutte le transazioni... + ZeroMQ notification options: Opzioni di notifica ZeroMQ + Password for JSON-RPC connections Password per connessioni JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) - Esegue un comando quando il miglior blocco cambia (%s nel cmd è sostituito dall'hash del blocco) + Esegue un comando quando il miglior blocco cambia (%s nel cmd è sostituito dall'hash del blocco) + Allow DNS lookups for -addnode, -seednode and -connect Consente interrogazioni DNS per -addnode, -seednode e -connect - Loading addresses... - Caricamento indirizzi... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = mantiene metadati tx, ad es. proprietario account ed informazioni di richiesta di pagamento, 2 = scarta metadati tx) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee è impostato molto alto! Commissioni così alte possono venir pagate anche su una singola transazione. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Non mantenere le transazioni nella mempool più a lungo di <n> ore (default: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Byte equivalenti per ottimizzazione segnale dedicati a ritrasmissione ed estrazione (default: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Le commissioni (in %s/kB) inferiori a questo valore sono considerate pari a zero per la creazione della transazione (default: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) Determina quanto sarà approfondita la verifica da parte di -checkblocks (0-4, predefinito: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Mantiene l'indice completo delle transazioni usato dalla chiamata rpc getrawtransaction (predefinito: %u) + Mantiene l'indice completo delle transazioni usato dalla chiamata rpc getrawtransaction (predefinito: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Numero di secondi di sospensione prima della riconnessione per i peer che mostrano un comportamento anomalo (predefinito: %u) + Output debugging information (default: %u, supplying <category> is optional) Emette informazioni di debug (predefinito: %u, fornire <category> è opzionale) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Supporta filtraggio di blocchi e transazioni con filtri bloom (default: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. La lunghezza totale della stringa di network version (%i) eccede la lunghezza massima (%i). Ridurre il numero o la dimensione di uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Cerca di mantenere il traffico in uscita al di sotto della soglia scelta (in MiB ogni 24h), 0 = nessun limite (default: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Argomento -socks non supportato. Non è più possibile impostare la versione SOCKS, solamente i proxy SOCKS5 sono supportati. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argomento non supportato -whitelistalwaysrelay è stato ignorato, utilizzare -whitelistrelay e/o -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Usa un proxy SOCKS5 a parte per raggiungere i peer attraverso gli hidden services di Tor (predefinito: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect - Attenzione: si stanno minando versioni sconocsiute di blocchi! E' possibile che siano attive regole sconosciute + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + Attenzione: si stanno minando versioni sconocsiute di blocchi! E' possibile che siano attive regole sconosciute + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Attenzione: file del Portafoglio corrotto, dati recuperati! %s originale salvato come %s in %s; se il saldo o le transazioni non sono corrette effettua un ripristino da un backup. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (predefinito: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Interroga sempre i DNS per ottenere gli indirizzi dei peer (predefinito: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) - Numero di blocchi da controllare all'avvio (predefinito: %u, 0 = tutti) + Numero di blocchi da controllare all'avvio (predefinito: %u, 0 = tutti) + Include IP addresses in debug output (default: %u) - Include gli indirizzi IP nell'output del debug (predefinito: %u) + Include gli indirizzi IP nell'output del debug (predefinito: %u) + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Indirizzo -proxy non valido: '%s' + + Invalid parameter: reissuable must be 0 + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Resta in attesa di connessioni JSON-RPC su <port> (predefinito: %u o testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Resta in attesa di connessioni su <port> (predefinito: %u o testnet: %u) + Maintain at most <n> connections to peers (default: %u) Mantiene al massimo <n> connessioni verso i peer (predefinito: %u) + Make the wallet broadcast transactions Configura il portamonete per la trasmissione di transazioni + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Buffer di ricezione massimo per connessione, <n>*1000 byte (predefinito: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Buffer di invio massimo per connessione, <n>*1000 byte (predefinito: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) - Antepone un timestamp all'output del debug (predefinito: %u) + Antepone un timestamp all'output del debug (predefinito: %u) + Relay and mine data carrier transactions (default: %u) Trasmette ed include nei blocchi transazioni di trasporto dati (predefinito: %u) + Relay non-P2SH multisig (default: %u) Trasmette transazioni non-P2SH multisig (predefinito: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Imposta la dimensione del pool di chiavi a <n> (predefinito: %u) + Set maximum BIP141 block weight (default: %d) Imposta la dimensione massima del blocco BIP141 (default: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Imposta il numero di thread destinati a rispondere alle chiamate RPC (predefinito %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Specifica il file di configurazione (predefinito: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Specifica il timeout di connessione in millisecondi (minimo:1, predefinito: %d) + Specify pid file (default: %s) Specifica il file pid (predefinito: %s) + Spend unconfirmed change when sending transactions (default: %u) Abilita la spesa di resto non confermato quando si inviano transazioni (predefinito: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Soglia di disconnessione per i peer che si comportano in maniera anomala (predefinito: %u) - Unknown network specified in -onlynet: '%s' - Rete sconosciuta specificata in -onlynet: '%s' + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Rete sconosciuta specificata in -onlynet: '%s' + + + Insufficient funds Fondi insufficienti + Loading block index... - Caricamento dell'indice dei blocchi... - - - Add a node to connect to and attempt to keep the connection open - Aggiunge un nodo a cui connettersi e tenta di mantenere aperta la connessione + Caricamento dell'indice dei blocchi... + Loading wallet... Caricamento portamonete... + Cannot downgrade wallet Non è possibile effettuare il downgrade del portamonete - Cannot write default address - Non è possibile scrivere l'indirizzo predefinito - - + Rescanning... Ripetizione scansione... - Done loading - Caricamento completato - - + Error Errore diff --git a/src/qt/locale/raven_it_IT.ts b/src/qt/locale/raven_it_IT.ts index fa39bdc2de..5fc69166ef 100644 --- a/src/qt/locale/raven_it_IT.ts +++ b/src/qt/locale/raven_it_IT.ts @@ -1,209 +1,8288 @@ - - - + AddressBookPage + Right-click to edit address or label Click destro per modificare indirizzo o etichetta + Create a new address Crea un nuovo indirizzo + &New nuovo + Copy the currently selected address to the system clipboard - copia l'indirizzo selezionato correntemente nella clipboard di sistema + copia l'indirizzo selezionato correntemente nella clipboard di sistema + &Copy copia + C&lose chiudi + Delete the currently selected address from the list - Cancella l'indirizzo attualmente selezionato dalla lista. + Cancella l'indirizzo attualmente selezionato dalla lista. + Export the data in the current tab to a file Esportare i dati nella scheda corrente in un file + &Export Esporta + &Delete Cancella + Choose the address to send coins to - Scegli l'indirizzo a cui inviare denaro + Scegli l'indirizzo a cui inviare denaro + + Choose the address to receive coins with + + + + C&hoose Scegli - + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address Indirizzo - + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Invia passphrase + New passphrase Nuova passphrase + Repeat new passphrase Ripeti nuova passphrase + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + Warning: The Caps Lock key is on! Attenzione: Il tasto blocco delle maiuscole è attivo! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmask + + Asset Selection + - Banned Until - bannato fino + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + - RavenGUI + AssetTableModel - &Transactions - Transazioni + + Name + - - - CoinControlDialog - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Address - Indirizzo + + Quantity + - - - RecentRequestsTableModel - - - SendCoinsDialog - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - + - TransactionView + AssetsDialog - Address - Indirizzo + + + Send Coins + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + bannato fino + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + Transazioni + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Indirizzo + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + Indirizzo + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_ja.ts b/src/qt/locale/raven_ja.ts index 47d7f56b23..ec1a0dfd28 100644 --- a/src/qt/locale/raven_ja.ts +++ b/src/qt/locale/raven_ja.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label 右クリックでアドレスまたはラベルを編集します + Create a new address 新規アドレスの作成 + &New 新規(&N) + Copy the currently selected address to the system clipboard 現在選択されているアドレスをシステムのクリップボードにコピーする + &Copy コピー(&C) + C&lose 閉じる(&C) + Delete the currently selected address from the list 選択されたアドレスを一覧から削除する + Export the data in the current tab to a file ファイルに現在のタブのデータをエクスポート + &Export エクスポート (&E) + &Delete 削除(&D) + Choose the address to send coins to 先のアドレスを選択 + Choose the address to receive coins with 支払いを受け取るアドレスを指定する + C&hoose 選択 (&C) + Sending addresses 送金用 + Receiving addresses 受け取りアドレス + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. これらは支払いを送信するためのあなたの Raven アドレスです。コインを送信する前に、常に額と受信アドレスを確認してください。 + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. これらは支払いを受け取るためのビットコインアドレスです。トランザクションごとに新しい受け取り用アドレスを作成することが推奨されます。 + &Copy Address アドレスをコピー (&C) + Copy &Label ラベルをコピー (&L) + &Edit 編集 (&E) + Export Address List アドレス帳をエクスポート + Comma separated file (*.csv) テキスト CSV (*.csv) + Exporting Failed エクスポートに失敗しました + There was an error trying to save the address list to %1. Please try again. トランザクション履歴を %1 へ保存する際にエラーが発生しました。再試行してください。 @@ -103,14 +125,17 @@ AddressTableModel + Label ラベル + Address アドレス + (no label) (ラベル無し) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog パスフレーズ ダイアログ + Enter passphrase パスフレーズを入力 + New passphrase 新しいパスフレーズ + Repeat new passphrase 新しいパスフレーズをもう一度 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. ウォレットの新しいパスフレーズを入力してください。<br/><b>10文字以上のランダムな文字</b>で構成されたものか、<b>8単語以上の単語</b>で構成されたパスフレーズを使用してください。 + Encrypt wallet ウォレットを暗号化する + This operation needs your wallet passphrase to unlock the wallet. この操作はウォレットをアンロックするためにパスフレーズが必要です。 + Unlock wallet ウォレットをアンロックする + This operation needs your wallet passphrase to decrypt the wallet. この操作はウォレットの暗号化解除のためにパスフレーズが必要です。 + Decrypt wallet ウォレットの暗号化を解除する + Change passphrase パスフレーズの変更 + Enter the old passphrase and new passphrase to the wallet. ウォレットの古いパスフレーズおよび新しいパスフレーズを入力してください。 + Confirm wallet encryption ウォレットの暗号化を確認する + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! 警告: もしもあなたのウォレットを暗号化してパスフレーズを失ってしまったなら、<b>あなたの Raven はすべて失われます</b>! + Are you sure you wish to encrypt your wallet? 本当にウォレットを暗号化しますか? + + Wallet encrypted ウォレットは暗号化されました + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. 暗号化処理を完了させるため %1 をいますぐ終了します。ウォレットの暗号化では、コンピュータに感染したマルウェアなどによるビットコインの盗難から完全に守ることはできないことにご注意ください。 + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 過去のウォレット ファイルのバックアップは、暗号化された新しいウォレット ファイルに取り替える必要があります。セキュリティ上の理由により、暗号化された新しいウォレットを使い始めると、暗号化されていないウォレット ファイルのバックアップはすぐに使えなくなります。 + + + + Wallet encryption failed ウォレットの暗号化に失敗しました + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 内部エラーによりウォレットの暗号化が失敗しました。ウォレットは暗号化されませんでした。 + + The supplied passphrases do not match. パスフレーズが同じではありません。 + Wallet unlock failed ウォレットのアンロックに失敗しました + + + The passphrase entered for the wallet decryption was incorrect. ウォレットの暗号化解除のパスフレーズが正しくありません。 + Wallet decryption failed ウォレットの暗号化解除に失敗しました + Wallet passphrase was successfully changed. ウォレットのパスフレーズの変更が成功しました。 + + Warning: The Caps Lock key is on! 警告: Caps Lock キーがオンになっています! - BanTableModel + AssetControlDialog - IP/Netmask - IPアドレス/ネットマスク + + Asset Selection + - Banned Until - 以下の時間までbanする: + + Quantity: + - - - RavenGUI - Sign &message... - メッセージの署名... (&m) + + Bytes: + - Synchronizing with network... - ネットワークに同期中…… + + Amount: + - &Overview - 概要(&O) + + Dust: + - Node - ノード + + Fee: + - Show general overview of wallet - ウォレットの概要を見る + + After Fee: + - &Transactions - 取引(&T) + + Change: + - Browse transaction history - 取引履歴を閲覧 + + (un)select all + - E&xit - 終了(&E) + + Tree mode + - Quit application - アプリケーションを終了 + + List mode + - &About %1 - %1 について (&A) + + View assets that you have the ownership asset for + - Show information about %1 - %1 の情報を表示 + + View Administrator Assets + - About &Qt - Qt について(&Q) + + Asset + - Show information about Qt - Qt の情報を表示 + + Amount + - &Options... - オプション... (&O) + + Received with label + - Modify configuration options for %1 - %1 の設定を変更する + + Received with address + - &Encrypt Wallet... - ウォレットの暗号化... (&E) + + Date + - &Backup Wallet... - ウォレットのバックアップ... (&B) + + Confirmations + - &Change Passphrase... - パスフレーズの変更... (&C) + + Confirmed + - &Sending addresses... - 送金先アドレス一覧 (&S)... + + Copy address + - &Receiving addresses... - 受け取り用アドレス一覧 (&R)... + + Copy label + - Open &URI... - URI を開く (&U)... + + + Copy amount + - Click to disable network activity. - クリックするとネットワーク活動を無効化します。 + + Copy transaction ID + - Network activity disabled. - ネットワーク活動は無効化されました。 + + Lock unspent + - Click to enable network activity again. - クリックするとネットワーク活動を再び有効化します。 + + Unlock unspent + - Syncing Headers (%1%)... - 未知。ヘッダを同期しています (%1%)... + + Copy quantity + - Reindexing blocks on disk... - ディスク上のブロックのインデックスを再作成中... + + Copy fee + - Send coins to a Raven address - Raven アドレスにコインを送る + + Copy after fee + - Backup wallet to another location - ウォレットを他の場所にバックアップ + + Copy bytes + - Change the passphrase used for wallet encryption - ウォレット暗号化用パスフレーズの変更 + + Copy dust + - &Debug window - デバッグ ウインドウ (&D) + + Copy change + - Open debugging and diagnostic console - デバッグと診断コンソールを開く + + (%1 locked) + - &Verify message... - メッセージの検証... (&V) + + yes + - Raven - Raven + + no + - Wallet - ウォレット + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - 送金 (&S) + + Can vary +/- %1 satoshi(s) per input. + - &Receive - 入金 (&R) + + + (no label) + - &Show / Hide - 見る/隠す (&S) + + change from %1 (%2) + - Show or hide the main Window - メイン ウインドウを表示または非表示 + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - あなたのウォレットの秘密鍵を暗号化します + + Name + - Sign messages with your Raven addresses to prove you own them - あなたが所有していることを証明するために、あなたの Raven アドレスでメッセージに署名してください + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - 指定された Raven アドレスで署名されたことを確認するためにメッセージを検証します + + + Send Coins + - &File - ファイル(&F) + + Asset Control Features + - &Settings - 設定(&S) + + Inputs... + - &Help - ヘルプ(&H) + + automatically selected + - Tabs toolbar - タブツールバー + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - 支払いを要求する (QRコードとraven:ではじまるURIを生成する) + + Quantity: + - Show the list of used sending addresses and labels - 使用済みの送金用アドレスとラベルの一覧を表示する + + Bytes: + - Show the list of used receiving addresses and labels - 支払いを受け取るアドレスとラベルのリストを表示する + + Amount: + - Open a raven: URI or payment request - raven: URIまたは支払いリクエストを開く + + Dust: + - &Command-line options - コマンドラインオプション (&C) - - - %n active connection(s) to Raven network - %n の Raven ネットワークへのアクティブな接続 + + Fee: + - Indexing blocks on disk... - ディスク上のブロックのインデックスを作成しています... + + After Fee: + - Processing blocks on disk... - ディスク上のブロックを処理しています... + + Change: + - - Processed %n block(s) of transaction history. - トランザクション履歴の %n ブロックを処理しました。 + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 遅延 + + Custom change address + - Last received block was generated %1 ago. - 最後に受信されたブロックは %1 前に生成されました。 + + Transaction Fee: + - Transactions after this will not yet be visible. - この後の取引はまだ表示されません。 + + Choose... + - Error - エラー + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - 警告 + + Warning: Fee estimation is currently not possible. + - Information - 情報 + + collapse fee-settings + - Up to date - バージョンは最新です + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - 有効な Raven のコマンドライン オプションを見るために %1 のヘルプメッセージを表示します。 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1 クライアント + + per kilobyte + - Connecting to peers... - ピアに接続しています... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - 追跡中... + + (read the tooltip) + - Date: %1 - - 日付: %1 - + + Recommended: + - Amount: %1 - - 総額: %1 - + + Custom: + - Type: %1 - - タイプ: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - ラベル: %1 - + + Confirmation time target: + - Address: %1 - - アドレス: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - 送金取引 + + Request Replace-By-Fee + - Incoming transaction - 着金取引 + + Confirm the send action + - HD key generation is <b>enabled</b> - HD鍵生成は<b>有効化</b>されています + + S&end + - HD key generation is <b>disabled</b> - HD鍵生成は<b>無効化</b>されています + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - ウォレットは<b>暗号化されて、アンロックされています</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - ウォレットは<b>暗号化されて、ロックされています</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - 致命的なエラーが発生しました。Raven は安全に継続することができず終了するでしょう。 + + Add &Recipient + - - - CoinControlDialog - Coin Selection - コイン選択 + + Balance: + - Quantity: - 数量: + + Copy quantity + - Bytes: - バイト: + + Copy amount + - Amount: - 総額: + + Copy fee + - Fee: - 手数料: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IPアドレス/ネットマスク + + + + Banned Until + 以下の時間までbanする: + + + + CoinControlDialog + + + Coin Selection + コイン選択 + + + + Quantity: + 数量: + + + + Bytes: + バイト: + + + + Amount: + 総額: + + + + Fee: + 手数料: + + + Dust: ダスト: + After Fee: 手数料差引後: + Change: 釣り銭: + (un)select all すべて選択/選択解除 + Tree mode ツリーモード + List mode リストモード + Amount 総額 + Received with label ラベルに対する入金一覧 + Received with address アドレスに対する入金一覧 + Date 日付 + Confirmations 検証数 + Confirmed 検証済み + Copy address アドレスをコピーする + Copy label ラベルをコピーする + + Copy amount 総額のコピー + Copy transaction ID 取引 ID をコピー + Lock unspent 未使用トランザクションをロックする + Unlock unspent 未使用トランザクションをアンロックする + Copy quantity 数量をコピーする + Copy fee 手数料をコピーする + Copy after fee 手数料差引後の値をコピーする + Copy bytes バイト数をコピーする + Copy dust ダストをコピーする + Copy change 釣り銭をコピー + (%1 locked) (%1 がロック済み) + yes はい + no いいえ + This label turns red if any recipient receives an amount smaller than the current dust threshold. 少なくともひとつの受取額が現在のダスト閾値を下回る場合にはこのラベルは赤くなります。 + Can vary +/- %1 satoshi(s) per input. ひとつの入力につき %1 satoshi 前後ずれることがあります。 + + (no label) (ラベル無し) + change from %1 (%2) %1 (%2) からのおつり + (change) (おつり) - EditAddressDialog + CreateAssetDialog - Edit Address - アドレスの編集 + + Coin Control Features + - &Label - ラベル(&L) + + Inputs... + - The label associated with this address list entry - このアドレス帳項目に結びつけられているラベル + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - このアドレス帳項目に結びつけられているアドレス。この項目は送金用アドレスの場合のみ編集することができます。 + + Insufficient funds! + - &Address - アドレス帳 (&A) + + + Quantity: + - New receiving address - 新しい受信アドレス + + Bytes: + - New sending address - 新しい送信アドレス + + Amount: + - Edit receiving address - 入金アドレスを編集 + + Dust: + - Edit sending address - 送信アドレスを編集 + + Fee: + - The entered address "%1" is not a valid Raven address. - 入力されたアドレス "%1" は無効な Raven アドレスです。 + + After Fee: + - The entered address "%1" is already in the address book. - 入力されたアドレス "%1" は既にアドレス帳にあります。 + + Change: + - Could not unlock wallet. - ウォレットをアンロックできませんでした。 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - 新しいキーの生成に失敗しました。 + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - 新しいデータ ディレクトリが作成されます。 + + Name: + - name - name + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - ディレクトリがもうあります。 新しいのディレクトリを作るつもりなら%1を書いてください。 + + The name of the asset you would like to create + - Path already exists, and is not a directory. - パスが存在しますがディレクトリではありません。 + + Check Availabilty + - Cannot create data directory here. - ここにデータ ディレクトリを作成することはできません。 + + Address: + - - - HelpMessageDialog - version - バージョン + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1ビット) + + Verifier String: + - About %1 - %1 について + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - コマンドライン オプション + + Warning: + - Usage: - 使用法: + + The number of assets that will be created + - command-line options - コマンドライン オプション + + Units: + - UI Options: - UIオプション: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - 起動時にデータ ディレクトリを選ぶ (初期値: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - 言語設定 例: "de_DE" (初期値: システムの言語) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - 最小化された状態で起動する + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - 支払いリクエスト用にSSLルート証明書を設定する (デフォルト:-system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - 起動時にスプラッシュ画面を表示する (初期値: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - GUI で行われた設定の変更を全てリセット + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - ようこそ + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - %1 へようこそ。 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - これはプログラム最初の起動です。%1 がデータを保存する場所を選択して下さい。 + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 は、ビットコインのブロックチェーンのコピーを、ダウンロードして保存します。少なくとも %2 ギガバイトのデータが、このディレクトリに保存されます。そしてそれは時間と共に増加します。またウォレットもこのディレクトリに保存されます。 + + Choose... + - Use the default data directory - 初期値のデータ ディレクトリを使用 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - 任意のデータ ディレクトリを使用: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - エラー: 指定のデータディレクトリ "%1" を作成できません。 + + collapse fee-settings + - Error - エラー - - - %n GB of free space available - %n GBの空き容量が利用可能 + + Hide + - - (of %n GB needed) - (%n GB必要) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - フォーム + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - 確認できない最近のトランザクションがあるかもしれません。これによりウォレットの残高は不正確なものである可能性があります。この情報はウォレットが一度ビットコインネットワークへの同期が完了すると正確なものとなります。詳細は下記を参照してください。 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - まだ表示されていないトランザクションが影響するビットコインを使用しようとすると、ネットワークから認証がなされないでしょう。 + + (read the tooltip) + - Number of blocks left - 残りのブロック数 + + Recommended: + - Unknown... - 未知... + + C&ustom: + - Last block time - 最終ブロックの日時 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - 進捗 + + Confirmation time target: + - Progress increase per hour - 進捗状況は一時間ごとに増加します + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - 計算しています... + + Request Replace-By-Fee + - Estimated time left until synced - 同期完了までの推定残り時間 + + Create Asset + - Hide - 隠す + + Clear + - Unknown. Syncing Headers (%1)... - 未知。ヘッダを同期しています (%1)... + + Balance: + - - - OpenURIDialog - Open URI - URI を開く + + 123.456 RVN + - Open payment request from URI or file - URI またはファイルから支払いリクエストを開く + + Copy quantity + - URI: - URI: + + Copy amount + - Select payment request file - 支払いリクエストファイルを選択してください + + Copy fee + - Select payment request file to open - 開きたい支払いリクエストファイルを選択してください + + Copy after fee + - - - OptionsDialog - Options - 設定 + + Copy bytes + - &Main - メイン (&M) + + Copy dust + - Automatically start %1 after logging in to the system. - システムにログインした際、自動的に %1 を起動する。 + + Copy change + - &Start %1 on system login - システムにログインした時に %1 を起動 (&S) + + %1 (%2 blocks) + - Size of &database cache - データベースキャッシュのサイズ (&D) + + Main Asset + - MB - MB + + Sub Asset + - Number of script &verification threads - スクリプト検証用スレッド数 (&V) + + Unique Asset + - Accept connections from outside - 外部からの接続を許可する + + Messaging Channel Asset + - Allow incoming connections - 外部からの接続を許可する + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - プロキシのIPアドレス (例えば IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - ウィンドウを閉じる際にアプリケーションを終了するのではなく、最小化します。このオプションが有効化された場合、メニューから終了を選択した場合にのみアプリケーションは閉じられます。 + + Restricted Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - トランザクションタブのコンテキストメニュー項目に表示する、サードパーティURL (例えばブロックエクスプローラ)。URL中の%sはトランザクションのハッシュ値に置き換えられます。垂直バー | で区切ることで、複数のURLを指定できます。 + + Asset Type + - Third party transaction URLs - サードパーティのトランザクションURL + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Active command-line options that override above options: - 上のオプションを置き換えることのできる、有効なコマンドラインオプションの一覧: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Reset all client options to default. - すべてのオプションを初期値に戻します。 + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Reset Options - オプションをリセット (&R) + + + + Warning: Invalid Raven address + - &Network - ネットワーク (&N) + + Warning: Restricted Assets Reissuance requires an address + - (0 = auto, <0 = leave that many cores free) - (0 = 自動、0以上 = 指定した数のコアをフリーにする) + + Valid Asset + - W&allet - ウォレット (&A) + + Invalid: Asset name already in use + - Expert - エクスポート + + Error: Asset Database not in sync + - Enable coin &control features - コインコントロール機能を有効化する (&C) + + + %1 to %2 + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - 未検証のおつりの使用を無効化すると、トランザクションが少なくとも1検証を獲得するまではそのトランザクションのおつりは利用できなくなります。これは残高の計算方法にも影響します。 + + Are you sure you want to send? + - &Spend unconfirmed change - 未検証のおつりを使用する (&S) + + added as transaction fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - 自動的にルーター上の Raven クライアントのポートを開きます。あなたのルーターが UPnP に対応していて、それが有効になっている場合に作動します。 + + Total Amount %1 + - Map port using &UPnP - UPnP を使ってポートを割り当てる (&U) + + or + - Connect to the Raven network through a SOCKS5 proxy. - SOCKS5 プロキシ経由でRavenネットワークに接続する + + Confirm send assets + - &Connect through SOCKS5 proxy (default proxy): - SOCKS5 プロキシ経由で接続する (デフォルトプロキシ): (&C) + + Invalid: + - Proxy &IP: - プロキシの IP (&I) : + + Copy + - &Port: - ポート (&P) : + + Transaction ID Copied + - Port of the proxy (e.g. 9050) - プロキシのポート番号 (例 9050) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - ピアへ到達するために使われた方法: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - このネットワークタイプ経由で、与えられたデフォルトのSOCKS5プロキシを使用してピアに到達した場合に表示する。 + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Tor秘匿サービスを利用するため、独立なSOCKS5プロキシ経由でRavenネットワークに接続する + + Edit Address + アドレスの編集 - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Tor秘匿サービス経由でピアに到達するため、独立なSOCKS5プロキシを利用する: + + &Label + ラベル(&L) - &Window - ウインドウ (&W) + + The label associated with this address list entry + このアドレス帳項目に結びつけられているラベル - &Hide the icon from the system tray. - システムトレイのアイコンを隠す (&H) + + The address associated with this address list entry. This can only be modified for sending addresses. + このアドレス帳項目に結びつけられているアドレス。この項目は送金用アドレスの場合のみ編集することができます。 - Hide tray icon - トレイアイコンを隠す + + &Address + アドレス帳 (&A) - Show only a tray icon after minimizing the window. - ウインドウを最小化したあとトレイ アイコンだけを表示する。 + + New receiving address + 新しい受信アドレス - &Minimize to the tray instead of the taskbar - タスクバーの代わりにトレイに最小化 (&M) + + New sending address + 新しい送信アドレス - M&inimize on close - 閉じる時に最小化 (&i) + + Edit receiving address + 入金アドレスを編集 - &Display - 表示 (&D) + + Edit sending address + 送信アドレスを編集 - User Interface &language: - ユーザインターフェースの言語 (&l) : + + The entered address "%1" is not a valid Raven address. + 入力されたアドレス "%1" は無効な Raven アドレスです。 - The user interface language can be set here. This setting will take effect after restarting %1. - ここでユーザインターフェースの言語を設定できます。設定を反映するには %1 を再起動します。 + + The entered address "%1" is already in the address book. + 入力されたアドレス "%1" は既にアドレス帳にあります。 - &Unit to show amounts in: - 額を表示する単位 (&U) : + + Could not unlock wallet. + ウォレットをアンロックできませんでした。 - Choose the default subdivision unit to show in the interface and when sending coins. - インターフェース上の表示とコインの送信で使用する単位を選択します。 + + New key generation failed. + 新しいキーの生成に失敗しました。 + + + FreespaceChecker - Whether to show coin control features or not. - コインコントロール機能を表示するかどうか。 + + A new data directory will be created. + 新しいデータ ディレクトリが作成されます。 - &OK - &OK + + name + name - &Cancel - キャンセル (&C) + + Directory already exists. Add %1 if you intend to create a new directory here. + ディレクトリがもうあります。 新しいのディレクトリを作るつもりなら%1を書いてください。 - default - 初期値 + + Path already exists, and is not a directory. + パスが存在しますがディレクトリではありません。 - none - なし + + Cannot create data directory here. + ここにデータ ディレクトリを作成することはできません。 + + + FreezeAddress - Confirm options reset - オプションのリセットの確認 + + Frame + - Client restart required to activate changes. - 変更を有効化するにはクライアントを再起動する必要があります。 + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - クライアントを終了します。続行してもよろしいですか? + + Address: + - This change would require a client restart. - この変更はクライアントの再起動が必要です。 + + Custom Change Address + - The supplied proxy address is invalid. - プロキシアドレスが無効です。 + + IPFS / Hash: + - - - OverviewPage - Form - フォーム + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - 表示された情報は古いかもしれません。接続が確立されると、あなたのウォレットは Raven ネットワークと自動的に同期しますが、このプロセスはまだ完了していません。 + + Global Options + - Watch-only: - 監視限定: + + Free&ze trading on this address + - Available: - 利用可能: + + Unfreeze tradin&g on this address + - Your current spendable balance - あなたの利用可能残高 + + Freeze all &trading for the selected restricted asset + - Pending: - 検証待ち: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 未検証の取引で利用可能残高に反映されていない数 + + Check + - Immature: - 未完成: + + Clear + - Mined balance that has not yet matured - 完成していない採掘された残高 + + Submit + - Balances - 残高 + + Data has been validated, You can now submit the restriction transaction + - Total: - 合計: + + Must have a restricted asset selected + - Your current total balance - あなたの現在の残高 + + Address is already frozen + - Your current balance in watch-only addresses - 監視限定アドレス内の現在の残高 + + Address is not frozen + - Spendable: - 使用可能: + + Restricted asset is already frozen globally + - Recent transactions - 最近のトランザクション + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - 監視限定アドレスに対する未検証のトランザクション + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - ウォッチオンリーアドレスの採掘された残高のうち、成熟していないもの + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - 監視限定アドレス内の現在の全残高 + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - 支払いのリクエストのエラーです + + version + バージョン - Cannot start raven: click-to-pay handler - Raven を起動できません: click-to-pay handler + + + (%1-bit) + (%1ビット) - URI handling - URI の操作 + + About %1 + %1 について + + + + Command-line options + コマンドライン オプション + + + + Usage: + 使用法: + + + + command-line options + コマンドライン オプション + + + + UI Options: + UIオプション: + + + + Choose data directory on startup (default: %u) + 起動時にデータ ディレクトリを選ぶ (初期値: %u) + + + + Set language, for example "de_DE" (default: system locale) + 言語設定 例: "de_DE" (初期値: システムの言語) + + + + Start minimized + 最小化された状態で起動する + + + + Set SSL root certificates for payment request (default: -system-) + 支払いリクエスト用にSSLルート証明書を設定する (デフォルト:-system-) + + + + Show splash screen on startup (default: %u) + 起動時にスプラッシュ画面を表示する (初期値: %u) + + + + Reset all settings changed in the GUI + GUI で行われた設定の変更を全てリセット + + + + Intro + + + Welcome + ようこそ + + + + Welcome to %1. + %1 へようこそ。 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + これはプログラム最初の起動です。%1 がデータを保存する場所を選択して下さい。 + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + 初期値のデータ ディレクトリを使用 + + + + Use a custom data directory: + 任意のデータ ディレクトリを使用: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + エラー: 指定のデータディレクトリ "%1" を作成できません。 + + + + Error + エラー + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + フォーム + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + 確認できない最近のトランザクションがあるかもしれません。これによりウォレットの残高は不正確なものである可能性があります。この情報はウォレットが一度ビットコインネットワークへの同期が完了すると正確なものとなります。詳細は下記を参照してください。 + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + まだ表示されていないトランザクションが影響するビットコインを使用しようとすると、ネットワークから認証がなされないでしょう。 + + + + Number of blocks left + 残りのブロック数 + + + + + + Unknown... + 未知... + + + + Last block time + 最終ブロックの日時 + + + + Progress + 進捗 + + + + Progress increase per hour + 進捗状況は一時間ごとに増加します + + + + + calculating... + 計算しています... + + + + Estimated time left until synced + 同期完了までの推定残り時間 + + + + Hide + 隠す + + + + Unknown. Syncing Headers (%1)... + 未知。ヘッダを同期しています (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + URI を開く + + + + Open payment request from URI or file + URI またはファイルから支払いリクエストを開く + + + + URI: + URI: + + + + Select payment request file + 支払いリクエストファイルを選択してください + + + + Select payment request file to open + 開きたい支払いリクエストファイルを選択してください + + + + OptionsDialog + + + Options + 設定 + + + + &Main + メイン (&M) + + + + Automatically start %1 after logging in to the system. + システムにログインした際、自動的に %1 を起動する。 + + + + &Start %1 on system login + システムにログインした時に %1 を起動 (&S) + + + + Size of &database cache + データベースキャッシュのサイズ (&D) + + + + MB + MB + + + + Number of script &verification threads + スクリプト検証用スレッド数 (&V) + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + プロキシのIPアドレス (例えば IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + ウィンドウを閉じる際にアプリケーションを終了するのではなく、最小化します。このオプションが有効化された場合、メニューから終了を選択した場合にのみアプリケーションは閉じられます。 + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + トランザクションタブのコンテキストメニュー項目に表示する、サードパーティURL (例えばブロックエクスプローラ)。URL中の%sはトランザクションのハッシュ値に置き換えられます。垂直バー | で区切ることで、複数のURLを指定できます。 + + + + Active command-line options that override above options: + 上のオプションを置き換えることのできる、有効なコマンドラインオプションの一覧: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + すべてのオプションを初期値に戻します。 + + + + &Reset Options + オプションをリセット (&R) + + + + &Network + ネットワーク (&N) + + + + (0 = auto, <0 = leave that many cores free) + (0 = 自動、0以上 = 指定した数のコアをフリーにする) + + + + W&allet + ウォレット (&A) + + + + Expert + エクスポート + + + + Enable coin &control features + コインコントロール機能を有効化する (&C) + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 未検証のおつりの使用を無効化すると、トランザクションが少なくとも1検証を獲得するまではそのトランザクションのおつりは利用できなくなります。これは残高の計算方法にも影響します。 + + + + &Spend unconfirmed change + 未検証のおつりを使用する (&S) + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + 自動的にルーター上の Raven クライアントのポートを開きます。あなたのルーターが UPnP に対応していて、それが有効になっている場合に作動します。 + + + + Map port using &UPnP + UPnP を使ってポートを割り当てる (&U) + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + SOCKS5 プロキシ経由でRavenネットワークに接続する + + + + &Connect through SOCKS5 proxy (default proxy): + SOCKS5 プロキシ経由で接続する (デフォルトプロキシ): (&C) + + + + + Proxy &IP: + プロキシの IP (&I) : + + + + + &Port: + ポート (&P) : + + + + + Port of the proxy (e.g. 9050) + プロキシのポート番号 (例 9050) + + + + Used for reaching peers via: + ピアへ到達するために使われた方法: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Tor秘匿サービスを利用するため、独立なSOCKS5プロキシ経由でRavenネットワークに接続する + + + + &Window + ウインドウ (&W) + + + + Show only a tray icon after minimizing the window. + ウインドウを最小化したあとトレイ アイコンだけを表示する。 + + + + &Minimize to the tray instead of the taskbar + タスクバーの代わりにトレイに最小化 (&M) + + + + M&inimize on close + 閉じる時に最小化 (&i) + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + 表示 (&D) + + + + User Interface &language: + ユーザインターフェースの言語 (&l) : + + + + The user interface language can be set here. This setting will take effect after restarting %1. + ここでユーザインターフェースの言語を設定できます。設定を反映するには %1 を再起動します。 + + + + &Unit to show amounts in: + 額を表示する単位 (&U) : + + + + Choose the default subdivision unit to show in the interface and when sending coins. + インターフェース上の表示とコインの送信で使用する単位を選択します。 + + + + Whether to show coin control features or not. + コインコントロール機能を表示するかどうか。 + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + キャンセル (&C) + + + + default + 初期値 + + + + none + なし + + + + Confirm options reset + オプションのリセットの確認 + + + + + Client restart required to activate changes. + 変更を有効化するにはクライアントを再起動する必要があります。 + + + + Client will be shut down. Do you want to proceed? + クライアントを終了します。続行してもよろしいですか? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + この変更はクライアントの再起動が必要です。 + + + + The supplied proxy address is invalid. + プロキシアドレスが無効です。 + + + + OverviewPage + + + Form + フォーム + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + 表示された情報は古いかもしれません。接続が確立されると、あなたのウォレットは Raven ネットワークと自動的に同期しますが、このプロセスはまだ完了していません。 + + + + Watch-only: + 監視限定: + + + + Available: + 利用可能: + + + + Your current spendable balance + あなたの利用可能残高 + + + + Pending: + 検証待ち: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 未検証の取引で利用可能残高に反映されていない数 + + + + Immature: + 未完成: + + + + Mined balance that has not yet matured + 完成していない採掘された残高 + + + + Total: + 合計: + + + + Your current total balance + あなたの現在の残高 + + + + RVN Balances + + + + + Your current balance in watch-only addresses + 監視限定アドレス内の現在の残高 + + + + Spendable: + 使用可能: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + 最近のトランザクション + + + + Unconfirmed transactions to watch-only addresses + 監視限定アドレスに対する未検証のトランザクション + + + + Mined balance in watch-only addresses that has not yet matured + ウォッチオンリーアドレスの採掘された残高のうち、成熟していないもの + + + + Current total balance in watch-only addresses + 監視限定アドレス内の現在の全残高 + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + 支払いのリクエストのエラーです + + + + Cannot start raven: click-to-pay handler + Raven を起動できません: click-to-pay handler + + + + + + URI handling + URI の操作 + + + + Payment request fetch URL is invalid: %1 + 支払い要求の取得先URLが無効です: %1 + + + + Invalid payment address %1 + 支払いのアドレス「%1」は無効です + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI を解析できません! これは無効な Raven アドレスあるいや不正な形式の URI パラメーターによって引き起こされる場合があります。 + + + + Payment request file handling + 支払いリクエストファイルを処理しています + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 支払いリクエストファイルを読み込めませんでした!無効な支払いリクエストファイルにより引き起こされた可能性があります。 + + + + + + + + + Payment request rejected + 支払い要求は拒否されました + + + + Payment request network doesn't match client network. + 支払いリクエストのネットワークは現在のクライアントのネットワークに一致しません。 + + + + Payment request expired. + 支払いリクエストの期限が切れました。 + + + + Payment request is not initialized. + 支払いリクエストは開始されていません。 + + + + Unverified payment requests to custom payment scripts are unsupported. + カスタム支払いスクリプトに対する、検証されていない支払いリクエストはサポートされていません。 + + + + + Invalid payment request. + 無効な支払いリクエスト。 + + + + Requested payment amount of %1 is too small (considered dust). + 要求された支払額 %1 は少なすぎます (ダストとみなされてしまいます)。 + + + + Refund from %1 + %1 からの返金 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 支払リクエスト %1 は大きすぎます(%2バイトですが、%3バイトまでが許されています)。 + + + + Error communicating with %1: %2 + %1: %2とコミュニケーション・エラーです + + + + Payment request cannot be parsed! + 支払リクエストを読み込めませんでした! + + + + Bad response from server %1 + サーバーの返事は無効 %1 + + + + Network request error + ネットワーク・リクエストのエラーです + + + + Payment acknowledged + 支払いは確認しました + + + + PeerTableModel + + + User Agent + ユーザエージェント + + + + Node/Service + ノード・サービス + + + + NodeId + ノードID + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + 総額 + + + + Enter a Raven address (e.g. %1) + Ravenアドレスを入力してください (例 %1) + + + + %1 d + %1日 + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1秒 + + + + None + なし + + + + N/A + N/A + + + + %1 ms + %1ミリ秒 + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 と %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 はまだ安全に終了していません... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + エラー: 指定のデータ ディレクトリ "%1" は存在しません。 + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + エラー: 設定ファイルをパースできません: %1。key=value という記法のみを利用してください。 + + + + Error: %1 + エラー: %1 + + + + QRImageWidget + + + &Save Image... + 画像を保存(&S) + + + + &Copy Image + 画像をコピー(&C) + + + + Save QR Code + QR コードの保存 + + + + PNG Image (*.png) + PNG画像ファイル(*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + クライアントのバージョン + + + + &Information + 情報 (&I) + + + + Debug window + デバッグ ウインドウ + + + + General + 一般 + + + + Using BerkeleyDB version + 使用中のBerkleyDBバージョン + + + + Datadir + データディレクトリ + + + + Startup time + 起動した日時 + + + + Network + ネットワーク + + + + Name + 名前 + + + + Number of connections + 接続数 + + + + Block chain + ブロック チェーン + + + + Current number of blocks + 現在のブロック数 + + + + Memory Pool + メモリ・プール + + + + Current number of transactions + 現在のトランザクション数 + + + + Memory usage + メモリ使用量 + + + + &Reset + + + + + + Received + 受取 + + + + + Sent + 送金 + + + + &Peers + ピア (&P) + + + + Banned peers + Banされたピア + + + + + + Select a peer to view detailed information. + 詳しい情報を見たいピアを選択してください。 + + + + Whitelisted + ホワイトリスト + + + + Direction + 方向 + + + + Version + バージョン + + + + Starting Block + 開始ブロック + + + + Synced Headers + 同期済みヘッダ + + + + Synced Blocks + 同期済みブロック + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + ユーザエージェント + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + 現在のデータディレクトリから %1 のデバッグ用ログファイルを開きます。ログファイルが巨大な場合、数秒かかることがあります。 + + + + Decrease font size + 文字サイズを縮小 + + + + Increase font size + 文字サイズを拡大 + + + + Services + サービス + + + + Ban Score + Banスコア + + + + Connection Time + 接続時間 + + + + Last Send + 最終送信 + + + + Last Receive + 最終受信 + + + + Ping Time + Ping時間 + + + + The duration of a currently outstanding ping. + 現在実行中のpingにかかっている時間。 + + + + Ping Wait + Ping待ち + + + + Min Ping + 最小 Ping + + + + Time Offset + 時間オフセット + + + + Last block time + 最終ブロックの日時 + + + + &Open + 開く (&O) + + + + &Console + コンソール (&C) + + + + &Network Traffic + ネットワーク (&N) + + + + Totals + 合計 + + + + In: + 入力: + + + + Out: + 出力: + + + + Debug log file + デバッグ用ログファイル + + + + Clear console + コンソールをクリア + + + + 1 &hour + 1時間 (&H) + + + + 1 &day + 1日 (&D) + + + + 1 &week + 1週間 (&W) + + + + 1 &year + 1年 (&Y) + + + + &Disconnect + 切断 (&D) + + + + + + + Ban for + Banする: + + + + &Unban + Banを解除する (&U) + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + %1 のRPCコンソールへようこそ。 + + + + Type <b>help</b> for an overview of available commands. + 使用可能なコマンドを見るには <b>help</b> と入力します。 + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + ネットワーク活動は無効化されました + + + + (node id: %1) + (ノードID: %1) + + + + via %1 + %1経由 + + + + + never + 一度もなし + + + + Inbound + 内向き + + + + Outbound + 外向き + + + + Yes + はい + + + + No + いいえ + + + + + Unknown + 未知 + + + + RavenGUI + + + Sign &message... + メッセージの署名... (&m) + + + + Synchronizing with network... + ネットワークに同期中…… + + + + &Overview + 概要(&O) + + + + Node + ノード + + + + Show general overview of wallet + ウォレットの概要を見る + + + + &Transactions + 取引(&T) + + + + Browse transaction history + 取引履歴を閲覧 + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + 終了(&E) + + + + Quit application + アプリケーションを終了 + + + + &About %1 + %1 について (&A) + + + + Show information about %1 + %1 の情報を表示 + + + + About &Qt + Qt について(&Q) + + + + Show information about Qt + Qt の情報を表示 + + + + &Options... + オプション... (&O) + + + + Modify configuration options for %1 + %1 の設定を変更する + + + + &Encrypt Wallet... + ウォレットの暗号化... (&E) + + + + &Backup Wallet... + ウォレットのバックアップ... (&B) + + + + &Change Passphrase... + パスフレーズの変更... (&C) + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + 送金先アドレス一覧 (&S)... + + + + &Receiving addresses... + 受け取り用アドレス一覧 (&R)... + + + + Open &URI... + URI を開く (&U)... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + クリックするとネットワーク活動を無効化します。 + + + + Network activity disabled. + ネットワーク活動は無効化されました。 + + + + Click to enable network activity again. + クリックするとネットワーク活動を再び有効化します。 + + + + Syncing Headers (%1%)... + 未知。ヘッダを同期しています (%1%)... + + + + Reindexing blocks on disk... + ディスク上のブロックのインデックスを再作成中... + + + + Send coins to a Raven address + Raven アドレスにコインを送る + + + + Backup wallet to another location + ウォレットを他の場所にバックアップ + + + + Change the passphrase used for wallet encryption + ウォレット暗号化用パスフレーズの変更 + + + + Open debugging and diagnostic console + デバッグと診断コンソールを開く + + + + &Verify message... + メッセージの検証... (&V) + + + + Raven + Raven + + + + Wallet + ウォレット + + + + &Send + 送金 (&S) + + + + &Receive + 入金 (&R) + + + + &Show / Hide + 見る/隠す (&S) + + + + Show or hide the main Window + メイン ウインドウを表示または非表示 + + + + Encrypt the private keys that belong to your wallet + あなたのウォレットの秘密鍵を暗号化します + + + + Sign messages with your Raven addresses to prove you own them + あなたが所有していることを証明するために、あなたの Raven アドレスでメッセージに署名してください + + + + Verify messages to ensure they were signed with specified Raven addresses + 指定された Raven アドレスで署名されたことを確認するためにメッセージを検証します + + + + &File + ファイル(&F) + + + + &Help + ヘルプ(&H) + + + + Request payments (generates QR codes and raven: URIs) + 支払いを要求する (QRコードとraven:ではじまるURIを生成する) + + + + Show the list of used sending addresses and labels + 使用済みの送金用アドレスとラベルの一覧を表示する + + + + Show the list of used receiving addresses and labels + 支払いを受け取るアドレスとラベルのリストを表示する + + + + Open a raven: URI or payment request + raven: URIまたは支払いリクエストを開く + + + + &Command-line options + コマンドラインオプション (&C) + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + ディスク上のブロックのインデックスを作成しています... + + + + Processing blocks on disk... + ディスク上のブロックを処理しています... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 遅延 + + + + Last received block was generated %1 ago. + 最後に受信されたブロックは %1 前に生成されました。 + + + + Transactions after this will not yet be visible. + この後の取引はまだ表示されません。 + + + + Error + エラー + + + + Warning + 警告 + + + + Information + 情報 + + + + Up to date + バージョンは最新です + + + + Show the %1 help message to get a list with possible Raven command-line options + 有効な Raven のコマンドライン オプションを見るために %1 のヘルプメッセージを表示します。 + + + + %1 client + %1 クライアント + + + + Connecting to peers... + ピアに接続しています... + + + + Catching up... + 追跡中... + + + + Date: %1 + + 日付: %1 + + + + + + Amount: %1 + + 総額: %1 + + + + + Type: %1 + + タイプ: %1 + + + + + Label: %1 + + ラベル: %1 + + + + + Address: %1 + + アドレス: %1 + + + + + Sent transaction + 送金取引 + + + + Incoming transaction + 着金取引 + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD鍵生成は<b>有効化</b>されています + + + + HD key generation is <b>disabled</b> + HD鍵生成は<b>無効化</b>されています + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + ウォレットは<b>暗号化されて、アンロックされています</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + ウォレットは<b>暗号化されて、ロックされています</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + 致命的なエラーが発生しました。Raven は安全に継続することができず終了するでしょう。 + + + + ReceiveCoinsDialog + + + &Amount: + 総額:(&A) + + + + &Label: + ラベル(&L): + + + + &Message: + メッセージ (&M): + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 以前利用した受取用アドレスのどれかを再利用します。アドレスの再利用はセキュリティおよびプライバシーにおいて問題があります。以前作成した支払リクエストを再生成するとき以外は利用しないでください。 + + + + R&euse an existing receiving address (not recommended) + 既存の受取用アドレスを再利用する (非推奨) (&E) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + 支払リクエストが開始された時に表示される、支払リクエストに添える任意のメッセージです。注意:メッセージはRavenネットワークを通じて、支払と共に送られるわけではありません。 + + + + + An optional label to associate with the new receiving address. + 受取用アドレスに紐づく任意のラベル。 + + + + Use this form to request payments. All fields are <b>optional</b>. + このフォームを使用して支払のリクエストを行いましょう。すべての項目は<b>任意入力</b>です。 + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + リクエストする任意の金額。特定の金額をリクエストするのでない場合には、この欄は空白のままかゼロにしてください。 + + + + Clear all fields of the form. + 全ての入力項目をクリア + + + + Clear + クリア + + + + Requested payments history + 支払リクエスト履歴 + + + + &Request payment + 支払をリクエストする (&R) + + + + Show the selected request (does the same as double clicking an entry) + 選択されたリクエストを表示する(項目をダブルクリックすることでも表示できます) + + + + Show + 表示 + + + + Remove the selected entries from the list + リストから選択項目を削除 + + + + Remove + 削除 + + + + Copy URI + URI をコピーする + + + + Copy label + ラベルをコピーする + + + + Copy message + メッセージをコピーする + + + + Copy amount + 総額のコピー + + + + ReceiveRequestDialog + + + QR Code + QR コード + + + + Copy &URI + URI をコピーする (&U) + + + + Copy &Address + アドレスをコピーする (&A) + + + + &Save Image... + 画像を保存(&S) + + + + Request payment to %1 + %1 への支払いリクエストを行う + + + + Payment information + 支払い情報 + + + + URI + URI + + + + Address + アドレス + + + + Amount + 総額 + + + + Label + ラベル + + + + Message + メッセージ + + + + Resulting URI too long, try to reduce the text for label / message. + URI が長くなり過ぎます。ラベルやメッセージのテキストを短くしてください。 + + + + Error encoding URI into QR Code. + QR コード用の URI エンコードでエラー。 + + + + RecentRequestsTableModel + + + Date + 日付 - Payment request fetch URL is invalid: %1 - 支払い要求の取得先URLが無効です: %1 + + Label + ラベル - Invalid payment address %1 - 支払いのアドレス「%1」は無効です + + Message + メッセージ - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI を解析できません! これは無効な Raven アドレスあるいや不正な形式の URI パラメーターによって引き起こされる場合があります。 + + (no label) + (ラベル無し) - Payment request file handling - 支払いリクエストファイルを処理しています + + (no message) + (メッセージなし) - Payment request file cannot be read! This can be caused by an invalid payment request file. - 支払いリクエストファイルを読み込めませんでした!無効な支払いリクエストファイルにより引き起こされた可能性があります。 + + (no amount requested) + (金額指定なし) - Payment request rejected - 支払い要求は拒否されました + + Requested + 要求 + + + ReissueAssetDialog - Payment request network doesn't match client network. - 支払いリクエストのネットワークは現在のクライアントのネットワークに一致しません。 + + Coin Control Features + - Payment request expired. - 支払いリクエストの期限が切れました。 + + Inputs... + - Payment request is not initialized. - 支払いリクエストは開始されていません。 + + automatically selected + - Unverified payment requests to custom payment scripts are unsupported. - カスタム支払いスクリプトに対する、検証されていない支払いリクエストはサポートされていません。 + + Insufficient funds! + - Invalid payment request. - 無効な支払いリクエスト。 + + + Quantity: + - Requested payment amount of %1 is too small (considered dust). - 要求された支払額 %1 は少なすぎます (ダストとみなされてしまいます)。 + + Bytes: + - Refund from %1 - %1 からの返金 + + Amount: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - 支払リクエスト %1 は大きすぎます(%2バイトですが、%3バイトまでが許されています)。 + + Dust: + - Error communicating with %1: %2 - %1: %2とコミュニケーション・エラーです + + Fee: + - Payment request cannot be parsed! - 支払リクエストを読み込めませんでした! + + After Fee: + - Bad response from server %1 - サーバーの返事は無効 %1 + + Change: + - Network request error - ネットワーク・リクエストのエラーです + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Payment acknowledged - 支払いは確認しました + + Custom change address + - - - PeerTableModel - User Agent - ユーザエージェント + + + Reissue Asset + - Node/Service - ノード・サービス + + Select an asset to reissue: + - NodeId - ノードID + + Address: + - Ping - Ping + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - - - QObject - Amount - 総額 + + Verifier String: + - Enter a Raven address (e.g. %1) - Ravenアドレスを入力してください (例 %1) + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 d - %1日 + + Warning: + - %1 h - %1 h + + The number of assets that will be created + - %1 m - %1 m + + Unit: + - %1 s - %1秒 + + e.g. 1.00000000 + - None - なし + + If the owner of this asset will be able to issue more assets in the future + - N/A - N/A + + Reissuable + - %1 ms - %1ミリ秒 - - - %n second(s) - %n 秒 - - - %n minute(s) - %n 分 - - - %n hour(s) - %n 時間 - - - %n day(s) - %n 日 + + Change IPFS/Txid Hash + - - %n week(s) - %n 週間 + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 と %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n 年 + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 はまだ安全に終了していません... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - エラー: 指定のデータ ディレクトリ "%1" は存在しません。 + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - エラー: 設定ファイルをパースできません: %1。key=value という記法のみを利用してください。 + + Transaction Fee: + - Error: %1 - エラー: %1 + + Choose... + - - - QRImageWidget - &Save Image... - 画像を保存(&S) + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - 画像をコピー(&C) + + Warning: Fee estimation is currently not possible. + - Save QR Code - QR コードの保存 + + collapse fee-settings + - PNG Image (*.png) - PNG画像ファイル(*.png) + + Hide + - - - RPCConsole - N/A - N/A + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - クライアントのバージョン + + per kilobyte + - &Information - 情報 (&I) + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - デバッグ ウインドウ + + (read the tooltip) + - General - 一般 + + Recommended: + - Using BerkeleyDB version - 使用中のBerkleyDBバージョン + + Cus&tom: + - Datadir - データディレクトリ + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - 起動した日時 + + Confirmation time target: + - Network - ネットワーク + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - 名前 + + Request Replace-By-Fee + - Number of connections - 接続数 + + Clear + - Block chain - ブロック チェーン + + Balance: + - Current number of blocks - 現在のブロック数 + + 123.456 RVN + - Memory Pool - メモリ・プール + + Copy quantity + - Current number of transactions - 現在のトランザクション数 + + Copy amount + - Memory usage - メモリ使用量 + + Copy fee + - Received - 受取 + + Copy after fee + - Sent - 送金 + + Copy bytes + - &Peers - ピア (&P) + + Copy dust + - Banned peers - Banされたピア + + Copy change + - Select a peer to view detailed information. - 詳しい情報を見たいピアを選択してください。 + + Select an asset to reissue.. + - Whitelisted - ホワイトリスト + + Select the asset you want to reissue. + - Direction - 方向 + + %1 (%2 blocks) + - Version - バージョン + + Cost + - Starting Block - 開始ブロック + + Asset data couldn't be found + - Synced Headers - 同期済みヘッダ + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - 同期済みブロック + + Invalid Raven Destination Address + - User Agent - ユーザエージェント + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - 現在のデータディレクトリから %1 のデバッグ用ログファイルを開きます。ログファイルが巨大な場合、数秒かかることがあります。 + + + Warning: Invalid Raven address + - Decrease font size - 文字サイズを縮小 + + + Yes + - Increase font size - 文字サイズを拡大 + + No + - Services - サービス + + + Name + - Ban Score - Banスコア + + + Total Quantity + - Connection Time - 接続時間 + + + Units + - Last Send - 最終送信 + + + Can Reisssue + - Last Receive - 最終受信 + + + + IPFS Hash + - Ping Time - Ping時間 + + + + Txid Hash + - The duration of a currently outstanding ping. - 現在実行中のpingにかかっている時間。 + + Verifier String + - Ping Wait - Ping待ち + + + Current Verifier String + - Min Ping - 最小 Ping + + Please select a asset from the menu to display the assets current settings + - Time Offset - 時間オフセット + + Please select a asset from the menu to display the assets updated settings + - Last block time - 最終ブロックの日時 + + Current Quantity + - &Open - 開く (&O) + + Current Units + - &Console - コンソール (&C) + + Can Reissue + - &Network Traffic - ネットワーク (&N) + + Unknown data hash type + - &Clear - クリア(&C) + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - 合計 + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - 入力: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - 出力: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - デバッグ用ログファイル + + + %1 to %2 + - Clear console - コンソールをクリア + + Are you sure you want to send? + - 1 &hour - 1時間 (&H) + + added as transaction fee + - 1 &day - 1日 (&D) + + Total Amount %1 + - 1 &week - 1週間 (&W) + + or + - 1 &year - 1年 (&Y) + + Confirm reissue assets + - &Disconnect - 切断 (&D) + + Copy + - Ban for - Banする: + + Transaction ID Copied + - &Unban - Banを解除する (&U) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - %1 のRPCコンソールへようこそ。 + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 上下の矢印で履歴をたどれます。 <b>Ctrl-L</b> でスクリーンを消去できます。 + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - 使用可能なコマンドを見るには <b>help</b> と入力します。 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - 警告: 詐欺師が活動しており、ユーザに対してここにコマンドを入力させることでウォレットの中身を盗もうとしています。コマンドの結果を完全に理解していない限り、このコンソールは利用しないでください。 + + (no label) + - Network activity disabled - ネットワーク活動は無効化されました + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (ノードID: %1) + + Balance: + - via %1 - %1経由 + + + Failed to create a change address + - never - 一度もなし + + Failed to generate the correct transaction. Please try again + - Inbound - 内向き + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - 外向き + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - はい + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - いいえ + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - 未知 + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - 総額:(&A) + + + Total Amount %1 + - &Label: - ラベル(&L): + + + or + - &Message: - メッセージ (&M): + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - 以前利用した受取用アドレスのどれかを再利用します。アドレスの再利用はセキュリティおよびプライバシーにおいて問題があります。以前作成した支払リクエストを再生成するとき以外は利用しないでください。 + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - 既存の受取用アドレスを再利用する (非推奨) (&E) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - 支払リクエストが開始された時に表示される、支払リクエストに添える任意のメッセージです。注意:メッセージはRavenネットワークを通じて、支払と共に送られるわけではありません。 + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - 受取用アドレスに紐づく任意のラベル。 + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - このフォームを使用して支払のリクエストを行いましょう。すべての項目は<b>任意入力</b>です。 + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - リクエストする任意の金額。特定の金額をリクエストするのでない場合には、この欄は空白のままかゼロにしてください。 + + This is an asset payment + - Clear all fields of the form. - 全ての入力項目をクリア + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - クリア + + + + Memo: + - Requested payments history - 支払リクエスト履歴 + + Amount: + - &Request payment - 支払をリクエストする (&R) + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - 選択されたリクエストを表示する(項目をダブルクリックすることでも表示できます) + + &Label: + - Show - 表示 + + Asset: + - Remove the selected entries from the list - リストから選択項目を削除 + + The Raven address to send the payment to + - Remove - 削除 + + Choose previously used address + - Copy URI - URI をコピーする + + Alt+A + - Copy label - ラベルをコピーする + + Paste address from clipboard + - Copy message - メッセージをコピーする + + Alt+P + - Copy amount - 総額のコピー + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR コード + + Message: + - Copy &URI - URI をコピーする (&U) + + Transfer &To: + - Copy &Address - アドレスをコピーする (&A) + + Transfer Administrator Asset + - &Save Image... - 画像を保存(&S) + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - %1 への支払いリクエストを行う + + This is an unauthenticated payment request. + - Payment information - 支払い情報 + + + Transfer to: + - URI - URI + + + A&mount: + - Address - アドレス + + This is an authenticated payment request. + - Amount - 総額 + + Enter a label for this address to add it to your address book + - Label - ラベル + + Select to view administrator assets to transfer + - Message - メッセージ + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI が長くなり過ぎます。ラベルやメッセージのテキストを短くしてください。 + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - QR コード用の URI エンコードでエラー。 + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - 日付 + + Failed to get asset metadata for: + - Label - ラベル + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - メッセージ + + Failed to get asset outpoints from database + - (no label) - (ラベル無し) + + Selected Balance + - (no message) - (メッセージなし) + + Wallet Balance + - (no amount requested) - (金額指定なし) + + Select an administrator asset to transfer + - Requested - 要求 + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins コインを送る + Coin Control Features コインコントロール機能 + Inputs... 入力... + automatically selected 自動選択 + Insufficient funds! 残高不足です! + Quantity: 数量: + Bytes: バイト: + Amount: 総額: + Fee: 手数料: + After Fee: 手数料差引後: + Change: 釣り銭: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. これが有効にもかかわらずおつりアドレスが空欄であったり無効であった場合には、おつりは新しく生成されたアドレスへ送金されます。 + Custom change address カスタムおつりアドレス + Transaction Fee: トランザクション手数料: + Choose... 選択…… + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings 手数料設定を折りたたむ + per kilobyte 1キロバイトあたり手数料 - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. カスタム手数料が1000satoshiに設定されている場合、トランザクションサイズが250バイトとすると、「1キロバイトあたり手数料」では250satoshiの手数料のみを支払いますが、「最小手数料」では1000satoshiを支払います。1キロバイトを超えるトランザクションの場合には、どちらの方法を選択したとしても1キロバイトあたりで支払われます。 + Hide 隠す - total at least - 最小手数料 - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. ブロックの容量に比べてトランザクション流量が少ないうちは最小手数料のみの支払で十分です。しかしながらネットワークが処理しきれないほどravenトランザクションの需要がひとたび生まれてしまった場合には、永遠に検証がされないトランザクションになってしまう可能性があることに注意してください。 + (read the tooltip) (ツールチップをお読みください) + Recommended: 推奨: + Custom: カスタム: + (Smart fee not initialized yet. This usually takes a few blocks...) (スマート手数料はまだ初期化されていません。これにはおおよそ数ブロックほどかかります……) - normal - 普通 + + Request Replace-By-Fee + - fast - 高速 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once 一度に複数の人に送る + Add &Recipient 受取人を追加 (&R) + Clear all fields of the form. 全ての入力項目をクリア + Dust: ダスト: + Confirmation time target: 検証時間のターゲット: + Clear &All すべてクリア (&A) + Balance: 残高: + Confirm the send action 送る操作を確認する + S&end 送金 (&E) + Copy quantity 数量をコピーする + Copy amount 総額のコピー + Copy fee 手数料をコピーする + Copy after fee 手数料差引後の値をコピーする + Copy bytes バイト数をコピーする + Copy dust ダストをコピーする + Copy change 釣り銭をコピー + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 から %2 + Are you sure you want to send? 送ってよろしいですか? + added as transaction fee 取引手数料として追加された + Total Amount %1 合計: %1 + or または + Confirm send coins コインを送る確認 + The recipient address is not valid. Please recheck. 受取アドレスが不正です。再チェックしてください。 + The amount to pay must be larger than 0. 支払額は0より大きくないといけません。 + The amount exceeds your balance. 額が残高を超えています。 + The total exceeds your balance when the %1 transaction fee is included. %1 の取引手数料を含めると額が残高を超えています。 + Duplicate address found: addresses should only be used once each. 重複したアドレスが見つかりました: アドレスはそれぞれ一度のみ使用することができます。 + Transaction creation failed! トラザクションの作成に失敗しました! + The transaction was rejected with the following reason: %1 トランザクションは以下の理由により拒絶されました: %1 + A fee higher than %1 is considered an absurdly high fee. %1 よりも高い手数料の場合、手数料が高すぎると判断されます。 + Payment request expired. 支払いリクエストの期限が切れました。 - - %n block(s) - %n ブロック - + Pay only the required fee of %1 要求手数料 %1 のみを支払う + Estimated to begin confirmation within %n block(s). - %n ブロック以内に検証が開始されると予想されます。 + + Warning: Invalid Raven address 警告:無効なRavenアドレスです + Warning: Unknown change address 警告:未知のおつりアドレスです + Confirm custom change address カスタムおつりアドレスを確認 + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? おつりとして指定されたアドレスはこのウォレットに属さないもののようです。このウォレットの一部またはすべての資産がこのアドレスへ送金されます。よろしいですか? + (no label) (ラベル無し) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: 金額(&A): - Pay &To: - 送り先(&T): - - + &Label: ラベル(&L): + Choose previously used address 前に使用したアドレスを選ぶ + This is a normal payment. これは通常の支払です。 + The Raven address to send the payment to 支払の送金先Ravenアドレス + Alt+A Alt+A + Paste address from clipboard クリップボードからアドレスを貼付ける + Alt+P Alt+P + + + Remove this entry この項目を削除する + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. 送金する金額から手数料が差し引かれます。受取人は数量フィールドで指定した量よりも少ないビットコインを受け取ります。受取人が複数いる場合には、手数料は均等割されます。 + S&ubtract fee from amount 送金額から手数料を差し引く (&U) + Message: メッセージ: + + Send &To: + + + + This is an unauthenticated payment request. これは未認証の支払いリクエストです。 + + + Send to: + + + + This is an authenticated payment request. これは認証済みの支払いリクエストです。 + Enter a label for this address to add it to the list of used addresses このアドレスに対するラベルを入力することで、使用済みアドレスの一覧に追加することができます + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. raven: URIに添付されていたメッセージです。これは参照用としてトランザクションとともに保存されます。注意:このメッセージはRavenネットワークを通して送信されるわけではありません。 - Pay To: - 支払先: - - + + Memo: メモ: + Enter a label for this address to add it to your address book アドレス帳に追加するには、このアドレスのラベルを入力します @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes はい @@ -2316,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 をシャットダウンしています... + Do not shut down the computer until this window disappears. このウィンドウが消えるまでコンピュータをシャットダウンしないで下さい。 @@ -2327,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message 署名 - メッセージの署名/検証 + &Sign Message メッセージの署名 (&S) + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. あなたの所有しているアドレスによりメッセージや合意書に署名をすることで、それらアドレスに対して送られたビットコインを受け取ることができることを証明できます。フィッシング攻撃により不正にあなたの識別情報を署名させられてしまうことを防ぐために、不明確なものやランダムなものに対して署名しないよう注意してください。合意することが可能な、よく詳細の記された文言にのみ署名するようにしてください。 + The Raven address to sign the message with メッセージを署名するRavenアドレス + + Choose previously used address 前に使用したアドレスを選ぶ + + Alt+A Alt+A + Paste address from clipboard クリップボードからアドレスを貼付ける + Alt+P Alt+P + Enter the message you want to sign here ここにあなたが署名するメッセージを入力します + Signature 署名 + Copy the current signature to the system clipboard 現在の署名をシステムのクリップボードにコピーする + Sign the message to prove you own this Raven address この Raven アドレスを所有していることを証明するためにメッセージに署名 + Sign &Message メッセージの署名 (&M) + Reset all sign message fields 入力項目の内容をすべて消去します + + Clear &All すべてクリア (&A) + &Verify Message メッセージの検証 (&V) - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! 受取人のアドレスとメッセージ(改行やスペース、タブなども完全に一致するよう注意してください)および署名を以下に入力し、メッセージの署名を検証してください。中間者攻撃により騙されるのを防ぐため、署名対象のメッセージに書かれていること以上の意味を署名から読み取ろうとしないよう注意してください。これは署名作成者がこのアドレスで受け取ったことを証明するだけであり、トランザクションの送信権限を証明するものではないことに注意してください! + The Raven address the message was signed with メッセージの署名に使われたRavenアドレス + Verify the message to ensure it was signed with the specified Raven address 指定された Raven アドレスで署名されたことを保証するメッセージを検証 + Verify &Message メッセージの検証 (&M) + Reset all verify message fields 入力項目の内容をすべて消去します - Click "Sign Message" to generate signature - 署名を作成するには"メッセージの署名"をクリック + + Click "Sign Message" to generate signature + 署名を作成するには"メッセージの署名"をクリック + + The entered address is invalid. 不正なアドレスが入力されました。 + + + + Please check the address and try again. アドレスを確かめてからもう一度試してください。 + + The entered address does not refer to a key. 入力されたアドレスに関連するキーがありません。 + Wallet unlock was cancelled. ウォレットのアンロックはキャンセルされました。 + Private key for the entered address is not available. 入力されたアドレスのプライベート キーが無効です。 + Message signing failed. メッセージの署名に失敗しました。 + Message signed. メッセージに署名しました。 + The signature could not be decoded. 署名がデコードできません。 + + Please check the signature and try again. 署名を確認してからもう一度試してください。 + The signature did not match the message digest. 署名はメッセージ ダイジェストと一致しませんでした。 + Message verification failed. メッセージの検証に失敗しました。 + Message verified. メッセージは検証されました。 @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - %n 以上のブロックを開く + + Open until %1 ユニット %1 を開く + conflicted with a transaction with %1 confirmations %1 検証のトランザクションと衝突 + %1/offline %1/オフライン + 0/unconfirmed, %1 0/未検証, %1 + in memory pool メモリプール内 + not in memory pool メモリプール外 + abandoned 中止 + %1/unconfirmed %1/未検証 + %1 confirmations %1 確認 + + Status ステータス + + , has not been successfully broadcast yet まだブロードキャストが成功していません + + , broadcast through %n node(s) - %n ノードにブロードキャスト + + + Date 日付 + Source ソース + Generated 生成された + + + + + From 送信 + + unknown 未確認 + + + + + To 受信 + + own address 自分のアドレス + + + watch-only 監視限定 + + label ラベル + + + + + + + Credit クレジット + matures in %n more block(s) - あと %n ブロックで成熟します + + not accepted 承認されなかった + + + + + Debit 引き落とし額 + Total debit 総出金額 + Total credit 総入金額 + Transaction fee 取引手数料 + Net amount 正味金額 + + + + Message メッセージ + + Comment コメント + + Transaction ID 取引 ID + + Transaction total size トランザクションの全体サイズ + + Output index 出力インデックス + + Merchant 商人 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 生成されたコインは使う前に%1のブロックを完成させる必要があります。あなたが生成した時、このブロックはブロック チェーンに追加されるネットワークにブロードキャストされました。チェーンに追加されるのが失敗した場合、状態が"不承認"に変更されて使えなくなるでしょう。これは、別のノードがあなたの数秒前にブロックを生成する場合に時々起こるかもしれません。 + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 生成されたコインは使う前に%1のブロックを完成させる必要があります。あなたが生成した時、このブロックはブロック チェーンに追加されるネットワークにブロードキャストされました。チェーンに追加されるのが失敗した場合、状態が"不承認"に変更されて使えなくなるでしょう。これは、別のノードがあなたの数秒前にブロックを生成する場合に時々起こるかもしれません。 + + + + Net RVN amount + + Debug information デバッグ情報 + Transaction 取引 + Inputs 入力 + Amount 総額 + + true 正しい + + false 正しくない @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction ここでは取引の詳細を表示しています + Details for %1 %1 の詳細 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date 日付 + Type タイプ + Label ラベル + + + Amount + + + + + Asset + + + Open for %n more block(s) - %n 以上のブロックを開く + + Open until %1 ユニット %1 を開く + Offline オフライン + Unconfirmed 未検証 + Abandoned 中止 + Confirming (%1 of %2 recommended confirmations) 検証中(%2の推奨検証数のうち、%1検証が完了) + Confirmed (%1 confirmations) 検証されました (%1 検証済み) + Conflicted 衝突 + Immature (%1 confirmations, will be available after %2) 未成熟(%1検証。%2検証完了後に使用可能となります) + This block was not received by any other nodes and will probably not be accepted! このブロックは他のどのノードによっても受け取られないで、多分受け入れられないでしょう! + Generated but not accepted 生成されましたが承認されませんでした + Received with 送り主 + Received from 送り主 + Sent to 送り先 + Payment to yourself 自分自身への支払い + Mined 発掘した + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only 監視限定 + (n/a) (n/a) + (no label) (ラベル無し) + Transaction status. Hover over this field to show number of confirmations. 取引の状況。このフィールドの上にカーソルを置くと検証の数を表示します。 + Date and time that the transaction was received. 取引を受信した日時。 + Type of transaction. 取引の種類。 + Whether or not a watch-only address is involved in this transaction. 監視限定アドレスがこのトランザクションに含まれているかどうか + User-defined intent/purpose of the transaction. ユーザ定義のトランザクションの意図や目的。 + Amount removed from or added to balance. 残高に追加または削除された総額。 + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All すべて + Today 今日 + This week 今週 + This month 今月 + Last month 先月 + This year 今年 + Range... 期間... + Received with 送り主 + Sent to 送り先 + To yourself 自分自身 + Mined 発掘した + Other その他 + Enter address or label to search 検索するアドレスまたはラベルを入力 + Min amount 最小の額 + + Asset name + + + + Abandon transaction 取引の中止 + Copy address アドレスをコピーする + Copy label ラベルをコピーする + Copy amount 総額のコピー + Copy transaction ID 取引 ID をコピー + Copy raw transaction 生トランザクションをコピー + Copy full transaction details トランザクションの詳細すべてをコピー + Edit label ラベルの編集 + Show transaction details 取引の詳細を表示 + + Browse with: + + + + Export Transaction History トランザクション履歴をエクスポートする + Comma separated file (*.csv) テキスト CSV (*.csv) + Confirmed 検証済み + Watch-only 監視限定 + Date 日付 + Type タイプ + Label ラベル + Address アドレス + + Asset + + + + ID ID + Exporting Failed エクスポートに失敗しました + There was an error trying to save the transaction history to %1. トランザクション履歴を %1 へ保存する際にエラーが発生しました。 + Exporting Successful エクスポートに成功しました + The transaction history was successfully saved to %1. トランザクション履歴は正常に%1に保存されました。 + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: 期間: + to から @@ -2936,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. 金額を表示する際の単位。クリックすることで他の単位を選択します。 @@ -2943,6 +6521,7 @@ WalletFrame + No wallet has been loaded. ウォレットがロードされていません @@ -2950,969 +6529,1764 @@ WalletModel + Send Coins コインを送る + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export エクスポート (&E) + Export the data in the current tab to a file ファイルに現在のタブのデータをエクスポート + Backup Wallet ウォレットのバックアップ + Wallet Data (*.dat) ウォレット データ (*.dat) + Backup Failed バックアップに失敗しました + There was an error trying to save the wallet data to %1. ウォレットデータを%1へ保存する際にエラーが発生しました。 + Backup Successful バックアップ成功 + The wallet data was successfully saved to %1. ウォレット データは正常に%1に保存されました。 + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: オプション: + Specify data directory データ ディレクトリの指定 + Connect to a node to retrieve peer addresses, and disconnect ピア アドレスを取得するためにノードに接続し、そして切断します + Specify your own public address あなた自身のパブリックなアドレスを指定 + Accept command line and JSON-RPC commands コマンドラインと JSON-RPC コマンドを許可 - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - 外部からの接続を許可 (初期値: -proxy または -connect/-noconnect を使用していない場合は1) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - 指定されたノードにのみ接続を行う; -noconnect または -connect=0 だけを指定すると自動接続を無効化します - - + Distributed under the MIT software license, see the accompanying file %s or %s MITソフトウェアライセンスのもとで配布されています。付属のファイル %s または %s を参照してください + If <category> is not supplied or if <category> = 1, output all debugging information. <category> が与えられなかった場合や <category> = 1 の場合には、すべてのデバッグ情報が出力されます。 + Prune configured below the minimum of %d MiB. Please use a higher number. 剪定が最小値の %d MiB以下に設定されています。もっと大きな値を使用してください。 + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) 剪定: 最後のウォレット同期ポイントは、選定されたデータよりも過去のものとなっています。-reindexをする必要があります (剪定されたノードの場合、ブロックチェイン全体をダウンロードします) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. 剪定モードでは再スキャンを行うことはできません。-reindexを指定し、ブロックチェイン全体を再ダウンロードする必要があります。 + Error: A fatal internal error occurred, see debug.log for details エラー:致命的な内部エラーが発生しました。詳細はdebug.logを参照してください + Fee (in %s/kB) to add to transactions you send (default: %s) 送信するトランザクションに付加する手数料 (%s/kB単位) (初期値: %s) + Pruning blockstore... ブロックデータを剪定しています…… + Run in the background as a daemon and accept commands デーモンとしてバックグランドで実行しコマンドを許可 + Unable to start HTTP server. See debug log for details. HTTPサーバを開始できませんでした。詳細はデバッグログをご確認ください。 + Raven Core Raven のコア + The %s developers %s の開発者 + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) 十分なデータが蓄積されていない場合に手数料推定機能が利用する手数料レート (%s/kB) (デフォルト: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) トランザクションの中継を行っていない場合でも、ホワイトリストのピアから受け取った中継トランザクションは受け取るようにする (デフォルト: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - 指定のアドレスへバインドし、その上で常にリスンします。IPv6 は [ホスト名]:ポート番号 と表記します + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + 指定のアドレスへバインドし、その上で常にリスンします。IPv6 は [ホスト名]:ポート番号 と表記します + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + データ ディレクトリ %s のロックを取得することができません。おそらく %s は実行中です。 + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - データ ディレクトリ %s のロックを取得することができません。おそらく %s は実行中です。 + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup ウォレットの全トランザクションを削除し、これらを-rescanオプションを用いることで起動時にブロックチェインのデータのみからリカバリします。 - Error loading %s: You can't enable HD on a already existing non-HD wallet - %s の読み込みエラー: 非HDウォレットが既に存在するため、HDウォレットを有効化できません - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. %s の読み込みエラー! すべてのキーは正しく読み取れますが、取引データやアドレス帳のエントリが失われたか、正しくない可能性があります。 + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) ウォレットの取引を変更する際にコマンドを実行 (cmd の %s は TxID に置換される) + Extra transactions to keep in memory for compact block reconstructions (default: %u) コンパクトブロック再構成のために追加のトランザクションをメモリ内に保管しておく (デフォルト: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) このブロックがブロックチェーン内に含まれていた場合には、このブロックおよびそれ以前のすべてのブロックを有効であるとみなし、スクリプトの検証を省略する (0ならすべてを検証、デフォルト: %s、テストネット: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) 時間オフセット調整値のピア中央値に対する最大の許容値。ローカル時間の見込み値は、接続するピアにより前方ないし後方へ影響されます。(初期値: %u 秒) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) ひとつのウォレットトランザクションまたは生トランザクションで使用する合計手数料の最大値 (%s 単位)。低すぎる値を指定すると巨大なトランザクションの作成ができなくなります (規定値: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. あなたのPCの日付と時刻が正しいことを確認して下さい! もしあなたの時計が正しくなければ %s が正確に動作しません。 + Please contribute if you find %s useful. Visit %s for further information about the software. %s が有用だと感じられた方はぜひプロジェクトへの貢献をお願いします。ソフトウェアのより詳細な情報については %s をご覧ください。 + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) 古いブロックの剪定 (削除) を有効にすることでストレージの必要量を削減する。これにより pruneblockchain RPC を呼び出すことで指定されたブロックを削除することができます。またターゲットサイズが MiB 単位で指定された場合には古いブロックの自動剪定が有効となります。このモードは -txindex および -rescan オプションと互換性がありません。警告: この設定を最有効化するにはすべてのブロックチェーンの再ダウンロードが必要となります。(デフォルト: 0 = ブロックの剪定を無効化する, 1 = RPC 経由での手動剪定を許可する, >%u = MiB 単位で指定されたターゲットサイズを常に下回るようにブロックファイルを自動的に剪定する) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) ブロック生成時に取り込まれるトランザクションの最低手数料率 (%s/kB 単位)。(デフォルト: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) スクリプト検証スレッドを設定 (%uから%dの間, 0 = 自動, <0 = たくさんのコアを自由にしておく, 初期値: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct ブロックのデータベースに未来の時刻のブロックが含まれています。これはおそらくお使いのコンピュータに設定されている日時が間違っていることを示しています。お使いのコンピュータの日時が本当に正しい場合にのみ、ブロックのデータベースの再構築を行ってください。 + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications これはリリース前のテストビルドです - 各自の責任で利用すること - 採掘や商取引に使用しないでください + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain データベースをフォーク前の状態に巻き戻せませんでした。ブロックチェーンを再ダウンロードする必要があります + Use UPnP to map the listening port (default: 1 when listening and no -proxy) リスン ポートの割当に UPnP を使用 (初期値: リスン中および-proxyが指定されていない場合は1) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times JSON-RPC 接続時のユーザ名とハッシュ化されたパスワード。<userpw> フィールドのフォーマットは <USERNAME>:<SALT>$<HASH>。標準的な Python スクリプトが share/rpcuser 内に含まれています。クライアントは通常の場合には rpcuser=<USERNAME>/rpcpassword=<PASSWORD> を利用して接続を行います。このオプションは複数回指定できます。 + Wallet will not create transactions that violate mempool chain limits (default: %u) ウォレットがmempoolチェーン制限数を超えてトランザクションを作らないようにする (初期値: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. 警告: ネットワークは完全に合意が取れていないようです。幾人かのマイナーに何らかの障害が発生しているようです。 + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. 警告: ピアと完全に合意が取れていないようです!このノードまたは他のノードのアップグレードが必要なようです。 - You need to rebuild the database using -reindex-chainstate to change -txindex - -txindex を変更するには -reindex-chainstate を使用してデータベースを再構築する必要があります + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + %s corrupt, salvage failed %s が壊れています。復旧にも失敗しました + -maxmempool must be at least %d MB -maxmempoolは最低でも %d MB必要です + <category> can be: <category>は以下の値を指定できます: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string ユーザエージェント文字列にコメントを + Attempt to recover private keys from a corrupt wallet on startup 起動時に壊れたウォレットから秘密鍵を復旧することを試す + Block creation options: ブロック作成オプション: - Cannot resolve -%s address: '%s' - -%s アドレス '%s' を解決できません + + Cannot resolve -%s address: '%s' + -%s アドレス '%s' を解決できません + Chain selection options: チェイン選択オプション: + Change index out of range おつりのインデックスが範囲外です + Connection options: 接続オプション: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected 破損したブロック データベースが見つかりました + Debugging/Testing options: デバッグ/テスト用オプション: + Do not load the wallet and disable wallet RPC calls ウォレットは読み込まず、ウォレットRPCコールを無効化する + Do you want to rebuild the block database now? ブロック データベースを今すぐ再構築しますか? + Enable publish hash block in <address> <address>に対し、ハッシュブロックの公開を有効にする + Enable publish hash transaction in <address> <address> に対し、ハッシュトランザクションの公開を有効にする + Enable publish raw block in <address> <address> に対し、生ブロックの公開を有効にする + Enable publish raw transaction in <address> <address> に対し、生トランザクションの公開を有効にする + Enable transaction replacement in the memory pool (default: %u) メモリプール内のトランザクションの置換を有効化する (デフォルト: %u) + Error initializing block database ブロック データベースの初期化中にエラー + Error initializing wallet database environment %s! ウォレットのデータベース環境 %s 初期化エラー! + Error loading %s %s 読み込みエラー + Error loading %s: Wallet corrupted %s 読み込みエラー: ウォレットが壊れました + Error loading %s: Wallet requires newer version of %s %s の読み込みに失敗しました: ウォレットの読み込みにはより新しいバージョンの %s が必要です - Error loading %s: You can't disable HD on a already existing HD wallet - %s の読み込みエラー: HDウォレットが既に存在するため、HDウォレットを無効化できません - - + Error loading block database ブロック データベースの読み込みエラー + Error opening block database ブロック データベースの開始エラー + Error: Disk space is low! エラー: ディスク容量不足! + Failed to listen on any port. Use -listen=0 if you want this. ポートのリスンに失敗しました。必要であれば -listen=0 を使用してください。 + Importing... インポートしています…… + Incorrect or no genesis block found. Wrong datadir for network? 不正なブロックあるいは、生成されていないブロックが見つかりました。ネットワークの datadir が間違っていませんか? + Initialization sanity check failed. %s is shutting down. 初期化時の健全性チェックに失敗しました。%s を終了します。 - Invalid -onion address: '%s' - 無効な -onion アドレス:'%s' + + Invalid amount for -%s=<amount>: '%s' + -%s=<数量> に対する不正な額: '%s' - Invalid amount for -%s=<amount>: '%s' - -%s=<数量> に対する不正な額: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - 不正な額 -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + 不正な額 -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) トランザクションのメモリ・プールの総量を <n> メガバイト以下に維持する (初期値: %u) + + Loading P2P addresses... + + + + Loading banlist... banリストを読み込んでいます... + Location of the auth cookie (default: data dir) 認証クッキーの場所 (デフォルト: ) + Not enough file descriptors available. 使用可能なファイルディスクリプタが不足しています。 + Only connect to nodes in network <net> (ipv4, ipv6 or onion) <net> (ipv4, ipv6 または onion) ネットワーク内のノードだけに接続する + Print this help message and exit このヘルプメッセージを表示し終了する + Print version and exit バージョンを表示し終了 + Prune cannot be configured with a negative value. 剪定値は負の値に設定できません。 + Prune mode is incompatible with -txindex. 剪定モードは-txindexと互換性がありません。 + Rebuild chain state and block index from the blk*.dat files on disk チェイン状態およびブロックインデックスをディスク上の blk*.dat ファイルから再構築する + Rebuild chain state from the currently indexed blocks 既にインデックスされたブロックからチェイン状態を再構築する + + Replaying blocks... + + + + Rewinding blocks... ブロックを巻き戻しています... + Set database cache size in megabytes (%d to %d, default: %d) データベースのキャッシュサイズをメガバイトで設定 (%dから%d。初期値: %d) - Set maximum block size in bytes (default: %d) - 最大ブロックサイズをバイトで設定 (初期値: %d) - - + Specify wallet file (within data directory) ウォレットのファイルを指定 (データ・ディレクトリの中に) + The source code is available from %s. ソースコードは %s より入手可能です。 + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. このコンピュータの %s にバインドすることができません。おそらく %s は既に実行されています。 + Unsupported argument -benchmark ignored, use -debug=bench. サポートされていない引数 -benchmark は無視されました。-debug=bench を使用してください。 + Unsupported argument -debugnet ignored, use -debug=net. サポートされていない引数 -debugnet は無視されました。-debug=net を使用してください。 + Unsupported argument -tor found, use -onion. サポートされていない引数 -tor が見つかりました。-onion を使用してください。 + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) リッスンポートの割当に UPnP を使用 (初期値: %u) + Use the test chain テストチェインを利用する + User Agent comment (%s) contains unsafe characters. ユーザエージェントのコメント (%s) には安全でない文字が含まれています。 + Verifying blocks... ブロックの検証中... - Verifying wallet... - ウォレットの検証中... - - + Wallet %s resides outside data directory %s 財布 %s はデータ・ディレクトリ%sの外にあります + Wallet debugging/testing options: ウォレットのデバッグ・テスト用オプション: + Wallet needed to be rewritten: restart %s to complete ウォレットが書き直される必要がありました: 完了するために %s を再起動します + Wallet options: ウォレットオプション: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times 指定したアクセス元からのJSON-RPC接続を許可する。有効な<ip>は、単一のIP (例 1.2.3.4)、ネットワーク/ネットマスク (1.2.3.4/255.255.255.0)、またはネットワーク/CIDR (1.2.3.4/24)です。このオプションは複数回指定できます。 + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 指定されたアドレスおよび、そこに接続を行ってきたホワイトリストのピアに対してバインドを行います。IPv6の場合には [host]:port 表記を使用してください - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - 指定されたアドレスに対して JSON-RPC 接続をリッスンしするようバインドします。IPv6の場合には [host]:port 表記を使用してください。このオプションは複数回指定することが可能です (初期値: すべてのインターフェースに対してバインドする) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) umask 077 ではなく、システムのデフォルトパーミッションで新規ファイルを作成する (ウォレット機能が無効化されていた場合にのみ有効) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 自分のIPアドレスを解決する (規定値: リッスンをしており、-externalipまたは-proxyオプションが指定されていない場合は1) + Error: Listening for incoming connections failed (listen returned error %s) エラー: 内向きの接続をリッスンするのに失敗しました (エラー %s が返却されました) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 関連のアラートをもらってもすごく長いのフォークを見てもコマンドを実行 (コマンドの中にあるの%sはメッセージから置き換えさせる) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) トランザクションの中継、採掘および作成の際には、この値未満の手数料 (%s/kB単位) はゼロであるとみなす (デフォルト: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) paytxfee が設定されていなかった場合、平均して n ブロック以内にトランザクションが検証され始めるのに十分な手数料を含める (初期値: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - -maxtxfee=<amount> の数量の指定が不正です: '%s' (トランザクションが詰まってしまうのを防ぐため、少なくとも %s の最小中継手数料を指定しなければいけません) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount> の数量の指定が不正です: '%s' (トランザクションが詰まってしまうのを防ぐため、少なくとも %s の最小中継手数料を指定しなければいけません) + Maximum size of data in data carrier transactions we relay and mine (default: %u) 中継および採掘を行う際の、データ運送トランザクションの中のデータの最大サイズ (初期値: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) 認証情報をプロキシー接続ごとにランダム化する。これによりTorストリーム分離をすることができます (規定値: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - 最優先/最低手数料の最大サイズをバイトで指定 (初期値: %d) - - + The transaction amount is too small to send after the fee has been deducted 手数料差引後のトランザクションの金額が小さすぎるため、送金できません。 - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - BIP32 に従った階層的決定性鍵生成方式 (HD) を利用します。ウォレットの生成時ないし最初に起動した時にのみ有効です。 - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway ホワイトリストのピアはDoSによるアクセス禁止処理が無効化され、トランザクションは例えmempool内に既に存在していたとしても常にリレーされます。これは例えばゲートウェイに対して有用です + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain 非剪定モードに戻るためには-reindexオプションを使用してデータベースを再構築する必要があります。これによりブロックチェイン全体の再ダウンロードが行われます。 + (default: %u) (規定値: %u) + Accept public REST requests (default: %u) 公開 REST リクエストを許可する (初期値: %u) + Automatically create Tor hidden service (default: %d) Tor秘匿サービスを自動的に作成する (初期値: %d) + Connect through SOCKS5 proxy SOCKS5 プロキシ経由で接続する + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. データベースの読み込みエラー。シャットダウンします。 + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup 起動時に外部の blk000??.dat ファイルからブロックをインポート + Information 情報 - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - -paytxfee=<amount> に対する無効な数量です: '%s' (少なくとも %s でなければいけません) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + -paytxfee=<amount> に対する無効な数量です: '%s' (少なくとも %s でなければいけません) - Invalid netmask specified in -whitelist: '%s' - -whitelist に対する無効なネットマスクです: '%s' + + Invalid netmask specified in -whitelist: '%s' + -whitelist に対する無効なネットマスクです: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) 最大で <n> 個の孤立したトランザクションをメモリの中に保持する (初期値: %u) - Need to specify a port with -whitebind: '%s' - -whitebind を用いてポートを指定する必要があります: '%s' + + Need to specify a port with -whitebind: '%s' + -whitebind を用いてポートを指定する必要があります: '%s' + Node relay options: ノード中継オプション: + RPC server options: RPCサーバのオプション: + Reducing -maxconnections from %d to %d, because of system limitations. システム上の制約から、-maxconnections を %d から %d に削減しました。 + Rescan the block chain for missing wallet transactions on startup 起動時に失ったウォレットの取引のブロック チェーンを再スキャン + Send trace/debug info to console instead of debug.log file トレース/デバッグ情報を debug.log ファイルの代わりにコンソールへ送る - Send transactions as zero-fee transactions if possible (default: %u) - 可能な場合には手数料ゼロのトランザクションとしてトランザクションを送信する (初期値: %u) - - + Show all debugging options (usage: --help -help-debug) すべてのデバッグオプションを表示する (使い方: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) クライアント起動時に debug.log ファイルを縮小 (初期値: -debug オプションを指定しない場合は1) + Signing transaction failed 取引の署名に失敗しました + The transaction amount is too small to pay the fee トランザクションの金額が小さすぎて手数料を支払えません + This is experimental software. これは実験的なソフトウェアです。 + Tor control port password (default: empty) Tor管理ポートのパスワード (初期値: 空文字) + Tor control port to use if onion listening enabled (default: %s) Onion のリッスンが有効になっている場合に使用するTor管理ポート (初期値: %s) + Transaction amount too small 取引の額が小さ過ぎます + Transaction too large for fee policy 手数料ポリシーに対してトランザクションが大きすぎます + Transaction too large 取引が大き過ぎます + Unable to bind to %s on this computer (bind returned error %s) このコンピュータの %s にバインドすることができません (バインドが返したエラーは %s) + Upgrade wallet to latest format on startup 起動時にウォレットを最新のフォーマットにアップグレード + Username for JSON-RPC connections JSON-RPC 接続のユーザー名 + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning 警告 + Warning: unknown new rules activated (versionbit %i) 警告: 未知の新しいルールが有効化されました (バージョンビット %i) + Whether to operate in a blocks only mode (default: %u) ブロック限定モードにおいて動作を行うかどうか (初期値: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... ウォレットからすべてのトランザクションを消去しています... + ZeroMQ notification options: ZeroMQ通知オプション: + Password for JSON-RPC connections JSON-RPC 接続のパスワード + Execute command when the best block changes (%s in cmd is replaced by block hash) 最良のブロックに変更する際にコマンドを実行 (cmd の %s はブロック ハッシュに置換される) + Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode と -connect で DNS ルックアップを許可する - Loading addresses... - アドレスを読み込んでいます... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = トランザクションのメタデータ、例えばアカウントの所有者や支払リクエストの内容を保持する, 2 = トランザクションのメタデータを破棄する) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee が非常に高く設定されています!ひとつのトランザクションでこの量の手数料が支払われてしまうことがあります。 + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) mempool内でトランザクションを <n> 時間以上保持しない (初期値: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) 中継や採掘を行う際のトランザクション内の、sigopあたりバイト数の相当量 (初期値: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) トランザクション作成の際、この値未満の手数料 (%s/kB単位) はゼロであるとみなす (デフォルト: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) ホワイトリストのピアから受け取ったトランザクションに関しては、たとえローカルの中継ポリシーに違反しているとしても中継を行うようにする (デフォルト: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) -checkblocks のブロックの検証レベル (0-4, 初期値: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) getrawtransaction rpc 呼び出し時に用いる、完全なトランザクションインデックスを保持する (初期値: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) 不正なピアを再接続するまでの秒数 (初期値: %u) + Output debugging information (default: %u, supplying <category> is optional) デバッグ情報を出力する (初期値: %u, <category> の指定は任意です) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - 保有するピアアドレスが少ない場合、DNS ルックアップによりピアアドレスを問い合わせる (-connect/-noconnect を使っていない場合の初期値: 1) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) 非冗長モードで返却する生トランザクションやブロックの16進数表現のシリアライゼーションフォーマットを非 segwit (0) または segwit (1) のものに設定する (デフォルト: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Bloomフィルタによる、ブロックおよびトランザクションのフィルタリングを有効化する (初期値: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. これは手数料の推定機能が利用できない場合に支払うトランザクション手数料です。 + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. この製品はOpenSSLプロジェクトにより開発されたソフトウェアをOpenSSLツールキット %s として利用しています <https://www.openssl.org/>。また、Eric Young氏により開発された暗号ソフトウェア、Thomas Bernard氏により書かれたUPnPソフトウェアを用いています。 + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. ネットワークバージョン文字 (%i) の長さが最大の長さ (%i) を超えています。UAコメントの数や長さを削減してください。 + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 送信転送量を与えられた目標値以下に維持するようにする (24時間あたり何MiBかで指定)。0 の場合は無制限 (初期値: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. サポートされていない引数 -socks が見つかりました。SOCKSバージョンの設定はできないようになりました。SOCKS5プロキシのみがサポートされています。 + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. サポートされていない引数 -whitelistalwaysrelay は無視されました。-whitelistrelay または -whitelistforcerelay を利用してください + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Tor 秘匿サービスを通し、別々の SOCKS5 プロキシを用いることでピアに到達する (初期値: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect 警告: 未知のバージョンのブロックが採掘されました。未知のルールが導入された可能性があります + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. 警告: ウォレットファイルが破損していましたのでデータを復旧しました!元の %s は %s として %s に保存されました; 残高やトランザクションが正しくない場合にはバックアップから復元してください。 + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. ホワイトリストとして登録するピアノ、接続元の IP アドレス (例: 1.2.3.4) または CIDR 表現のネットワーク (例: 1.2.3.0/24)。複数回指定することもできる + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s の設定値は高すぎます + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (デフォルト: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) DNS ルックアップを通してピアアドレスを常に問い合わせる (初期値: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) 起動時に点検するブロック数 (初期値: %u, 0=すべて) + Include IP addresses in debug output (default: %u) デバッグ出力にIPアドレスを含める (初期値: %u) - Invalid -proxy address: '%s' - 無効な -proxy アドレス: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first 鍵プールが枯渇しました。まずはじめに keypoolrefill を呼び出してください + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) <port> で JSON-RPC 接続をリスン (初期値: %u、testnet は %u) + Listen for connections on <port> (default: %u or testnet: %u) 接続のリッスンを <port> で行う (初期値: %u、testnet: %u) + Maintain at most <n> connections to peers (default: %u) ピアの接続数を最大でも <n> 個に維持する (初期値: %u) + Make the wallet broadcast transactions ウォレットのトランザクションをブロードキャストする + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) 接続毎の最大受信バッファ <n>*1000 バイト (初期値: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) 接続毎の最大送信バッファ <n>*1000 バイト (初期値: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) デバッグ出力にタイムスタンプを付ける (初期値: %u) + Relay and mine data carrier transactions (default: %u) データ運送トランザクションのリレーおよび採掘を行う (初期値: %u) + Relay non-P2SH multisig (default: %u) P2SHでないマルチシグトランザクションをリレーする (初期値: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) full-RBF opt-in を利用してトランザクションを送信する (初期値: %u) + Set key pool size to <n> (default: %u) key pool のサイズを <n> (初期値: %u) にセット + Set maximum BIP141 block weight (default: %d) BIP141ブロック重みの最大値を設定 (初期値: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) RPC サービスのスレッド数を設定 (初期値: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) 設定ファイルの指定 (初期値: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) 接続のタイムアウトをミリセコンドで指定 (最小値: 1, 初期値: %d) + Specify pid file (default: %s) pid ファイルの指定 (初期値: %s) + Spend unconfirmed change when sending transactions (default: %u) トランザクション送信時に未検証のおつりを使用する (デフォルト: %u) + Starting network threads... ネットワークのスレッドを起動しています... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. ウォレットは最小中継手数料を下回る額の支払を拒否します。 + This is the minimum transaction fee you pay on every transaction. これはすべてのトランザクションに対して最低限支払うべき手数料です。 + This is the transaction fee you will pay if you send a transaction. これは取引を送信する場合に支払う取引手数料です。 + Threshold for disconnecting misbehaving peers (default: %u) 不正なピアを切断するためのしきい値 (初期値: %u) + Transaction amounts must not be negative 取引の額は負であってはいけません + Transaction has too long of a mempool chain トランザクションのmempoolチェインが長過ぎます + Transaction must have at least one recipient トランザクションは最低ひとつの受取先が必要です - Unknown network specified in -onlynet: '%s' - -onlynet で指定された '%s' は未知のネットワークです + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + -onlynet で指定された '%s' は未知のネットワークです + + + Insufficient funds 残高不足 + Loading block index... ブロック インデックスを読み込んでいます... - Add a node to connect to and attempt to keep the connection open - 接続するノードを追加し接続を保持します - - + Loading wallet... ウォレットを読み込んでいます... + Cannot downgrade wallet ウォレットのダウングレードはできません - Cannot write default address - 初期値のアドレスを書き込むことができません - - + Rescanning... 再スキャン中... - Done loading - 読み込み完了 - - + Error エラー diff --git a/src/qt/locale/raven_ka.ts b/src/qt/locale/raven_ka.ts index c2976e0a45..a3f8331090 100644 --- a/src/qt/locale/raven_ka.ts +++ b/src/qt/locale/raven_ka.ts @@ -1,1535 +1,8290 @@ - - - + AddressBookPage + Right-click to edit address or label დააჭირეთ მარჯვენა ღილაკს მისამართის ან იარლიყის ჩასასწორებლად + Create a new address ახალი მისამართის შექმნა + &New შექმ&ნა + Copy the currently selected address to the system clipboard მონიშნული მისამართის კოპირება სისტემურ კლიპბორდში + &Copy &კოპირება + C&lose &დახურვა + Delete the currently selected address from the list მონიშნული მისამართის წაშლა სიიდან + Export the data in the current tab to a file ამ ბარათიდან მონაცემების ექსპორტი ფაილში + &Export &ექსპორტი + &Delete &წაშლა + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + C&hoose &არჩევა + Sending addresses გამმგზავნი მისამართ + Receiving addresses მიმღები მისამართი + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + &Edit &რედაქტირება - + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address მისამართი - + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog ფრაზა-პაროლის დიალოგი + Enter passphrase შეიყვანეთ ფრაზა-პაროლი + New passphrase ახალი ფრაზა-პაროლი + Repeat new passphrase გაიმეორეთ ახალი ფრაზა-პაროლი + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet საფულის დაშიფრვა + + This operation needs your wallet passphrase to unlock the wallet. + + + + Unlock wallet საფულის განბლოკვა + + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet საფულის განბლოკვა + Change passphrase პაროლის შეცვლა - - - BanTableModel - - - RavenGUI - Sign &message... - ხელ&მოწერა + + Enter the old passphrase and new passphrase to the wallet. + - Synchronizing with network... - ქსელთან სინქრონიზება... + + Confirm wallet encryption + - &Overview - მიმ&ოხილვა + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Node - კვანძი + + Are you sure you wish to encrypt your wallet? + - Show general overview of wallet - საფულის ზოგადი მიმოხილვა + + + Wallet encrypted + - &Transactions - &ტრანსაქციები + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Browse transaction history - ტრანსაქციების ისტორიის დათვალიერება + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - E&xit - &გასვლა + + + + + Wallet encryption failed + - Quit application - გასვლა + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &About %1 - %1-ის &შესახებ + + + The supplied passphrases do not match. + - Show information about %1 - %1-ის შესახებ ინფორმაციის ჩვენება + + Wallet unlock failed + - About &Qt - &Qt-ს შესახებ + + + + The passphrase entered for the wallet decryption was incorrect. + - Show information about Qt - ინფორმაცია Qt-ს შესახებ + + Wallet decryption failed + - &Options... - &ოპციები + + Wallet passphrase was successfully changed. + - &Encrypt Wallet... - საფულის &დაშიფრვა + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Backup Wallet... - საფულის &არქივირება + + Asset Selection + - &Change Passphrase... - ფრაზა-პაროლის შე&ცვლა + + Quantity: + - &Sending addresses... - გაგზავნის მი&სამართი + + Bytes: + - &Receiving addresses... - მიღების მისამა&რთი + + Amount: + - Open &URI... - &URI-ის გახსნა... + + Dust: + - Reindexing blocks on disk... - დისკზე ბლოკების რეინდექსაცია... + + Fee: + - Send coins to a Raven address - მონეტების გაგზავნა Raven-მისამართზე + + After Fee: + - Backup wallet to another location - საფულის არქივირება სხვა ადგილზე + + Change: + - Change the passphrase used for wallet encryption - საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა + + (un)select all + - &Debug window - და&ხვეწის ფანჯარა + + Tree mode + - Open debugging and diagnostic console - დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება + + List mode + - &Verify message... - &ვერიფიკაცია + + View assets that you have the ownership asset for + - Raven - Raven + + View Administrator Assets + - Wallet - საფულე + + Asset + - &Send - &გაგზავნა + + Amount + - &Receive - &მიღება + + Received with label + - &Show / Hide - &ჩვენება/დაფარვა + + Received with address + - Show or hide the main Window - მთავარი ფანჯრის ჩვენება/დაფარვა + + Date + - Encrypt the private keys that belong to your wallet - თქვენი საფულის პირადი გასაღებების დაშიფრვა + + Confirmations + - Sign messages with your Raven addresses to prove you own them - მესიჯებზე ხელმოწერა თქვენი Raven-მისამართებით იმის დასტურად, რომ ის თქვენია + + Confirmed + - Verify messages to ensure they were signed with specified Raven addresses - შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Raven-მისამართით + + Copy address + - &File - &ფაილი + + Copy label + - &Settings - &პარამეტრები + + + Copy amount + - &Help - &დახმარება + + Copy transaction ID + - Tabs toolbar - ბარათების პანელი + + Lock unspent + - Request payments (generates QR codes and raven: URIs) - გადახდის მოთხოვნა (შეიქმნება QR-კოდები და raven: ბმულები) + + Unlock unspent + - Show the list of used sending addresses and labels - გამოყენებული გაგზავნის მისამართებისა და ნიშნულების სიის ჩვენება + + Copy quantity + - Show the list of used receiving addresses and labels - გამოყენებული მიღების მისამართებისა და ნიშნულების სიის ჩვენება + + Copy fee + - Open a raven: URI or payment request - raven: URI-ის ან გადახდის მოთხოვნის გახსნა + + Copy after fee + - &Command-line options - საკომანდო სტრიქონის ოპ&ციები + + Copy bytes + - %1 behind - %1 გავლილია + + Copy dust + - Last received block was generated %1 ago. - ბოლო მიღებული ბლოკის გენერირებიდან გასულია %1 + + Copy change + - Transactions after this will not yet be visible. - შემდგომი ტრანსაქციები ნაჩვენები ჯერ არ იქნება. + + (%1 locked) + - Error - შეცდომა + + yes + - Warning - გაფრთხილება + + no + - Information - ინფორმაცია + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Up to date - განახლებულია + + Can vary +/- %1 satoshi(s) per input. + - %1 client - %1 კლიენტი + + + (no label) + - Catching up... - მიმდინარეობს განახლება... + + change from %1 (%2) + - Date: %1 - - თარიღი: %1 - + + (change) + + + + AssetTableModel - Amount: %1 - - რაოდენობა: %1 - + + Name + - Type: %1 - - ტიპი: %1 - + + Quantity + + + + AssetsDialog - Address: %1 - - მისამართი: %1 - + + + Send Coins + - Sent transaction - გაგზავნილი ტრანსაქციები + + Asset Control Features + - Incoming transaction - მიღებული ტრანსაქციები + + Inputs... + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> + + automatically selected + - Wallet is <b>encrypted</b> and currently <b>locked</b> - საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> + + Insufficient funds! + - - - CoinControlDialog + Quantity: - რაოდენობა: + + Bytes: - ბაიტები: + + Amount: - თანხა: + - Fee: - საკომისიო: + + Dust: + - Dust: - მტვერი: + + Fee: + + After Fee: - დამატებითი საკომისიო: + + Change: - ხურდა: + - (un)select all - ყველას მონიშვნა/(მოხსნა) + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - განტოტვილი + + Custom change address + - List mode - სია + + Transaction Fee: + - Amount - თანხა + + Choose... + - Date - თარიღი + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Confirmations - დადასტურება + + Warning: Fee estimation is currently not possible. + - Confirmed - დადასტურებულია + + collapse fee-settings + - yes - დიახ + + Hide + - no - არა + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - (change) - (ხურდა) + + per kilobyte + - - - EditAddressDialog - Edit Address - მისამართის შეცვლა + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Label - ნიშნუ&ლი + + (read the tooltip) + - The label associated with this address list entry - მისამართების სიის ამ ჩანაწერთან ასოცირებული ნიშნული + + Recommended: + - The address associated with this address list entry. This can only be modified for sending addresses. - მისამართების სიის ამ ჩანაწერთან მისამართი ასოცირებული. მისი შეცვლა შეიძლება მხოლოდ გაგზავნის მისამართის შემთხვევაში. + + Custom: + - &Address - მის&ამართი + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - FreespaceChecker - A new data directory will be created. - შეიქმნება ახალი მონაცემთა კატალოგი. + + Confirmation time target: + - name - სახელი + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Directory already exists. Add %1 if you intend to create a new directory here. - კატალოგი უკვე არსებობს. დაამატეთ %1 თუ გინდათ ახალი კატალოგის აქვე შექმნა. + + Request Replace-By-Fee + - Path already exists, and is not a directory. - მისამართი უკვე არსებობს და არ წარმოადგენს კატალოგს. + + Confirm the send action + - Cannot create data directory here. - კატალოგის აქ შექმნა შეუძლებელია. + + S&end + - - - HelpMessageDialog - version - ვერსია + + Clear all fields of the form. + - (%1-bit) - (%1-ბიტი) + + Clear &All + - About %1 - %1-ის შესახებ + + Transfer to multiple recipients at once + - Command-line options - კომანდების ზოლის ოპციები + + Add &Recipient + - Usage: - გამოყენება: + + Balance: + - command-line options - კომანდების ზოლის ოპციები + + Copy quantity + - UI Options: - მომხმარებლის ინტერფეისის ოპციები: + + Copy amount + - - - Intro - Welcome - მოგესალმებით + + Copy fee + - Welcome to %1. - კეთილი იყოს თქვენი მობრძანება %1-ში. + + Copy after fee + - Use the default data directory - ნაგულისხმევი კატალოგის გამოყენება + + Copy bytes + - Use a custom data directory: - მითითებული კატალოგის გამოყენება: + + Copy dust + - Error - შეცდომა + + Copy change + - - %n GB of free space available - ხელმისაწვდომია თავისუფალი სივრცის %n გბ + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + - (of %n GB needed) - (საჭირო %n გბ-დან) + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + რაოდენობა: + + + + Bytes: + ბაიტები: + + + + Amount: + თანხა: + + + + Fee: + საკომისიო: + + + + Dust: + მტვერი: + + + + After Fee: + დამატებითი საკომისიო: + + + + Change: + ხურდა: + + + + (un)select all + ყველას მონიშვნა/(მოხსნა) + + + + Tree mode + განტოტვილი + + + + List mode + სია + + + + Amount + თანხა + + + + Received with label + + + + + Received with address + + + + + Date + თარიღი + + + + Confirmations + დადასტურება + + + + Confirmed + დადასტურებულია + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + დიახ + + + + no + არა + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + (ხურდა) + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + მისამართის შეცვლა + + + + &Label + ნიშნუ&ლი + + + + The label associated with this address list entry + მისამართების სიის ამ ჩანაწერთან ასოცირებული ნიშნული + + + + The address associated with this address list entry. This can only be modified for sending addresses. + მისამართების სიის ამ ჩანაწერთან მისამართი ასოცირებული. მისი შეცვლა შეიძლება მხოლოდ გაგზავნის მისამართის შემთხვევაში. + + + + &Address + მის&ამართი + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + შეიქმნება ახალი მონაცემთა კატალოგი. + + + + name + სახელი + + + + Directory already exists. Add %1 if you intend to create a new directory here. + კატალოგი უკვე არსებობს. დაამატეთ %1 თუ გინდათ ახალი კატალოგის აქვე შექმნა. + + + + Path already exists, and is not a directory. + მისამართი უკვე არსებობს და არ წარმოადგენს კატალოგს. + + + + Cannot create data directory here. + კატალოგის აქ შექმნა შეუძლებელია. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + ვერსია + + + + + (%1-bit) + (%1-ბიტი) + + + + About %1 + %1-ის შესახებ + + + + Command-line options + კომანდების ზოლის ოპციები + + + + Usage: + გამოყენება: + + + + command-line options + კომანდების ზოლის ოპციები + + + + UI Options: + მომხმარებლის ინტერფეისის ოპციები: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + მოგესალმებით + + + + Welcome to %1. + კეთილი იყოს თქვენი მობრძანება %1-ში. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + ნაგულისხმევი კატალოგის გამოყენება + + + + Use a custom data directory: + მითითებული კატალოგის გამოყენება: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + შეცდომა + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + ფორმა + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + უცნობი... + + + + Last block time + ბოლო ბლოკის დრო + + + + Progress + პროგრესი + + + + Progress increase per hour + + + + + + calculating... + მიმდინარეობს გამოთვლა... + + + + Estimated time left until synced + + + + + Hide + დამალვა + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + URI-ის გახსნა + + + + Open payment request from URI or file + გადახდის მოთხოვნის შექმნა URI-იდან ან ფაილიდან + + + + URI: + URI: + + + + Select payment request file + გადახდის მოთხოვნის ფაილის არჩევა + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + ოპციები + + + + &Main + &მთავარი + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + მონაცემთა ბაზის კეშის სი&დიდე + + + + MB + MB + + + + Number of script &verification threads + სკრიპტის &ვერიფიცირების ნაკადების რაოდენობა + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + პროქსის IP-მისამართი (მაგ.: IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + საკომანდო სტრიქონის აქტიური ოპციები, რომლებიც გადაფარავენ ზემოთნაჩვენებს: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + კლიენტის ყველა პარამეტრის დაბრუნება ნაგულისხმევ მნიშვნელობებზე. + + + + &Reset Options + დაბ&რუნების ოპციები + + + + &Network + &ქსელი + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + ს&აფულე + + + + Expert + ექსპერტი + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + დაუდასტურებელი ხურდის გამოყენების აკრძალვის შემდეგ მათი გამოყენება შეუძლებელი იქნება, სანამ ტრანსაქციას არ ექნება ერთი დასტური მაინც. ეს აისახება თქვენი ნაშთის დათვლაზეც. + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + როუტერში Raven-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP. + + + + Map port using &UPnP + პორტის გადამისამართება &UPnP-ით + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + პროქსის &IP: + + + + + &Port: + &პორტი + + + + + Port of the proxy (e.g. 9050) + პროქსის პორტი (მაგ.: 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &ფანჯარა + + + + Show only a tray icon after minimizing the window. + ფანჯრის მინიმიზებისას მხოლოდ იკონა სისტემურ ზონაში + + + + &Minimize to the tray instead of the taskbar + &მინიმიზება სისტემურ ზონაში პროგრამების პანელის ნაცვლად + + + + M&inimize on close + მ&ინიმიზება დახურვისას + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &ჩვენება + + + + User Interface &language: + სამომხმარებ&ლო ენა: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + ერთეუ&ლი: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + აირჩიეთ გასაგზავნი თანხის ნაგულისხმევი ერთეული. + + + + Whether to show coin control features or not. + ვაჩვენოთ თუ არა მონეტების მართვის პარამეტრები. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &გაუქმება + + + + default + ნაგულისხმევი + + + + none + ცარიელი + + + + Confirm options reset + დაადასტურეთ პარამეტრების დაბრუნება ნაგულისხმევზე + + + + + Client restart required to activate changes. + ცვლილებები ძალაში შევა კლიენტის ხელახალი გაშვების შემდეგ. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + ამ ცვლილებების ძალაში შესასვლელად საჭიროა კლიენტის დახურვა და ხელახალი გაშვება. + + + + The supplied proxy address is invalid. + პროქსის მისამართი არასწორია. + + + + OverviewPage + + + Form + ფორმა + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Raven-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული. + + + + Watch-only: + + + + + Available: + ხელმისაწვდომია: + + + + Your current spendable balance + თქვენი ხელმისაწვდომი ნაშთი + + + + Pending: + იგზავნება: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + დასადასტურებელი ტრანსაქციების საერთო რაოდენობა, რომლებიც ჯერ არ არის ასახული ბალანსში + + + + Immature: + მოუმზადებელია: + + + + Mined balance that has not yet matured + მოპოვებული თანხა, რომელიც ჯერ არ არის მზადყოფნაში + + + + Total: + სულ: + + + + Your current total balance + თქვენი სრული მიმდინარე ბალანსი + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + თანხა + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 სთ + + + + %1 m + %1 წთ + + + + + %1 s + + + + + None + + + + + N/A + მიუწვდ. + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 და %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + მიუწვდ. + + + + Client version + კლიენტის ვერსია + + + + &Information + &ინფორმაცია + + + + Debug window + დახვეწის ფანჯარა + + + + General + საერთო + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + სტარტის დრო + + + + Network + ქსელი + + + + Name + სახელი + + + + Number of connections + შეერთებების რაოდენობა + + + + Block chain + ბლოკთა ჯაჭვი + + + + Current number of blocks + ბლოკების მიმდინარე რაოდენობა + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + ბოლო ბლოკის დრო + + + + &Open + &შექმნა + + + + &Console + &კონსოლი + + + + &Network Traffic + &ქსელის ტრაფიკი + + + + Totals + სულ: + + + + In: + შემომავალი: + + + + Out: + გამავალი: + + + + Debug log file + დახვეწის ლოგ-ფაილი + + + + Clear console + კონსოლის გასუფთავება + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + აკრიფეთ <b>help</b> ფაშვებული ბრძანებების სანახავად. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + ხელ&მოწერა + + + + Synchronizing with network... + ქსელთან სინქრონიზება... + + + + &Overview + მიმ&ოხილვა + + + + Node + კვანძი + + + + Show general overview of wallet + საფულის ზოგადი მიმოხილვა + + + + &Transactions + &ტრანსაქციები + + + + Browse transaction history + ტრანსაქციების ისტორიის დათვალიერება + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &გასვლა + + + + Quit application + გასვლა + + + + &About %1 + %1-ის &შესახებ + + + + Show information about %1 + %1-ის შესახებ ინფორმაციის ჩვენება + + + + About &Qt + &Qt-ს შესახებ + + + + Show information about Qt + ინფორმაცია Qt-ს შესახებ + + + + &Options... + &ოპციები + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + საფულის &დაშიფრვა + + + + &Backup Wallet... + საფულის &არქივირება + + + + &Change Passphrase... + ფრაზა-პაროლის შე&ცვლა + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + გაგზავნის მი&სამართი + + + + &Receiving addresses... + მიღების მისამა&რთი + + + + Open &URI... + &URI-ის გახსნა... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + დისკზე ბლოკების რეინდექსაცია... + + + + Send coins to a Raven address + მონეტების გაგზავნა Raven-მისამართზე + + + + Backup wallet to another location + საფულის არქივირება სხვა ადგილზე + + + + Change the passphrase used for wallet encryption + საფულის დაშიფრვის ფრაზა-პაროლის შეცვლა + + + + Open debugging and diagnostic console + დახვეწისა და გიაგნოსტიკის კონსოლის გაშვება + + + + &Verify message... + &ვერიფიკაცია + + + + Raven + Raven + + + + Wallet + საფულე + + + + &Send + &გაგზავნა + + + + &Receive + &მიღება + + + + &Show / Hide + &ჩვენება/დაფარვა + + + + Show or hide the main Window + მთავარი ფანჯრის ჩვენება/დაფარვა + + + + Encrypt the private keys that belong to your wallet + თქვენი საფულის პირადი გასაღებების დაშიფრვა + + + + Sign messages with your Raven addresses to prove you own them + მესიჯებზე ხელმოწერა თქვენი Raven-მისამართებით იმის დასტურად, რომ ის თქვენია + + + + Verify messages to ensure they were signed with specified Raven addresses + შეამოწმეთ, რომ მესიჯები ხელმოწერილია მითითებული Raven-მისამართით + + + + &File + &ფაილი + + + + &Help + &დახმარება + + + + Request payments (generates QR codes and raven: URIs) + გადახდის მოთხოვნა (შეიქმნება QR-კოდები და raven: ბმულები) + + + + Show the list of used sending addresses and labels + გამოყენებული გაგზავნის მისამართებისა და ნიშნულების სიის ჩვენება + + + + Show the list of used receiving addresses and labels + გამოყენებული მიღების მისამართებისა და ნიშნულების სიის ჩვენება + + + + Open a raven: URI or payment request + raven: URI-ის ან გადახდის მოთხოვნის გახსნა + + + + &Command-line options + საკომანდო სტრიქონის ოპ&ციები + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 გავლილია + + + + Last received block was generated %1 ago. + ბოლო მიღებული ბლოკის გენერირებიდან გასულია %1 + + + + Transactions after this will not yet be visible. + შემდგომი ტრანსაქციები ნაჩვენები ჯერ არ იქნება. + + + + Error + შეცდომა + + + + Warning + გაფრთხილება + + + + Information + ინფორმაცია + + + + Up to date + განახლებულია + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 კლიენტი + + + + Connecting to peers... + + + + + Catching up... + მიმდინარეობს განახლება... + + + + Date: %1 + + თარიღი: %1 + + + + + + Amount: %1 + + რაოდენობა: %1 + + + + + Type: %1 + + ტიპი: %1 + + + + + Label: %1 + + + + + + Address: %1 + + მისამართი: %1 + + + + + Sent transaction + გაგზავნილი ტრანსაქციები + + + + Incoming transaction + მიღებული ტრანსაქციები + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>განბლოკილია</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + საფულე <b>დაშიფრულია</b> და ამჟამად <b>დაბლოკილია</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + თ&ანხა: + + + + &Label: + ნიშნუ&ლი: + + + + &Message: + &მესიჯი: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + რომელიმე ადრე გამოყენებული მიღების მისამართის გამოყენება. ეს ამცირებს უსაფრთხოებასა და პრივატულობას. ნუ გამოიყენებთ ამ ოპციას, თუ არ ახდენთ ადრე მოთხოვნილი გადახდის ხელახლა გენერირებას. + + + + R&euse an existing receiving address (not recommended) + ად&რე გამოყენებული მიღების მისამართის გამოყენება (არ არის რეკომენდებული) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + + + + + An optional label to associate with the new receiving address. + არააუცილებელი ნიშნული ახალ მიღების მისამართთან ასოცირებისათვის. + + + + Use this form to request payments. All fields are <b>optional</b>. + გამოიყენეთ ეს ფორმა გადახდის მოთხოვნისათვის. ყველა ველი <b>არააუცილებელია</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + მოთხოვნის მოცულობა. არააუცილებელია. ჩაწერეთ 0 ან დატოვეთ ცარიელი, თუ არ მოითხოვება კონკრეტული მოცულობა. + + + + Clear all fields of the form. + ფორმის ყველა ველის წაშლა + + + + Clear + წაშლა + + + + Requested payments history + მოთხოვნილი გადახდების ისტორია + + + + &Request payment + &გადახდის მოთხოვნა + + + + Show the selected request (does the same as double clicking an entry) + არჩეული მოთხოვნის ჩვენება (იგივეა, რაც ჩანაწერზე ორჯერ ჩხვლეტა) + + + + Show + ჩვენება + + + + Remove the selected entries from the list + მონიშნული ჩანაწერების წაშლა სიიდან + + + + Remove + წაშლა + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR-კოდი + + + + Copy &URI + &URI-ის კოპირება + + + + Copy &Address + მის&ამართის კოპირება + + + + &Save Image... + გამო&სახულების შენახვა... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + მისამართი + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + მონეტების გაგზავნა + + + + Coin Control Features + მონეტების კონტროლის პარამეტრები + + + + Inputs... + ხარჯები... + + + + automatically selected + არჩეულია ავტომატურად + + + + Insufficient funds! + არ არის საკმარისი თანხა! + + + + Quantity: + რაოდენობა: + + + + Bytes: + ბაიტები: + + + + Amount: + თანხა: + + + + Fee: + საკომისიო: + + + + After Fee: + დამატებითი საკომისიო: + + + + Change: + ხურდა: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + ამის გააქტიურებისას თუ ხურდის მისამართი ცარიელია ან არასწორია, ხურდა გაიგზავნება ახლად გენერირებულ მისამართებზე. + + + + Custom change address + ხურდის მისამართი + + + + Transaction Fee: + ტრანსაქციის საფასური - საკომისიო: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + დამალვა + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად + + + + Add &Recipient + &რეციპიენტის დამატება + + + + Clear all fields of the form. + ფორმის ყველა ველის წაშლა + + + + Dust: + მტვერი: + + + + Confirmation time target: + + + + + Clear &All + გ&ასუფთავება + + + + Balance: + ბალანსი: + + + + Confirm the send action + გაგზავნის დადასტურება + + + + S&end + გაგ&ზავნა + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &რაოდენობა + + + + &Label: + ნიშნუ&ლი: + + + + Choose previously used address + აირჩიეთ ადრე გამოყენებული მისამართი + + + + This is a normal payment. + ეს არის ჩვეულებრივი გადახდა. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + მისამართის ჩასმა კლიპბორდიდან + + + + Alt+P + Alt+P + + + + + + Remove this entry + ჩანაწერის წაშლა + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + მესიჯი: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + + + + + Memo: + შენიშვნა: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + არ გამორთოთ კომპიუტერი ამ ფანჯრის გაქრობამდე. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + ხელმოწერები - მესიჯის ხელმოწერა/ვერიფიკაცია + + + + &Sign Message + მე&სიჯის ხელმოწერა + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + აირჩიეთ ადრე გამოყენებული მისამართი + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + მისამართის ჩასმა კლიპბორდიდან + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + აკრიფეთ ხელმოსაწერი მესიჯი + + + + Signature + ხელმოწერა + + + + Copy the current signature to the system clipboard + მიმდინარე ხელმოწერის კოპირება კლიპბორდში + + + + Sign the message to prove you own this Raven address + მოაწერეთ ხელი იმის დასადასტურებლად, რომ ეს მისამართი თქვენია + + + + Sign &Message + &მესიჯის ხელმოწერა + + + + Reset all sign message fields + ხელმოწერის ყველა ველის წაშლა + + + + + Clear &All + გ&ასუფთავება + + + + &Verify Message + მესიჯის &ვერიფიკაცია + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Raven-მისამართით + + + + Verify &Message + &მესიჯის ვერიფიკაცია + + + + Reset all verify message fields + ვერიფიკაციის ყველა ველის წაშლა + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + ტრანსაქციის დაწვრილებითი აღწერილობა + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + მისამართი + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + ოპციები: + + + + Specify data directory + მიუთითეთ მონაცემთა კატალოგი + + + + Connect to a node to retrieve peer addresses, and disconnect + მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა + + + + Specify your own public address + მიუთითეთ თქვენი საჯარო მისამართი + + + + Accept command line and JSON-RPC commands + საკომანდო სტრიქონისა და JSON-RPC-კომამდების ნებართვა + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + რეზიდენტულად გაშვება და კომანდების მიღება + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + მოცემულ მისამართზე მიჯაჭვა მუდმივად მასზე მიყურადებით. გამოიყენეთ [host]:port ფორმა IPv6-სათვის + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <category> შეიძლება იყოს: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + ბლოკის შექმნის ოპციები: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + შენიშნულია ბლოკთა ბაზის დაზიანება + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + არ ჩაიტვირთოს საფულე და აიკრძალოს საფულისადმი RPC-მიმართვები + + + + Do you want to rebuild the block database now? + გავუშვათ ბლოკთა ბაზის ხელახლა აგება ეხლა? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + ვერ ინიციალიზდება ბლოკების ბაზა + + + + Error initializing wallet database environment %s! + ვერ ინიციალიზდება საფულის ბაზის გარემო %s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + არ იტვირთება ბლოკების ბაზა + + + + Error opening block database + ბლოკთა ბაზის შექმნა ვერ მოხერხდა + + + + Error: Disk space is low! + შეცდომა: დისზე არ არის ადგილი! + + + + Failed to listen on any port. Use -listen=0 if you want this. + ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + საწყისი ბლოკი არ არსებობს ან არასწორია. ქსელის მონაცემთა კატალოგი datadir ხომ არის არასწორი? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + არ არის საკმარისი ფაილ-დესკრიპტორები. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + მიუთითეთ საფულის ფაილი (კატალოგში) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + - - - ModalOverlay - Form - ფორმა + + Use UPnP to map the listening port (default: %u) + - Unknown... - უცნობი... + + Use the test chain + - Last block time - ბოლო ბლოკის დრო + + User Agent comment (%s) contains unsafe characters. + - Progress - პროგრესი + + Verifying blocks... + ბლოკების ვერიფიკაცია... - calculating... - მიმდინარეობს გამოთვლა... + + Wallet %s resides outside data directory %s + საფულე %s მდებარეობს მონაცემთა კატალოგის %s გარეთ - Hide - დამალვა + + Wallet debugging/testing options: + - - - OpenURIDialog - Open URI - URI-ის გახსნა + + Wallet needed to be rewritten: restart %s to complete + - Open payment request from URI or file - გადახდის მოთხოვნის შექმნა URI-იდან ან ფაილიდან + + Wallet options: + სფულის ოპციები: - URI: - URI: + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Select payment request file - გადახდის მოთხოვნის ფაილის არჩევა + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - - - OptionsDialog - Options - ოპციები + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - &Main - &მთავარი + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Size of &database cache - მონაცემთა ბაზის კეშის სი&დიდე + + Error: Listening for incoming connections failed (listen returned error %s) + - MB - MB + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + ბრძანების შესრულება შესაბამისი უწყების მიღებისას ან როცა შეინიშნება საგრძნობი გახლეჩა (cmd-ში %s შეიცვლება მესიჯით) - Number of script &verification threads - სკრიპტის &ვერიფიცირების ნაკადების რაოდენობა + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - პროქსის IP-მისამართი (მაგ.: IPv4: 127.0.0.1 / IPv6: ::1) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Active command-line options that override above options: - საკომანდო სტრიქონის აქტიური ოპციები, რომლებიც გადაფარავენ ზემოთნაჩვენებს: + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Reset all client options to default. - კლიენტის ყველა პარამეტრის დაბრუნება ნაგულისხმევ მნიშვნელობებზე. + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - &Reset Options - დაბ&რუნების ოპციები + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Network - &ქსელი + + The transaction amount is too small to send after the fee has been deducted + - W&allet - ს&აფულე + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Expert - ექსპერტი + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - დაუდასტურებელი ხურდის გამოყენების აკრძალვის შემდეგ მათი გამოყენება შეუძლებელი იქნება, სანამ ტრანსაქციას არ ექნება ერთი დასტური მაინც. ეს აისახება თქვენი ნაშთის დათვლაზეც. + + (default: %u) + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - როუტერში Raven-კლიენტის პორტის ავტომატური გახსნა. მუშაობს, თუ თქვენს როუტერს ჩართული აქვს UPnP. + + Accept public REST requests (default: %u) + - Map port using &UPnP - პორტის გადამისამართება &UPnP-ით + + Automatically create Tor hidden service (default: %d) + - Proxy &IP: - პროქსის &IP: + + Connect through SOCKS5 proxy + - &Port: - &პორტი + + Error loading %s: You can't disable HD on an already existing HD wallet + - Port of the proxy (e.g. 9050) - პროქსის პორტი (მაგ.: 9050) + + Error reading from database, shutting down. + - IPv4 - IPv4 + + Error upgrading chainstate database + - IPv6 - IPv6 + + Imports blocks from external blk000??.dat file on startup + - Tor - Tor + + Information + ინფორმაცია - &Window - &ფანჯარა + + Invalid -onion address or hostname: '%s' + - Show only a tray icon after minimizing the window. - ფანჯრის მინიმიზებისას მხოლოდ იკონა სისტემურ ზონაში + + Invalid -proxy address or hostname: '%s' + - &Minimize to the tray instead of the taskbar - &მინიმიზება სისტემურ ზონაში პროგრამების პანელის ნაცვლად + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - M&inimize on close - მ&ინიმიზება დახურვისას + + Invalid netmask specified in -whitelist: '%s' + - &Display - &ჩვენება + + Keep at most <n> unconnectable transactions in memory (default: %u) + - User Interface &language: - სამომხმარებ&ლო ენა: + + Need to specify a port with -whitebind: '%s' + - &Unit to show amounts in: - ერთეუ&ლი: + + Node relay options: + - Choose the default subdivision unit to show in the interface and when sending coins. - აირჩიეთ გასაგზავნი თანხის ნაგულისხმევი ერთეული. + + RPC server options: + - Whether to show coin control features or not. - ვაჩვენოთ თუ არა მონეტების მართვის პარამეტრები. + + Reducing -maxconnections from %d to %d, because of system limitations. + - &OK - &OK + + Rescan the block chain for missing wallet transactions on startup + - &Cancel - &გაუქმება + + Send trace/debug info to console instead of debug.log file + ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად - default - ნაგულისხმევი + + Show all debugging options (usage: --help -help-debug) + - none - ცარიელი + + Shrink debug.log file on client startup (default: 1 when no -debug) + debug.log ფაილის შეკუმშვა გაშვებისას (ნაგულისხმევია: 1 როცა არ აყენია -debug) - Confirm options reset - დაადასტურეთ პარამეტრების დაბრუნება ნაგულისხმევზე + + Signing transaction failed + ტრანსაქციების ხელმოწერა ვერ მოხერხდა - Client restart required to activate changes. - ცვლილებები ძალაში შევა კლიენტის ხელახალი გაშვების შემდეგ. + + The transaction amount is too small to pay the fee + - This change would require a client restart. - ამ ცვლილებების ძალაში შესასვლელად საჭიროა კლიენტის დახურვა და ხელახალი გაშვება. + + This is experimental software. + - The supplied proxy address is invalid. - პროქსის მისამართი არასწორია. + + Tor control port password (default: empty) + - - - OverviewPage - Form - ფორმა + + Tor control port to use if onion listening enabled (default: %s) + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - ნაჩვენები ინფორმაცია შეიძლება მოძველებული იყოს. თქვენი საფულე ავტომატურად სინქრონიზდება Raven-ის ქსელთან კავშირის დამყარების შემდეგ, ეს პროცესი ჯერ არ არის დასრულებული. + + Transaction amount too small + ტრანსაქციების რაოდენობა ძალიან ცოტაა - Available: - ხელმისაწვდომია: + + Transaction too large for fee policy + - Your current spendable balance - თქვენი ხელმისაწვდომი ნაშთი + + Transaction too large + ტრანსაქცია ძალიან დიდია - Pending: - იგზავნება: + + Unable to bind to %s on this computer (bind returned error %s) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - დასადასტურებელი ტრანსაქციების საერთო რაოდენობა, რომლებიც ჯერ არ არის ასახული ბალანსში + + Upgrade wallet to latest format on startup + - Immature: - მოუმზადებელია: + + Username for JSON-RPC connections + მომხმარებლის სახელი JSON-RPC-შეერთებისათვის - Mined balance that has not yet matured - მოპოვებული თანხა, რომელიც ჯერ არ არის მზადყოფნაში + + Valid Verifier + - Total: - სულ: + + Variable is not allow in the expression: ' + - Your current total balance - თქვენი სრული მიმდინარე ბალანსი + + Verifier String doesn't exist for asset: + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - თანხა + + Verifier String for asset trasnfer, not found + - %1 h - %1 სთ + + Verifier not found for asset: + - %1 m - %1 წთ + + Verifier string can not be empty. To default to true, use "true" + - N/A - მიუწვდ. + + Verifier string is empty + - %1 and %2 - %1 და %2 + + Verifier string not found + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - მიუწვდ. + + Verifying wallet(s)... + - Client version - კლიენტის ვერსია + + Warning + გაფრთხილება - &Information - &ინფორმაცია + + Warning: unknown new rules activated (versionbit %i) + - Debug window - დახვეწის ფანჯარა + + Whether to operate in a blocks only mode (default: %u) + - General - საერთო + + You need to rebuild the database using -reindex to change -txindex + - Startup time - სტარტის დრო + + Zapping all transactions from wallet... + ტრანსაქციების ჩახსნა საფულიდან... - Network - ქსელი + + ZeroMQ notification options: + - Name - სახელი + + Password for JSON-RPC connections + პაროლი JSON-RPC-შეერთებისათვის - Number of connections - შეერთებების რაოდენობა + + Execute command when the best block changes (%s in cmd is replaced by block hash) + კომანდის შესრულება უკეთესი ბლოკის გამოჩენისას (%s კომანდაში ჩანაცვლდება ბლოკის ჰეშით) - Block chain - ბლოკთა ჯაჭვი + + Allow DNS lookups for -addnode, -seednode and -connect + DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის - Current number of blocks - ბლოკების მიმდინარე რაოდენობა + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Last block time - ბოლო ბლოკის დრო + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - &Open - &შექმნა + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - &Console - &კონსოლი + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - &Network Traffic - &ქსელის ტრაფიკი + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - &Clear - &წაშლა + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Totals - სულ: + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - In: - შემომავალი: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Out: - გამავალი: + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Debug log file - დახვეწის ლოგ-ფაილი + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Clear console - კონსოლის გასუფთავება + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - კლავიშები "ზევით" და "ქვევით" - ისტორიაში მოძრაობა, <b>Ctrl-L</b> - ეკრანის გასუფთავება. + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Type <b>help</b> for an overview of available commands. - აკრიფეთ <b>help</b> ფაშვებული ბრძანებების სანახავად. + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - %1 B - %1 B + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - %1 KB - %1 KB + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - %1 MB - %1 MB + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - %1 GB - %1 GB + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - - - ReceiveCoinsDialog - &Amount: - თ&ანხა: + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - &Label: - ნიშნუ&ლი: + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - &Message: - &მესიჯი: + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - რომელიმე ადრე გამოყენებული მიღების მისამართის გამოყენება. ეს ამცირებს უსაფრთხოებასა და პრივატულობას. ნუ გამოიყენებთ ამ ოპციას, თუ არ ახდენთ ადრე მოთხოვნილი გადახდის ხელახლა გენერირებას. + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - R&euse an existing receiving address (not recommended) - ად&რე გამოყენებული მიღების მისამართის გამოყენება (არ არის რეკომენდებული) + + Output debugging information (default: %u, supplying <category> is optional) + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - არააუცილებელი მესიჯი, რომელიც ერთვის გადახდის მოთხოვნას და ნაჩვენები იქნება მოთხოვნის გახსნისას. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - An optional label to associate with the new receiving address. - არააუცილებელი ნიშნული ახალ მიღების მისამართთან ასოცირებისათვის. + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Use this form to request payments. All fields are <b>optional</b>. - გამოიყენეთ ეს ფორმა გადახდის მოთხოვნისათვის. ყველა ველი <b>არააუცილებელია</b>. + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - An optional amount to request. Leave this empty or zero to not request a specific amount. - მოთხოვნის მოცულობა. არააუცილებელია. ჩაწერეთ 0 ან დატოვეთ ცარიელი, თუ არ მოითხოვება კონკრეტული მოცულობა. + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Clear all fields of the form. - ფორმის ყველა ველის წაშლა + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Clear - წაშლა + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Requested payments history - მოთხოვნილი გადახდების ისტორია + + The default height that is required before rewards are allowed to be sent out + - &Request payment - &გადახდის მოთხოვნა + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + - Show the selected request (does the same as double clicking an entry) - არჩეული მოთხოვნის ჩვენება (იგივეა, რაც ჩანაწერზე ორჯერ ჩხვლეტა) + + This is the transaction fee you may pay when fee estimates are not available. + - Show - ჩვენება + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Remove the selected entries from the list - მონიშნული ჩანაწერების წაშლა სიიდან + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Remove - წაშლა + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - - - ReceiveRequestDialog - QR Code - QR-კოდი + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Copy &URI - &URI-ის კოპირება + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Copy &Address - მის&ამართის კოპირება + + Unable to reissue asset: unit must be larger than current unit selection + - &Save Image... - გამო&სახულების შენახვა... + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Address - მისამართი + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - მონეტების გაგზავნა + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Coin Control Features - მონეტების კონტროლის პარამეტრები + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Inputs... - ხარჯები... + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - automatically selected - არჩეულია ავტომატურად + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Insufficient funds! - არ არის საკმარისი თანხა! + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Quantity: - რაოდენობა: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Bytes: - ბაიტები: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Amount: - თანხა: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Fee: - საკომისიო: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - After Fee: - დამატებითი საკომისიო: + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Change: - ხურდა: + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - ამის გააქტიურებისას თუ ხურდის მისამართი ცარიელია ან არასწორია, ხურდა გაიგზავნება ახლად გენერირებულ მისამართებზე. + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Custom change address - ხურდის მისამართი + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Transaction Fee: - ტრანსაქციის საფასური - საკომისიო: + + %s is set very high! + - Hide - დამალვა + + ' doesn't exist in the database + - Send to multiple recipients at once - გაგზავნა რამდენიმე რეციპიენტთან ერთდროულად + + ' has already been used + - Add &Recipient - &რეციპიენტის დამატება + + ' is not a valid character in the expression: + - Clear all fields of the form. - ფორმის ყველა ველის წაშლა + + ' the amount trying to reissue is to large + - Dust: - მტვერი: + + (default: %s) + - Clear &All - გ&ასუფთავება + + A space separated list of 12-words used to import a bip44 wallet + - Balance: - ბალანსი: + + Always query for peer addresses via DNS lookup (default: %u) + - Confirm the send action - გაგზავნის დადასტურება + + Asset Transfer amounts must be greater than 0 + - S&end - გაგ&ზავნა + + Asset doesn't exist: + - - - SendCoinsEntry - A&mount: - &რაოდენობა + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Pay &To: - ადრესა&ტი: + + Asset name is not valid + - &Label: - ნიშნუ&ლი: + + Asset with this name is already in the mempool + - Choose previously used address - აირჩიეთ ადრე გამოყენებული მისამართი + + Done Loading + - This is a normal payment. - ეს არის ჩვეულებრივი გადახდა. + + Enable publish raw asset messages in <address> + - Alt+A - Alt+A + + Error creating %s: You can't create non-HD wallets with this version. + - Paste address from clipboard - მისამართის ჩასმა კლიპბორდიდან + + Error loading wallet %s. -wallet filename must be a regular file. + - Alt+P - Alt+P + + Error loading wallet %s. Duplicate -wallet filename specified. + - Remove this entry - ჩანაწერის წაშლა + + Error loading wallet %s. Invalid characters in -wallet filename. + - Message: - მესიჯი: + + Error not set + - Enter a label for this address to add it to the list of used addresses - შეიყვანეთ ამ მისამართის ნიშნული გამოყენებული მისამართების სიაში დასამატებლად + + Error writing bip 39 passphrase to database + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - მესიჯი, რომელიც თან ერთვის მონეტებს: URI, რომელიც შეინახება ტრანსაქციასთან ერთად თქვენთვის. შენიშვნა: მესიჯი არ გაყვება გადახდას ბითქოინის ქსელში. + + Error writing bip 39 vchseed to database + - Pay To: - ადრესატი: + + Error writing bip 39 words to database + - Memo: - შენიშვნა: + + Every '(' must have a corresponding ')' in the expression: + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - არ გამორთოთ კომპიუტერი ამ ფანჯრის გაქრობამდე. + + Failed to extract destination from change script + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - ხელმოწერები - მესიჯის ხელმოწერა/ვერიფიკაცია + + Failed to find restricted asset change address from inputs + - &Sign Message - მე&სიჯის ხელმოწერა + + Failed to get asset data from script + - Choose previously used address - აირჩიეთ ადრე გამოყენებული მისამართი + + Failed to get verifier string from output: + - Alt+A - Alt+A + + Failed to load Assets Database + - Paste address from clipboard - მისამართის ჩასმა კლიპბორდიდან + + Flag must be 1 or 0 + - Alt+P - Alt+P + + How many blocks to check at startup (default: %u, 0 = all) + - Enter the message you want to sign here - აკრიფეთ ხელმოსაწერი მესიჯი + + Include IP addresses in debug output (default: %u) + - Signature - ხელმოწერა + + Init Message Channels - Scanning Asset Transactions + - Copy the current signature to the system clipboard - მიმდინარე ხელმოწერის კოპირება კლიპბორდში + + Insufficient asset funds + - Sign the message to prove you own this Raven address - მოაწერეთ ხელი იმის დასადასტურებლად, რომ ეს მისამართი თქვენია + + Invalid Qualifier Name: + - Sign &Message - &მესიჯის ხელმოწერა + + Invalid expressions in verifier string: + - Reset all sign message fields - ხელმოწერის ყველა ველის წაშლა + + Invalid parameter: amount must be + - Clear &All - გ&ასუფთავება + + Invalid parameter: amount must be between + - &Verify Message - მესიჯის &ვერიფიკაცია + + Invalid parameter: asset amount can't be equal to or less than zero. + - Verify the message to ensure it was signed with the specified Raven address - შეამოწმეთ, რომ მესიჯი ხელმოწერილია მითითებული Raven-მისამართით + + Invalid parameter: asset amount greater than max money: + - Verify &Message - &მესიჯის ვერიფიკაცია + + Invalid parameter: asset_name ' + - Reset all verify message fields - ვერიფიკაციის ყველა ველის წაშლა + + Invalid parameter: has_ipfs must be 0 or 1. + - - - SplashScreen - [testnet] - [testnet] + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - - - TrafficGraphWidget - KB/s - KB/s + + Invalid parameter: reissuable must be 0 or 1 + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - ტრანსაქციის დაწვრილებითი აღწერილობა + + Invalid parameter: reissuable must be 0 + - - - TransactionTableModel - - - TransactionView - Address - მისამართი + + Invalid parameter: units must be + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - ოპციები: + + Invalid parameter: units must be between 0-8. + - Specify data directory - მიუთითეთ მონაცემთა კატალოგი + + Invalid syntax: + - Connect to a node to retrieve peer addresses, and disconnect - მიერთება კვანძთან, პირების მისამართების მიღება და გათიშვა + + Keypool ran out, please call keypoolrefill first + - Specify your own public address - მიუთითეთ თქვენი საჯარო მისამართი + + Length is to large. Please use a smaller length + - Accept command line and JSON-RPC commands - საკომანდო სტრიქონისა და JSON-RPC-კომამდების ნებართვა + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Run in the background as a daemon and accept commands - რეზიდენტულად გაშვება და კომანდების მიღება + + Listen for connections on <port> (default: %u or testnet: %u) + - Raven Core - Raven Core + + Maintain at most <n> connections to peers (default: %u) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - მოცემულ მისამართზე მიჯაჭვა მუდმივად მასზე მიყურადებით. გამოიყენეთ [host]:port ფორმა IPv6-სათვის + + Make the wallet broadcast transactions + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - კომანდის შესრულება საფულის ტრანსაქციის ცვლილებისას (%s კომანდაში ჩანაცვლდება TxID-ით) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - <category> can be: - <category> შეიძლება იყოს: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Block creation options: - ბლოკის შექმნის ოპციები: + + Mempool cleared + - Corrupted block database detected - შენიშნულია ბლოკთა ბაზის დაზიანება + + Multiple verifier strings found in transaction + - Do not load the wallet and disable wallet RPC calls - არ ჩაიტვირთოს საფულე და აიკრძალოს საფულისადმი RPC-მიმართვები + + Passphrase securing your 12-word mnemonic word-list + - Do you want to rebuild the block database now? - გავუშვათ ბლოკთა ბაზის ხელახლა აგება ეხლა? + + Prepend debug output with timestamp (default: %u) + - Error initializing block database - ვერ ინიციალიზდება ბლოკების ბაზა + + Relay and mine data carrier transactions (default: %u) + - Error initializing wallet database environment %s! - ვერ ინიციალიზდება საფულის ბაზის გარემო %s! + + Relay non-P2SH multisig (default: %u) + - Error loading block database - არ იტვირთება ბლოკების ბაზა + + Restricted asset transfer from address that has been frozen + - Error opening block database - ბლოკთა ბაზის შექმნა ვერ მოხერხდა + + Send transactions with full-RBF opt-in enabled (default: %u) + - Error: Disk space is low! - შეცდომა: დისზე არ არის ადგილი! + + Set key pool size to <n> (default: %u) + - Failed to listen on any port. Use -listen=0 if you want this. - ვერ ხერხდება პორტების მიყურადება. თუ გსურთ, გამოიყენეთ -listen=0. + + Set maximum BIP141 block weight (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - საწყისი ბლოკი არ არსებობს ან არასწორია. ქსელის მონაცემთა კატალოგი datadir ხომ არის არასწორი? + + Set the Maximum reorg depth (default: %u) + - Invalid -onion address: '%s' - არასწორია მისამართი -onion: '%s' + + Set the number of threads to service RPC calls (default: %d) + - Not enough file descriptors available. - არ არის საკმარისი ფაილ-დესკრიპტორები. + + Signing asset transaction failed + - Set maximum block size in bytes (default: %d) - ბლოკის მაქსიმალური ზომის განსაზღვრა ბაიტებში (ნადულისხმევი: %d) + + Specify configuration file (default: %s) + - Specify wallet file (within data directory) - მიუთითეთ საფულის ფაილი (კატალოგში) + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verifying blocks... - ბლოკების ვერიფიკაცია... + + Specify pid file (default: %s) + - Verifying wallet... - საფულის ვერიფიკაცია... + + Spend unconfirmed change when sending transactions (default: %u) + - Wallet %s resides outside data directory %s - საფულე %s მდებარეობს მონაცემთა კატალოგის %s გარეთ + + Starting network threads... + - Wallet options: - სფულის ოპციები: + + The symbol: ' + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - ბრძანების შესრულება შესაბამისი უწყების მიღებისას ან როცა შეინიშნება საგრძნობი გახლეჩა (cmd-ში %s შეიცვლება მესიჯით) + + The verifier string has two operators without a tag between them + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - მაღალპრიორიტეტული/დაბალსაკომისიოიანი ტრანსაქციების მაქსიმალური ზომა ბაიტებში (ნაგულისხმევი: %d) + + The wallet will avoid paying less than the minimum relay fee. + - Information - ინფორმაცია + + This is the minimum transaction fee you pay on every transaction. + - Send trace/debug info to console instead of debug.log file - ტრასირების/დახვეწის ინფოს გაგზავნა კონსოლზე debug.log ფაილის ნაცვლად + + This is the transaction fee you will pay if you send a transaction. + - Shrink debug.log file on client startup (default: 1 when no -debug) - debug.log ფაილის შეკუმშვა გაშვებისას (ნაგულისხმევია: 1 როცა არ აყენია -debug) + + Threshold for disconnecting misbehaving peers (default: %u) + - Signing transaction failed - ტრანსაქციების ხელმოწერა ვერ მოხერხდა + + Transaction amounts must not be negative + - Transaction amount too small - ტრანსაქციების რაოდენობა ძალიან ცოტაა + + Transaction has too long of a mempool chain + - Transaction too large - ტრანსაქცია ძალიან დიდია + + Transaction must have at least one recipient + - Username for JSON-RPC connections - მომხმარებლის სახელი JSON-RPC-შეერთებისათვის + + Turn off the databasing the messages sent with assets (default: %u) + - Warning - გაფრთხილება + + Unable to generate initial keys + - Zapping all transactions from wallet... - ტრანსაქციების ჩახსნა საფულიდან... + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - პაროლი JSON-RPC-შეერთებისათვის + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - კომანდის შესრულება უკეთესი ბლოკის გამოჩენისას (%s კომანდაში ჩანაცვლდება ბლოკის ჰეშით) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - DNS-ძებნის დაშვება -addnode, -seednode და -connect-სათვის + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - მისამართების ჩატვირთვა... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - არასწორია მისამართი -proxy: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - -onlynet-ში მითითებულია უცნობი ქსელი: '%s' + + Unknown network specified in -onlynet: '%s' + -onlynet-ში მითითებულია უცნობი ქსელი: '%s' + Insufficient funds არ არის საკმარისი თანხა + Loading block index... ბლოკების ინდექსის ჩატვირთვა... - Add a node to connect to and attempt to keep the connection open - მისაერთებელი კვანძის დამატება და მიერთების შეძლებისდაგვარად შენარჩუნება - - + Loading wallet... საფულის ჩატვირთვა... + Cannot downgrade wallet საფულის ძველ ვერსიაზე გადაყვანა შეუძლებელია - Cannot write default address - ვერ ხერხდება ნაგულისხმევი მისამართის ჩაწერა - - + Rescanning... სკანირება... - Done loading - ჩატვირთვა დასრულებულია - - + Error შეცდომა diff --git a/src/qt/locale/raven_kk_KZ.ts b/src/qt/locale/raven_kk_KZ.ts index 671e96eeac..4106938686 100644 --- a/src/qt/locale/raven_kk_KZ.ts +++ b/src/qt/locale/raven_kk_KZ.ts @@ -1,323 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Жаңа адрес енгізу + &New Жаңа + Copy the currently selected address to the system clipboard Таңдаған адресті тізімнен жою + + &Copy + + + + C&lose Жабу + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + &Export Экспорт + &Delete Жою - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Құпия сөзді енгізу + New passphrase Жаңа құпия сөзі + Repeat new passphrase Жаңа құпия сөзді қайта енгізу - - - BanTableModel - - - RavenGUI - &Transactions - &Транзакциялар + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - E&xit - Шығу + + Encrypt wallet + - &Options... - Параметрлері + + This operation needs your wallet passphrase to unlock the wallet. + - &Backup Wallet... - Әмиянды жасыру + + Unlock wallet + - &Change Passphrase... - Құпия сөзді өзгерту + + This operation needs your wallet passphrase to decrypt the wallet. + - Raven - Биткоин + + Decrypt wallet + - Wallet - Әмиян + + Change passphrase + - &Send - Жіберу + + Enter the old passphrase and new passphrase to the wallet. + - &Receive - Алу + + Confirm wallet encryption + - &File - Файл + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Help - Көмек + + Are you sure you wish to encrypt your wallet? + - %1 behind - %1 қалмады + + + Wallet encrypted + - Error - қате + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Warning - Ескерту + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Information - Информация + + + + + Wallet encryption failed + - Up to date - Жаңартылған + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + - + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - CoinControlDialog + AssetControlDialog - Amount: - Саны + + Asset Selection + - Fee: - Комиссия + + Quantity: + + + + + Bytes: + + + + + Amount: + + Dust: - Шаң + + + + + Fee: + + After Fee: - Комиссия алу кейін + + + + + Change: + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + Amount - Саны + + + + + Received with label + + + + + Received with address + + Date - Күні + + Confirmations - Растау саны + + Confirmed - Растық + - - - EditAddressDialog - &Label - таңба + + Copy address + - &Address - Адрес + + Copy label + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - қате + + + Copy amount + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - W&allet - Әмиян + + Copy transaction ID + - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Саны + + Lock unspent + - %1 and %2 - %1 немесе %2 + + Unlock unspent + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Информация + + Copy quantity + - - - ReceiveCoinsDialog - &Amount: - Саны + + Copy fee + - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - Amount: - Саны + + Copy after fee + - Fee: - Комиссия: + + Copy bytes + - After Fee: - Комиссия алу кейін: + + Copy dust + - Dust: - Шаң + + Copy change + - - - SendCoinsEntry - A&mount: - Саны + + (%1 locked) + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView - + AssetTableModel + + + Name + + + + + Quantity + + + - raven-core + AssetsDialog - Information - Информация + + + Send Coins + - Transaction amount too small - Транзакция өте кішкентай + + Asset Control Features + - Transaction too large - Транзакция өте үлкен + + Inputs... + - Warning - Ескерту + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Саны + + + + Fee: + Комиссия + + + + Dust: + Шаң + + + + After Fee: + Комиссия алу кейін + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Саны + + + + Received with label + + + + + Received with address + + + + + Date + Күні + + + + Confirmations + Растау саны + + + + Confirmed + Растық + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + таңба + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Адрес + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + қате + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Әмиян + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Саны + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 немесе %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Информация + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + &Транзакциялар + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Шығу + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + Параметрлері + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + Әмиянды жасыру + + + + &Change Passphrase... + Құпия сөзді өзгерту + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Биткоин + + + + Wallet + Әмиян + + + + &Send + Жіберу + + + + &Receive + Алу + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + Файл + + + + &Help + Көмек + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 қалмады + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + қате + + + + Warning + Ескерту + + + + Information + Информация + + + + Up to date + Жаңартылған + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Саны + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Саны + + + + Fee: + Комиссия: + + + + After Fee: + Комиссия алу кейін: + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + Шаң + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Саны + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Информация + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + Транзакция өте кішкентай + + + + Transaction too large for fee policy + + + + + Transaction too large + Транзакция өте үлкен + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Ескерту + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error қате diff --git a/src/qt/locale/raven_ko_KR.ts b/src/qt/locale/raven_ko_KR.ts index 9e561f96db..1aff93af57 100644 --- a/src/qt/locale/raven_ko_KR.ts +++ b/src/qt/locale/raven_ko_KR.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label - 지갑 주소나 라벨을 수정하려면 우클릭하세요. + 지갑 주소나 라벨을 수정하려면 오른쪽 버튼을 클릭하세요. + Create a new address 새 주소 만들기 + &New 새 항목(&N) + Copy the currently selected address to the system clipboard - 현재 선택한 주소를 시스템 클립보드로 복사하기 + 현재 선택한 주소를 시스템 클립보드로 복사 + &Copy 복사(&C) + C&lose 닫기(&L) + Delete the currently selected address from the list 현재 목록에 선택한 주소 삭제 + Export the data in the current tab to a file 현재 탭에 있는 데이터를 파일로 내보내기 + &Export 내보내기(&E) + &Delete 삭제(&D) + Choose the address to send coins to - 코인을 보내실 주소를 선택하세요 + 코인을 보낼 주소를 선택하세요 + Choose the address to receive coins with 코인을 받으실 주소를 선택하세요 + C&hoose 선택 (&H) + Sending addresses - 보내는 주소들 + 보내는 주소 + Receiving addresses - 받은 주소들 + 받는 주소 + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. - 비트코인을 보내는 계좌 주소입니다. 코인을 보내기 전에 잔고와 받는 주소를 항상 확인하세요. + 레이븐코인 송금 주소입니다. 코인을 보내기 전, 잔고와 상대방 주소를 항상 확인하세요. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. - 비트코인을 받을 수 있는 계좌 주소입니다. 매 거래마다 새로운 주소 사용을 권장합니다. + 레이븐코인 입금 주소입니다. 매 거래마다 새로운 주소 사용을 권장합니다. + &Copy Address 계좌 복사(&C) + Copy &Label 라벨 복사(&L) + &Edit 편집 (&E) + Export Address List 주소 목록 내보내기 + Comma separated file (*.csv) 쉼표로 구분된 파일 (*.csv) + Exporting Failed 내보내기 실패 + There was an error trying to save the address list to %1. Please try again. %1으로 주소 리스트를 저장하는 동안 오류가 발생했습니다. 다시 시도해주세요. @@ -103,14 +125,17 @@ AddressTableModel + Label 라벨 + Address 주소 + (no label) (라벨 없음) @@ -118,2107 +143,5357 @@ AskPassphraseDialog + Passphrase Dialog 암호문 대화상자 + Enter passphrase 암호 입력하기 + New passphrase 새로운 암호 + Repeat new passphrase 새로운 암호 재확인 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. 지갑에 새로운 비밀문구를 입력하세요.<br/>비밀문구를 <b>열 개 이상의 무작위 글자</b> 혹은 <b>여덟개 이상의 단어로<b> 정하세요. + Encrypt wallet 지갑 암호화 + This operation needs your wallet passphrase to unlock the wallet. 이 작업을 실행하려면 사용자 지갑의 암호가 필요합니다. + Unlock wallet 지갑 잠금해제 + This operation needs your wallet passphrase to decrypt the wallet. 이 작업은 지갑을 해독하기 위해 사용자 지갑의 암호가 필요합니다. + Decrypt wallet - 지갑 복호화 + 지갑 해독 + Change passphrase 암호 변경 + Enter the old passphrase and new passphrase to the wallet. 지갑의 기존 암호와 새로운 암호를 입력해주세요. + Confirm wallet encryption 지갑 암호화 승인 + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! 경고: 만약 암호화 된 지갑의 비밀번호를 잃어버릴 경우, <b>모든 비트코인들을 잃어버릴 수 있습니다</b>! + Are you sure you wish to encrypt your wallet? 지갑 암호화를 허용하시겠습니까? + + Wallet encrypted 지갑 암호화 완료 + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. - 암호화 처리 과정을 끝내기 위해 %1을 종료합니다. 지갑 암호화는 컴퓨터로의 멀웨어 감염으로 인한 비트코인 도난을 완전히 방지할 수 없음을 기억하세요. + 암호화 처리 과정을 끝내기 위해 %1을 종료합니다. 지갑 암호화는 컴퓨터 악성 코드 감염으로 인한 레이븐코인 도난을 완전히 방지할 수 없음을 기억하세요. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. - 중요: 본인 지갑 파일에서 만든 예전 백업들은 새로 생성한 암호화된 지갑 파일로 교체됩니다. 보안상 이유로 이전에 암호화하지 않은 지갑 파일 백업은 사용할 수 없게 되니 이른 시일 내로 새로 암호화된 지갑을 사용하시기 바랍니다. + 중요: 본인 지갑 파일에서 만든 이전 백업들은 새 암호화된 지갑 파일로 교체됩니다. 보안상의 이유로 이전 암호화하지 않은 지갑 파일 백업은 사용할 수 없으니, 이른 시일 내, 암호화된 새 지갑을 사용하시기 바랍니다. + + + + Wallet encryption failed 지갑 암호화 실패 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 지갑 암호화는 내부 에러로 인해 실패했습니다. 당신의 지갑은 암호화 되지 않았습니다. + + The supplied passphrases do not match. 지정한 암호가 일치하지 않습니다. + Wallet unlock failed 지갑 잠금해제 실패 + + + The passphrase entered for the wallet decryption was incorrect. 지갑 해독을 위한 암호가 틀렸습니다. + Wallet decryption failed - 지갑 복호화 실패 + 지갑 암호 해독 실패 + Wallet passphrase was successfully changed. 지갑 비밀번호가 성공적으로 변경되었습니다. + + Warning: The Caps Lock key is on! 경고: Caps Lock키가 켜져있습니다! - BanTableModel + AssetControlDialog - IP/Netmask - IP주소/넷마스크 + + Asset Selection + 자산 선택 - Banned Until - 다음과 같은 상황이 될 때까지 계정 정지됩니다. + + Quantity: + 수량: - - - RavenGUI - Sign &message... - 메시지 서명(&M)... + + Bytes: + 바이트: - Synchronizing with network... - 네트워크와 동기화중... + + Amount: + 거래액: - &Overview - 개요(&O) + + Dust: + 더스트: - Node - 노드 + + Fee: + 수수료: - Show general overview of wallet - 지갑의 일반적 개요를 보여줍니다. + + After Fee: + 수수료 제외한 값: - &Transactions - 거래(&T) + + Change: + 잔돈: - Browse transaction history - 거래내역을 검색합니다. + + (un)select all + 모두 (미)선택 - E&xit - 나가기(&X) + + Tree mode + 트리 모드 - Quit application - 어플리케이션 종료 + + List mode + 리스트 모드 - &About %1 - %1 정보(&A) + + View assets that you have the ownership asset for + 보유하고 있는 소유권 자산 보기 - Show information about %1 - %1 정보를 표시합니다 + + View Administrator Assets + 관리자 자산 보기 - About &Qt - &Qt 정보 + + Asset + 자산 - Show information about Qt - Qt 정보를 표시합니다 + + Amount + 거래액 - &Options... - 옵션(&O) + + Received with label + 입금과 함께 수신된 라벨 - Modify configuration options for %1 - %1 설정 옵션 수정 + + Received with address + 입금과 함께 수신된 주소 - &Encrypt Wallet... - 지갑 암호화(&E)... + + Date + 날짜 - &Backup Wallet... - 지갑 백업(&B)... + + Confirmations + 확인 - &Change Passphrase... - 암호문 변경(&C)... + + Confirmed + 확인 완료 - &Sending addresses... - 보내는 주소(&S) + + Copy address + 주소 복사 - &Receiving addresses... - 받는 주소(&R) + + Copy label + 라벨 복사 - Open &URI... - &URI 열기... + + + Copy amount + 거래액 복사 - Click to disable network activity. - 네트워크 활동을 중지하려면 클릭. + + Copy transaction ID + 거래 ID 복사 - Network activity disabled. - 네트워크 활동이 정지됨. + + Lock unspent + 미사용 출력 잠금 - Click to enable network activity again. - 네트워크 활동을 다시 시작하려면 클릭. + + Unlock unspent + 미사용 출력 잠금 해제 - Syncing Headers (%1%)... - 헤더 동기화중 (%1%)... + + Copy quantity + 수량 복사 - Reindexing blocks on disk... - 디스크에서 블록 다시 색인중... + + Copy fee + 수수료 복사 - Send coins to a Raven address - 비트코인 주소로 코인 전송 + + Copy after fee + 수수료 제외한 값 복사 - Backup wallet to another location - 지갑을 다른장소에 백업 + + Copy bytes + 바이트 복사 - Change the passphrase used for wallet encryption - 지갑 암호화에 사용되는 암호를 변경합니다 + + Copy dust + 더스트 복사 - &Debug window - 디버그 창(&D) + + Copy change + 잔돈 복사 - Open debugging and diagnostic console - 디버깅 및 진단 콘솔을 엽니다 + + (%1 locked) + (%1 잠금) - &Verify message... - 메시지 확인(&V)... + + yes + - Raven - 비트코인 + + no + 아니요 - Wallet - 지갑 + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + 수신자가 현재 더스트 임계치보다 더 적은량을 받으면, 이 라벨은 빨간색으로 변합니다. - &Send - 보내기(&S) + + Can vary +/- %1 satoshi(s) per input. + 입력 당 +/- % 1 사토시가 변경될 수 있습니다. - &Receive - 받기(&R) + + + (no label) + (라벨 없음) - &Show / Hide - 보이기/숨기기(&S) + + change from %1 (%2) + %1(%2) 잔돈 - Show or hide the main Window - 메인창 보이기 또는 숨기기 + + (change) + (잔돈) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - 지갑에 포함된 개인키 암호화하기 + + Name + 이름 - Sign messages with your Raven addresses to prove you own them - 지갑 주소가 본인 소유인지 증명하기 위해 비트코인 주소에 서명할 수 있습니다. + + Quantity + 수량 + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - 비트코인 주소의 전자 서명 확인을 위해 첨부된 메시지가 있을 경우 이를 검증할 수 있습니다. + + + Send Coins + 코인 보내기 - &File - 파일(&F) + + Asset Control Features + 자산 상세 제어기능 - &Settings - 설정(&S) + + Inputs... + 입력... - &Help - 도움말(&H) + + automatically selected + 자동 선택 - Tabs toolbar - 툴바 색인표 + + Insufficient funds! + 자금이 부족합니다! - Request payments (generates QR codes and raven: URIs) - 지불 요청하기 (QR코드와 비트코인이 생성됩니다: URIs) + + Quantity: + 수량: - Show the list of used sending addresses and labels - 한번 이상 사용된 보내는 주소와 주소 제목의 목록을 보여줍니다. + + Bytes: + 바이트: - Show the list of used receiving addresses and labels - 한번 이상 사용된 받는 주소와 주소 제목의 목록을 보여줍니다. + + Amount: + 거래액: - Open a raven: URI or payment request - raven: URI 또는 지불요청 열기 + + Dust: + 더스트: - &Command-line options - 명령줄 옵션(&C) + + Fee: + 수수료: - - %n active connection(s) to Raven network - 비트코인 네트워크에 %n개의 연결이 활성화되어 있습니다. + + + After Fee: + 수수료 제외한 값: - Indexing blocks on disk... - 디스크에서 블록 색인중... + + Change: + 잔돈: - Processing blocks on disk... - 디스크에서 블록 처리중... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + 활성화 되었지만 변경 주소가 비어 있거나 유효하지 않은 경우, 신규 생성 주소로 변경 사항이 전송됩니다. - - Processed %n block(s) of transaction history. - %n 블록 만큼의 거래 기록이 처리됨. + + + Custom change address + 맞춤 잔돈 주소 - %1 behind - %1 뒤에 + + Transaction Fee: + 거래 수수료: - Last received block was generated %1 ago. - 최근에 받은 블록은 %1 전에 생성되었습니다. + + Choose... + 선택하기 - Transactions after this will not yet be visible. - 이 후의 거래들은 아직 보이지 않을 것입니다. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + 대비 수수료(fallbackfee)를 사용하면 확인하는 데 몇 시간 또는 몇 일이 걸리는 (또는 전혀 확인이 어려운)거래가 될 수 있습니다. 수수료를 수동으로 선택하거나, 전체 블록체인을 확인할 때까지 기다리세요. - Error - 오류 + + Warning: Fee estimation is currently not possible. + 경고: 현재 수수료 측정이 불가합니다. - Warning - 경고 + + collapse fee-settings + 수수료 설정 접기 - Information - 정보 + + Hide + 숨기기 - Up to date - 현재까지 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 사용자 정의 수수료가 1000 사토시로 설정되고 거래가 250 바이트에 불과한 경우, "킬로바이트 당" 수수료로 250 사토시를 지불하고 "최소 총합 수수료"로 1000 사토시를 지불합니다. 1 킬로바이트보다 큰 거래의 경우, 모두 다 킬로바이트에 기준하여 지불합니다. - Show the %1 help message to get a list with possible Raven command-line options - 사용할 수 있는 비트코인 명령줄 옵션 목록을 가져오기 위해 %1 도움말 메시지를 표시합니다. + + per kilobyte + 킬로바이트 당 - %1 client - %1 클라이언트 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + 최소 수수료만 지불하는 것은 블록 공간보다 거래량이 적은 경우 괜찮습니다. 그러나 네트워크가 처리 할 수 있는 양보다 레이븐코인 거래에 대한 수요가 더 많은 경우, 확인되지 않은 거래로 끝날 수 있습니다. - Connecting to peers... - 피어에 연결중... + + (read the tooltip) + (툴팁을 꼭 읽어보세요) - Catching up... - 블록 따라잡기... + + Recommended: + 추천: - Date: %1 - - 날짜: %1 - + + Custom: + - Amount: %1 - - 금액: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - 종류: %1 - + + Confirmation time target: + 확인 시간 타겟: - Label: %1 - - 라벨: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + (거래 확인이 진행되기 전) 보내는 사람이 이 거래를 더 높은 수수료를 지불하는 새 거래로 대체 할 수 있음을 나타냅니다. - Address: %1 - - 주소: %1 - + + Request Replace-By-Fee + - Sent transaction - 거래 보내기 + + Confirm the send action + 송금 작업 확인 - Incoming transaction - 들어오고 있는 거래 + + S&end + - HD key generation is <b>enabled</b> - HD 키 생성이 <b>활성화되었습니다</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - HD 키 생성이 <b>비활성화되었습니다</b> + + Clear &All + &모두 지우기 - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 지갑이 <b>암호화</b> 되었고 현재 <b>잠금해제</b> 되었습니다 + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - 지갑이 <b>암호화</b> 되었고 현재 <b>잠겨져</b> 있습니다 + + Add &Recipient + &받는 사람 추가 - A fatal error occurred. Raven can no longer continue safely and will quit. - 치명적인 오류가 발생했습니다. 비트코인을 더이상 안전하게 진행할 수 없어 곧 종료합니다. + + Balance: + 잔액: + + + + Copy quantity + 수량 복사 + + + + Copy amount + 거래액 복사 + + + + Copy fee + 수수료 복사 + + + + Copy after fee + 수수료 제외한 값 복사 + + + + Copy bytes + 바이트 복사 + + + + Copy dust + 더스트 복사 + + + + Copy change + 잔돈 복사 + + + + %1 (%2 blocks) + %1 (%2 블록) + + + + + + + %1 to %2 + % 1 ~ % 2 + + + + Are you sure you want to send? + 정말로 송금 하시겠습니까? + + + + added as transaction fee + 거래 수수료로 추가 + + + + Confirm send assets + 자산 전송 확인 + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + 지불 금액은 0보다 커야 합니다. + + + + The amount exceeds your balance. + 금액이 잔액을 초과합니다. + + + + The total exceeds your balance when the %1 transaction fee is included. + %1 거래 수수료가 포함될 때, 총액이 잔액을 초과합니다. + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + 거래 생성에 실패하였습니다. + + + + The transaction was rejected with the following reason: %1 + 다음과 같은 이유로 거래가 거부되었습니다: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + 지불 요청이 만료됨. + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + 경고: 유효하지 않은 레이븐코인 주소 + + + + Warning: Unknown change address + 경고: 알려지지 않은 잔돈 주소 + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + 변경하기 위해 선택한 주소는 이 지갑의 일부가 아닙니다. 지갑에 있는 일부 또는 모든 금액을 이 주소로 보낼 수 있습니다. 확실합니까? + + + + (no label) + (라벨 없음) + + + + AssignQualifier + + + Frame + 프레임 + + + + Select Type: + 종류 선택: + + + + Select Qualifier: + 검증자 선택: + + + + Address: + 주소: + + + + IPFS / Hash: + IPFS/해시: + + + + Custom Change Address + 맞춤 잔돈 주소 + + + + Check + 확인 + + + + Clear + 완료 + + + + Submit + 제출 + + + + Assign Qualifier + 검증자 부여 + + + + Remove Qualifier + 검증자 제거 + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP주소/넷마스크 + + + + Banned Until + 다음과 같은 상황이 될 때까지 계정 정지됩니다. CoinControlDialog + Coin Selection 코인 선택 + Quantity: 수량: + Bytes: 바이트: + Amount: - 금액: + 거래액: + Fee: 수수료: + Dust: 더스트: + After Fee: - 수수료 이후: + 수수료 제외한 값: + Change: 잔돈: + (un)select all 모두 선택(하지 않음) + Tree mode 트리 모드 + List mode 리스트 모드 + Amount 거래액 + Received with label 입금과 함께 수신된 라벨 + Received with address 입금과 함께 수신된 주소 + Date 날짜 + Confirmations 확인 + Confirmed 확인됨 + Copy address 주소 복사 + Copy label 라벨 복사 + + Copy amount 거래액 복사 + Copy transaction ID 거래 아이디 복사 + Lock unspent 사용되지 않은 주소를 잠금 처리합니다. + Unlock unspent 사용되지 않은 주소를 잠금 해제합니다. + Copy quantity 수량 복사 + Copy fee 수수료 복사 + Copy after fee - 수수료 이후 복사 + 수수료 제외한 값 복사 + Copy bytes - bytes 복사 + 바이트 복사 + Copy dust 더스트 복사 + Copy change 잔돈 복사 + (%1 locked) (%1 잠금) + yes + no 아니요 + This label turns red if any recipient receives an amount smaller than the current dust threshold. - 수령인이 현재 더스트 임계값보다 작은 양을 수신하면 이 라벨이 빨간색으로 변합니다. + 수령인이 현재 더스트 임계값보다 적은 량을 수신하면 이 라벨이 빨간색으로 변합니다. + Can vary +/- %1 satoshi(s) per input. - 입력마다 +/- %1 사토시(s)가 변할 수 있습니다. + 입력 당 +/- % 1 사토시가 변경될 수 있습니다. + + (no label) (라벨 없음) + change from %1 (%2) %1로부터 변경 (%2) + (change) (잔돈) - EditAddressDialog + CreateAssetDialog - Edit Address - 주소 편집 + + Coin Control Features + 코인 상세 제어기능 - &Label - 라벨(&L) + + Inputs... + 입력... - The label associated with this address list entry - 현재 선택된 주소 필드의 제목입니다. + + automatically selected + 자동 선택 - The address associated with this address list entry. This can only be modified for sending addresses. - 본 주소록 입력은 주소와 연계되었습니다. 이것은 보내는 주소들에서만 변경될수 있습니다. + + Insufficient funds! + 자금이 부족합니다! - &Address - 주소(&A) + + + Quantity: + 수량: - New receiving address - 새 받는 주소 + + Bytes: + 바이트: - New sending address - 새 보내는 주소 + + Amount: + 거래액: - Edit receiving address - 받는 주소 편집 + + Dust: + 더스트: - Edit sending address - 보내는 주소 편집 + + Fee: + 수수료: - The entered address "%1" is not a valid Raven address. - 입력한 "%1" 주소는 올바른 비트코인 주소가 아닙니다. + + After Fee: + 수수료 제외한 값: - The entered address "%1" is already in the address book. - 입력된 주소는"%1" 이미 주소록에 있습니다. + + Change: + 잔돈 - Could not unlock wallet. - 지갑을 잠금해제 할 수 없습니다. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + 활성화 되었지만 변경 주소가 비어 있거나 유효하지 않은 경우, 신규 생성 주소로 변경 사항이 전송됩니다. - New key generation failed. - 새로운 키 생성이 실패하였습니다. + + Custom change address + 맞춤 잔돈 주소 - - - FreespaceChecker - A new data directory will be created. - 새로운 데이터 폴더가 생성됩니다. + + Name: + 이름: - name - 이름 + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - 폴더가 이미 존재합니다. 새로운 폴더 생성을 원한다면 %1 명령어를 추가하세요. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - 경로가 이미 존재합니다. 그리고 그것은 폴더가 아닙니다. + + Check Availabilty + 가용성 확인 - Cannot create data directory here. - 데이터 폴더를 여기 생성할 수 없습니다. + + Address: + 주소: - - - HelpMessageDialog - version - 버전 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + 자산을 보유할 레이븐 주소( 당신이 이 주소를 소유 해야만 합니다.) 새 주소를 만들기 위해 비워 두세요. - (%1-bit) - (%1-비트) + + Verifier String: + 검증자 문자열: - About %1 - %1 정보(&A) + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + 고객 아이디 (예 : #KYC & #VALID)에서 만든 검증자 문자열을 만듭니다. 기본 값을 true로 설정 하려면 비워 두세요. - Command-line options - 명령줄 옵션 + + Warning: + 경고: - Usage: - 사용법: + + The number of assets that will be created + 만들어질 자산의 수 - command-line options - 명령줄 옵션 + + Units: + 단위: - UI Options: - UI 옵션: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + 자산을 얼마나 쪼갤것인가? ( 예시.8 =1.00000000 2=1.00 ) - Choose data directory on startup (default: %u) - 실행시 데이터 폴더 선택하기 (기본값: %u) + + e.g. 1 + 예) 1 - Set language, for example "de_DE" (default: system locale) - "ko_KR"와 같이 언어를 설정하십시오 (기본값: 시스템 로캘) + + If the owner of this asset will be able to issue more assets in the future + 이 자산의 소유주 라면 미래에 더 많은 자산을 발행 할수 있을것이다. - Start minimized - 최소화된 상태에서 시작 + + Reissuable + 재발행가능 - Set SSL root certificates for payment request (default: -system-) - 지불 요청을 위한 SSL 루트 인증서 설정 (기본값: -system-) + + Does this asset have an ipfs hash to go with it + 이 자산에 함께 사용할 IPFS 해시가 있습니까? - Show splash screen on startup (default: %u) - 실행시 시작화면 보기 (기본값: %u) + + Add IPFS/Txid Hash + IPFS/거래ID 해시 입력 - Reset all settings changed in the GUI - GUI를 통해 수정된 모든 설정을 초기화 + + The ipfs/txid hash that contains information about the asset + 자산에 대한 정보가 포함된 ipfs/거래 hash - - - Intro - Welcome - 환영합니다 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + 생성중인 자산과 관련된 ipfs / txid 해시 (예 : QmU4h365LYMHx ...) - Welcome to %1. - %1에 오신것을 환영합니다. + + ERROR TEXT + 에러 텍스트 - As this is the first time the program is launched, you can choose where %1 will store its data. - 프로그램이 처음으로 실행되고 있습니다. %1가 어디에 데이터를 저장할지 선택할 수 있습니다. + + Transaction Fee: + 전송 수수료: - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1가 블록체인의 복사본을 다운로드 저장합니다. 적어도 %2GB의 데이터가 이 폴더에 저장되며 시간이 경과할수록 점차 증가합니다. 그리고 지갑 또한 이 폴더에 저장됩니다. + + Choose... + 선택하기 - Use the default data directory - 기본 데이터 폴더를 사용하기 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + 대비 수수료(fallbackfee)를 사용하면 확인하는 데 몇 시간 또는 몇 일이 걸리는 (또는 전혀 확인이 어려운)거래가 될 수 있습니다. 수수료를 수동으로 선택하거나, 전체 블록체인을 확인할 때까지 기다리세요. - Use a custom data directory: - 커스텀 데이터 폴더 사용: + + Warning: Fee estimation is currently not possible. + 경고: 현재 수수료 측정이 불가합니다. - Error: Specified data directory "%1" cannot be created. - 오류: "%1" 지정한 데이터 디렉토리를 생성할 수 없습니다. + + collapse fee-settings + 수수료 설정 접기 - Error - 오류 + + Hide + 숨기기 - - %n GB of free space available - %n GB 사용가능 + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 사용자 정의 수수료가 1000 사토시로 설정되고 거래가 250 바이트에 불과한 경우, "킬로바이트 당" 수수료로 250 사토시를 지불하고 "최소 총합 수수료"로 1000 사토시를 지불합니다. 1 킬로바이트보다 큰 거래의 경우, 모두 다 킬로바이트에 기준하여 지불합니다. - - (of %n GB needed) - (%n GB가 필요) + + + per kilobyte + 킬로바이트 당 - - - ModalOverlay - Form - 유형 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + 최소 수수료만 지불하는 것은 블록 공간보다 거래량이 적은 경우 괜찮습니다. 그러나 네트워크가 처리 할 수 있는 양보다 레이븐코인 거래에 대한 수요가 더 많은 경우, 확인되지 않은 거래로 끝날 수 있습니다. - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - 최근 거래는 아직 보이지 않을 것입니다, 그러므로 당신의 지갑의 잔액이 틀릴 수도 있습니다. 이 정보는 비트코인 네트워크와 완전한 동기화가 완료되면 아래의 설명과 같이 정확해집니다. + + (read the tooltip) + (툴팁을 꼭 읽어보세요) - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - 아직 표시되지 않은 거래의 영향을 받는 비트코인을 사용하려고 하는 것은 네트워크에서 허가되지 않습니다. + + Recommended: + 권장된 사항 - Number of blocks left - 남은 블록의 수 + + C&ustom: + - Unknown... - 알수없음... + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Last block time - 최종 블록 시각 + + Confirmation time target: + 확인 시간 목표 - Progress - 진행 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + (거래 확인이 진행되기 전) 보내는 사람이 이 거래를 더 높은 수수료를 지불하는 새 거래로 대체 할 수 있음을 나타냅니다. - Progress increase per hour - 시간당 진행 증가율 + + Request Replace-By-Fee + 수수료 수정 요청 - calculating... - 계산중... + + Create Asset + 자산 생성하기 - Estimated time left until synced - 동기화 완료까지 예상 시간 + + Clear + 완료 - Hide - 숨기기 + + Balance: + 잔액: - Unknown. Syncing Headers (%1)... - 알수없음. 헤더 동기화중 (%1)... + + 123.456 RVN + 123.456 RVN - - - OpenURIDialog - Open URI - URI 열기 + + Copy quantity + 수량 복사 - Open payment request from URI or file - 지급 요청 URI 또는 파일 열기 + + Copy amount + 거래액 복사 - URI: - URI: + + Copy fee + 수수료 복사 - Select payment request file - 지불 요청 파일을 선택하세요 + + Copy after fee + 수수료 제외한 값 복사 - Select payment request file to open - 지불 요청 파일을 열기 위해서 선택하세요 + + Copy bytes + 바이트 복사 - - - OptionsDialog - Options - 환경설정 + + Copy dust + 더스트 복사 - &Main - 메인(&M) + + Copy change + 잔돈 복사 - Automatically start %1 after logging in to the system. - 시스템 로그인후에 %1을 자동으로 시작합니다. + + %1 (%2 blocks) + %1 (%2 블록) - &Start %1 on system login - 시스템 로그인시 %1 시작(&S) + + Main Asset + 주 자산 - Size of &database cache - 데이터베이스 캐시 크기(&D) + + Sub Asset + 보조 자산 - MB - 메가바이트 + + Unique Asset + 고유 자산 - Number of script &verification threads - 스크립트 인증 쓰레드의 개수(&V) + + Messaging Channel Asset + 메시지 채널 자산 - Accept connections from outside - 외부로부터의 연결을 승인합니다. + + Qualifier Asset + 검증자 자산 - Allow incoming connections - 연결 요청을 허용합니다. + + Sub Qualifier Asset + 부검증자 자산 - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - 프록시 아이피 주소 (예. IPv4:127.0.0.1 / IPv6: ::1) + + Restricted Asset + 제한 자산 - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - 창을 닫으면 종료 대신 트레이로 보내기. 이 옵션을 활성화하면 메뉴에서 종료를 선택한 후에만 어플리케이션이 종료됩니다. + + Asset Type + 자산 종류 - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - 서드-파티 URLs (예. 블록 탐색기)는 거래 탭의 컨텍스트 메뉴에 나타납니다. URL의 %s는 거래 해시값으로 대체됩니다. 여러 URLs는 수직 바 | 에서 나누어 집니다. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + IPFS/거래 ID 해시값은 'Qm'으로 시작하고 46자이거나, 거래 ID 해시값 64 16진수법이여야 합니다. - Third party transaction URLs - 제 3자 거래 URLs + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + IPFS/거래 ID 해시값은 46자이거나, 64 16진수법이여야 합니다. - Active command-line options that override above options: - 명령줄 옵션 활성화는 위의 옵션들을 대체합니다: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + IPFS/거래ID 해시값은 유효하지 않습니다. 유효한 IPFS/거래ID 해시값을 사용하세요. - Reset all client options to default. - 모든 클라이언트 옵션을 기본값으로 재설정 + + + + Warning: Invalid Raven address + 경고: 유효하지 않은 레이븐코인 주소 - &Reset Options - 옵션 재설정(&R) + + Warning: Restricted Assets Reissuance requires an address + 경고: 제한 자산 재발행은 생성 주소를 필요로 합니다. - &Network - 네트워크(&N) + + Valid Asset + 검증된 자산 - (0 = auto, <0 = leave that many cores free) - (0 = 자동, <0 = 지정된 코어 개수만큼 사용 안함) + + Invalid: Asset name already in use + 무효값: 자산명이 이미 사용중에 있습니다. - W&allet - 지갑(&A) + + Error: Asset Database not in sync + 에러 : 자산 데이터베이스가 동기화 되지 않았다. - Expert - 전문가 + + + %1 to %2 + %1-%2 - Enable coin &control features - 코인 상세 제어기능을 활성화합니다 (&C) + + Are you sure you want to send? + 정말로 송금 하시겠습니까? - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - 검증되지 않은 잔돈 쓰기를 비활성화하면 거래가 적어도 1회 이상 검증되기 전까지 그 거래의 거스름돈은 사용할 수 없습니다. 이는 잔액 계산 방법에도 영향을 미칩니다. + + added as transaction fee + 거래 수수료로 추가 - &Spend unconfirmed change - 검증되지 않은 잔돈 쓰기 (&S) + + Total Amount %1 + 총 거래액 %1 - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - 라우터에서 Raven 클라이언트 포트를 자동적으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. + + or + 또는 - Map port using &UPnP - 사용중인 &UPnP 포트 매핑 + + Confirm send assets + 자산 전송 확인 - Connect to the Raven network through a SOCKS5 proxy. - SOCKS5 프록시를 통해 비트코인 네트워크 연결 + + Invalid: + 무효값: - &Connect through SOCKS5 proxy (default proxy): - SOCKS5 프록시를 거쳐 연결합니다(&C) (기본 프록시): + + Copy + 복사 - Proxy &IP: - 프록시 &IP: + + Transaction ID Copied + 복사된 거래 ID - &Port: - 포트(&P): + + Asset transaction sent to network: + 네트워크로 전송된 자산 거래: + + + + Estimated to begin confirmation within %n block(s). + n번째 블록 내에 승인이 시작 될것으로 예측됩니다. - Port of the proxy (e.g. 9050) - 프록시의 포트번호입니다 (예: 9050) + + Warning: Unknown change address + 경고: 알려지지 않은 잔돈 주소 - Used for reaching peers via: - 피어에 연결하기 위해 사용된 방법: + + Confirm custom change address + 맞춤 잔돈 주소 확인 - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - 이 SOCK5 프록시를 통과해 피어와 접속한 네트워크 유형이 표시됩니다. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + 바꾸기 위해 선택한 주소는 이 지갑의 일부가 아닙니다. 지갑에 있는 일부 또는 모든 금액을 이 주소로 보낼 수 있습니다. 확실합니까? - IPv4 - IPv4 + + (no label) + (라벨 없음) - IPv6 - IPv6 + + Pay only the required fee of %1 + 지불에는 1%의 수수료가 필요합니다. + + + EditAddressDialog - Tor - Tor + + Edit Address + 주소 편집 - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Tor 서비스를 경유하여 비트코인 네트워크에 연결하기 위해 분리된 SOCKS5 프록시를 사용. + + &Label + 라벨(&L) - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Tor 서비스를 이용하여 피어에게 연결하기 위해 분리된 SOCKS5 프록시 사용 + + The label associated with this address list entry + 현재 선택된 주소 필드의 제목입니다. - &Window - 창(&W) + + The address associated with this address list entry. This can only be modified for sending addresses. + 본 주소록 입력은 주소와 연계되었습니다. 이것은 보내는 주소들에서만 변경될수 있습니다. - &Hide the icon from the system tray. - 시스템 트레이 로 부터 아이콘 숨기기(&H) + + &Address + 주소(&A) - Hide tray icon - 트레이 아이콘 숨기기 + + New receiving address + 새 받는 주소 - Show only a tray icon after minimizing the window. - 창을 최소화 하면 트레이에 아이콘만 표시합니다. + + New sending address + 새 보내는 주소 - &Minimize to the tray instead of the taskbar - 작업 표시줄 대신 트레이로 최소화(&M) + + Edit receiving address + 받는 주소 편집 - M&inimize on close - 닫을때 최소화(&I) + + Edit sending address + 보내는 주소 편집 - &Display - 표시(&D) + + The entered address "%1" is not a valid Raven address. + 입력한 "%1" 주소는 올바른 비트코인 주소가 아닙니다. - User Interface &language: - 사용자 인터페이스 언어(&L): + + The entered address "%1" is already in the address book. + 입력된 주소는"%1" 이미 주소록에 있습니다. - The user interface language can be set here. This setting will take effect after restarting %1. - 사용자 인터페이스 언어를 여기서 설정할 수 있습니다. 이 설정은 %1을 다시 시작할때 적용됩니다. + + Could not unlock wallet. + 지갑을 잠금해제 할 수 없습니다. - &Unit to show amounts in: - 거래액을 표시할 단위(&U): + + New key generation failed. + 새로운 키 생성에 실패하였습니다. + + + FreespaceChecker - Choose the default subdivision unit to show in the interface and when sending coins. - 인터페이스에 표시하고 코인을 보낼때 사용할 기본 최소화 단위를 선택하십시오. + + A new data directory will be created. + 새로운 데이터 폴더가 생성됩니다. - Whether to show coin control features or not. - 코인 상세 제어기능에 대한 표시 여부를 선택할 수 있습니다. + + name + 이름 - &OK - 확인(&O) + + Directory already exists. Add %1 if you intend to create a new directory here. + 폴더가 이미 존재합니다. 새로운 폴더 생성을 원한다면 %1 명령어를 추가하세요. - &Cancel - 취소(&C) + + Path already exists, and is not a directory. + 경로가 이미 존재합니다. 그리고 그것은 폴더가 아닙니다. - default - 기본값 + + Cannot create data directory here. + 데이터 폴더를 여기 생성할 수 없습니다. + + + FreezeAddress - none - 없음 + + Frame + 구조 - Confirm options reset - 옵션 초기화를 확인 + + Restricted Asset: + 제한 자산: - Client restart required to activate changes. - 변경 사항을 적용하기 위해서는 프로그램이 종료 후 재시작되어야 합니다. + + Address: + 주소: - Client will be shut down. Do you want to proceed? - 클라이언트가 종료됩니다, 계속 진행하시겠습니까? + + Custom Change Address + 맞춤 잔돈 주소 - This change would require a client restart. - 이 변경 사항 적용을 위해 프로그램 재시작이 필요합니다. + + IPFS / Hash: + IPFS/거래ID 해시 입력 - The supplied proxy address is invalid. - 지정한 프록시 주소가 잘못되었습니다. + + Single Address Options + - - - OverviewPage - Form - 유형 + + Global Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - 표시된 정보가 오래된 것 같습니다. 비트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다. + + Free&ze trading on this address + - Watch-only: - 조회전용: + + Unfreeze tradin&g on this address + - Available: - 사용 가능 + + Freeze all &trading for the selected restricted asset + - Your current spendable balance - 당신의 현재 사용 가능한 잔액 + + &Unfreeze all trading for the selected restricted asset + - Pending: - 미확정 + + Check + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 전체 거래들은 아직 확인되지 않았고, 그리고 현재 잔액에 아직 반영되지 않았습니다. + + Clear + - Immature: - 아직 사용 불가능: + + Submit + - Mined balance that has not yet matured - 아직 사용 가능하지 않은 채굴된 잔액 + + Data has been validated, You can now submit the restriction transaction + 데이터가 확인 되었습니다. 이제 원하는 제한 거래를 제출할 수 있습니다. - Balances - 잔액 + + Must have a restricted asset selected + + + Address is already frozen + 주소는 이미 동결되었습니다. + + + + Address is not frozen + 주소는 동결되지 않았습니다. + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + 경고: 지갑 동기화 중 거래! + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + 지갑 완전 동기화가 완료되지 않은 상태에서 거래를 보내려고 합니다. 거래가 지갑에 머물 수 있으므로, 권장하지 않습니다. 계속 진행 하시겠습니까? + + 권장 조치 : 거래를 보내기 전, 지갑을 완전히 동기화하십시오. + + + + + HelpMessageDialog + + + version + 버전 + + + + + (%1-bit) + (%1-비트) + + + + About %1 + %1 정보(&A) + + + + Command-line options + 명령줄 옵션 + + + + Usage: + 사용법: + + + + command-line options + 명령줄 옵션 + + + + UI Options: + UI 옵션: + + + + Choose data directory on startup (default: %u) + 실행시 데이터 폴더 선택하기 (기본값: %u) + + + + Set language, for example "de_DE" (default: system locale) + "ko_KR"와 같이 언어를 설정하십시오 (기본값: 시스템 로캘) + + + + Start minimized + 최소화된 상태에서 시작 + + + + Set SSL root certificates for payment request (default: -system-) + 지불 요청을 위한 SSL 루트 인증서 설정 (기본값: -system-) + + + + Show splash screen on startup (default: %u) + 실행시 시작화면 보기 (기본값: %u) + + + + Reset all settings changed in the GUI + GUI를 통해 수정된 모든 설정 초기화 + + + + Intro + + + Welcome + 환영합니다 + + + + Welcome to %1. + %1에 오신것을 환영합니다. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + 프로그램이 처음으로 실행되고 있습니다. %1가 어디에 데이터를 저장할지 선택할 수 있습니다. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + '확인(OK)' 클릭시 %1은 %4가 처음 시작되었을떄, %3의 가장 초기 거래부터 시작하여 전체 %4 블록체인(%2기가바이트)을 다운로드하고 처리하기 시작합니다. + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + 기본 데이터 폴더를 사용하기 + + + + Use a custom data directory: + 커스텀 데이터 폴더 사용: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + % 1은 레이븐코인 블록체인 사본을 다운로드하고 저장합니다. + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + 오류: "%1" 지정한 데이터 디렉토리를 생성할 수 없습니다. + + + + Error + 오류 + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + 경고: + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + 경고: + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + 유형 + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + 최근 거래는 아직 보이지 않을 것입니다, 그러므로 지갑 잔액이 틀릴 수도 있습니다. 이 정보는 비트코인 네트워크와 완전한 동기화가 완료되면 아래의 설명과 같이 정확해집니다. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + 아직 표시되지 않은 거래의 영향을 받는 비트코인을 사용하려고 하는 것은 네트워크에서 허가되지 않습니다. + + + + Number of blocks left + 남은 블록의 수 + + + + + + Unknown... + 알수없음... + + + + Last block time + 최종 블록 시각 + + + + Progress + 진행 + + + + Progress increase per hour + 시간당 진행 증가율 + + + + + calculating... + 계산중... + + + + Estimated time left until synced + 동기화 완료까지 예상 시간 + + + + Hide + 숨기기 + + + + Unknown. Syncing Headers (%1)... + 알수없음. 헤더 동기화중 (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + 주소 + + + + Asset Name + 자산명 + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + (라벨 없음) + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + 잔액에 추가되거나 제거된 자산(또는 레이븐코인) + + + + OpenURIDialog + + + Open URI + URI 열기 + + + + Open payment request from URI or file + 지급 요청 URI 또는 파일 열기 + + + + URI: + URI: + + + + Select payment request file + 지불 요청 파일을 선택하세요 + + + + Select payment request file to open + 지불 요청 파일을 열기 위해서 선택하세요 + + + + OptionsDialog + + + Options + 환경설정 + + + + &Main + 메인(&M) + + + + Automatically start %1 after logging in to the system. + 시스템 로그인후에 %1을 자동으로 시작합니다. + + + + &Start %1 on system login + 시스템 로그인시 %1 시작(&S) + + + + Size of &database cache + 데이터베이스 캐시 크기(&D) + + + + MB + 메가바이트 + + + + Number of script &verification threads + 스크립트 인증 쓰레드의 개수(&V) + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + 프록시 아이피 주소 (예. IPv4:127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + 창을 닫으면 종료 대신 트레이로 보내기. 이 옵션을 활성화하면 메뉴에서 종료를 선택한 후에만 어플리케이션이 종료됩니다. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + 서드-파티 URLs (예. 블록 탐색기)는 거래 탭의 컨텍스트 메뉴에 나타납니다. URL의 %s는 거래 해시값으로 대체됩니다. 여러 URLs는 수직 바 | 에서 나누어 집니다. + + + + Active command-line options that override above options: + 명령줄 옵션 활성화는 위의 옵션들을 대체합니다: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + 모든 클라이언트 옵션을 기본값으로 재설정 + + + + &Reset Options + 옵션 재설정(&R) + + + + &Network + 네트워크(&N) + + + + (0 = auto, <0 = leave that many cores free) + (0 = 자동, <0 = 지정된 코어 개수만큼 사용 안함) + + + + W&allet + 지갑(&A) + + + + Expert + 전문가 + + + + Enable coin &control features + 코인 &상세 제어기능 활성화 + + + + Enable fee control features + 수수료 상세 제어기능 활성화 + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 검증되지 않은 잔액 지출을 비활성화하면, 거래가 적어도 1회 이상 검증되기 전까지 그 거래의 거스름돈은 사용할 수 없습니다. 이는 잔액 계산법에도 영향을 미칩니다. + + + + &Spend unconfirmed change + 검증되지 않은 잔돈 쓰기 (&S) + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + 라우터에서 Raven 클라이언트 포트를 자동적으로 엽니다. 라우터에서 UPnP를 지원하고 활성화 했을 경우에만 동작합니다. + + + + Map port using &UPnP + 사용중인 &UPnP 포트 매핑 + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + SOCKS5 프록시를 통해 비트코인 네트워크 연결 + + + + &Connect through SOCKS5 proxy (default proxy): + SOCKS5 프록시를 거쳐 연결합니다(&C) (기본 프록시): + + + + + Proxy &IP: + 프록시 &IP: + + + + + &Port: + 포트(&P): + + + + + Port of the proxy (e.g. 9050) + 프록시의 포트번호입니다 (예: 9050) + + + + Used for reaching peers via: + 피어에 연결하기 위해 사용된 방법: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Tor 서비스를 경유하여 비트코인 네트워크에 연결하기 위해 분리된 SOCKS5 프록시를 사용. + + + + &Window + 창(&W) + + + + Show only a tray icon after minimizing the window. + 창을 최소화 하면 트레이에 아이콘만 표시합니다. + + + + &Minimize to the tray instead of the taskbar + 작업 표시줄 대신 트레이로 최소화(&M) + + + + M&inimize on close + 닫을때 최소화(&I) + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + 표시(&D) + + + + User Interface &language: + 사용자 인터페이스 언어(&L): + + + + The user interface language can be set here. This setting will take effect after restarting %1. + 사용자 인터페이스 언어를 여기서 설정할 수 있습니다. 이 설정은 %1을 다시 시작할때 적용됩니다. + + + + &Unit to show amounts in: + 거래액을 표시할 단위(&U): + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 인터페이스에 표시하고 코인을 보낼때 사용할 기본 최소화 단위를 선택하십시오. + + + + Whether to show coin control features or not. + 코인 상세 제어기능 표시 여부 선택 + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + 확인(&O) + + + + &Cancel + 취소(&C) + + + + default + 기본값 + + + + none + 없음 + + + + Confirm options reset + 옵션 초기화를 확인 + + + + + Client restart required to activate changes. + 변경 사항을 적용하기 위해서는 프로그램이 종료 후 재시작되어야 합니다. + + + + Client will be shut down. Do you want to proceed? + 클라이언트가 종료됩니다, 계속 진행하시겠습니까? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + 구성 파일은 GUI 설정 재정의시, 고급 사용자 옵션을 지정하는 데 사용됩니다. 또한 모든 명령 줄 옵션은UI 설정 재정의시, 고급 사용자 옵션을 지정하는 데 사용됩니다. 또한 명령 행 옵션은 구성 파일보다 우선시 됩니다. + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + 이 변경 사항 적용을 위해 프로그램 재시작이 필요합니다. + + + + The supplied proxy address is invalid. + 지정한 프록시 주소가 잘못되었습니다. + + + + OverviewPage + + + Form + 유형 + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + 표시된 정보가 오래된 것 같습니다. 비트코인 네트워크에 연결하고 난 다음에 지갑을 자동으로 동기화 하지만, 아직 과정이 끝나지는 않았습니다. + + + + Watch-only: + 조회전용: + + + + Available: + 사용 가능 + + + + Your current spendable balance + 현재 사용 가능한 잔액 + + + + Pending: + 미확정 + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 전체 거래들은 아직 확인되지 않았고, 그리고 현재 잔액에 아직 반영되지 않았습니다. + + + + Immature: + 아직 사용 불가능: + + + + Mined balance that has not yet matured + 아직 사용 가능하지 않은 채굴된 잔액 + + + Total: 총액: - Your current total balance - 당신의 현재 총액 + + Your current total balance + 현재 총 잔액 + + + + RVN Balances + 레이븐코인 잔액 + + + + Your current balance in watch-only addresses + 조회전용 주소 현재 잔액 + + + + Spendable: + 사용가능: + + + + Asset Balances + 자산 잔액 + + + + Search + + + + + Recent transactions + 최근 거래 + + + + Unconfirmed transactions to watch-only addresses + 조회전용 주소의 검증되지 않은 거래 + + + + Mined balance in watch-only addresses that has not yet matured + 아직 컨펌되지 않은 채굴 잔액 + + + + Current total balance in watch-only addresses + 조회전용 주소 현재 잔액 + + + + Send Asset + 자산 보내기 + + + + Copy Amount + 거래액 복사 + + + + Copy Name + 이름 복사 + + + + Copy Hash + 해시값 복사 + + + + Issue Sub Asset + 보조 자산 발행 + + + + Issue Unique Asset + 고유 자산 발행 + + + + Reissue Asset + 자산 재발행 + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + 지불 요청 오류 + + + + Cannot start raven: click-to-pay handler + 비트코인을 시작할 수 없습니다: 지급제어기를 클릭하세요 + + + + + + URI handling + URI 핸들링 + + + + Payment request fetch URL is invalid: %1 + 지불 요청의 URL이 올바르지 않습니다: %1 + + + + Invalid payment address %1 + 잘못된 지불 주소입니다 %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI의 파싱에 문제가 발생했습니다. 잘못된 비트코인 주소나 URI 파라미터 구성에 오류가 존재할 수 있습니다. + + + + Payment request file handling + 지불이 파일 처리를 요청합니다 + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 지불 요청 파일을 읽을 수 없습니다. 이것은 잘못된 지불 요청 파일에 의해 발생하는 오류일 수 있습니다. + + + + + + + + + Payment request rejected + 지불 요청이 거부됨 + + + + Payment request network doesn't match client network. + 지급 요청 네트워크가 클라이언트 네트워크와 일치되지 않습니다. + + + + Payment request expired. + 지불 요청이 만료됨. + + + + Payment request is not initialized. + 지불 요청이 초기화 되지 않았습니다. + + + + Unverified payment requests to custom payment scripts are unsupported. + 임의로 변경한 결제 스크립트 기반의 지불 요청 양식은 검증되기 전까지는 지원되지 않습니다. + + + + + Invalid payment request. + 잘못된 지불 요청. + + + + Requested payment amount of %1 is too small (considered dust). + 요청한 금액 %1의 양이 너무 적습니다. (스팸성 거래로 간주) + + + + Refund from %1 + %1 으로부터의 환불 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 지불 요청 %1은 너무 큽니다 (%2 바이트, %3 바이트까지 허용됩니다). + + + + Error communicating with %1: %2 + %1과 소통하는데 에러: %2 + + + + Payment request cannot be parsed! + 지불요청을 파싱할 수 없습니다. + + + + Bad response from server %1 + 서버로 부터 잘못된 반응 %1 + + + + Network request error + 네트워크 요청 에러 + + + + Payment acknowledged + 지불이 승인됨 + + + + PeerTableModel + + + User Agent + 유저 에이전트 + + + + Node/Service + 노드/서비스 + + + + NodeId + 노드 ID + + + + Ping + + + + + Sent + 보냄 + + + + Received + + + + + QObject + + + Amount + 거래액 + + + + Enter a Raven address (e.g. %1) + 비트코인 주소를 입력하기 (예. %1) + + + + %1 d + %1 일 + + + + %1 h + %1 시간 + + + + %1 m + %1 분 + + + + + %1 s + %1 초 + + + + None + 없음 + + + + N/A + 없음 + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 그리고 %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1가 아직 안전하게 종료되지 않았습니다... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + 에러: 지정한 데이터 폴더 "%1"은 존재하지 않습니다. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 에러: 설정파일을 파싱할수 없습니다: %1. key=value syntax만 사용가능합니다. + + + + Error: %1 + 에러: %1 + + + + QRImageWidget + + + &Save Image... + 이미지 저장(&S)... + + + + &Copy Image + 이미지 복사(&C) + + + + Save QR Code + QR코드 저장 + + + + PNG Image (*.png) + PNG 이미지(*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + 없음 + + + + Client version + 클라이언트 버전 + + + + &Information + 정보(&I) + + + + Debug window + 디버그 창 + + + + General + 일반 + + + + Using BerkeleyDB version + 사용 중인 BerkeleyDB 버전 + + + + Datadir + 데이터 폴더 + + + + Startup time + 시작 시간 + + + + Network + 네트워크 + + + + Name + 이름 + + + + Number of connections + 연결 수 + + + + Block chain + 블록 체인 + + + + Current number of blocks + 현재 블록 수 + + + + Memory Pool + 메모리 풀 + + + + Current number of transactions + 현재 거래 수 + + + + Memory usage + 메모리 사용량 + + + + &Reset + + + + + + Received + 받음 + + + + + Sent + 보냄 + + + + &Peers + 피어(&P) + + + + Banned peers + 차단된 피어 + + + + + + Select a peer to view detailed information. + 자세한 정보를 보려면 피어를 선택하세요. + + + + Whitelisted + 화이트리스트에 포함 + + + + Direction + 방향 + + + + Version + 버전 + + + + Starting Block + 시작된 블록 + + + + Synced Headers + 동기화된 헤더 + + + + Synced Blocks + 동기화된 블록 + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + 거래가 네트워크에 전파되지 않을 때, 잔액 복구시 사용합니다. + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + 유저 에이전트 + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + %1 디버그 로그파일을 현재 데이터 폴더에서 엽니다. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. + + + + Decrease font size + 글자 크기 축소 + + + + Increase font size + 글자 크기 확대 + + + + Services + 서비스 + + + + Ban Score + 밴 스코어 + + + + Connection Time + 접속 시간 + + + + Last Send + 마지막으로 보낸 시간 + + + + Last Receive + 마지막으로 받은 시간 + + + + Ping Time + Ping 시간 + + + + The duration of a currently outstanding ping. + 현재 진행중인 PING에 걸린 시간. + + + + Ping Wait + Ping 대기 + + + + Min Ping + 최소 핑 + + + + Time Offset + 시간 오프셋 + + + + Last block time + 최종 블록 시각 + + + + &Open + 열기(&O) + + + + &Console + 콘솔(&C) + + + + &Network Traffic + 네트워크 트래픽(&N) + + + + Totals + 총액 + + + + In: + In: + + + + Out: + Out: + + + + Debug log file + 로그 파일 디버그 + + + + Clear console + 콘솔 초기화 + + + + 1 &hour + 1시간(&H) + + + + 1 &day + 1일(&D) + + + + 1 &week + 1주(&W) + + + + 1 &year + 1년(&Y) + + + + &Disconnect + 접속 끊기(&D) + + + + + + + Ban for + 추방 + + + + &Unban + 노드 추방 취소(&U) + + + + Are you sure you want to reindex? + 정말로 재색인 하시겠습니까? + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + %1 RPC 콘솔에 오신걸 환영합니다 + + + + Type <b>help</b> for an overview of available commands. + 사용할 수 있는 명령을 둘러보려면 <b>help</b>를 입력하십시오. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + 네트워크 활동이 정지됨. + + + + (node id: %1) + (노드 ID: %1) + + + + via %1 + %1 경유 + + + + + never + 없음 + + + + Inbound + 인바운드 + + + + Outbound + 아웃바운드 + + + + Yes + + + + + No + 아니오 + + + + + Unknown + 알수없음 + + + + RavenGUI + + + Sign &message... + 메시지 서명(&M)... + + + + Synchronizing with network... + 네트워크와 동기화중... + + + + &Overview + 개요(&O) + + + + Node + 노드 + + + + Show general overview of wallet + 지갑의 일반적 개요를 보여줍니다. + + + + &Transactions + 거래(&T) + + + + Browse transaction history + 거래내역을 검색합니다. + + + + &Create Assets + 자산 &생성 + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + 자산 &전송 + + + + + Transfer assets to RVN addresses + RVN 주소로 자산 전송 + + + + &Manage Assets + 자산 &관리 + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + &제한 자산 + + + + + Manage restricted assets + 제한 자산 관리 + + + + E&xit + 나가기(&X) + + + + Quit application + 어플리케이션 종료 + + + + &About %1 + %1 정보(&A) + + + + Show information about %1 + %1 정보를 표시합니다 + + + + About &Qt + &Qt 정보 + + + + Show information about Qt + Qt 정보를 표시합니다 + + + + &Options... + 옵션(&O) + + + + Modify configuration options for %1 + %1 설정 옵션 수정 + + + + &Encrypt Wallet... + 지갑 암호화(&E)... + + + + &Backup Wallet... + 지갑 백업(&B)... + + + + &Change Passphrase... + 암호문 변경(&C)... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + 보내는 주소(&S) + + + + &Receiving addresses... + 받는 주소(&R) + + + + Open &URI... + &URI 열기... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + 네트워크 활동을 중지하려면 클릭. + + + + Network activity disabled. + 네트워크 활동이 정지됨. + + + + Click to enable network activity again. + 네트워크 활동을 다시 시작하려면 클릭. + + + + Syncing Headers (%1%)... + 헤더 동기화중 (%1%)... + + + + Reindexing blocks on disk... + 디스크에서 블록 다시 색인중... + + + + Send coins to a Raven address + 비트코인 주소로 코인 전송 + + + + Backup wallet to another location + 지갑을 다른장소에 백업 + + + + Change the passphrase used for wallet encryption + 지갑 암호화에 사용되는 암호를 변경합니다 + + + + Open debugging and diagnostic console + 디버깅 및 진단 콘솔을 엽니다 + + + + &Verify message... + 메시지 확인(&V)... + + + + Raven + 비트코인 + + + + Wallet + 지갑 + + + + &Send + 보내기(&S) + + + + &Receive + 받기(&R) + + + + &Show / Hide + 보이기/숨기기(&S) + + + + Show or hide the main Window + 메인창 보이기 또는 숨기기 + + + + Encrypt the private keys that belong to your wallet + 지갑에 포함된 개인키 암호화하기 + + + + Sign messages with your Raven addresses to prove you own them + 지갑 주소가 본인 소유인지 증명하기 위해 비트코인 주소에 서명할 수 있습니다. + + + + Verify messages to ensure they were signed with specified Raven addresses + 비트코인 주소의 전자 서명 확인을 위해 첨부된 메시지가 있을 경우 이를 검증할 수 있습니다. + + + + &File + 파일(&F) + + + + &Help + 도움말(&H) + + + + Request payments (generates QR codes and raven: URIs) + 지불 요청하기 (QR코드와 비트코인이 생성됩니다: URIs) + + + + Show the list of used sending addresses and labels + 한번 이상 사용된 보내는 주소와 주소 제목의 목록을 보여줍니다. + + + + Show the list of used receiving addresses and labels + 한번 이상 사용된 받는 주소와 주소 제목의 목록을 보여줍니다. + + + + Open a raven: URI or payment request + raven: URI 또는 지불요청 열기 + + + + &Command-line options + 명령줄 옵션(&C) + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + 디스크에서 블록 색인중... + + + + Processing blocks on disk... + 디스크에서 블록 처리중... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 뒤에 + + + + Last received block was generated %1 ago. + 최근에 받은 블록은 %1 전에 생성되었습니다. + + + + Transactions after this will not yet be visible. + 이 후의 거래들은 아직 보이지 않을 것입니다. + + + + Error + 오류 - Your current balance in watch-only addresses - 조회전용 주소의 현재 잔액 + + Warning + 경고 - Spendable: - 사용가능: + + Information + 정보 - Recent transactions - 최근 거래 + + Up to date + 현재까지 - Unconfirmed transactions to watch-only addresses - 조회전용 주소의 검증되지 않은 거래 + + Show the %1 help message to get a list with possible Raven command-line options + 사용할 수 있는 비트코인 명령줄 옵션 목록을 가져오기 위해 %1 도움말 메시지를 표시합니다. - Mined balance in watch-only addresses that has not yet matured - 조회전용 주소의 채굴된 잔액 중 숙성되지 않은 것 + + %1 client + %1 클라이언트 - Current total balance in watch-only addresses - 조회전용 주소의 현재 잔액 + + Connecting to peers... + 피어에 연결중... + + + + Catching up... + 블록 따라잡기... + + + + Date: %1 + + 날짜: %1 + + + + + + Amount: %1 + + 금액: %1 + + + + + Type: %1 + + 종류: %1 + + + + + Label: %1 + + 라벨: %1 + + + + + Address: %1 + + 주소: %1 + + + + + Sent transaction + 거래 보내기 + + + + Incoming transaction + 들어오고 있는 거래 + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD 키 생성이 <b>활성화되었습니다</b> + + + + HD key generation is <b>disabled</b> + HD 키 생성이 <b>비활성화되었습니다</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 지갑이 <b>암호화</b> 되었고 현재 <b>잠금해제</b> 되었습니다 + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 지갑이 <b>암호화</b> 되었고 현재 <b>잠겨져</b> 있습니다 + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + 치명적인 오류가 발생했습니다. 비트코인을 더이상 안전하게 진행할 수 없어 곧 종료합니다. - PaymentServer + ReceiveCoinsDialog - Payment request error - 지불 요청 오류 + + &Amount: + 거래액(&A): - Cannot start raven: click-to-pay handler - 비트코인을 시작할 수 없습니다: 지급제어기를 클릭하세요 + + &Label: + 라벨(&L): - URI handling - URI 핸들링 + + &Message: + 메시지(&M): - Payment request fetch URL is invalid: %1 - 지불 요청의 URL이 올바르지 않습니다: %1 + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 이전에 사용된 수취용 주소를 사용할려고 합니다. 주소의 재사용은 보안과 개인정보 보호 측면에서 문제를 초래할 수 있습니다. 이전 지불 요청을 재생성하는 경우가 아니라면 주소 재사용을 권하지 않습니다. - Invalid payment address %1 - 잘못된 지불 주소입니다 %1 + + R&euse an existing receiving address (not recommended) + 현재의 수취용 주소를 재사용하기(&E) (권장하지 않습니다) - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI의 파싱에 문제가 발생했습니다. 잘못된 비트코인 주소나 URI 파라미터 구성에 오류가 존재할 수 있습니다. + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + 지불 요청에 첨부되는 선택가능한 메시지 입니다. 이 메세지는 요청이 열릴 때 표시될 것 입니다. 메모: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. - Payment request file handling - 지불이 파일 처리를 요청합니다 + + + An optional label to associate with the new receiving address. + 임의의 라벨이 새로운 받기 주소와 결합 - Payment request file cannot be read! This can be caused by an invalid payment request file. - 지불 요청 파일을 읽을 수 없습니다. 이것은 잘못된 지불 요청 파일에 의해 발생하는 오류일 수 있습니다. + + Use this form to request payments. All fields are <b>optional</b>. + 지급을 요청하기 위해 아래 형식을 사용하세요. 입력값은 <b>선택 사항</b> 입니다. - Payment request rejected - 지불 요청이 거부됨 + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + 요청할 금액 입력칸으로 선택 사항입니다. 빈 칸으로 두거나 특정 금액이 필요하지 않는 경우 0을 입력하세요. - Payment request network doesn't match client network. - 지급 요청 네트워크가 클라이언트 네트워크와 일치되지 않습니다. + + Clear all fields of the form. + 양식의 모든 필드를 지웁니다 + + + + Clear + 지우기 + + + + Requested payments history + 지출기록 확인 + + + + &Request payment + 지불 요청(&R) + + + + Show the selected request (does the same as double clicking an entry) + 선택된 요청을 표시하기 (더블 클릭으로 항목을 표시할 수 있습니다) + + + + Show + 보기 + + + + Remove the selected entries from the list + 목록에서 삭제할 항목을 선택하시오 + + + + Remove + 삭제 + + + + Copy URI + URI 복사 + + + + Copy label + 라벨 복사 + + + + Copy message + 메시지 복사 + + + + Copy amount + 거래액 복사 + + + + ReceiveRequestDialog + + + QR Code + QR 코드 + + + + Copy &URI + URI 복사(&U) + + + + Copy &Address + 주소 복사(&A) + + + + &Save Image... + 이미지 저장(&S)... + + + + Request payment to %1 + %1에 지불을 요청했습니다 + + + + Payment information + 지불 정보 + + + + URI + URI + + + + Address + 주소 + + + + Amount + 거래액 + + + + Label + 라벨 + + + + Message + 메시지 + + + + Resulting URI too long, try to reduce the text for label / message. + URI 결과가 너무 길음, 라벨/메세지의 글을 줄이도록 하세요. + + + + Error encoding URI into QR Code. + URI를 QR 코드로 인코딩하는 중 오류가 발생했습니다. + + + + RecentRequestsTableModel + + + Date + 날짜 + + + + Label + 라벨 + + + + Message + 메시지 + + + + (no label) + (라벨 없음) + + + + (no message) + (메세지가 없습니다) - Payment request expired. - 지불 요청이 만료됨. + + (no amount requested) + (요청한 거래액 없음) - Payment request is not initialized. - 지불 요청이 초기화 되지 않았습니다. + + Requested + 요청됨 + + + ReissueAssetDialog - Unverified payment requests to custom payment scripts are unsupported. - 임의로 변경한 결제 스크립트 기반의 지불 요청 양식은 검증되기 전까지는 지원되지 않습니다. + + Coin Control Features + 코인 상세 제어기능 - Invalid payment request. - 잘못된 지불 요청. + + Inputs... + 입력... - Requested payment amount of %1 is too small (considered dust). - 요청한 금액 %1의 양이 너무 적습니다. (스팸성 거래로 간주) + + automatically selected + - Refund from %1 - %1 으로부터의 환불 + + Insufficient funds! + 자금이 부족합니다! - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - 지불 요청 %1은 너무 큽니다 (%2 바이트, %3 바이트까지 허용됩니다). + + + Quantity: + 수량: - Error communicating with %1: %2 - %1과 소통하는데 에러: %2 + + Bytes: + 바이트: - Payment request cannot be parsed! - 지불요청을 파싱할 수 없습니다. + + Amount: + 거래액: - Bad response from server %1 - 서버로 부터 잘못된 반응 %1 + + Dust: + 더스트: - Network request error - 네트워크 요청 에러 + + Fee: + - Payment acknowledged - 지불이 승인됨 + + After Fee: + 수수료 제외한 값: - - - PeerTableModel - User Agent - 유저 에이전트 + + Change: + 잔돈: - Node/Service - 노드/서비스 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + 활성화 되었지만 변경 주소가 비어 있거나 유효하지 않은 경우, 신규 생성 주소로 변경 사항이 전송됩니다. - NodeId - 노드 ID + + Custom change address + 맞춤 잔돈 주소 - Ping - + + + Reissue Asset + 자산 재발행 - - - QObject - Amount - 거래액 + + Select an asset to reissue: + - Enter a Raven address (e.g. %1) - 비트코인 주소를 입력하기 (예. %1) + + Address: + 주소: - %1 d - %1 일 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 h - %1 시간 + + Verifier String: + - %1 m - %1 분 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 s - %1 초 + + Warning: + 경고: - None - 없음 + + The number of assets that will be created + - N/A - 없음 + + Unit: + - %1 ms - %1 ms + + e.g. 1.00000000 + - - %n second(s) - %n 초 + + + If the owner of this asset will be able to issue more assets in the future + - - %n minute(s) - %n 분 + + + Reissuable + - - %n hour(s) - %n 시간 + + + Change IPFS/Txid Hash + IPFS/Txid 해시 변경 - - %n day(s) - &n 일 + + + The ipfs/txid hash that contains information about the asset + - - %n week(s) - %n 주 + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - %1 and %2 - %1 그리고 %2 + + ERROR TEXT + - - %n year(s) - %n 년 + + + Current Asset Settings + 현재 자산 설정 - %1 didn't yet exit safely... - %1가 아직 안전하게 종료되지 않았습니다... + + Updated Asset Settings + 업데이트된 자산 설정 - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - 에러: 지정한 데이터 폴더 "%1"은 존재하지 않습니다. + + Transaction Fee: + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - 에러: 설정파일을 파싱할수 없습니다: %1. key=value syntax만 사용가능합니다. + + Choose... + - Error: %1 - 에러: %1 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + 대비 수수료(fallbackfee)를 사용하면 확인하는 데 몇 시간 또는 몇 일이 걸리는 (또는 전혀 확인이 어려운)거래가 될 수 있습니다. 수수료를 수동으로 선택하거나, 전체 블록체인을 확인할 때까지 기다리세요. - - - QRImageWidget - &Save Image... - 이미지 저장(&S)... + + Warning: Fee estimation is currently not possible. + 경고: 현재 수수료 측정이 불가합니다. - &Copy Image - 이미지 복사(&C) + + collapse fee-settings + 수수료 설정 접기 - Save QR Code - QR코드 저장 + + Hide + - PNG Image (*.png) - PNG 이미지(*.png) + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - RPCConsole - N/A - 없음 + + per kilobyte + - Client version - 클라이언트 버전 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Information - 정보(&I) + + (read the tooltip) + (툴팁을 꼭 읽어보세요) - Debug window - 디버그 창 + + Recommended: + - General - 일반 + + Cus&tom: + - Using BerkeleyDB version - 사용 중인 BerkeleyDB 버전 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Datadir - 데이터 폴더 + + Confirmation time target: + - Startup time - 시작 시간 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + (거래 확인이 진행되기 전) 보내는 사람이 이 거래를 더 높은 수수료를 지불하는 새 거래로 대체 할 수 있음을 나타냅니다. - Network - 네트워크 + + Request Replace-By-Fee + - Name - 이름 + + Clear + - Number of connections - 연결 수 + + Balance: + 잔액: - Block chain - 블록 체인 + + 123.456 RVN + - Current number of blocks - 현재 블록 수 + + Copy quantity + 수량 복사 - Memory Pool - 메모리 풀 + + Copy amount + 거래액 복사 - Current number of transactions - 현재 거래 수 + + Copy fee + 수수료 복사 - Memory usage - 메모리 사용량 + + Copy after fee + 수수료 제외한 값 복사 - Received - 받음 + + Copy bytes + 바이트 복사 - Sent - 보냄 + + Copy dust + 더스트 복사 - &Peers - 피어(&P) + + Copy change + 잔돈 복사 - Banned peers - 차단된 피어 + + Select an asset to reissue.. + - Select a peer to view detailed information. - 자세한 정보를 보려면 피어를 선택하세요. + + Select the asset you want to reissue. + - Whitelisted - 화이트리스트에 포함 + + %1 (%2 blocks) + %1 (%2 블록) - Direction - 방향 + + Cost + - Version - 버전 + + Asset data couldn't be found + - Starting Block - 시작된 블록 + + Quantity is to large. Max is 21,000,000,000 + 수량이 너무 큽니다. 최대 수량은 21,000,000,000개 입니다. - Synced Headers - 동기화된 헤더 + + Invalid Raven Destination Address + 유효하지 않은 레이븐코인 대상 주소 - Synced Blocks - 동기화된 블록 + + Warning: Restricted Assets Issuance requires an address + 경고: 제한 자산 재발행은 생성 주소를 필요로 합니다. - User Agent - 유저 에이전트 + + + Warning: Invalid Raven address + 경고: 유효하지 않은 레이븐코인 주소 - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - %1 디버그 로그파일을 현재 데이터 폴더에서 엽니다. 용량이 큰 로그 파일들은 몇 초가 걸릴 수 있습니다. + + + Yes + - Decrease font size - 글자 크기 축소 + + No + - Increase font size - 글자 크기 확대 + + + Name + 이름 - Services - 서비스 + + + Total Quantity + 전체 수량 - Ban Score - 밴 스코어 + + + Units + - Connection Time - 접속 시간 + + + Can Reisssue + - Last Send - 마지막으로 보낸 시간 + + + + IPFS Hash + - Last Receive - 마지막으로 받은 시간 + + + + Txid Hash + - Ping Time - Ping 시간 + + Verifier String + - The duration of a currently outstanding ping. - 현재 진행중인 PING에 걸린 시간. + + + Current Verifier String + - Ping Wait - Ping 대기 + + Please select a asset from the menu to display the assets current settings + 메뉴에서 원하는 자산 선택시, 현재 자산 설정을 볼 수 있습니다. - Min Ping - 최소 핑 + + Please select a asset from the menu to display the assets updated settings + 메뉴에서 원하는 자산 선택시, 업데이트 된 자산 설정을 볼 수 있습니다. - Time Offset - 시간 오프셋 + + Current Quantity + 현재 수량 - Last block time - 최종 블록 시각 + + Current Units + - &Open - 열기(&O) + + Can Reissue + - &Console - 콘솔(&C) + + Unknown data hash type + - &Network Traffic - 네트워크 트래픽(&N) + + Only IPFS Hashes allowed until RIP5 is activated + - &Clear - 지우기(&C) + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Totals - 총액 + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - In: - In: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Out: - Out: + + + %1 to %2 + - Debug log file - 로그 파일 디버그 + + Are you sure you want to send? + 정말로 송금 하시겠습니까? - Clear console - 콘솔 초기화 + + added as transaction fee + - 1 &hour - 1시간(&H) + + Total Amount %1 + 총 거래액 %1 - 1 &day - 1일(&D) + + or + - 1 &week - 1주(&W) + + Confirm reissue assets + 재발행 자산 확인 - 1 &year - 1년(&Y) + + Copy + 복사 - &Disconnect - 접속 끊기(&D) + + Transaction ID Copied + - Ban for - 추방 + + Asset transaction sent to network: + 네트워크로 전송된 자산 거래: - - &Unban - 노드 추방 취소(&U) + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - %1 RPC 콘솔에 오신걸 환영합니다 + + Warning: Unknown change address + 경고: 알려지지 않은 잔돈 주소 - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 기록을 찾아보려면 위 아래 화살표 키를, 화면을 지우려면 <b>Ctrl-L</b>키를 사용하십시오. + + Confirm custom change address + 맞춤 잔돈 주소 확인 - Type <b>help</b> for an overview of available commands. - 사용할 수 있는 명령을 둘러보려면 <b>help</b>를 입력하십시오. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + 변경하기 위해 선택한 주소는 이 지갑의 일부가 아닙니다. 지갑에 있는 일부 또는 모든 금액을 이 주소로 보낼 수 있습니다. 확실합니까? - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - 경고 : 사기꾼이 사용자에게 여기에 명령을 입력하게 하여 지갑 내용을 훔칠수 있다는 사실을 알려드립니다. 명령어를 완전히 이해하지 못한다면 콘솔을 사용하지 마십시오. + + (no label) + (라벨 없음) - Network activity disabled - 네트워크 활동이 정지됨. + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 바이트 + + Send Coins + 코인 보내기 - %1 KB - %1 킬로바이트 + + Asset Balances + 자산 잔액 - %1 MB - %1 메가바이트 + + + Search + - %1 GB - %1 기가바이트 + + Address List + 주소 리스트 - (node id: %1) - (노드 ID: %1) + + Balance: + 잔액: - via %1 - %1 경유 + + + Failed to create a change address + 잔돈 주소 생성에 실패하였습니다. - never - 없음 + + Failed to generate the correct transaction. Please try again + 정확한 거래 생성에 실패하였습니다. 다시 시도해 주세요. - Inbound - 인바운드 + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - 아웃바운드 + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - 아니오 + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - 알수없음 + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - 거래액(&A): + + + Total Amount %1 + 총 거래액 %1 - &Label: - 라벨(&L): + + + or + - &Message: - 메시지(&M): + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - 이전에 사용된 수취용 주소를 사용할려고 합니다. 주소의 재사용은 보안과 개인정보 보호 측면에서 문제를 초래할 수 있습니다. 이전 지불 요청을 재생성하는 경우가 아니라면 주소 재사용을 권하지 않습니다. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - 현재의 수취용 주소를 재사용하기(&E) (권장하지 않습니다) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - 지불 요청에 첨부되는 선택가능한 메시지 입니다. 이 메세지는 요청이 열릴 때 표시될 것 입니다. 메모: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - 임의의 라벨이 새로운 받기 주소와 결합 + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - 지급을 요청하기 위해 아래 형식을 사용하세요. 입력값은 <b>선택 사항</b> 입니다. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - 요청할 금액 입력칸으로 선택 사항입니다. 빈 칸으로 두거나 특정 금액이 필요하지 않는 경우 0을 입력하세요. + + This is an asset payment + 이것은 자산 지불입니다. - Clear all fields of the form. - 양식의 모든 필드를 지웁니다 + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - 지우기 + + + + Memo: + - Requested payments history - 지출기록 확인 + + Amount: + 거래액: - &Request payment - 지불 요청(&R) + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - 선택된 요청을 표시하기 (더블 클릭으로 항목을 표시할 수 있습니다) + + &Label: + - Show - 보기 + + Asset: + 자산: - Remove the selected entries from the list - 목록에서 삭제할 항목을 선택하시오 + + The Raven address to send the payment to + 이 레이븐코인 주소로 송금됩니다 - Remove - 삭제 + + Choose previously used address + 이전에 사용한 주소 선택하기 - Copy URI - URI 복사 + + Alt+A + - Copy label - 라벨 복사 + + Paste address from clipboard + 클립보드에서 주소 붙혀넣기 - Copy message - 메시지 복사 + + Alt+P + - Copy amount - 거래액 복사 + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR 코드 + + Message: + - Copy &URI - URI 복사(&U) + + Transfer &To: + - Copy &Address - 주소 복사(&A) + + Transfer Administrator Asset + 관리자 자산 전송 - &Save Image... - 이미지 저장(&S)... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - %1에 지불을 요청했습니다 + + This is an unauthenticated payment request. + 인증되지 않은 지급 요청 입니다. - Payment information - 지불 정보 + + + Transfer to: + - URI - URI + + + A&mount: + - Address - 주소 + + This is an authenticated payment request. + 인증된 지급 요청 입니다. - Amount - 거래액 + + Enter a label for this address to add it to your address book + - Label - 라벨 + + Select to view administrator assets to transfer + 전송할 관리자 자산을 보려면 선택하세요. - Message - 메시지 + + + Select an asset to transfer + 전송할 자산 선택 - Resulting URI too long, try to reduce the text for label / message. - URI 결과가 너무 길음, 라벨/메세지의 글을 줄이도록 하세요. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - URI를 QR 코드로 인코딩하는 중 오류가 발생했습니다. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + 이 제한 자산은 전 세계적으로 동결되었습니다. 네트워크에서 자산을 전송할 수 없습니다. - - - RecentRequestsTableModel - Date - 날짜 + + Failed to get asset metadata for: + 자산 메타데이터 받기에 실패하였습니다: - Label - 라벨 + + The transaction in which the asset was issued must be mined into a block before you can transfer it + 자산이 발행된 거래는 전송하기 전에 블록으로 채굴되어야 합니다. - Message - 메시지 + + Failed to get asset outpoints from database + 데이터베이스에서 자산 아웃포인트를 가져오지 못했습니다. - (no label) - (라벨 없음) + + Selected Balance + 선택된 잔액 - (no message) - (메세지가 없습니다) + + Wallet Balance + 지갑 잔액 - (no amount requested) - (요청한 거래액 없음) + + Select an administrator asset to transfer + 전송할 관리자 자산 선택 - Requested - 요청됨 + + Warning: Transferring administrator asset + 경고: 관리자 자산 옮기는 중 SendCoinsDialog + + Send Coins - 코인들 보내기 + 코인 보내기 + Coin Control Features - 코인 컨트롤 기능들 + 코인 상세 제어기능 + Inputs... 입력... + automatically selected 자동 선택 + Insufficient funds! 자금이 부족합니다! + Quantity: 수량: + Bytes: 바이트: + Amount: 거래액: + Fee: 수수료: + After Fee: 수수료 이후: + Change: 잔돈: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. 이 기능이 활성화되면 거스름돈 주소가 공란이거나 무효인 경우, 거스름돈은 새롭게 생성된 주소로 송금됩니다. + Custom change address 주소변경 + Transaction Fee: 거래 수수료: + Choose... 선택 하기... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + 대비 수수료(fallbackfee)를 사용하면 확인하는 데 몇 시간 또는 몇 일이 걸리는 (또는 전혀 확인이 어려운)거래가 될 수 있습니다. 수수료를 수동으로 선택하거나, 전체 블록체인을 확인할 때까지 기다리세요. + + + + Warning: Fee estimation is currently not possible. + 경고: 현재 수수료 측정이 불가합니다. + + + collapse fee-settings 수수료 설정 접기 + per kilobyte 킬로바이트 당 - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - 사용자 정의 수수료가 1000사토시로 지정된 경우 거래의 크기가 250바이트 일 경우 1킬로바이트당 250사토시만 지불되지만 "최소 수수료"에선 1000사토시가 지불됩니다. 1킬로바이트가 넘는 거래인 경우 어떠한 경우에든 1킬로바이트 기준으로 지불됩니다. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 사용자 정의 수수료가 1000사토시로 지정된 경우 거래의 크기가 250바이트 일 경우 1킬로바이트당 250사토시만 지불되지만 "최소 수수료"에선 1000사토시가 지불됩니다. 1킬로바이트가 넘는 거래인 경우 어떠한 경우에든 1킬로바이트 기준으로 지불됩니다. + Hide 숨기기 - total at least - 최소 수수료 - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. 블록의 용량보다 거래의 용량이 작은 경우에는 최소한의 수수료만으로도 충분합니다. 그러나 비트코인 네트워크의 처리량보다 더 많은 거래 요구는 영원히 검증이 안 될 수도 있습니다. + (read the tooltip) (툴팁을 꼭 읽어보세요) + Recommended: 권장: + Custom: 사용자 정의: + (Smart fee not initialized yet. This usually takes a few blocks...) (Smart fee가 아직 초기화 되지 않았습니다. 블록 분석이 완전하게 끝날 때 까지 기다려주십시오...) - normal - 일반 + + Request Replace-By-Fee + - fast - 빠름 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + (거래 확인이 진행되기 전) 보내는 사람이 이 거래를 더 높은 수수료를 지불하는 새 거래로 대체 할 수 있음을 나타냅니다. + Send to multiple recipients at once 다수의 수령인들에게 한번에 보내기 + Add &Recipient 수령인 추가하기(&R) + Clear all fields of the form. 양식의 모든 필드를 지웁니다 + Dust: 더스트: + Confirmation time target: 승인 시간 목표: + Clear &All 모두 지우기(&A) + Balance: 잔액: + Confirm the send action 전송 기능 확인 + S&end 보내기(&E) + Copy quantity 수량 복사 + Copy amount 거래액 복사 + Copy fee 수수료 복사 + Copy after fee 수수료 이후 복사 + Copy bytes - bytes 복사 + 바이트 복사 + Copy dust 더스트 복사 + Copy change 잔돈 복사 + + %1 (%2 blocks) + %1 (%2 블록) + + + + + + %1 to %2 %1을(를) %2(으)로 + Are you sure you want to send? 정말로 보내시겠습니까? + added as transaction fee 거래 수수료로 추가됨 + Total Amount %1 총 액수 %1 + or 또는 + Confirm send coins 코인 전송을 확인 + The recipient address is not valid. Please recheck. 수령인 주소가 정확하지 않습니다. 재확인 바랍니다 + The amount to pay must be larger than 0. 지불하는 금액은 0 보다 커야 합니다. + The amount exceeds your balance. - 잔고를 초과하였습니다. + 금액이 잔액을 초과합니다. + The total exceeds your balance when the %1 transaction fee is included. - %1 의 거래수수료를 포함하면 잔고를 초과합니다. + %1 거래수수료 포함시 잔액 초과합니다. + Duplicate address found: addresses should only be used once each. 중복된 주소 발견: 한번에 하나의 주소에만 작업할 수 있습니다. + Transaction creation failed! 거래를 생성하는 것을 실패하였습니다! + The transaction was rejected with the following reason: %1 거래가 다음과 같은 이유로 거부되었습니다: %1 + A fee higher than %1 is considered an absurdly high fee. %1 보다 높은 수수료는 너무 높은 수수료 입니다. + Payment request expired. 지불 요청이 만료됨. - - %n block(s) - %n 블록 - + Pay only the required fee of %1 오직 %1 만의 수수료를 지불하기 + Estimated to begin confirmation within %n block(s). - %n 블록 안에 승인이 시작될 것으로 추정됩니다. + + Warning: Invalid Raven address 경고: 잘못된 비트코인주소입니다 + Warning: Unknown change address 경고: 알려지지 않은 주소변경입니다 + Confirm custom change address 맞춤 주소 변경 확인 + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? 변경하기 위해 선택한 주소는 이 지갑의 일부가 아닙니다. 지갑에 있는 일부 또는 모든 금액을 이 주소로 보낼 수 있습니다. 확실합니까? + (no label) (라벨 없음) @@ -2226,82 +5501,108 @@ SendCoinsEntry + + + A&mount: 금액(&M): - Pay &To: - 송금할 대상(&T): - - + &Label: 라벨(&L): + Choose previously used address 이전에 사용한 주소를 선택하십시오 + This is a normal payment. 이것은 정상적인 지불입니다. + The Raven address to send the payment to - 이 비트코인 주소로 송금됩니다 + 이 레이븐코인 주소로 송금됩니다 + Alt+A Alt+A + Paste address from clipboard 클립보드로 부터 주소 붙여넣기 + Alt+P Alt+P + + + Remove this entry 항목을 지웁니다 + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. 수수료가 송금되는 금액에서 공제됩니다. 수령자는 금액 필드에서 입력한 금액보다 적은 금액을 전송받게 됩니다. 받는 사람이 여러 명인 경우 수수료는 균등하게 나누어집니다. + S&ubtract fee from amount 송금액에서 수수료 공제(&U) + Message: 메시지: + + Send &To: + + + + This is an unauthenticated payment request. 인증 되지 않은 지급 요청입니다. + + + Send to: + 수신자: + + + This is an authenticated payment request. - 인증 된 지급 요청 입니다. + 인증된 지급 요청 입니다. + Enter a label for this address to add it to the list of used addresses 사용된 주소 목록에 새 주소를 추가하기 위해 라벨 이름을 입력해 주세요. + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. 비트코인에 첨부된 메시지: 참고용으로 거래와 함께 저장될 URI. 메모: 이 메시지는 비트코인 네트워크로 전송되지 않습니다. - Pay To: - 송금할 대상: - - + + Memo: 메모: + Enter a label for this address to add it to your address book 주소록에 추가하려면 라벨을 입력하세요 @@ -2309,6 +5610,8 @@ SendConfirmationDialog + + Yes @@ -2316,10 +5619,12 @@ ShutdownWindow + %1 is shutting down... %1이 종료 중입니다... + Do not shut down the computer until this window disappears. 이 창이 사라지기 전까지 컴퓨터를 끄지 마세요. @@ -2327,138 +5632,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message 서명 - 싸인 / 메시지 확인 + &Sign Message 메시지 서명(&S) + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 여러분 자신을 증명하기 위해 주소를 첨가하고 서명할 수 있습니다. 피싱 공격으로 말미암아 여러분의 서명을 통해 속아 넘어가게 할 수 있으므로, 서명하지 않은 모든 모호한 요소를 주의하십시오. 조항들이 완전 무결한지 확인 후 동의하는 경우에만 서명하십시오. + The Raven address to sign the message with 메세지를 서명한 비트코인 주소 + + Choose previously used address 이전에 사용한 주소를 선택하십시오 + + Alt+A Alt+A + Paste address from clipboard 클립보드로 부터 주소를 복사하기 + Alt+P Alt+P + Enter the message you want to sign here 여기에 서명하려는 메시지를 입력하십시오 + Signature 서명 + Copy the current signature to the system clipboard 현재 서명을 시스템 클립보드에 복사 + Sign the message to prove you own this Raven address 여러분의 비트코인 주소를 증명하려면 메시지 서명하십시오 + Sign &Message 메시지에 서명(&M) + Reset all sign message fields 메시지 필드의 모든 서명 재설정 + + Clear &All 모두 지우기(&A) + &Verify Message 메시지 검증(&V) - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! 메시지를 검증하기 위해 아래 칸에 각각 지갑 주소와 메시지, 전자서명을 입력하세요. (메시지 원본의 띄어쓰기, 들여쓰기, 행 나눔 등이 정확하게 입력되어야 하므로 원본을 복사해서 입력하세요) 이 기능은 메시지 검증이 주 목적이며, 네트워크 침입자에 의해 변조되지 않도록 전자서명 해독에 불필요한 시간을 소모하지 마세요. + The Raven address the message was signed with 메세지의 서명에 사용된 비트코인 주소 + Verify the message to ensure it was signed with the specified Raven address 정확한 비트코인주소가 입력됬는지 메시지를 확인하시오 + Verify &Message 메시지 검증(&M) + Reset all verify message fields 모든 검증 메시지 필드 재설정 - Click "Sign Message" to generate signature - 서명을 만들려면 "메시지 서명"을 누르십시오 + + Click "Sign Message" to generate signature + 서명을 만들려면 "메시지 서명"을 누르십시오 + + The entered address is invalid. 입력한 주소가 잘못되었습니다. + + + + Please check the address and try again. 주소를 확인하고 다시 시도하십시오. + + The entered address does not refer to a key. 입력한 주소는 키에서 참조하지 않습니다. + Wallet unlock was cancelled. 지갑 잠금 해제를 취소했습니다. + Private key for the entered address is not available. 입력한 주소에 대한 개인키가 없습니다. + Message signing failed. 메시지 서명에 실패했습니다. + Message signed. 메시지를 서명했습니다. + The signature could not be decoded. 서명을 해독할 수 없습니다. + + Please check the signature and try again. 서명을 확인하고 다시 시도하십시오. + The signature did not match the message digest. 메시지 다이제스트와 서명이 일치하지 않습니다. + Message verification failed. 메시지 검증에 실패했습니다. + Message verified. 메시지를 검증했습니다. @@ -2466,6 +5814,7 @@ SplashScreen + [testnet] [테스트넷] @@ -2473,6 +5822,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2480,174 +5830,260 @@ TransactionDesc + Open for %n more block(s) - %n개의 더 많은 블록 열기 + + Open until %1 %1 까지 열림 + conflicted with a transaction with %1 confirmations %1 승인이 있는 거래와 충돌 함 + %1/offline %1/오프라인 + 0/unconfirmed, %1 0/미승인, %1 + in memory pool 메모리 풀 안에 있음 + not in memory pool 메모리 풀 안에 없음 + abandoned 버려진 + %1/unconfirmed %1/미확인 + %1 confirmations %1 확인됨 + + Status 상태 + + , has not been successfully broadcast yet . 아직 성공적으로 통보하지 않음 + + , broadcast through %n node(s) - , %n개 노드를 통해 전파 + + + Date 날짜 + Source 소스 + Generated 생성됨 + + + + + From 으로부터 + + unknown 알수없음 + + + + + To 에게 + + own address 자신의 주소 + + + watch-only 조회전용 + + label 라벨 + + + + + + + Credit 입금액 + matures in %n more block(s) - %n개의 더 많은 블록을 숙성 + + not accepted 허용되지 않음 + + + + + Debit 출금액 + Total debit 총 출금액 + Total credit 총 입금액 + Transaction fee 거래 수수료 + Net amount 총 거래액 + + + + Message 메시지 + + Comment 설명 + + Transaction ID 거래 ID + + Transaction total size 거래 총 크기 + + Output index 출력 인덱스 + + Merchant 상인 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - 신규 채굴된 코인이 사용되기 위해서는 %1 개의 블록이 경과되어야 합니다. 블록을 생성할 때 블록체인에 추가되도록 네트워크에 전파되는 과정을 거치는데, 블록체인에 포함되지 못하고 실패한다면 해당 블록의 상태는 '미승인'으로 표현되고 비트코인 또한 사용될 수 없습니다. 이 현상은 다른 노드가 비슷한 시간대에 동시에 블록을 생성할 때 종종 발생할 수 있습니다. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + 신규 채굴된 코인이 사용되기 위해서는 %1 개의 블록이 경과되어야 합니다. 블록을 생성할 때 블록체인에 추가되도록 네트워크에 전파되는 과정을 거치는데, 블록체인에 포함되지 못하고 실패한다면 해당 블록의 상태는 '미승인'으로 표현되고 비트코인 또한 사용될 수 없습니다. 이 현상은 다른 노드가 비슷한 시간대에 동시에 블록을 생성할 때 종종 발생할 수 있습니다. + + + + Net RVN amount + 총 레이븐코인 거래액 + Debug information 디버깅 정보 + Transaction 거래 + Inputs 입력 + Amount 거래액 + + true + + false 거짓 @@ -2655,10 +6091,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction 이 창은 거래의 세부내역을 보여줍니다 + Details for %1 %1에 대한 세부 정보 @@ -2666,269 +6104,411 @@ TransactionTableModel + Date 날짜 + Type 형식 + Label 라벨 + + + Amount + 거래액 + + + + Asset + 자산 + + Open for %n more block(s) - %n개의 더 많은 블록 열기 + + Open until %1 %1 까지 열림 + Offline 오프라인 + Unconfirmed 미확인 + Abandoned 버려진 + Confirming (%1 of %2 recommended confirmations) 승인 중 (권장되는 승인 회수 %2 대비 현재 승인 수 %1) + Confirmed (%1 confirmations) 승인됨 (%1 확인됨) + Conflicted 충돌 + Immature (%1 confirmations, will be available after %2) 충분히 숙성되지 않은 상태 (%1 승인, %2 후에 사용 가능합니다) + This block was not received by any other nodes and will probably not be accepted! 이 블록은 다른 노드로부터 받지 않아 허용되지 않을 것임! + Generated but not accepted 생성되었으나 거절됨 + Received with 받은 주소 + Received from 보낸 주소 + Sent to 보낸 주소 + Payment to yourself 자신에게 지불 + Mined 채굴 + + Asset Issued + 발행된 자산 + + + + Asset Reissued + 재발행된 자산 + + + + Assets Received + 받은 자산 + + + + Assets Sent + 보낸 자산 + + + watch-only 조회전용 + (n/a) (없음) + (no label) (라벨 없음) + Transaction status. Hover over this field to show number of confirmations. 거래상황. 마우스를 올리면 검증횟수가 표시됩니다. + Date and time that the transaction was received. 거래가 이루어진 날짜와 시각. + Type of transaction. 거래의 종류. + Whether or not a watch-only address is involved in this transaction. 조회전용 주소가 이 거래에 참여하는지 여부입니다. + User-defined intent/purpose of the transaction. 거래에 대한 사용자 정의 intent/purpose + Amount removed from or added to balance. - 변경된 잔고. + 잔액에 추가되거나 제거된 금액 + + + + The asset (or RVN) removed or added to balance. + 잔액에 추가되거나 제거된 자산(또는 레이븐코인) TransactionView + + All 전체 + Today 오늘 + This week 이번주 + This month 이번 달 + Last month 지난 달 + This year 올 해 + Range... 범위... + Received with 받은 주소 + Sent to 보낸 주소 + To yourself 자기거래 + Mined 채굴 + Other 기타 + Enter address or label to search 검색하기 위한 주소 또는 표 입력 + Min amount 최소 거래액 + + Asset name + 자산명 + + + Abandon transaction 버려진 거래 + Copy address 주소 복사 + Copy label 라벨 복사 + Copy amount 거래액 복사 + Copy transaction ID 거래 아이디 복사 + Copy raw transaction 원시 거래 복사 + Copy full transaction details 거래 세부 내역 복사 + Edit label 라벨 수정 + Show transaction details 거래 세부 내역 보기 + + Browse with: + + + + Export Transaction History 거래 기록 내보내기 + Comma separated file (*.csv) 쉼표로 구분된 파일 (*.csv) + Confirmed 확인됨 + Watch-only 조회전용 + Date 날짜 + Type 형식 + Label 라벨 + Address 주소 + + Asset + 자산 + + + ID 아이디 + Exporting Failed 내보내기 실패 + There was an error trying to save the transaction history to %1. %1으로 거래 기록을 저장하는데 에러가 있었습니다. + Exporting Successful 내보내기 성공 + The transaction history was successfully saved to %1. 거래 기록이 성공적으로 %1에 저장되었습니다. + + Asset Issued + 발행된 자산 + + + + Asset Reissued + 재발행된 자산 + + + + Asset Received + 받은 자산 + + + + Asset Sent + 보낸 자산 + + + + Copy asset name + 자산명 복사 + + + Range: 범위: + to 상대방 @@ -2936,6 +6516,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. 거래액을 표시하는 단위. 클릭해서 다른 단위를 선택할 수 있습니다. @@ -2943,6 +6524,7 @@ WalletFrame + No wallet has been loaded. 지갑 불러오기가 안됩니다. @@ -2950,956 +6532,1763 @@ WalletModel + Send Coins 코인 보내기 + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export 내보내기 (&E) + Export the data in the current tab to a file 현재 탭에 있는 데이터를 파일로 내보내기 + Backup Wallet 지갑 백업 + Wallet Data (*.dat) 지갑 데이터 (*.dat) + Backup Failed 백업 실패 + There was an error trying to save the wallet data to %1. 지갑 데이터를 %1 폴더에 저장하는 동안 오류가 발생했습니다. + Backup Successful 백업 성공 + The wallet data was successfully saved to %1. 지갑 정보가 %1에 성공적으로 저장되었습니다. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: 옵션: + Specify data directory 데이터 폴더 지정 + Connect to a node to retrieve peer addresses, and disconnect 피어 주소를 받기 위해 노드에 연결하고, 받은 후에 연결을 끊습니다 + Specify your own public address 공인 주소를 지정하십시오 + Accept command line and JSON-RPC commands 명령줄과 JSON-RPC 명령 수락 - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - 외부 접속을 승인합니다 (기본값 : -proxy 또는 -connect / -noconnect가 없는 경우 1) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - 지정된 노드에만 연결; 자동 연결을 사용하지 않으려면 -noconnect 또는 -connect=0 을 단독으로 사용하십시오. - - + Distributed under the MIT software license, see the accompanying file %s or %s MIT 소프트웨어 라이센스에 따라 배포 됨, 첨부 파일 %s 또는 %s을 참조하십시오. + If <category> is not supplied or if <category> = 1, output all debugging information. <category>가 제공되지 않거나 <category> = 1 인 경우, 모든 디버깅 정보를 출력 + Prune configured below the minimum of %d MiB. Please use a higher number. 블록 축소가 최소치의 %d MiB 밑으로 설정되어 있습니다. 더 높은 값을 사용해 보세요. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) 블록 축소: 마지막 지갑 동기화 지점이 축소된 데이터보다 과거의 것 입니다. -reindex가 필요합니다 (정지된 노드의 경우 모든 블록체인을 재다운로드합니다) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. 블록 축소 모드에서는 재검색이 불가능 합니다. -reindex 명령을 사용해서 모든 블록체인을 다시 다운로드 해야 합니다. + Error: A fatal internal error occurred, see debug.log for details 에러: 치명적인 내부 오류가 발생했습니다, 자세한 내용은 debug.log 를 확인해주세요. + Fee (in %s/kB) to add to transactions you send (default: %s) 송금 거래시 추가되는 수수료 (%s/kB) (기본값: %s) + Pruning blockstore... 블록 데이터를 축소 중입니다.. + Run in the background as a daemon and accept commands 데몬으로 백그라운드에서 실행하고 명령을 허용 + Unable to start HTTP server. See debug log for details. HTTP 서버를 시작할 수 없습니다. 자세한 사항은 디버그 로그를 확인 하세요. + Raven Core 비트코인 코어 + The %s developers %s 개발자 + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) 충분한 데이터가 축적되지 않은 상태에서의 수수료 추정 기능이 사용하는 수수료 비율(%s/kB) (기본값: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) 거래의 중계를 하지 않더라도 화이트 리스트에 포함된 피어에서 받은 트랜잭션은 중계하기 (기본값: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 선택된 주소로 고정하며 항상 리슨(Listen)합니다. IPv6 프로토콜인 경우 [host]:port 방식의 명령어 표기법을 사용합니다. + Cannot obtain a lock on data directory %s. %s is probably already running. %s 데이터 디렉토리에 락을 걸 수 없었습니다. %s가 이미 실행 중인 것으로 보입니다. - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - 시작시 모든 지갑 거래를 삭제하고 -rescan을 통하여 블록체인만 복구합니다. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Error loading %s: You can't enable HD on a already existing non-HD wallet - %s 불러오기 오류: 비-HD 지갑이 존재하는 상태에서 HD 지갑을 활성화 할 수 없습니다 + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + 시작시 모든 지갑 거래를 삭제하고 -rescan을 통하여 블록체인만 복구합니다. + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. %s 불러오기 오류: 주소 키는 모두 정확하게 로드되었으나 거래 데이터와 주소록 필드에서 누락이나 오류가 존재할 수 있습니다. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 지갑 거래가 바뀌면 명령을 실행합니다.(%s 안의 명령어가 TxID로 바뀝니다) + Extra transactions to keep in memory for compact block reconstructions (default: %u) 압축 블록 재구성을 위해 메모리에 보관해야하는 추가 거래 (기본값: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) 이 블록이 체인에 있으면 해당 블록과 그 조상이 유효하며 잠재적으로 스크립트 확인을 건너 뜁니다 (0은 모두 확인, 기본값: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) 허용 된 최대 중간 피어 시간 오프셋 조정. 시간에 대한 지역적 전망치는 전방 또는 후방의 피어에 의해 영향을 받을 수 있습니다. (기본값: %u 초) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + 단일 지갑 거래 또는 처리되지 않은 거래에 사용할 최대 총 수수료 값(%s); 너무 낮게 설정시, 대규모 거래가 어려울 수 있습니다 (기본값 : %s). + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. 컴퓨터의 날짜와 시간이 올바른지 확인하십시오! 시간이 잘못되면 %s은 제대로 동작하지 않습니다. + Please contribute if you find %s useful. Visit %s for further information about the software. %s가 유용하다고 생각한다면 프로젝트에 공헌해주세요. 이 소프트웨어에 대한 보다 자세한 정보는 %s를 방문해주십시오. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) 블록 생성시 거래가 포함되도록 최저 수수료율을 설정하십시오 (%s/kB 단위). (기본값: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) 스크립트 인증 스레드의 갯수 설정 (%u-%d, 0 = 자동, <0 = 지정된 코어 개수만큼 사용 안함, 기본값: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct 블록 데이터베이스에 미래의 블록이 포함되어 있습니다. 이것은 사용자의 컴퓨터의 날짜와 시간이 올바르게 설정되어 있지 않을때 나타날 수 있습니다. 만약 사용자의 컴퓨터의 날짜와 시간이 올바르다고 확신할 때에만 블록 데이터 베이스의 재구성을 하십시오 + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications 출시 전의 테스트 빌드 입니다. - 스스로의 책임하에 사용하십시오 - 채굴이나 상업적 용도로 프로그램으로 사용하지 마십시오 + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain 데이터베이스를 포크 전 상태로 돌리지 못했습니다. 블록체인을 다시 다운로드 해주십시오. + Use UPnP to map the listening port (default: 1 when listening and no -proxy) 리슨(Listen) 포트를 할당하기 위해 UPnP 사용 (기본값: 열려있거나 -proxy 옵션을 사용하지 않을 시 1) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times 클라이언트JSON-RPC 연결시 사용자 이름과 해시화된 암호문. <userpw> 필드는 <USERNAME>:<SALT>$<HASH> 포멧으로 구성되어 있습니다. 전형적 파이썬 스크립트에선 share/rpcuser가 포함되어 있습니다. 그런 다음 클라이언트는 rpcuser=<USERNAME>/ rpcpassword=<PASSWORD> 쌍의 인수를 사용하여 정상적으로 연결합니다. 이 옵션은 여러번 지정할 수 있습니다. + Wallet will not create transactions that violate mempool chain limits (default: %u) 지갑은 mempool chain limit (기본값: %u) 을 위반하는 거래를 생성하지 않습니다. + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. 경고 : 모든 네트워크가 동의해야 하나, 일부 채굴자들에게 문제가 있는 것으로 보입니다. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. 경고: 현재 비트코인 버전이 다른 네트워크 참여자들과 동일하지 않은 것 같습니다. 당신 또는 다른 참여자들이 동일한 비트코인 버전으로 업그레이드 할 필요가 있습니다. - You need to rebuild the database using -reindex-chainstate to change -txindex - -txindex를 바꾸기 위해서는 -reindex-chainstate 를 사용해서 데이터베이스를 재구성해야 합니다. + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s 손상되었고 복구가 실패하였습니다 + -maxmempool must be at least %d MB -maxmempool은 최소한 %d MB가 필요합니다 + <category> can be: <category> 지정 가능: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string 사용자 에이전트 문자열에 코멘트 첨부 + Attempt to recover private keys from a corrupt wallet on startup 시작시 망가진 wallet.dat에서 개인키 복원을 시도합니다 + Block creation options: 블록 생성 옵션: - Cannot resolve -%s address: '%s' - %s 주소를 확인할 수 없습니다: '%s' + + Cannot resolve -%s address: '%s' + %s 주소를 확인할 수 없습니다: '%s' + Chain selection options: 체인 선택 옵션: + Change index out of range 범위 밖의 인덱스 변경 + Connection options: 연결 설정 : + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected 손상된 블록 데이터베이스가 감지되었습니다 + Debugging/Testing options: 디버그 및 테스트 설정 + Do not load the wallet and disable wallet RPC calls 지갑 불러오기를 하지마시오 또한 지갑 RPC 연결을 차단하십시오 + Do you want to rebuild the block database now? 블록 데이터베이스를 다시 생성하시겠습니까? + Enable publish hash block in <address> <address>에 대한 해시 블록 공개 활성화 + Enable publish hash transaction in <address> <address>에 대한 해시 거래 공개 활성화 + Enable publish raw block in <address> <address>에 대한 원시 블록 공개 활성화 + Enable publish raw transaction in <address> <address>에 대한 원시 거래 공개 활성화 + Enable transaction replacement in the memory pool (default: %u) 메모리 풀(pool) 내의 거래 치환(replacement) 활성화 (기본값: %u) + Error initializing block database 블록 데이터베이스를 초기화하는데 오류 + Error initializing wallet database environment %s! 지갑 데이터베이스 환경 초기화하는데 오류 %s + Error loading %s %s 불러오기 오류 + Error loading %s: Wallet corrupted %s 불러오기 오류: 지갑 오류 + Error loading %s: Wallet requires newer version of %s %s 불러오기 에러: 지갑은 새 버전의 %s이 필요합니다 - Error loading %s: You can't disable HD on a already existing HD wallet - %s 불러오기 오류: 이미 HD 지갑이 존재하는 상태에서 HD 지갑을 비활성화 할 수 없습니다 - - + Error loading block database 블록 데이터베이스를 불러오는데 오류 + Error opening block database 블록 데이터베이스를 여는데 오류 + Error: Disk space is low! 오류: 디스크 공간이 부족합니다! + Failed to listen on any port. Use -listen=0 if you want this. 어떤 포트도 반응하지 않습니다. 사용자 반응=0 만약 원한다면 + Importing... 들여오기 중... + Incorrect or no genesis block found. Wrong datadir for network? 올바르지 않거나 생성된 블록을 찾을 수 없습니다. 잘못된 네트워크 자료 디렉토리? + Initialization sanity check failed. %s is shutting down. 무결성 확인 초기화가 실패했습니다. %s가 종료됩니다. - Invalid -onion address: '%s' - 잘못된 -onion 주소입니다: '%s' + + Invalid amount for -%s=<amount>: '%s' + 유효하지 않은 금액 -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - 유효하지 않은 금액 -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + 유효하지 않은 금액 -discardfee=1: '%s' - Invalid amount for -fallbackfee=<amount>: '%s' - 유효하지 않은 금액 -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + 유효하지 않은 금액 -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) 거래 메모리 풀의 용량을 <n>메가바이트 아래로 유지하기 (기본값: %u) + + Loading P2P addresses... + P2P 주소 로딩중... + + + Loading banlist... 추방리스트를 불러오는 중... + Location of the auth cookie (default: data dir) 인증 쿠키의 위치 (기본값: data dir) + Not enough file descriptors available. 사용 가능한 파일 디스크립터-File Descriptor-가 부족합니다. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) 오직 <net> 네트워크로 로만 접속 (IPv4, IPv6 혹은 onion) + Print this help message and exit 도움말 메시지 출력 후 종료 + Print version and exit 버전 출력후 종료 + Prune cannot be configured with a negative value. 블록 축소는 음수로 설정할 수 없습니다. + Prune mode is incompatible with -txindex. 블록 축소 모드는 -txindex와 호환되지 않습니다. + Rebuild chain state and block index from the blk*.dat files on disk 현재의 blk*.dat 파일들로부터 블록체인 색인을 재구성합니다. + Rebuild chain state from the currently indexed blocks 현재 색인 된 블록들로부터 블록체인을 재구성합니다. + + Replaying blocks... + + + + Rewinding blocks... 블록 되감는중... + Set database cache size in megabytes (%d to %d, default: %d) 데이터베이스 케시 크기를 메가바이트로 설정(%d 부터 %d, 기본값: %d) - Set maximum block size in bytes (default: %d) - 최대 블락 크기를 Bytes로 지정하세요 (기본: %d) - - + Specify wallet file (within data directory) 데이터 폴더 안에 지갑 파일을 선택하세요. + The source code is available from %s. 소스코드는 %s 에서 확인하실 수 있습니다. + + Transaction fee and change calculation failed + 거래 수수료 및 잔돈 계산 실패 + + + Unable to bind to %s on this computer. %s is probably already running. 이 컴퓨터의 %s에 바인딩 할 수 없습니다. 아마도 %s이 실행중인 것 같습니다. + Unsupported argument -benchmark ignored, use -debug=bench. 지원하지 않는 인수 -benchmark 은 무시됩니다, -debug=bench 형태로 사용하세요. + Unsupported argument -debugnet ignored, use -debug=net. 지원하지 않는 인수 -debugnet 은 무시됩니다, -debug=net 형태로 사용하세요. + Unsupported argument -tor found, use -onion. 지원하지 않는 인수 -tor를 찾았습니다. -onion를 사용해주세요. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) 리슨(Listen) 포트를 할당하기 위해 UPnP 사용 (기본값: %u) + Use the test chain 테스트 체인 사용 + User Agent comment (%s) contains unsafe characters. 사용자 정의 코멘트 (%s)에 안전하지 못한 글자가 포함되어 있습니다. + Verifying blocks... 블록 검증중... - Verifying wallet... - 지갑 검증중... - - + Wallet %s resides outside data directory %s 지갑 %s는 데이터 디렉토리 %s 밖에 위치합니다. + Wallet debugging/testing options: 지갑 디버깅/테스트 옵션: + Wallet needed to be rewritten: restart %s to complete 지갑을 새로 써야 합니다: 완성하기 위하여 %s을 다시 시작하십시오. + Wallet options: 지갑 옵션: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times 특정 소스에서의 JSON-RPC 연결 허가. 유효한 <ip> 같은 하나의 IP주소 (예 1.2.3.4), 네트워크/넷마스크 (예 1.2.3.4/255.255.255.0) 혹은 네트워크/CIDR (예 1.2.3.4/24). 이 옵션은 복수로 설정 할 수 있습니다. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 선택된 주소로 고정하여 화이트리스트에 포함된 피어에 접속합니다. IPv6 프로토콜인 경우 [host]:port 방식의 명령어 표기법을 사용합니다. - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - 선택된 주소로 고정하여 JSON-RPC 연결을 리슨(Listen)합니다. IPv6 프로토콜인 경우 [host]:port 방식의 명령어 표기법을 사용합니다. 이 옵션은 복수로 지정 할수 있습니다. (기본값: 모든 인터페이스에 고정) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) umask 077 대신 시스템 기본 퍼미션으로 새 파일을 만듭니다 (지갑 기능이 비활성화 상태에서만 유효합니다) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 자신의 주소를 탐색 (기본값: 열려있거나 -externalip 나 -proxy 옵션이 없으면 1) + Error: Listening for incoming connections failed (listen returned error %s) 오류: 들어오는 연결을 리슨(Listen)하는데 실패했습니다 (오류 리턴 %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 이 사항과 관련있는 경고가 발생하거나 아주 긴 포크가 발생했을 때 명령어를 실행해 주세요. (cmd 명령어 목록에서 %s는 메시지로 대체됩니다) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) 해당 금액(%s/kB) 보다 적은 수수료는 중계, 채굴, 거래 생성에서 수수료 면제로 간주됩니다 (기본값: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) paytxfee가 설정되어 있지 않다면 평균 n 블록안에 승인이 이루어지도록 충분한 수수료가 포함됩니다 (기본값: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - 유효하지 않은 금액 -maxtxfee=<amount>: '%s' (거래가 막히는 상황을 방지하게 위해 적어도 %s 의 중계 수수료를 지정해야 합니다) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + 유효하지 않은 금액 -maxtxfee=<amount>: '%s' (거래가 막히는 상황을 방지하게 위해 적어도 %s 의 중계 수수료를 지정해야 합니다) + Maximum size of data in data carrier transactions we relay and mine (default: %u) 중계 및 채굴을 할 때 데이터 운송 거래에서 데이터의 최대 크기 (기본값: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) 인증정보를 프록시 연결마다 무작위로 합니다. 이는 Tor 스트림을 격리시킬 수 있습니다 (기본값: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - 최대 크기를 최우선으로 설정 / 바이트당 최소 수수료로 거래(기본값: %d) - - + The transaction amount is too small to send after the fee has been deducted 거래액이 수수료를 지불하기엔 너무 작습니다 - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - BIP32 이후에는 계층적 결정성 키 생성 (HD)을 사용하십시오. 지갑 생성/처음 시작 시에만 효과가 있습니다. - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway 화이트리스트에 포함된 피어는 이미 메모리풀에 포함되어 있어도 DoS 추방이 되지 않으며 그들의 거래가 항상 중계됩니다, 이는 예를 들면 게이트웨이에서 유용합니다. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain 축소 모드를 해제하고 데이터베이스를 재구성 하기 위해 -reindex를 사용해야 합니다. 이 명령은 모든 블록체인을 다시 다운로드 할 것 입니다. + (default: %u) (기본값: %u) + Accept public REST requests (default: %u) 공개 REST 요청을 허가 (기본값: %u) + Automatically create Tor hidden service (default: %d) Tor서비스를 자동적으로 생성 (기본값: %d) + Connect through SOCKS5 proxy SOCK5 프록시를 통해 연결 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. 블록 데이터베이스를 불러오는데 오류가 발생하였습니다, 종료됩니다. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup 외부 blk000??.dat 파일에서 블록을 가져오기 + Information 정보 - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - 유효하지 않은 금액 -paytxfee=<amount>: "%s" (최소 %s 이상이어야 됨) + + Invalid -onion address or hostname: '%s' + 유효하지 않은 -어니언(onion) 주소 또는 호스트명. '%s' + + + + Invalid -proxy address or hostname: '%s' + 유효하지 않은 -프록시 주소 또는 호스트명. '%s' - Invalid netmask specified in -whitelist: '%s' - 유효하지 않은 넷마스크가 -whitelist: '%s" 를 통해 지정됨 + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + 유효하지 않은 금액 -paytxfee=<amount>: "%s" (최소 %s 이상이어야 됨) + + Invalid netmask specified in -whitelist: '%s' + 유효하지 않은 넷마스크가 -whitelist: '%s" 를 통해 지정됨 + + + Keep at most <n> unconnectable transactions in memory (default: %u) 최대 <n>개의 연결할 수 없는 거래를 메모리에 저장 (기본값: %u) - Need to specify a port with -whitebind: '%s' - -whitebind를 이용하여 포트를 지정해야 합니다: '%s" + + Need to specify a port with -whitebind: '%s' + -whitebind를 이용하여 포트를 지정해야 합니다: '%s" + Node relay options: Node 중계 옵션: + RPC server options: RPC 서버 설정 + Reducing -maxconnections from %d to %d, because of system limitations. 시스템 한계로 인하여 -maxconnections를 %d 에서 %d로 줄였습니다. + Rescan the block chain for missing wallet transactions on startup 시작시 누락된 지갑 거래에 대해 블록 체인을 다시 검색 합니다 + Send trace/debug info to console instead of debug.log file 추적오류 정보를 degug.log 자료로 보내는 대신 콘솔로 보내기 - Send transactions as zero-fee transactions if possible (default: %u) - 가능한 경우 수수료 없이 거래 보내기 (기본값: %u) - - + Show all debugging options (usage: --help -help-debug) 모든 디버그 설정 보기(설정: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) 클라이언트 시작시 debug.log 파일 비우기(기본값: 디버그 안할때 1) + Signing transaction failed 거래를 서명하는것을 실패하였습니다. + The transaction amount is too small to pay the fee 거래액이 수수료를 지불하기엔 너무 작습니다 + This is experimental software. 이 소프트웨어는 시험적입니다. + Tor control port password (default: empty) - Tor 관리 포트 암호 (기본값: 공란) + 토르(Tor) 관리 포트 암호 (기본값: 공란) + Tor control port to use if onion listening enabled (default: %s) - onion 열림이 활성화시 Tor 관리 포트 사용 (기본값: %s) + 어니언(onion) 열림이 활성화시 토르(Tor) 관리 포트 사용 (기본값: %s) + Transaction amount too small 거래액이 너무 적습니다 + Transaction too large for fee policy 수수료 정책에 비해 거래가 너무 큽니다 + Transaction too large 너무 큰 거래 + + Unable to bind to %s on this computer (bind returned error %s) + + + + Upgrade wallet to latest format on startup 시작시 지갑 포멧을 최신으로 업그레이드 합니다 + Username for JSON-RPC connections JSON-RPC 연결에 사용할 사용자 이름 + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning 경고 + Warning: unknown new rules activated (versionbit %i) 경고: 알려지지 않은 새로운 규칙이 활성화되었습니다. (버전비트 %i) + Whether to operate in a blocks only mode (default: %u) 블록 전용 모드로 동작할지 여부 (기본값: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... 지갑의 모든거래내역 건너뛰기... + ZeroMQ notification options: ZeroMQ 알림 옵션: + Password for JSON-RPC connections JSON-RPC 연결에 사용할 암호 + Execute command when the best block changes (%s in cmd is replaced by block hash) 최고의 블록이 변하면 명령을 실행 (cmd 에 있는 %s 는 블록 해시에 의해 대체되어 짐) + Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode, -connect 옵션에 대해 DNS 탐색 허용 - Loading addresses... - 주소를 불러오는 중... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = 거래의 메타 데이터를 유지함 예. 계좌정보 와 지불 요구 정보, 2 = 거래 메타 데이터 파기) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee값이 너무 큽니다! 하나의 거래에 너무 큰 수수료가 지불 됩니다. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) 메모리 풀에 있는 거래 기록을 <n>시간 후 부터는 유지하지 않기 (기본값: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) 릴레이 및 마이닝 거래의 sigop 당 동등한 바이트 (기본값: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) 해당 금액(%s/kB) 보다 적은 수수료는 수수료 면제로 간주됩니다.(기본값: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) 피어들이 로컬 중계 정책을 위반하더라도 화이트 리스트에 포함된 피어인경우 강제로 중계하기 (기본값: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) -checkblocks을 통한 블록 점검 (0-4, 기본값: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) getrawtransaction를 RPC CALL를 통해 완전한 거래 인덱스 유지 (기본값: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) 이상행동을 하는 네트워크 참여자들을 다시 연결시키는데 걸리는 시간 (기본값: %u) + Output debugging information (default: %u, supplying <category> is optional) 디버그 정보 출력 (기본값: %u, <category> 제공은 선택입니다) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - 보유한 피어 주소가 적은 경우 DNS 조회를 통해 피어 주소를 요청합니다. (-connect / -noconnect가 아니라면 기본값은 1) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) non-segwit(0) 또는 segwit(1) (기본값: %d) 가 아닌 자세한 정보 표시 모드로 반환 된 원시 거래 또는 블록 hex의 직렬화를 설정합니다. + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) 블룸필터를 통해 블록과 거래 필터링 지원 (기본값: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. 이것은 수수료 견적을 이용할 수 없을 때 지불 할 수 있는 거래 수수료입니다. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. 이 제품에는 OpenSSL Project에서 OpenSSL Toolkit %s으로 사용하기 위해 개발 한 소프트웨어와 Eric Young이 작성한 암호화 소프트웨어 및 Thomas Bernard가 작성한 UPnP 소프트웨어가 포함되어 있습니다. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. 네트워크 버전 문자 (%i)의 길이가 최대길이 (%i)를 초과합니다. UA코멘트의 갯수나 길이를 줄이세요. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 아웃바운드 트래픽을 설정된 목표치 이하로 유지하기 (24시간당 MiB기준), 0 = 무제한 (기본값: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. 지원하지 않는 인수 -socks를 찾았습니다. 설정된 SOCKS의 버전은 더이상 사용할 수 없으며, SOCK5 프록시만을 지원합니다. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. 지원하지 않는 인수 -whitelistalwaysrelay 는 무시됩니다, -whitelistrelay 나 -whitelistforcerelay 를 사용해 주세요. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Tor 서비스를 이용하여 피어에게 연결하기 위해 분리된 SOCKS5 프록시를 사용 (기본값: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect 경고: 알려지지 않은 버전의 블록이 채굴되었습니다. 알려지지 않은 규칙이 적용되었을 가능성이 있습니다. + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. 경고 : 지갑파일이 손상되어 데이터가 복구되었습니다. 원래의 %s 파일은 %s 후에 %s 이름으로 저장됩니다. 잔액과 거래 내역이 정확하지 않다면 백업 파일로 부터 복원해야 합니다. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. 설정된 IP주소 (보기 1.2.3.4) 혹은 CIDR로 작성된 네트워크 (보기 1.2.3.0/24)로 화이트리스트에 포함된 피어에 접속합니다. 이 설정은 복수로 지정 할 수 있습니다. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s가 매우 높게 설정되었습니다! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (기본값: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) DNS lookup을 통해 항상 피어주소에 대한 쿼리 보내기 (기본값: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) 시작시 점검할 블록 갯수 (기본값: %u, 0 = 모두) + Include IP addresses in debug output (default: %u) 디버그 출력에 IP주소 포함하기 (기본값: %u) - Invalid -proxy address: '%s' - 잘못된 -proxy 주소입니다: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Keypool이 종료되었습니다. 먼저 keypoolrefill을 호출하십시오. + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) JSON-RPC 연결을 <port>포트로 받기 (기본값: %u 혹은 테스트넷: %u) + Listen for connections on <port> (default: %u or testnet: %u) <port>포트로 연결 받기 (기본값: %u 혹은 테스트넷: %u) + Maintain at most <n> connections to peers (default: %u) 피어 연결수를 <n>개로 유지 (기본값: %u) + Make the wallet broadcast transactions 지갑 브로드캐스트 거래를 만들기 + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) 접속별 최대 수신 버퍼. <n> × 1000바이트 (기본값: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) 접속별 최대 전송 버퍼. <n> × 1000바이트 (기본값: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) 디버그 출력에 타임 스탬프 포함하기 (기본값: %u) + Relay and mine data carrier transactions (default: %u) 데이터 운송 거래를 중계 및 채굴 (기본값: %u) + Relay non-P2SH multisig (default: %u) 비 P2SH 다중서명을 중계 (기본값: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) full-RBF opt-in이 활성화 된 거래을 전송합니다. (기본값: %u) + Set key pool size to <n> (default: %u) 키 풀 사이즈를 <n> 로 설정 (기본값: %u) + Set maximum BIP141 block weight (default: %d) 최대 BIP141 블록 무게 설정 (기본값: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) 원격 프로시져 호출 서비스를 위한 쓰레드 개수를 설정 (기본값 : %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) 설정파일 지정 (기본값: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) 밀리초 단위로 연결 제한시간을 설정 (최소값: 1, 기본값: %d) + Specify pid file (default: %s) pid 파일 지정 (기본값: %s) + Spend unconfirmed change when sending transactions (default: %u) 거래를 보낼 때 검증되지 않은 잔돈 쓰기 (기본값: %u) + Starting network threads... 네트워크 스레드 시작중... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. 지갑은 최소 중계 수수료보다 적은 금액을 지불하는 것을 피할 것입니다. + This is the minimum transaction fee you pay on every transaction. 이것은 모든 거래에서 지불하는 최소 거래 수수료입니다. + This is the transaction fee you will pay if you send a transaction. 이것은 거래를 보낼 경우 지불 할 거래 수수료입니다. + Threshold for disconnecting misbehaving peers (default: %u) 비정상적인 피어의 연결을 차단시키기 위한 임계값 (기본값: %u) + Transaction amounts must not be negative 거래액은 반드시 정수여야합니다. + Transaction has too long of a mempool chain 거래가 너무 긴 mempool 체인을 갖고 있습니다 + Transaction must have at least one recipient 거래에는 최소한 한명의 수령인이 있어야 합니다. - Unknown network specified in -onlynet: '%s' - -onlynet에 지정한 네트워크를 알 수 없습니다: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + -onlynet에 지정한 네트워크를 알 수 없습니다: '%s' + + + Insufficient funds 자금 부족 + Loading block index... 블록 인덱스를 불러오는 중... - Add a node to connect to and attempt to keep the connection open - 노드를 추가하여 연결하고 연결상태를 계속 유지하려고 시도합니다. - - + Loading wallet... 지갑을 불러오는 중... + Cannot downgrade wallet 지갑을 다운그레이드 할 수 없습니다 - Cannot write default address - 기본 계좌에 기록할 수 없습니다 - - + Rescanning... 재검색 중... - Done loading - 로딩 완료 - - + Error 오류 diff --git a/src/qt/locale/raven_ku_IQ.ts b/src/qt/locale/raven_ku_IQ.ts index cdfec05250..f6ac51babd 100644 --- a/src/qt/locale/raven_ku_IQ.ts +++ b/src/qt/locale/raven_ku_IQ.ts @@ -1,395 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address ناوونیشانێکی نوێ دروست بکە + &New &نوێ + + Copy the currently selected address to the system clipboard + + + + &Copy &ڕوونووس + C&lose C&داخستن + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + &Export &هەناردن + &Delete &سڕینەوە - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address ناوونیشان - + + + (no label) + + + AskPassphraseDialog - - - BanTableModel - - - RavenGUI - &Send - &ناردن + + Passphrase Dialog + - &File - &پەرگە + + Enter passphrase + - &Settings - &سازکارییەکان + + New passphrase + - &Help - &یارمەتی + + Repeat new passphrase + - Error - هەڵە + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Warning - ئاگاداری + + Encrypt wallet + - Information - زانیاری + + This operation needs your wallet passphrase to unlock the wallet. + - - - CoinControlDialog - Amount: - کۆ: + + Unlock wallet + - Fee: - تێچوون: + + This operation needs your wallet passphrase to decrypt the wallet. + - Amount - سەرجەم + + Decrypt wallet + - Date - رێکەت + + Change passphrase + - yes - بەڵێ + + Enter the old passphrase and new passphrase to the wallet. + - no - نەخێر + + Confirm wallet encryption + - - - EditAddressDialog - - - FreespaceChecker - name - ناو + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - - - HelpMessageDialog - version - وەشان + + Are you sure you wish to encrypt your wallet? + - - - Intro - Welcome - بەخێربێن + + + Wallet encrypted + - Error - هەڵە + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - Options - هەڵبژاردنەکان + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - - - OverviewPage - Total: - گشتی + + + + + Wallet encryption failed + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - سەرجەم + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - - - QObject::QObject - - - QRImageWidget - + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - RPCConsole + AssetControlDialog - &Information - &زانیاری + + Asset Selection + - General - گشتی + + Quantity: + - Network - تۆڕ + + Bytes: + - Name - ناو + + Amount: + - Sent - نێدرا + + Dust: + - Version - وەشان + + Fee: + - Services - خزمەتگوزاریەکان + + After Fee: + - &Open - &کردنەوە + + Change: + - &Clear - &پاککردنەوە + + (un)select all + - Totals - گشتییەکان + + Tree mode + - In: - لە ناو + + List mode + - Out: - لەدەرەوە + + View assets that you have the ownership asset for + - 1 &hour - 1&سات + + View Administrator Assets + - 1 &day - 1&ڕۆژ + + Asset + - 1 &week - 1&هەفتە + + Amount + - 1 &year - 1&ساڵ + + Received with label + - never - هەرگیز + + Received with address + - Yes - بەڵێ + + Date + - No - نەخێر + + Confirmations + - - - ReceiveCoinsDialog - &Amount: - &سەرجەم: + + Confirmed + - &Message: - &پەیام: + + Copy address + - Clear - پاککردنەوە + + Copy label + - Show - پیشاندان + + + Copy amount + - Remove - سڕینەوە + + Copy transaction ID + - - - ReceiveRequestDialog - Address - ناوونیشان + + Lock unspent + - Amount - سەرجەم + + Unlock unspent + - - - RecentRequestsTableModel - Date - رێکەت + + Copy quantity + - - - SendCoinsDialog - Amount: - کۆ: + + Copy fee + - Fee: - تێچوون: + + Copy after fee + - fast - خێرا + + Copy bytes + - - - SendCoinsEntry - Message: - پەیام: + + Copy dust + - - - SendConfirmationDialog - Yes - بەڵێ + + Copy change + - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Date - رێکەت + + (%1 locked) + - Amount - سەرجەم + + yes + - - - TransactionDescDialog - - - TransactionTableModel - Date - رێکەت + + no + - - - TransactionView - Date - رێکەت + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Address - ناوونیشان + + Can vary +/- %1 satoshi(s) per input. + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView + AssetTableModel - &Export - &هەناردن + + Name + - + + + Quantity + + + - raven-core + AssetsDialog - Options: - هەڵبژاردنەکان: + + + Send Coins + - Information - زانیاری + + Asset Control Features + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + کۆ: + + + + Fee: + تێچوون: + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + سەرجەم + + + + Received with label + + + + + Received with address + + + + + Date + رێکەت + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + بەڵێ + + + + no + نەخێر + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + ناو + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + وەشان + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + بەخێربێن + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + هەڵە + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + هەڵبژاردنەکان + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + گشتی + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + سەرجەم + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + &زانیاری + + + + Debug window + + + + + General + گشتی + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + تۆڕ + + + + Name + ناو + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + نێدرا + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + وەشان + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + خزمەتگوزاریەکان + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &کردنەوە + + + + &Console + + + + + &Network Traffic + + + + + Totals + گشتییەکان + + + + In: + لە ناو + + + + Out: + لەدەرەوە + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1&سات + + + + 1 &day + 1&ڕۆژ + + + + 1 &week + 1&هەفتە + + + + 1 &year + 1&ساڵ + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + هەرگیز + + + + Inbound + + + + + Outbound + + + + + Yes + بەڵێ + + + + No + نەخێر + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + &ناردن + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &پەرگە + + + + &Help + &یارمەتی + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + هەڵە + + + + Warning + ئاگاداری + + + + Information + زانیاری + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &سەرجەم: + + + + &Label: + + + + + &Message: + &پەیام: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + پاککردنەوە + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + پیشاندان + + + + Remove the selected entries from the list + + + + + Remove + سڕینەوە + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + ناوونیشان + + + + Amount + سەرجەم + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + رێکەت + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + کۆ: + + + + Fee: + تێچوون: + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + پەیام: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + بەڵێ + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + رێکەت + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + سەرجەم + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + رێکەت + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + رێکەت + + + + Type + + + + + Label + + + + + Address + ناوونیشان + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &هەناردن + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + هەڵبژاردنەکان: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + زانیاری + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning ئاگاداری + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + Error هەڵە diff --git a/src/qt/locale/raven_ky.ts b/src/qt/locale/raven_ky.ts index 794b78312f..87a1e1d92b 100644 --- a/src/qt/locale/raven_ky.ts +++ b/src/qt/locale/raven_ky.ts @@ -1,351 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Жаң даректи жасоо + + &New + + + + + Copy the currently selected address to the system clipboard + + + + + &Copy + + + + + C&lose + + + + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + + &Export + + + + &Delete Ө&чүрүү - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address Дарек + (no label) (аты жок) AskPassphraseDialog - - - BanTableModel - - - RavenGUI - &Transactions - &Транзакциялар + + Passphrase Dialog + - &Verify message... - Билдирүүнү &текшерүү... + + Enter passphrase + - Raven - Raven + + New passphrase + - Wallet - Капчык + + Repeat new passphrase + - &File - &Файл + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Help - &Жардам + + Encrypt wallet + - Error - Ката + + This operation needs your wallet passphrase to unlock the wallet. + - Warning - Эскертүү + + Unlock wallet + - Information - Маалымат + + This operation needs your wallet passphrase to decrypt the wallet. + - Up to date - Жаңыланган + + Decrypt wallet + - - - CoinControlDialog - Date - Дата + + Change passphrase + - (no label) - (аты жок) + + Enter the old passphrase and new passphrase to the wallet. + - - - EditAddressDialog - &Address - &Дарек + + Confirm wallet encryption + - - - FreespaceChecker - - - HelpMessageDialog - version - версия + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - - - Intro - Error - Ката + + Are you sure you wish to encrypt your wallet? + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - MB - МБ + + + Wallet encrypted + - &Network - &Тармак + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - W&allet - Капчык + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Port: - &Порт: + + + + + Wallet encryption failed + - &Window - &Терезе + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &OK - &Жарайт + + + The supplied passphrases do not match. + - &Cancel - &Жокко чыгаруу + + Wallet unlock failed + - default - жарыяланбаган + + + + The passphrase entered for the wallet decryption was incorrect. + - none - жок + + Wallet decryption failed + - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - RPCConsole + AssetControlDialog - &Information - Маалымат + + Asset Selection + - General - Жалпы + + Quantity: + - Network - &Тармак + + Bytes: + - Name - Аты + + Amount: + - &Open - &Ачуу + + Dust: + - &Console - &Консоль + + Fee: + - Clear console - Консолду тазалоо + + After Fee: + - - - ReceiveCoinsDialog - &Message: - Билдирүү: + + Change: + - - - ReceiveRequestDialog - Address - Дарек + + (un)select all + - Message - Билдирүү + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + - - - RecentRequestsTableModel + Date - Дата + - Message - Билдирүү + + Confirmations + - (no label) - (аты жок) + + Confirmed + - - - SendCoinsDialog - Clear &All - &Бардыгын тазалоо + + Copy address + - S&end - &Жөнөтүү + + Copy label + - (no label) - (аты жок) + + + Copy amount + - - - SendCoinsEntry - Paste address from clipboard - Даректи алмашуу буферинен коюу + + Copy transaction ID + - Message: - Билдирүү: + + Lock unspent + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Paste address from clipboard - Даректи алмашуу буферинен коюу + + Unlock unspent + - Clear &All - &Бардыгын тазалоо + + Copy quantity + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - %1/offline - %1/тармакта эмес + + Copy fee + - Date - Дата + + Copy after fee + - Message - Билдирүү + + Copy bytes + - - - TransactionDescDialog - - - TransactionTableModel - Date - Дата + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + (no label) - (аты жок) + - - - TransactionView - Date - Дата + + change from %1 (%2) + - Address - Дарек + + (change) + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - + - raven-core + AssetTableModel - Information - Маалымат + + Name + - Warning - Эскертүү + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + Дата + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (аты жок) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Дарек + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + версия + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Ката + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + МБ + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &Тармак + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Капчык + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + &Порт: + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Терезе + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Жарайт + + + + &Cancel + &Жокко чыгаруу + + + + default + жарыяланбаган + + + + none + жок + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Маалымат + + + + Debug window + + + + + General + Жалпы + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + &Тармак + + + + Name + Аты + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Ачуу + + + + &Console + &Консоль + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + Консолду тазалоо + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + &Транзакциялар + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + Билдирүүнү &текшерүү... + + + + Raven + Raven + + + + Wallet + Капчык + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Файл + + + + &Help + &Жардам + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Ката + + + + Warning + Эскертүү + + + + Information + Маалымат + + + + Up to date + Жаңыланган + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + Билдирүү: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Дарек + + + + Amount + + + + + Label + + + + + Message + Билдирүү + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Дата + + + + Label + + + + + Message + Билдирүү + + + + (no label) + (аты жок) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + &Бардыгын тазалоо + + + + Balance: + + + + + Confirm the send action + + + + + S&end + &Жөнөтүү + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (аты жок) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + Даректи алмашуу буферинен коюу + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Билдирүү: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + Даректи алмашуу буферинен коюу + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + &Бардыгын тазалоо + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + %1/тармакта эмес + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Дата + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Билдирүү + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Дата + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (аты жок) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + Дата + + + + Type + + + + + Label + + + + + Address + Дарек + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Маалымат + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Эскертүү + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Ката diff --git a/src/qt/locale/raven_la.ts b/src/qt/locale/raven_la.ts index af43ecb39d..5267589bfa 100644 --- a/src/qt/locale/raven_la.ts +++ b/src/qt/locale/raven_la.ts @@ -1,923 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Crea novam inscriptionem + + &New + + + + Copy the currently selected address to the system clipboard Copia inscriptionem iam selectam in latibulum systematis + + &Copy + + + + + C&lose + + + + Delete the currently selected address from the list Dele active selectam inscriptionem ex enumeratione + Export the data in the current tab to a file Exporta data in hac tabella in plicam + &Export &Exporta + &Delete &Dele - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Dialogus Tesserae + Enter passphrase Insere tesseram + New passphrase Nova tessera + Repeat new passphrase Itera novam tesseram - - - BanTableModel - - - RavenGUI - Sign &message... - Signa &nuntium... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Synchronizing with network... - Synchronizans cum rete... + + Encrypt wallet + - &Overview - &Summarium + + This operation needs your wallet passphrase to unlock the wallet. + - Show general overview of wallet - Monstra generale summarium cassidilis + + Unlock wallet + - &Transactions - &Transactiones + + This operation needs your wallet passphrase to decrypt the wallet. + - Browse transaction history - Inspicio historiam transactionum + + Decrypt wallet + - E&xit - E&xi + + Change passphrase + - Quit application - Exi applicatione + + Enter the old passphrase and new passphrase to the wallet. + - About &Qt - Informatio de &Qt + + Confirm wallet encryption + - Show information about Qt - Monstra informationem de Qt + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Options... - &Optiones + + Are you sure you wish to encrypt your wallet? + - &Encrypt Wallet... - &Cifra Cassidile... + + + Wallet encrypted + - &Backup Wallet... - &Conserva Cassidile... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - &Change Passphrase... - &Muta tesseram... + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Reindexing blocks on disk... - Recreans indicem frustorum in disco... + + + + + Wallet encryption failed + - Send coins to a Raven address - Mitte nummos ad inscriptionem Raven + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Backup wallet to another location - Conserva cassidile in locum alium + + + The supplied passphrases do not match. + - Change the passphrase used for wallet encryption - Muta tesseram utam pro cassidilis cifrando + + Wallet unlock failed + - &Debug window - Fenestra &Debug + + + + The passphrase entered for the wallet decryption was incorrect. + - Open debugging and diagnostic console - Aperi terminalem debug et diagnosticalem + + Wallet decryption failed + - &Verify message... - &Verifica nuntium... + + Wallet passphrase was successfully changed. + - Raven - Raven + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Wallet - Cassidile + + Asset Selection + - &Send - &Mitte + + Quantity: + - &Receive - &Accipe + + Bytes: + - &Show / Hide - &Monstra/Occulta + + Amount: + - Show or hide the main Window - Monstra vel occulta Fenestram principem + + Dust: + - Encrypt the private keys that belong to your wallet - Cifra claves privatas quae cassidili tui sunt + + Fee: + - Sign messages with your Raven addresses to prove you own them - Signa nuntios cum tuis inscriptionibus Raven ut demonstres te eas possidere + + After Fee: + - Verify messages to ensure they were signed with specified Raven addresses - Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Raven + + Change: + - &File - &Plica + + (un)select all + - &Settings - &Configuratio + + Tree mode + - &Help - &Auxilium + + List mode + - Tabs toolbar - Tabella instrumentorum "Tabs" + + View assets that you have the ownership asset for + - &Command-line options - Optiones mandati initiantis + + View Administrator Assets + - %1 behind - %1 post + + Asset + - Last received block was generated %1 ago. - Postremum acceptum frustum generatum est %1 abhinc. + + Amount + - Transactions after this will not yet be visible. - Transactiones post hoc nondum visibiles erunt. + + Received with label + - Error - Error + + Received with address + - Warning - Monitio + + Date + - Information - Informatio + + Confirmations + - Up to date - Recentissimo + + Confirmed + - Catching up... - Persequens... + + Copy address + - Sent transaction - Transactio missa + + Copy label + - Incoming transaction - Transactio incipiens + + + Copy amount + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Cassidile <b>cifratum</b> est et iam nunc <b>reseratum</b> + + Copy transaction ID + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Cassidile <b>cifratum</b> est et iam nunc <b>seratum</b> + + Lock unspent + - - - CoinControlDialog - Amount: - Quantitas: + + Unlock unspent + - Amount - Quantitas + + Copy quantity + - Date - Dies + + Copy fee + - Confirmed - Confirmatum + + Copy after fee + - - - EditAddressDialog - Edit Address - Muta Inscriptionem + + Copy bytes + - &Label - &Titulus + + Copy dust + - &Address - &Inscriptio + + Copy change + - - - FreespaceChecker - - - HelpMessageDialog - version - versio + + (%1 locked) + - Command-line options - Optiones mandati initiantis + + yes + - Usage: - Usus: + + no + - command-line options - Optiones mandati intiantis + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - Intro - Error - Error + + Can vary +/- %1 satoshi(s) per input. + - - - ModalOverlay - Form - Schema + + + (no label) + - Last block time - Hora postremi frusti + + change from %1 (%2) + + + + + (change) + - + - OpenURIDialog - + AssetTableModel + + + Name + + + + + Quantity + + + - OptionsDialog + AssetsDialog - Options - Optiones + + + Send Coins + - &Main - &Princeps + + Asset Control Features + - Reset all client options to default. - Reconstitue omnes optiones clientis ad praedefinita. + + Inputs... + - &Reset Options - &Reconstitue Optiones + + automatically selected + - &Network - &Rete + + Insufficient funds! + - W&allet - Cassidile + + Quantity: + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Aperi per se portam clientis Raven in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est. + + Bytes: + - Map port using &UPnP - Designa portam utendo &UPnP + + Amount: + - Proxy &IP: - &IP vicarii: + + Dust: + - &Port: - &Porta: + + Fee: + - Port of the proxy (e.g. 9050) - Porta vicarii (e.g. 9050) + + After Fee: + - &Window - &Fenestra + + Change: + - Show only a tray icon after minimizing the window. - Monstra tantum iconem in tabella systematis postquam fenestram minifactam est. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - &Minimize to the tray instead of the taskbar - &Minifac in tabellam systematis potius quam applicationum + + Custom change address + - M&inimize on close - M&inifac ad claudendum + + Transaction Fee: + - &Display - &UI + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Quantitas: + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Quantitas + + + + Received with label + + + + + Received with address + + + + + Date + Dies + + + + Confirmations + + + + + Confirmed + Confirmatum + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Muta Inscriptionem + + + + &Label + &Titulus + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Inscriptio + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versio + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Optiones mandati initiantis + + + + Usage: + Usus: + + + + command-line options + Optiones mandati intiantis + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Error + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Schema + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Hora postremi frusti + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Optiones + + + + &Main + &Princeps + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Reconstitue omnes optiones clientis ad praedefinita. + + + + &Reset Options + &Reconstitue Optiones + + + + &Network + &Rete + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Cassidile + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Aperi per se portam clientis Raven in itineratore. Hoc tantum effectivum est si itineratrum tuum supportat UPnP et id activum est. + + + + Map port using &UPnP + Designa portam utendo &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + &IP vicarii: + + + + + &Port: + &Porta: + + + + + Port of the proxy (e.g. 9050) + Porta vicarii (e.g. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Fenestra + + + + Show only a tray icon after minimizing the window. + Monstra tantum iconem in tabella systematis postquam fenestram minifactam est. + + + + &Minimize to the tray instead of the taskbar + &Minifac in tabellam systematis potius quam applicationum + + + + M&inimize on close + M&inifac ad claudendum + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &UI + + + + User Interface &language: + &Lingua monstranda utenti: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unita qua quantitates monstrare: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Selige praedefinitam unitam subdivisionis monstrare in interfacie et quando nummos mittere + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancella + + + + default + praedefinitum + + + + none + + + + + Confirm options reset + Confirma optionum reconstituere + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + Inscriptio vicarii tradita non valida est. + + + + OverviewPage + + + Form + Schema + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Raven postquam conexio constabilita est, sed hoc actio nondum perfecta est. + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Immatura: + + + + Mined balance that has not yet matured + Fossum pendendum quod nondum maturum est + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Quantitas + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versio clientis + + + + &Information + &Informatio + + + + Debug window + Fenestra Debug + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Tempus initiandi + + + + Network + Rete + + + + Name + + + + + Number of connections + Numerus conexionum + + + + Block chain + Catena frustorum + + + + Current number of blocks + Numerus frustorum iam nunc + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Hora postremi frusti + + + + &Open + &Aperi + + + + &Console + &Terminale + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + Debug catalogi plica + + + + Clear console + Vacuefac terminale + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Scribe <b>help</b> pro summario possibilium mandatorum. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Signa &nuntium... + + + + Synchronizing with network... + Synchronizans cum rete... + + + + &Overview + &Summarium + + + + Node + + + + + Show general overview of wallet + Monstra generale summarium cassidilis + + + + &Transactions + &Transactiones + + + + Browse transaction history + Inspicio historiam transactionum + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + E&xi + + + + Quit application + Exi applicatione + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Informatio de &Qt + + + + Show information about Qt + Monstra informationem de Qt + + + + &Options... + &Optiones + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Cifra Cassidile... + + + + &Backup Wallet... + &Conserva Cassidile... + + + + &Change Passphrase... + &Muta tesseram... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Recreans indicem frustorum in disco... + + + + Send coins to a Raven address + Mitte nummos ad inscriptionem Raven + + + + Backup wallet to another location + Conserva cassidile in locum alium + + + + Change the passphrase used for wallet encryption + Muta tesseram utam pro cassidilis cifrando + + + + Open debugging and diagnostic console + Aperi terminalem debug et diagnosticalem + + + + &Verify message... + &Verifica nuntium... + + + + Raven + Raven + + + + Wallet + Cassidile + + + + &Send + &Mitte + + + + &Receive + &Accipe + + + + &Show / Hide + &Monstra/Occulta + + + + Show or hide the main Window + Monstra vel occulta Fenestram principem + + + + Encrypt the private keys that belong to your wallet + Cifra claves privatas quae cassidili tui sunt + + + + Sign messages with your Raven addresses to prove you own them + Signa nuntios cum tuis inscriptionibus Raven ut demonstres te eas possidere + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifica nuntios ut certus sis eos signatos esse cum specificatis inscriptionibus Raven + + + + &File + &Plica + + + + &Help + &Auxilium + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + Optiones mandati initiantis + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 post + + + + Last received block was generated %1 ago. + Postremum acceptum frustum generatum est %1 abhinc. + + + + Transactions after this will not yet be visible. + Transactiones post hoc nondum visibiles erunt. + + + + Error + Error + + + + Warning + Monitio + + + + Information + Informatio + + + + Up to date + Recentissimo + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Persequens... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transactio missa + + + + Incoming transaction + Transactio incipiens + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Cassidile <b>cifratum</b> est et iam nunc <b>reseratum</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cassidile <b>cifratum</b> est et iam nunc <b>seratum</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Quantitas: + + + + &Label: + &Titulus: + + + + &Message: + Nuntius: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Copia Inscriptionem + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Mitte Nummos + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Inopia nummorum + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Quantitas: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Transactionis merces: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Mitte pluribus accipientibus simul + + + + Add &Recipient + Adde &Accipientem + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + Vacuefac &Omnia + + + + Balance: + Pendendum: + + + + Confirm the send action + Confirma actionem mittendi + + + + S&end + &Mitte + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &Quantitas: + + + + &Label: + &Titulus: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Glutina inscriptionem ex latibulo + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Nuntius: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signationes - Signa / Verifica nuntium + + + + &Sign Message + &Signa Nuntium + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Glutina inscriptionem ex latibulo + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Insere hic nuntium quod vis signare + + + + Signature + Signatio + + + + Copy the current signature to the system clipboard + Copia signationem in latibulum systematis + + + + Sign the message to prove you own this Raven address + Signa nuntium ut demonstres hanc inscriptionem Raven a te possessa esse + + + + Sign &Message + Signa &Nuntium + + + + Reset all sign message fields + Reconstitue omnes campos signandi nuntii + + + + + Clear &All + Vacuefac &Omnia + + + + &Verify Message + &Verifica Nuntium + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Verifica nuntium ut cures signatum esse cum specifica inscriptione Raven + + + + Verify &Message + Verifica &Nuntium + + + + Reset all verify message fields + Reconstitue omnes campos verificandi nuntii + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Haec tabula monstrat descriptionem verbosam transactionis + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Optiones: + + + + Specify data directory + Specifica indicem datorum + + + + Connect to a node to retrieve peer addresses, and disconnect + Conecta ad nodum acceptare inscriptiones parium, et disconecte + + + + Specify your own public address + Specifica tuam propriam publicam inscriptionem + + + + Accept command line and JSON-RPC commands + Accipe terminalis et JSON-RPC mandata. + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Operare infere sicut daemon et mandata accipe + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Nucleus + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Conglutina ad inscriptionem datam et semper in eam ausculta. Utere [moderatrum]:porta notationem pro IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Facere mandatum quotiescumque cassidilis transactio mutet (%s in mandato sbstituitur ab TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Optiones creandi frustorum: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Corruptum databasum frustorum invenitur + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + Visne reficere databasum frustorum iam? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Error initiando databasem frustorum + + + + Error initializing wallet database environment %s! + Error initiando systematem databasi cassidilis %s! + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Error legendo frustorum databasem + + + + Error opening block database + Error aperiendo databasum frustorum + + + + Error: Disk space is low! + Error: Inopia spatii disci! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Non potuisse auscultare in ulla porta. Utere -listen=0 si hoc vis. + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + Inopia descriptorum plicarum. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Verificante frusta... + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informatio + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) + + + + Signing transaction failed + Signandum transactionis abortum est + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + Magnitudo transactionis nimis parva + + + + Transaction too large for fee policy + + + + + Transaction too large + Transactio nimis magna + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Nomen utentis pro conexionibus JSON-RPC + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Monitio + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Tessera pro conexionibus JSON-RPC + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Pelle mandatum quando optissimum frustum mutat (%s in mandato substituitur ab hash frusti) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Permitte quaerenda DNS pro -addnode, -seednode, et -connect + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - User Interface &language: - &Lingua monstranda utenti: + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - &Unit to show amounts in: - &Unita qua quantitates monstrare: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Choose the default subdivision unit to show in the interface and when sending coins. - Selige praedefinitam unitam subdivisionis monstrare in interfacie et quando nummos mittere + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - &OK - &OK + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - &Cancel - &Cancella + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - default - praedefinitum + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Confirm options reset - Confirma optionum reconstituere + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - The supplied proxy address is invalid. - Inscriptio vicarii tradita non valida est. + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - - - OverviewPage - Form - Schema + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Monstrata informatio fortasse non recentissima est. Tuum cassidile per se synchronizat cum rete Raven postquam conexio constabilita est, sed hoc actio nondum perfecta est. + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Immature: - Immatura: + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Mined balance that has not yet matured - Fossum pendendum quod nondum maturum est + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Quantitas + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - N/A - N/A + + %s is set very high! + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + ' doesn't exist in the database + - Client version - Versio clientis + + ' has already been used + - &Information - &Informatio + + ' is not a valid character in the expression: + - Debug window - Fenestra Debug + + ' the amount trying to reissue is to large + - Startup time - Tempus initiandi + + (default: %s) + - Network - Rete + + A space separated list of 12-words used to import a bip44 wallet + - Number of connections - Numerus conexionum + + Always query for peer addresses via DNS lookup (default: %u) + - Block chain - Catena frustorum + + Asset Transfer amounts must be greater than 0 + - Current number of blocks - Numerus frustorum iam nunc + + Asset doesn't exist: + - Last block time - Hora postremi frusti + + Asset must be a qualifier, sub qualifier, or a restricted asset + - &Open - &Aperi + + Asset name is not valid + - &Console - &Terminale + + Asset with this name is already in the mempool + - Debug log file - Debug catalogi plica + + Done Loading + - Clear console - Vacuefac terminale + + Enable publish raw asset messages in <address> + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Utere sagittis sursum deorsumque ut per historiam naviges, et <b>Ctrl+L</b> ut scrinium vacuefacias. + + Error creating %s: You can't create non-HD wallets with this version. + - Type <b>help</b> for an overview of available commands. - Scribe <b>help</b> pro summario possibilium mandatorum. + + Error loading wallet %s. -wallet filename must be a regular file. + - - - ReceiveCoinsDialog - &Amount: - Quantitas: + + Error loading wallet %s. Duplicate -wallet filename specified. + - &Label: - &Titulus: + + Error loading wallet %s. Invalid characters in -wallet filename. + - &Message: - Nuntius: + + Error not set + - - - ReceiveRequestDialog - Copy &Address - &Copia Inscriptionem + + Error writing bip 39 passphrase to database + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Mitte Nummos + + Error writing bip 39 vchseed to database + - Insufficient funds! - Inopia nummorum + + Error writing bip 39 words to database + - Amount: - Quantitas: + + Every '(' must have a corresponding ')' in the expression: + - Transaction Fee: - Transactionis merces: + + Failed to extract destination from change script + - Send to multiple recipients at once - Mitte pluribus accipientibus simul + + Failed to find restricted asset change address from inputs + - Add &Recipient - Adde &Accipientem + + Failed to get asset data from script + - Clear &All - Vacuefac &Omnia + + Failed to get verifier string from output: + - Balance: - Pendendum: + + Failed to load Assets Database + - Confirm the send action - Confirma actionem mittendi + + Flag must be 1 or 0 + - S&end - &Mitte + + How many blocks to check at startup (default: %u, 0 = all) + - - - SendCoinsEntry - A&mount: - &Quantitas: + + Include IP addresses in debug output (default: %u) + - Pay &To: - Pensa &Ad: + + Init Message Channels - Scanning Asset Transactions + - &Label: - &Titulus: + + Insufficient asset funds + - Alt+A - Alt+A + + Invalid Qualifier Name: + - Paste address from clipboard - Glutina inscriptionem ex latibulo + + Invalid expressions in verifier string: + - Alt+P - Alt+P + + Invalid parameter: amount must be + - Message: - Nuntius: + + Invalid parameter: amount must be between + - Pay To: - Pensa Ad: + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Signationes - Signa / Verifica nuntium + + Invalid parameter: asset amount greater than max money: + - &Sign Message - &Signa Nuntium + + Invalid parameter: asset_name ' + - Alt+A - Alt+A + + Invalid parameter: has_ipfs must be 0 or 1. + - Paste address from clipboard - Glutina inscriptionem ex latibulo + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Alt+P - Alt+P + + Invalid parameter: reissuable must be 0 or 1 + - Enter the message you want to sign here - Insere hic nuntium quod vis signare + + Invalid parameter: reissuable must be 0 + - Signature - Signatio + + Invalid parameter: units must be + - Copy the current signature to the system clipboard - Copia signationem in latibulum systematis + + Invalid parameter: units must be between 0-8. + - Sign the message to prove you own this Raven address - Signa nuntium ut demonstres hanc inscriptionem Raven a te possessa esse + + Invalid syntax: + - Sign &Message - Signa &Nuntium + + Keypool ran out, please call keypoolrefill first + - Reset all sign message fields - Reconstitue omnes campos signandi nuntii + + Length is to large. Please use a smaller length + - Clear &All - Vacuefac &Omnia + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - &Verify Message - &Verifica Nuntium + + Listen for connections on <port> (default: %u or testnet: %u) + - Verify the message to ensure it was signed with the specified Raven address - Verifica nuntium ut cures signatum esse cum specifica inscriptione Raven + + Maintain at most <n> connections to peers (default: %u) + - Verify &Message - Verifica &Nuntium + + Make the wallet broadcast transactions + - Reset all verify message fields - Reconstitue omnes campos verificandi nuntii + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - - - SplashScreen - [testnet] - [testnet] + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Haec tabula monstrat descriptionem verbosam transactionis + + Mempool cleared + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Optiones: + + Multiple verifier strings found in transaction + - Specify data directory - Specifica indicem datorum + + Passphrase securing your 12-word mnemonic word-list + - Connect to a node to retrieve peer addresses, and disconnect - Conecta ad nodum acceptare inscriptiones parium, et disconecte + + Prepend debug output with timestamp (default: %u) + - Specify your own public address - Specifica tuam propriam publicam inscriptionem + + Relay and mine data carrier transactions (default: %u) + - Accept command line and JSON-RPC commands - Accipe terminalis et JSON-RPC mandata. + + Relay non-P2SH multisig (default: %u) + - Run in the background as a daemon and accept commands - Operare infere sicut daemon et mandata accipe + + Restricted asset transfer from address that has been frozen + - Raven Core - Raven Nucleus + + Send transactions with full-RBF opt-in enabled (default: %u) + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Conglutina ad inscriptionem datam et semper in eam ausculta. Utere [moderatrum]:porta notationem pro IPv6 + + Set key pool size to <n> (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Facere mandatum quotiescumque cassidilis transactio mutet (%s in mandato sbstituitur ab TxID) + + Set maximum BIP141 block weight (default: %d) + - Block creation options: - Optiones creandi frustorum: + + Set the Maximum reorg depth (default: %u) + - Corrupted block database detected - Corruptum databasum frustorum invenitur + + Set the number of threads to service RPC calls (default: %d) + - Do you want to rebuild the block database now? - Visne reficere databasum frustorum iam? + + Signing asset transaction failed + - Error initializing block database - Error initiando databasem frustorum + + Specify configuration file (default: %s) + - Error initializing wallet database environment %s! - Error initiando systematem databasi cassidilis %s! + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Error loading block database - Error legendo frustorum databasem + + Specify pid file (default: %s) + - Error opening block database - Error aperiendo databasum frustorum + + Spend unconfirmed change when sending transactions (default: %u) + - Error: Disk space is low! - Error: Inopia spatii disci! + + Starting network threads... + - Failed to listen on any port. Use -listen=0 if you want this. - Non potuisse auscultare in ulla porta. Utere -listen=0 si hoc vis. + + The symbol: ' + - Not enough file descriptors available. - Inopia descriptorum plicarum. + + The verifier string has two operators without a tag between them + - Verifying blocks... - Verificante frusta... + + The wallet will avoid paying less than the minimum relay fee. + - Verifying wallet... - Verificante cassidilem... + + This is the minimum transaction fee you pay on every transaction. + - Information - Informatio + + This is the transaction fee you will pay if you send a transaction. + - Send trace/debug info to console instead of debug.log file - Mitte informationem vestigii/debug ad terminale potius quam plicam debug.log + + Threshold for disconnecting misbehaving peers (default: %u) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Diminue plicam debug.log ad initium clientis (praedefinitum: 1 nisi -debug) + + Transaction amounts must not be negative + - Signing transaction failed - Signandum transactionis abortum est + + Transaction has too long of a mempool chain + - Transaction amount too small - Magnitudo transactionis nimis parva + + Transaction must have at least one recipient + - Transaction too large - Transactio nimis magna + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - Nomen utentis pro conexionibus JSON-RPC + + Unable to generate initial keys + - Warning - Monitio + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - Tessera pro conexionibus JSON-RPC + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Pelle mandatum quando optissimum frustum mutat (%s in mandato substituitur ab hash frusti) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Permitte quaerenda DNS pro -addnode, -seednode, et -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Legens inscriptiones... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Inscriptio -proxy non valida: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Ignotum rete specificatum in -onlynet: '%s' + + Unknown network specified in -onlynet: '%s' + Ignotum rete specificatum in -onlynet: '%s' + Insufficient funds Inopia nummorum + Loading block index... Legens indicem frustorum... - Add a node to connect to and attempt to keep the connection open - Adice nodum cui conectere et conare sustinere conexionem apertam - - + Loading wallet... Legens cassidile... + Cannot downgrade wallet Non posse cassidile regredi - Cannot write default address - Non posse scribere praedefinitam inscriptionem - - + Rescanning... Iterum perlegens... - Done loading - Completo lengendi - - + Error Error diff --git a/src/qt/locale/raven_lt.ts b/src/qt/locale/raven_lt.ts index 5a30019d7e..edb989ce8f 100644 --- a/src/qt/locale/raven_lt.ts +++ b/src/qt/locale/raven_lt.ts @@ -1,1019 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label Spustelėkite dešinįjį klaviša norint keisti adresą arba etiketę + Create a new address Sukurti naują adresą + &New &Naujas + Copy the currently selected address to the system clipboard Kopijuoti esamą adresą į mainų atmintį + &Copy &Kopijuoti + C&lose &Užverti + Delete the currently selected address from the list Ištrinti pasirinktą adresą iš sąrašo + Export the data in the current tab to a file Eksportuoti informaciją iš dabartinės lentelės į failą + &Export &Eksportuoti + &Delete &Trinti - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog - Passphrase Dialog - Slaptafrazės dialogas + + Passphrase Dialog + Slaptafrazės dialogas + + + + Enter passphrase + Įvesti slaptafrazę + + + + New passphrase + Nauja slaptafrazė + + + + Repeat new passphrase + Pakartokite naują slaptafrazę + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + + + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + Užblokuotas iki + + + + CoinControlDialog + + + Coin Selection + Monetų pasirinkimas + + + + Quantity: + Kiekis: + + + + Bytes: + Baitai: + + + + Amount: + Suma: + + + + Fee: + Mokestis: + + + + Dust: + + + + + After Fee: + Po mokesčio: + + + + Change: + Graža: + + + + (un)select all + (ne)pasirinkti viską + + + + Tree mode + Medžio režimas + + + + List mode + Sąrašo režimas + + + + Amount + Suma + + + + Received with label + + + + + Received with address + + + + + Date + Data + + + + Confirmations + Patvirtinimai + + + + Confirmed + Patvirtintas + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Keisti adresą + + + + &Label + Ž&ymė + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adresas + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + pavadinimas + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versija + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Komandinės eilutės parametrai + + + + Usage: + Naudojimas: + + + + command-line options + komandinės eilutės parametrai + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Sveiki + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Klaida + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Forma + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Paskutinio bloko laikas + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Parinktys + + + + &Main + &Pagrindinės + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Proxy IP adresas (Pvz. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + &Atstatyti Parinktis + + + + &Network + &Tinklas + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Piniginė + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatiškai atidaryti Raven kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. + + + + Map port using &UPnP + Persiųsti prievadą naudojant &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Tarpinio serverio &IP: + + + + + &Port: + &Prievadas: + + + + + Port of the proxy (e.g. 9050) + Tarpinio serverio preivadas (pvz, 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Langas + + + + Show only a tray icon after minimizing the window. + Po programos lango sumažinimo rodyti tik programos ikoną. + + + + &Minimize to the tray instead of the taskbar + &M sumažinti langą bet ne užduočių juostą + + + + M&inimize on close + &Sumažinti uždarant + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Rodymas + + + + User Interface &language: + Naudotojo sąsajos &kalba: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Vienetai, kuriais rodyti sumas: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Rodomų ir siunčiamų monetų kiekio matavimo vienetai + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Gerai + + + + &Cancel + &Atšaukti + + + + default + numatyta + + + + none + niekas + + + + Confirm options reset + Patvirtinti nustatymų atstatymą + + + + + Client restart required to activate changes. + Kliento perkrovimas reikalingas nustatymų aktyvavimui + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Šis pakeitimas reikalautų kliento perkrovimo + + + + The supplied proxy address is invalid. + Nurodytas tarpinio serverio adresas negalioja. + + + + OverviewPage + + + Form + Forma + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Galimi: + + + + Your current spendable balance + Jūsų dabartinis išleidžiamas balansas + + + + Pending: + Laukiantys: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Nepribrendę: + + + + Mined balance that has not yet matured + + + + + Total: + Viso: + + + + Your current total balance + Jūsų balansas + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Suma + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + + + + + None + + + + + N/A + nėra + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + nėra + + + + Client version + Kliento versija + + + + &Information + &Informacija + + + + Debug window + Derinimo langas + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Paleidimo laikas + + + + Network + Tinklas + + + + Name + Pavadinimas + + + + Number of connections + Prisijungimų kiekis + + + + Block chain + Blokų grandinė + + + + Current number of blocks + Dabartinis blokų skaičius + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Gauta + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Kryptis + + + + Version + Versija + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Paskutinio bloko laikas + + + + &Open + &Atverti + + + + &Console + &Konsolė + + + + &Network Traffic + + + + + Totals + Viso: + + + + In: + + + + + Out: + + + + + Debug log file + Derinimo žurnalo failas + + + + Clear console + Išvalyti konsolę + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + Niekada + + + + Inbound + + + + + Outbound + + + + + Yes + Taip + + + + No + Ne + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Pasirašyti ži&nutę... + + + + Synchronizing with network... + Sinchronizavimas su tinklu ... + + + + &Overview + &Apžvalga + + + + Node + Taškas + + + + Show general overview of wallet + Rodyti piniginės bendrą apžvalgą + + + + &Transactions + &Sandoriai + + + + Browse transaction history + Apžvelgti sandorių istoriją + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Išeiti + + + + Quit application + Išjungti programą + + + + &About %1 + &Apie %1 + + + + Show information about %1 + + + + + About &Qt + Apie &Qt + + + + Show information about Qt + Rodyti informaciją apie Qt + + + + &Options... + &Parinktys... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Užšifruoti piniginę... + + + + &Backup Wallet... + &Backup piniginę... + + + + &Change Passphrase... + &Keisti slaptafrazę... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Siunčiami adresai... + + + + &Receiving addresses... + &Gaunami adresai... + + + + Open &URI... + Atidaryti &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Blokai iš naujo indeksuojami... + + + + Send coins to a Raven address + Siųsti monetas Raven adresui + + + + Backup wallet to another location + Daryti piniginės atsarginę kopiją + + + + Change the passphrase used for wallet encryption + Pakeisti slaptafrazę naudojamą piniginės užšifravimui + + + + Open debugging and diagnostic console + Atverti derinimo ir diagnostikos konsolę + + + + &Verify message... + &Tikrinti žinutę... + + + + Raven + Raven + + + + Wallet + Piniginė + + + + &Send + &Siųsti + + + + &Receive + &Gauti + + + + &Show / Hide + &Rodyti / Slėpti + + + + Show or hide the main Window + Rodyti arba slėpti pagrindinį langą + + + + Encrypt the private keys that belong to your wallet + Užšifruoti privačius raktus, kurie priklauso jūsų piniginei + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Failas + + + + &Help + &Pagalba + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + Komandinės eilutės parametrai + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Klaida + + + + Warning + Įspėjimas + + + + Information + Informacija + + + + Up to date + Atnaujinta + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Vejamasi... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Sandoris nusiųstas + + + + Incoming transaction + Ateinantis sandoris + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Suma: + + + + &Label: + Ž&ymė: + + + + &Message: + Žinutė: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + Išvalyti + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR kodas + + + + Copy &URI + + + + + Copy &Address + &Kopijuoti adresą + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Siųsti monetas + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Nepakanka lėšų + + + + Quantity: + Kiekis: + + + + Bytes: + Baitai: + + + + Amount: + Suma: + + + + Fee: + Mokestis: + + + + After Fee: + Po mokesčio: + + + + Change: + Graža: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Sandorio mokestis: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Siųsti keliems gavėjams vienu metu + + + + Add &Recipient + &A Pridėti gavėją + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + Išvalyti &viską + + + + Balance: + Balansas: + + + + Confirm the send action + Patvirtinti siuntimo veiksmą + + + + S&end + &Siųsti + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Su&ma: + + + + &Label: + Ž&ymė: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Įvesti adresą iš mainų atminties + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Žinutė: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + &Pasirašyti žinutę + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Įvesti adresą iš mainų atminties + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Įveskite pranešimą, kurį norite pasirašyti čia + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + Registruotis žinute įrodymuii, kad turite šį adresą + + + + Sign &Message + Registruoti praneši&mą + + + + Reset all sign message fields + + + + + + Clear &All + Išvalyti &viską + + + + &Verify Message + &Patikrinti žinutę + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Raven adresas + + + + Verify &Message + &Patikrinti žinutę + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testavimotinklas] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Šis langas sandorio detalų aprašymą + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Parinktys: + + + + Specify data directory + Nustatyti duomenų aplanką + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + Nurodykite savo nuosavą viešą adresą + + + + Accept command line and JSON-RPC commands + Priimti komandinę eilutę ir JSON-RPC komandas + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Dirbti fone kaip šešėlyje ir priimti komandas + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven branduolys + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + Klaida atveriant blokų duombazę + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + - Enter passphrase - Įvesti slaptafrazę + + Use UPnP to map the listening port (default: %u) + - New passphrase - Nauja slaptafrazė + + Use the test chain + - Repeat new passphrase - Pakartokite naują slaptafrazę + + User Agent comment (%s) contains unsafe characters. + - - - BanTableModel - Banned Until - Užblokuotas iki + + Verifying blocks... + Tikrinami blokai... - - - RavenGUI - Sign &message... - Pasirašyti ži&nutę... + + Wallet %s resides outside data directory %s + - Synchronizing with network... - Sinchronizavimas su tinklu ... + + Wallet debugging/testing options: + - &Overview - &Apžvalga + + Wallet needed to be rewritten: restart %s to complete + - Node - Taškas + + Wallet options: + - Show general overview of wallet - Rodyti piniginės bendrą apžvalgą + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - &Transactions - &Sandoriai + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Browse transaction history - Apžvelgti sandorių istoriją + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - E&xit - &Išeiti + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Quit application - Išjungti programą + + Error: Listening for incoming connections failed (listen returned error %s) + - &About %1 - &Apie %1 + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - About &Qt - Apie &Qt + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Show information about Qt - Rodyti informaciją apie Qt + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - &Options... - &Parinktys... + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - &Encrypt Wallet... - &Užšifruoti piniginę... + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - &Backup Wallet... - &Backup piniginę... + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Change Passphrase... - &Keisti slaptafrazę... + + The transaction amount is too small to send after the fee has been deducted + - &Sending addresses... - &Siunčiami adresai... + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - &Receiving addresses... - &Gaunami adresai... + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Open &URI... - Atidaryti &URI... + + (default: %u) + - Reindexing blocks on disk... - Blokai iš naujo indeksuojami... + + Accept public REST requests (default: %u) + - Send coins to a Raven address - Siųsti monetas Raven adresui + + Automatically create Tor hidden service (default: %d) + - Backup wallet to another location - Daryti piniginės atsarginę kopiją + + Connect through SOCKS5 proxy + - Change the passphrase used for wallet encryption - Pakeisti slaptafrazę naudojamą piniginės užšifravimui + + Error loading %s: You can't disable HD on an already existing HD wallet + - &Debug window - &Derinimo langas + + Error reading from database, shutting down. + - Open debugging and diagnostic console - Atverti derinimo ir diagnostikos konsolę + + Error upgrading chainstate database + - &Verify message... - &Tikrinti žinutę... + + Imports blocks from external blk000??.dat file on startup + - Raven - Raven + + Information + Informacija - Wallet - Piniginė + + Invalid -onion address or hostname: '%s' + - &Send - &Siųsti + + Invalid -proxy address or hostname: '%s' + - &Receive - &Gauti + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Show / Hide - &Rodyti / Slėpti + + Invalid netmask specified in -whitelist: '%s' + - Show or hide the main Window - Rodyti arba slėpti pagrindinį langą + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Encrypt the private keys that belong to your wallet - Užšifruoti privačius raktus, kurie priklauso jūsų piniginei + + Need to specify a port with -whitebind: '%s' + - &File - &Failas + + Node relay options: + - &Settings - &Nustatymai + + RPC server options: + - &Help - &Pagalba + + Reducing -maxconnections from %d to %d, because of system limitations. + - Tabs toolbar - Kortelių įrankinė + + Rescan the block chain for missing wallet transactions on startup + - &Command-line options - Komandinės eilutės parametrai + + Send trace/debug info to console instead of debug.log file + Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo - Error - Klaida + + Show all debugging options (usage: --help -help-debug) + - Warning - Įspėjimas + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Information - Informacija + + Signing transaction failed + - Up to date - Atnaujinta + + The transaction amount is too small to pay the fee + - Catching up... - Vejamasi... + + This is experimental software. + - Sent transaction - Sandoris nusiųstas + + Tor control port password (default: empty) + - Incoming transaction - Ateinantis sandoris + + Tor control port to use if onion listening enabled (default: %s) + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>atrakinta</b> + + Transaction amount too small + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Piniginė <b>užšifruota</b> ir šiuo metu <b>užrakinta</b> + + Transaction too large for fee policy + - - - CoinControlDialog - Coin Selection - Monetų pasirinkimas + + Transaction too large + - Quantity: - Kiekis: + + Unable to bind to %s on this computer (bind returned error %s) + - Bytes: - Baitai: + + Upgrade wallet to latest format on startup + - Amount: - Suma: + + Username for JSON-RPC connections + Vartotojo vardas JSON-RPC jungimuisi - Fee: - Mokestis: + + Valid Verifier + - After Fee: - Po mokesčio: + + Variable is not allow in the expression: ' + - Change: - Graža: + + Verifier String doesn't exist for asset: + - (un)select all - (ne)pasirinkti viską + + Verifier String for asset trasnfer, not found + - Tree mode - Medžio režimas + + Verifier not found for asset: + - List mode - Sąrašo režimas + + Verifier string can not be empty. To default to true, use "true" + - Amount - Suma + + Verifier string is empty + - Date - Data + + Verifier string not found + - Confirmations - Patvirtinimai + + Verifying wallet(s)... + - Confirmed - Patvirtintas + + Warning + Įspėjimas - - - EditAddressDialog - Edit Address - Keisti adresą + + Warning: unknown new rules activated (versionbit %i) + - &Label - Ž&ymė + + Whether to operate in a blocks only mode (default: %u) + - &Address - &Adresas + + You need to rebuild the database using -reindex to change -txindex + - - - FreespaceChecker - name - pavadinimas + + Zapping all transactions from wallet... + - - - HelpMessageDialog - version - versija + + ZeroMQ notification options: + - Command-line options - Komandinės eilutės parametrai + + Password for JSON-RPC connections + Slaptažodis JSON-RPC sujungimams - Usage: - Naudojimas: + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - command-line options - komandinės eilutės parametrai + + Allow DNS lookups for -addnode, -seednode and -connect + Leisti DNS paiešką sujungimui ir mazgo pridėjimui - - - Intro - Welcome - Sveiki + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Error - Klaida + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - - - ModalOverlay - Form - Forma + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Last block time - Paskutinio bloko laikas + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - - - OpenURIDialog - - - OptionsDialog - Options - Parinktys + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - &Main - &Pagrindinės + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - MB - MB + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Proxy IP adresas (Pvz. IPv4: 127.0.0.1 / IPv6: ::1) + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - &Reset Options - &Atstatyti Parinktis + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - &Network - &Tinklas + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - W&allet - Piniginė + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatiškai atidaryti Raven kliento prievadą maršrutizatoriuje. Tai veikia tik tada, kai jūsų maršrutizatorius palaiko UPnP ir ji įjungta. + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Map port using &UPnP - Persiųsti prievadą naudojant &UPnP + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Proxy &IP: - Tarpinio serverio &IP: + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - &Port: - &Prievadas: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Port of the proxy (e.g. 9050) - Tarpinio serverio preivadas (pvz, 9050) + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - IPv4 - IPv4 + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - IPv6 - IPv6 + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Tor - Tor + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - &Window - &Langas + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Show only a tray icon after minimizing the window. - Po programos lango sumažinimo rodyti tik programos ikoną. + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - &Minimize to the tray instead of the taskbar - &M sumažinti langą bet ne užduočių juostą + + Output debugging information (default: %u, supplying <category> is optional) + - M&inimize on close - &Sumažinti uždarant + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - &Display - &Rodymas + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - User Interface &language: - Naudotojo sąsajos &kalba: + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - &Unit to show amounts in: - &Vienetai, kuriais rodyti sumas: + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Choose the default subdivision unit to show in the interface and when sending coins. - Rodomų ir siunčiamų monetų kiekio matavimo vienetai + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - &OK - &Gerai + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - &Cancel - &Atšaukti + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - default - numatyta + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - none - niekas + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Confirm options reset - Patvirtinti nustatymų atstatymą + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Client restart required to activate changes. - Kliento perkrovimas reikalingas nustatymų aktyvavimui + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - This change would require a client restart. - Šis pakeitimas reikalautų kliento perkrovimo + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - The supplied proxy address is invalid. - Nurodytas tarpinio serverio adresas negalioja. + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - - - OverviewPage - Form - Forma + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Available: - Galimi: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Your current spendable balance - Jūsų dabartinis išleidžiamas balansas + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Pending: - Laukiantys: + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Immature: - Nepribrendę: + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Total: - Viso: + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Your current total balance - Jūsų balansas + + %s is set very high! + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Suma + + ' doesn't exist in the database + - %1 h - %1 h + + ' has already been used + - %1 m - %1 m + + ' is not a valid character in the expression: + - N/A - nėra + + ' the amount trying to reissue is to large + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - nėra + + (default: %s) + - Client version - Kliento versija + + A space separated list of 12-words used to import a bip44 wallet + - &Information - &Informacija + + Always query for peer addresses via DNS lookup (default: %u) + - Debug window - Derinimo langas + + Asset Transfer amounts must be greater than 0 + - Startup time - Paleidimo laikas + + Asset doesn't exist: + - Network - Tinklas + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Name - Pavadinimas + + Asset name is not valid + - Number of connections - Prisijungimų kiekis + + Asset with this name is already in the mempool + - Block chain - Blokų grandinė + + Done Loading + - Current number of blocks - Dabartinis blokų skaičius + + Enable publish raw asset messages in <address> + - Received - Gauta + + Error creating %s: You can't create non-HD wallets with this version. + - Direction - Kryptis + + Error loading wallet %s. -wallet filename must be a regular file. + - Version - Versija + + Error loading wallet %s. Duplicate -wallet filename specified. + - Last block time - Paskutinio bloko laikas + + Error loading wallet %s. Invalid characters in -wallet filename. + - &Open - &Atverti + + Error not set + - &Console - &Konsolė + + Error writing bip 39 passphrase to database + - &Clear - Išvalyti + + Error writing bip 39 vchseed to database + - Totals - Viso: + + Error writing bip 39 words to database + - Debug log file - Derinimo žurnalo failas + + Every '(' must have a corresponding ')' in the expression: + - Clear console - Išvalyti konsolę + + Failed to extract destination from change script + - %1 B - %1 B + + Failed to find restricted asset change address from inputs + - %1 KB - %1 KB + + Failed to get asset data from script + - %1 MB - %1 MB + + Failed to get verifier string from output: + - %1 GB - %1 GB + + Failed to load Assets Database + - never - Niekada + + Flag must be 1 or 0 + - Yes - Taip + + How many blocks to check at startup (default: %u, 0 = all) + - No - Ne + + Include IP addresses in debug output (default: %u) + - - - ReceiveCoinsDialog - &Amount: - Suma: + + Init Message Channels - Scanning Asset Transactions + - &Label: - Ž&ymė: + + Insufficient asset funds + - &Message: - Žinutė: + + Invalid Qualifier Name: + - Clear - Išvalyti + + Invalid expressions in verifier string: + - - - ReceiveRequestDialog - QR Code - QR kodas + + Invalid parameter: amount must be + - Copy &Address - &Kopijuoti adresą + + Invalid parameter: amount must be between + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Siųsti monetas + + Invalid parameter: asset amount can't be equal to or less than zero. + - Insufficient funds! - Nepakanka lėšų + + Invalid parameter: asset amount greater than max money: + - Quantity: - Kiekis: + + Invalid parameter: asset_name ' + - Bytes: - Baitai: + + Invalid parameter: has_ipfs must be 0 or 1. + - Amount: - Suma: + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Fee: - Mokestis: + + Invalid parameter: reissuable must be 0 or 1 + - After Fee: - Po mokesčio: + + Invalid parameter: reissuable must be 0 + - Change: - Graža: + + Invalid parameter: units must be + - Transaction Fee: - Sandorio mokestis: + + Invalid parameter: units must be between 0-8. + - Send to multiple recipients at once - Siųsti keliems gavėjams vienu metu + + Invalid syntax: + - Add &Recipient - &A Pridėti gavėją + + Keypool ran out, please call keypoolrefill first + - Clear &All - Išvalyti &viską + + Length is to large. Please use a smaller length + - Balance: - Balansas: + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Confirm the send action - Patvirtinti siuntimo veiksmą + + Listen for connections on <port> (default: %u or testnet: %u) + - S&end - &Siųsti + + Maintain at most <n> connections to peers (default: %u) + - - - SendCoinsEntry - A&mount: - Su&ma: + + Make the wallet broadcast transactions + - Pay &To: - Mokėti &gavėjui: + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - &Label: - Ž&ymė: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Alt+A - Alt+A + + Mempool cleared + - Paste address from clipboard - Įvesti adresą iš mainų atminties + + Multiple verifier strings found in transaction + - Alt+P - Alt+P + + Passphrase securing your 12-word mnemonic word-list + - Message: - Žinutė: + + Prepend debug output with timestamp (default: %u) + - Pay To: - Mokėti gavėjui: + + Relay and mine data carrier transactions (default: %u) + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - &Sign Message - &Pasirašyti žinutę + + Relay non-P2SH multisig (default: %u) + - Alt+A - Alt+A + + Restricted asset transfer from address that has been frozen + - Paste address from clipboard - Įvesti adresą iš mainų atminties + + Send transactions with full-RBF opt-in enabled (default: %u) + - Alt+P - Alt+P + + Set key pool size to <n> (default: %u) + - Enter the message you want to sign here - Įveskite pranešimą, kurį norite pasirašyti čia + + Set maximum BIP141 block weight (default: %d) + - Sign the message to prove you own this Raven address - Registruotis žinute įrodymuii, kad turite šį adresą + + Set the Maximum reorg depth (default: %u) + - Sign &Message - Registruoti praneši&mą + + Set the number of threads to service RPC calls (default: %d) + - Clear &All - Išvalyti &viską + + Signing asset transaction failed + - &Verify Message - &Patikrinti žinutę + + Specify configuration file (default: %s) + - Verify the message to ensure it was signed with the specified Raven address - Patikrinkite žinutę, jog įsitikintumėte, kad ją pasirašė nurodytas Raven adresas + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Verify &Message - &Patikrinti žinutę + + Specify pid file (default: %s) + - - - SplashScreen - [testnet] - [testavimotinklas] + + Spend unconfirmed change when sending transactions (default: %u) + - - - TrafficGraphWidget - KB/s - KB/s + + Starting network threads... + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Šis langas sandorio detalų aprašymą + + The symbol: ' + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Parinktys: + + The verifier string has two operators without a tag between them + - Specify data directory - Nustatyti duomenų aplanką + + The wallet will avoid paying less than the minimum relay fee. + - Specify your own public address - Nurodykite savo nuosavą viešą adresą + + This is the minimum transaction fee you pay on every transaction. + - Accept command line and JSON-RPC commands - Priimti komandinę eilutę ir JSON-RPC komandas + + This is the transaction fee you will pay if you send a transaction. + - Run in the background as a daemon and accept commands - Dirbti fone kaip šešėlyje ir priimti komandas + + Threshold for disconnecting misbehaving peers (default: %u) + - Raven Core - Raven branduolys + + Transaction amounts must not be negative + - Error opening block database - Klaida atveriant blokų duombazę + + Transaction has too long of a mempool chain + - Verifying blocks... - Tikrinami blokai... + + Transaction must have at least one recipient + - Verifying wallet... - Tikrinama piniginė... + + Turn off the databasing the messages sent with assets (default: %u) + - Information - Informacija + + Unable to generate initial keys + - Send trace/debug info to console instead of debug.log file - Siųsti atsekimo/derinimo info į konsolę vietoj debug.log failo + + Unable to get coin to verify restricted asset transfer from address + - Username for JSON-RPC connections - Vartotojo vardas JSON-RPC jungimuisi + + Unable to reissue asset: amount must be 0 or larger + - Warning - Įspėjimas + + Unable to reissue asset: asset_name ' + - Password for JSON-RPC connections - Slaptažodis JSON-RPC sujungimams + + Unable to reissue asset: reissuable is set to false + - Allow DNS lookups for -addnode, -seednode and -connect - Leisti DNS paiešką sujungimui ir mazgo pridėjimui + + Unable to reissue asset: reissuable must be 0 or 1 + - Loading addresses... - Užkraunami adresai... + + Unable to reissue asset: unit must be between 8 and -1 + - Invalid -proxy address: '%s' - Neteisingas proxy adresas: '%s' + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Nepakanka lėšų + Loading block index... Įkeliamas blokų indeksas... - Add a node to connect to and attempt to keep the connection open - Pridėti mazgą prie sujungti su and attempt to keep the connection open - - + Loading wallet... Užkraunama piniginė... - Cannot write default address - Negalima parašyti įprasto adreso + + Cannot downgrade wallet + + Rescanning... Peržiūra - Done loading - Įkėlimas baigtas - - + Error Klaida diff --git a/src/qt/locale/raven_lv_LV.ts b/src/qt/locale/raven_lv_LV.ts index e2578de840..73d9e16943 100644 --- a/src/qt/locale/raven_lv_LV.ts +++ b/src/qt/locale/raven_lv_LV.ts @@ -1,1263 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Izveidot jaunu adresi + &New &Jauns + Copy the currently selected address to the system clipboard Kopēt iezīmēto adresi uz starpliktuvi + &Copy &Kopēt + C&lose &Aizvērt + Delete the currently selected address from the list Izdzēst iezīmētās adreses no saraksta + Export the data in the current tab to a file Datus no tekošā ieliktņa eksportēt uz failu + &Export &Eksportēt + &Delete &Dzēst - - - AddressTableModel - - - AskPassphraseDialog - Passphrase Dialog - Paroles dialogs + + Choose the address to send coins to + - Enter passphrase - Ierakstiet paroli + + Choose the address to receive coins with + - New passphrase - Jauna parole + + C&hoose + - Repeat new passphrase - Jaunā parole vēlreiz + + Sending addresses + - - - BanTableModel - - - RavenGUI - Sign &message... - Parakstīt &ziņojumu... + + Receiving addresses + - Synchronizing with network... - Sinhronizācija ar tīklu... + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - &Overview - &Pārskats + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - Node - Node + + &Copy Address + - Show general overview of wallet - Rādīt vispārēju maciņa pārskatu + + Copy &Label + - &Transactions - &Transakcijas + + &Edit + - Browse transaction history - Skatīt transakciju vēsturi + + Export Address List + - E&xit - &Iziet + + Comma separated file (*.csv) + - Quit application - Aizvērt programmu + + Exporting Failed + - About &Qt - Par &Qt + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - Show information about Qt - Parādīt informāciju par Qt + + Label + - &Options... - &Iespējas... + + Address + - &Encrypt Wallet... - Šifrēt &maciņu... + + (no label) + + + + AskPassphraseDialog - &Backup Wallet... - &Maciņa Rezerves Kopija... + + Passphrase Dialog + Paroles dialogs - &Change Passphrase... - Mainīt &Paroli... + + Enter passphrase + Ierakstiet paroli - &Sending addresses... - &Sūtīšanas adreses... + + New passphrase + Jauna parole - &Receiving addresses... - Saņemšanas &adreses... + + Repeat new passphrase + Jaunā parole vēlreiz - Open &URI... - Atvērt &URI... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Reindexing blocks on disk... - Bloku reindeksēšana no diska... + + Encrypt wallet + - Send coins to a Raven address - Nosūtīt bitkoinus uz Raven adresi + + This operation needs your wallet passphrase to unlock the wallet. + - Backup wallet to another location - Izveidot maciņa rezerves kopiju citur + + Unlock wallet + - Change the passphrase used for wallet encryption - Mainīt maciņa šifrēšanas paroli + + This operation needs your wallet passphrase to decrypt the wallet. + - &Debug window - &Atkļūdošanas logs + + Decrypt wallet + - Open debugging and diagnostic console - Atvērt atkļūdošanas un diagnostikas konsoli + + Change passphrase + - &Verify message... - &Pārbaudīt ziņojumu... + + Enter the old passphrase and new passphrase to the wallet. + - Raven - Raven + + Confirm wallet encryption + - Wallet - Maciņš + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &Send - &Sūtīt + + Are you sure you wish to encrypt your wallet? + - &Receive - &Saņemt + + + Wallet encrypted + - &Show / Hide - &Rādīt / Paslēpt + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Show or hide the main Window - Parādīt vai paslēpt galveno Logu + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Encrypt the private keys that belong to your wallet - Šifrēt privātās atslēgas kuras pieder tavam maciņam + + + + + Wallet encryption failed + - Sign messages with your Raven addresses to prove you own them - Parakstīt ziņojumus ar savām Raven adresēm lai pierādītu ka tās pieder tev + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Verify messages to ensure they were signed with specified Raven addresses - Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Raven adresēm + + + The supplied passphrases do not match. + - &File - &Fails + + Wallet unlock failed + - &Settings - &Uzstādījumi + + + + The passphrase entered for the wallet decryption was incorrect. + - &Help - &Palīdzība + + Wallet decryption failed + - Tabs toolbar - Ciļņu rīkjosla + + Wallet passphrase was successfully changed. + - Request payments (generates QR codes and raven: URIs) - Pieprasīt maksājumus (izveido QR kodu un raven: URIs) + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Open a raven: URI or payment request - Atvērt raven URI vai maksājuma pieprasījumu + + Asset Selection + - &Command-line options - &Komandrindas iespējas + + Quantity: + - %1 behind - %1 aizmugurē + + Bytes: + - Transactions after this will not yet be visible. - Transakcijas pēc šī vel nebūs redzamas + + Amount: + - Error - Kļūda + + Dust: + - Warning - Brīdinājums + + Fee: + - Information - Informācija + + After Fee: + - Up to date - Sinhronizēts + + Change: + - Catching up... - Sinhronizējos... + + (un)select all + - Sent transaction - Transakcija nosūtīta + + Tree mode + - Incoming transaction - Ienākoša transakcija + + List mode + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</b> + + View assets that you have the ownership asset for + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> + + View Administrator Assets + - - - CoinControlDialog - Quantity: - Daudzums: + + Asset + - Bytes: - Baiti: + + Amount + - Amount: - Daudzums: + + Received with label + - Fee: - Maksa: + + Received with address + - After Fee: - Pēc Maksas: + + Date + - Change: - Atlikums: + + Confirmations + - (un)select all - iezīmēt visus + + Confirmed + - Tree mode - Koka režīms + + Copy address + - List mode - Saraksta režīms + + Copy label + - Amount - Daudzums + + + Copy amount + - Date - Datums + + Copy transaction ID + - Confirmations - Apstiprinājumi + + Lock unspent + - Confirmed - Apstiprināts + + Unlock unspent + - - - EditAddressDialog - Edit Address - Mainīt adrese + + Copy quantity + - &Label - &Nosaukums + + Copy fee + - &Address - &Adrese + + Copy after fee + - - - FreespaceChecker - A new data directory will be created. - Tiks izveidota jauna datu mape. + + Copy bytes + - name - vārds + + Copy dust + - Path already exists, and is not a directory. - Šāds ceļš jau pastāv un tā nav mape. + + Copy change + - Cannot create data directory here. - Šeit nevar izveidot datu mapi. + + (%1 locked) + - - - HelpMessageDialog - version - versija + + yes + - (%1-bit) - (%1-biti) + + no + - Command-line options - Komandrindas iespējas + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Usage: - Lietojums: + + Can vary +/- %1 satoshi(s) per input. + - command-line options - komandrindas izvēles + + + (no label) + - - - Intro - Welcome - Sveiciens + + change from %1 (%2) + - Use the default data directory - Izmantot noklusēto datu mapi + + (change) + + + + AssetTableModel - Use a custom data directory: - Izmantot pielāgotu datu mapi: + + Name + - Error - Kļūda + + Quantity + - + - ModalOverlay + AssetsDialog - Form - Forma + + + Send Coins + - Last block time - Pēdējā bloka laiks + + Asset Control Features + - - - OpenURIDialog - Open URI - Atvērt URI + + Inputs... + - Open payment request from URI or file - Atvērt maksājuma pieprasījumu no URI vai datnes + + automatically selected + - URI: - URI: + + Insufficient funds! + - Select payment request file - Izvēlies maksājuma pieprasījuma datni + + Quantity: + - - - OptionsDialog - Options - Iespējas + + Bytes: + - &Main - &Galvenais + + Amount: + - Size of &database cache - &Datubāzes kešatmiņas izmērs + + Dust: + - MB - MB + + Fee: + - Number of script &verification threads - Skriptu &pārbaudes pavedienu skaits + + After Fee: + - Allow incoming connections - Atļaut ienākošos savienojumus + + Change: + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Starpniekservera IP adrese (piem. IPv4: 127.0.0.1 / IPv6: ::1) + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizēt nevis aizvērt aplikāciju, kad logs tiek aizvērts. Kad šī iespēja ir ieslēgta, aplikācija tiks aizvērta, izvēloties Aizvērt izvēlnē. + + Custom change address + - Third party transaction URLs - Trešo personu transakciju URLs + + Transaction Fee: + - Active command-line options that override above options: - Aktīvās komandrindas opcijas, kuras pārspēko šos iestatījumus: + + Choose... + - Reset all client options to default. - Atiestatīt visus klienta iestatījumus uz noklusējumu. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Reset Options - &Atiestatīt Iestatījumus. + + Warning: Fee estimation is currently not possible. + - &Network - &Tīkls + + collapse fee-settings + - W&allet - &Maciņš + + Hide + - Expert - Eksperts + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Enable coin &control features - Ieslēgt raven &kontroles funkcijas + + per kilobyte + - &Spend unconfirmed change - &Tērēt neapstiprinātu atlikumu + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Uz rūtera automātiski atvērt Raven klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts. + + (read the tooltip) + - Map port using &UPnP - Kartēt portu, izmantojot &UPnP + + Recommended: + - Proxy &IP: - Starpniekservera &IP: + + Custom: + - &Port: - &Ports: + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Port of the proxy (e.g. 9050) - Starpniekservera ports (piem. 9050) + + Confirmation time target: + - &Window - &Logs + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Show only a tray icon after minimizing the window. - Pēc loga minimizācijas rādīt tikai ikonu sistēmas teknē. + + Request Replace-By-Fee + - &Minimize to the tray instead of the taskbar - &Minimizēt uz sistēmas tekni, nevis rīkjoslu + + Confirm the send action + - M&inimize on close - M&inimizēt aizverot + + S&end + - &Display - &Izskats + + Clear all fields of the form. + - User Interface &language: - Lietotāja interfeiss un &valoda: + + Clear &All + - &Unit to show amounts in: - &Vienības, kurās attēlot daudzumus: + + Transfer to multiple recipients at once + - Choose the default subdivision unit to show in the interface and when sending coins. - Izvēlēties dalījuma vienību pēc noklusēšanas, ko izmantot interfeisā un nosūtot bitkoinus. + + Add &Recipient + - Whether to show coin control features or not. - Vai rādīt Raven kontroles funkcijas vai nē. + + Balance: + - &OK - &Labi + + Copy quantity + - &Cancel - &Atcelt + + Copy amount + - default - pēc noklusēšanas + + Copy fee + - none - neviena + + Copy after fee + - Confirm options reset - Apstiprināt iestatījumu atiestatīšanu + + Copy bytes + - The supplied proxy address is invalid. - Norādītā starpniekservera adrese nav derīga. + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - OverviewPage + AssignQualifier - Form - Forma + + Frame + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Raven tīklu, taču šis process vēl nav beidzies. + + Select Type: + - Available: - Pieejams: + + Select Qualifier: + - Your current spendable balance - Tava pašreizējā tērējamā bilance + + Address: + - Pending: - Neizšķirts: + + IPFS / Hash: + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Kopējā apstiprināmo transakciju vērtība, vēl nav ieskaitīta tērējamajā bilancē + + Custom Change Address + - Immature: - Nenobriedušu: + + Check + - Total: - Kopsumma: + + Clear + - Your current total balance - Jūsu kopējā tekošā bilance + + Submit + - - - PaymentServer - + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - PeerTableModel - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - QObject + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Daudzums: + + + + Bytes: + Baiti: + + + + Amount: + Daudzums: + + + + Fee: + Maksa: + + + + Dust: + + + + + After Fee: + Pēc Maksas: + + + + Change: + Atlikums: + + + + (un)select all + iezīmēt visus + + + + Tree mode + Koka režīms + + + List mode + Saraksta režīms + + + Amount Daudzums - %1 h - %1 st + + Received with label + - %1 m - %1 m + + Received with address + - N/A - N/A + + Date + Datums - %1 and %2 - %1 un %2 + + Confirmations + Apstiprinājumi - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + Confirmed + Apstiprināts - Client version - Klienta versija + + Copy address + - &Information - &Informācija + + Copy label + - Debug window - Atkļūdošanas logs + + + Copy amount + - General - Vispārējs + + Copy transaction ID + - Startup time - Sākuma laiks + + Lock unspent + - Network - Tīkls + + Unlock unspent + - Name - Vārds + + Copy quantity + - Number of connections - Savienojumu skaits + + Copy fee + - Block chain - Bloku virkne + + Copy after fee + - Current number of blocks - Pašreizējais bloku skaits + + Copy bytes + - Last block time - Pēdējā bloka laiks + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Mainīt adrese + + + + &Label + &Nosaukums + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adrese + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Tiks izveidota jauna datu mape. + + + + name + vārds + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + Šāds ceļš jau pastāv un tā nav mape. + + + + Cannot create data directory here. + Šeit nevar izveidot datu mapi. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versija + + + + + (%1-bit) + (%1-biti) + + + + About %1 + + + + + Command-line options + Komandrindas iespējas + + + + Usage: + Lietojums: + + + + command-line options + komandrindas izvēles + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Sveiciens + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Izmantot noklusēto datu mapi + + + + Use a custom data directory: + Izmantot pielāgotu datu mapi: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Kļūda + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Forma + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Pēdējā bloka laiks + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Atvērt URI + + + + Open payment request from URI or file + Atvērt maksājuma pieprasījumu no URI vai datnes + + + + URI: + URI: + + + + Select payment request file + Izvēlies maksājuma pieprasījuma datni + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Iespējas + + + + &Main + &Galvenais + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + &Datubāzes kešatmiņas izmērs + + + + MB + MB + + + + Number of script &verification threads + Skriptu &pārbaudes pavedienu skaits + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Starpniekservera IP adrese (piem. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizēt nevis aizvērt aplikāciju, kad logs tiek aizvērts. Kad šī iespēja ir ieslēgta, aplikācija tiks aizvērta, izvēloties Aizvērt izvēlnē. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + Aktīvās komandrindas opcijas, kuras pārspēko šos iestatījumus: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Atiestatīt visus klienta iestatījumus uz noklusējumu. + + + + &Reset Options + &Atiestatīt Iestatījumus. + + + + &Network + &Tīkls + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + &Maciņš + + + + Expert + Eksperts + + + + Enable coin &control features + Ieslēgt raven &kontroles funkcijas + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + &Tērēt neapstiprinātu atlikumu + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Uz rūtera automātiski atvērt Raven klienta portu. Tas strādā tikai tad, ja rūteris atbalsta UPnP un tas ir ieslēgts. + + + + Map port using &UPnP + Kartēt portu, izmantojot &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Starpniekservera &IP: + + + + + &Port: + &Ports: + + + + + Port of the proxy (e.g. 9050) + Starpniekservera ports (piem. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Logs + + + + Show only a tray icon after minimizing the window. + Pēc loga minimizācijas rādīt tikai ikonu sistēmas teknē. + + + + &Minimize to the tray instead of the taskbar + &Minimizēt uz sistēmas tekni, nevis rīkjoslu + + + + M&inimize on close + M&inimizēt aizverot + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Izskats + + + + User Interface &language: + Lietotāja interfeiss un &valoda: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Vienības, kurās attēlot daudzumus: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Izvēlēties dalījuma vienību pēc noklusēšanas, ko izmantot interfeisā un nosūtot bitkoinus. + + + + Whether to show coin control features or not. + Vai rādīt Raven kontroles funkcijas vai nē. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Labi + + + + &Cancel + &Atcelt + + + + default + pēc noklusēšanas + + + + none + neviena + + + + Confirm options reset + Apstiprināt iestatījumu atiestatīšanu + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + Norādītā starpniekservera adrese nav derīga. + + + + OverviewPage + + + Form + Forma + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Attēlotā informācija var būt novecojusi. Jūsu maciņš pēc savienojuma izveides automātiski sinhronizējas ar Raven tīklu, taču šis process vēl nav beidzies. + + + + Watch-only: + + + + + Available: + Pieejams: + + + + Your current spendable balance + Tava pašreizējā tērējamā bilance + + + + Pending: + Neizšķirts: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Kopējā apstiprināmo transakciju vērtība, vēl nav ieskaitīta tērējamajā bilancē + + + + Immature: + Nenobriedušu: + + + + Mined balance that has not yet matured + + + + + Total: + Kopsumma: + + + + Your current total balance + Jūsu kopējā tekošā bilance + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Daudzums + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + %1 st + + + + %1 m + %1 m + + + + + %1 s + + + + + None + + + + + N/A + N/A + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 un %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Klienta versija + + + + &Information + &Informācija + + + + Debug window + Atkļūdošanas logs + + + + General + Vispārējs + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + Sākuma laiks + + + + Network + Tīkls + + + + Name + Vārds + + + + Number of connections + Savienojumu skaits + + + + Block chain + Bloku virkne + + + + Current number of blocks + Pašreizējais bloku skaits + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Pēdējā bloka laiks + + + + &Open + &Atvērt + + + + &Console + &Konsole + + + + &Network Traffic + &Tīkla Satiksme + + + + Totals + Kopsummas + + + + In: + Ie.: + + + + Out: + Iz.: + + + + Debug log file + Atkļūdošanas žurnāla datne + + + + Clear console + Notīrīt konsoli + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Ierakstiet <b>help</b> lai iegūtu pieejamo komandu sarakstu. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Parakstīt &ziņojumu... + + + + Synchronizing with network... + Sinhronizācija ar tīklu... + + + + &Overview + &Pārskats + + + + Node + Node + + + + Show general overview of wallet + Rādīt vispārēju maciņa pārskatu + + + + &Transactions + &Transakcijas + + + + Browse transaction history + Skatīt transakciju vēsturi + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Iziet + + + + Quit application + Aizvērt programmu + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Par &Qt + + + + Show information about Qt + Parādīt informāciju par Qt + + + + &Options... + &Iespējas... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Šifrēt &maciņu... + + + + &Backup Wallet... + &Maciņa Rezerves Kopija... + + + + &Change Passphrase... + Mainīt &Paroli... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Sūtīšanas adreses... + + + + &Receiving addresses... + Saņemšanas &adreses... + + + + Open &URI... + Atvērt &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Bloku reindeksēšana no diska... + + + + Send coins to a Raven address + Nosūtīt bitkoinus uz Raven adresi + + + + Backup wallet to another location + Izveidot maciņa rezerves kopiju citur + + + + Change the passphrase used for wallet encryption + Mainīt maciņa šifrēšanas paroli + + + + Open debugging and diagnostic console + Atvērt atkļūdošanas un diagnostikas konsoli + + + + &Verify message... + &Pārbaudīt ziņojumu... + + + + Raven + Raven + + + + Wallet + Maciņš + + + + &Send + &Sūtīt + + + + &Receive + &Saņemt + + + + &Show / Hide + &Rādīt / Paslēpt + + + + Show or hide the main Window + Parādīt vai paslēpt galveno Logu + + + + Encrypt the private keys that belong to your wallet + Šifrēt privātās atslēgas kuras pieder tavam maciņam + + + + Sign messages with your Raven addresses to prove you own them + Parakstīt ziņojumus ar savām Raven adresēm lai pierādītu ka tās pieder tev + + + + Verify messages to ensure they were signed with specified Raven addresses + Pārbaudīt ziņojumus lai pārliecinātos, ka tie tika parakstīti ar norādītajām Raven adresēm + + + + &File + &Fails + + + + &Help + &Palīdzība + + + + Request payments (generates QR codes and raven: URIs) + Pieprasīt maksājumus (izveido QR kodu un raven: URIs) + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + Atvērt raven URI vai maksājuma pieprasījumu + + + + &Command-line options + &Komandrindas iespējas + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 aizmugurē + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + Transakcijas pēc šī vel nebūs redzamas + + + + Error + Kļūda + + + + Warning + Brīdinājums + + + + Information + Informācija + + + + Up to date + Sinhronizēts + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Sinhronizējos... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Transakcija nosūtīta + + + + Incoming transaction + Ienākoša transakcija + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Maciņš ir <b>šifrēts</b> un pašlaik <b>atslēgts</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Maciņš ir <b>šifrēts</b> un pašlaik <b>slēgts</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Daudzums: + + + + &Label: + &Nosaukums: + + + + &Message: + &Ziņojums: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + &Atkārtoti izmantot esošo saņemšanas adresi (nav ieteicams) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Notīrīt visus laukus formā. + + + + Clear + Notīrīt + + + + Requested payments history + Pieprasīto maksājumu vēsture + + + + &Request payment + &Pieprasīt maksājumu + + + + Show the selected request (does the same as double clicking an entry) + Parādīt atlasītos pieprasījumus (tas pats, kas dubultklikšķis uz ieraksta) + + + + Show + Rādīt + + + + Remove the selected entries from the list + Noņemt atlasītos ierakstus no saraksta. + + + + Remove + Noņemt + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Kods + + + + Copy &URI + Kopēt &URI + + + + Copy &Address + Kopēt &Adresi + + + + &Save Image... + &Saglabāt Attēlu... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Sūtīt Bitkoinus + + + + Coin Control Features + Raven Kontroles Funkcijas + + + + Inputs... + Ieejas... + + + + automatically selected + automātiski atlasīts + + + + Insufficient funds! + Nepietiekami līdzekļi! + + + + Quantity: + Daudzums: + + + + Bytes: + Baiti: + + + + Amount: + Daudzums: + + + + Fee: + Maksa: + + + + After Fee: + Pēc Maksas: + + + + Change: + Atlikums: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + Pielāgota atlikuma adrese + + + + Transaction Fee: + Transakcijas maksa: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Sūtīt vairākiem saņēmējiem uzreiz + + + + Add &Recipient + &Pievienot Saņēmēju + + + + Clear all fields of the form. + Notīrīt visus laukus formā. + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + &Notīrīt visu + + + + Balance: + Bilance: + + + + Confirm the send action + Apstiprināt nosūtīšanu + + + + S&end + &Sūtīt + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Apjo&ms + + + + &Label: + &Nosaukums: + + + + Choose previously used address + Izvēlies iepriekš izmantoto adresi + + + + This is a normal payment. + Šis ir parasts maksājums. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + ielīmēt adresi no starpliktuves + + + + Alt+P + Alt+P + + + + + + Remove this entry + Noņem šo ierakstu + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Ziņojums: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Neizslēdziet datoru kamēr šis logs nepazūd. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Paraksti - Parakstīt / Pabaudīt Ziņojumu + + + + &Sign Message + Parakstīt &Ziņojumu + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Izvēlies iepriekš izmantoto adresi + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + ielīmēt adresi no starpliktuves + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Šeit ievadi ziņojumu kuru vēlies parakstīt + + + + Signature + Paraksts + + + + Copy the current signature to the system clipboard + Kopēt parakstu uz sistēmas starpliktuvi + + + + Sign the message to prove you own this Raven address + Parakstīt ziņojumu lai pierādītu, ka esi šīs Raven adreses īpašnieks. + + + + Sign &Message + Parakstīt &Ziņojumu + + + + Reset all sign message fields + Atiestatīt visus laukus + + + + + Clear &All + &Notīrīt visu + + + + &Verify Message + &Pārbaudīt Ziņojumu + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + &Pārbaudīt Ziņojumu + + + + Reset all verify message fields + Atiestatīt visus laukus + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnets] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Šis panelis parāda transakcijas detaļas + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Iespējas: + + + + Specify data directory + Norādiet datu direktoriju + + + + Connect to a node to retrieve peer addresses, and disconnect + Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties + + + + Specify your own public address + Norādiet savu publisko adresi + + + + Accept command line and JSON-RPC commands + Pieņemt komandrindas un JSON-RPC komandas + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Darbināt fonā kā servisu un pieņemt komandas + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + <category> var būt: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Bloka izveidošanas iestatījumi: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + Savienojuma iestatījumi: + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + Atkļūdošanas/Testēšanas iestatījumi: + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Kļūda ielādējot bloku datubāzi + + + + Error opening block database + + + + + Error: Disk space is low! + Kļūda: Zema diska vieta! + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + Importē... + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + Pārbauda blokus... + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + Maciņa iespējas: + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informācija + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + RPC servera iestatījumi: + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + Debug/trace informāciju izvadīt konsolē, nevis debug.log failā + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + Transakcijas parakstīšana neizdevās + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + Transakcijas summa ir pārāk maza + + + + Transaction too large for fee policy + + + + + Transaction too large + Transakcija ir pārāk liela + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + JSON-RPC savienojumu lietotājvārds + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Brīdinājums + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + JSON-RPC savienojumu parole + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Izpildīt komandu, kad labāk atbilstošais bloks izmainās (%s cmd aizvieto ar bloka hešu) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + - &Open - &Atvērt + + This is the transaction fee you may pay when fee estimates are not available. + - &Console - &Konsole + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - &Network Traffic - &Tīkla Satiksme + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - &Clear - &Notīrīt + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Totals - Kopsummas + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - In: - Ie.: + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Out: - Iz.: + + Unable to reissue asset: unit must be larger than current unit selection + - Debug log file - Atkļūdošanas žurnāla datne + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Clear console - Notīrīt konsoli + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Izmantojiet bultiņas uz augšu un leju, lai pārvietotos pa vēsturi, un <b>Ctrl-L</b> ekrāna notīrīšanai. + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Type <b>help</b> for an overview of available commands. - Ierakstiet <b>help</b> lai iegūtu pieejamo komandu sarakstu. + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - %1 B - %1 B + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - %1 KB - %1 KB + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - %1 MB - %1 MB + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - %1 GB - %1 GB + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - - - ReceiveCoinsDialog - &Amount: - &Daudzums: + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - &Label: - &Nosaukums: + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - &Message: - &Ziņojums: + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - R&euse an existing receiving address (not recommended) - &Atkārtoti izmantot esošo saņemšanas adresi (nav ieteicams) + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Clear all fields of the form. - Notīrīt visus laukus formā. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Clear - Notīrīt + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Requested payments history - Pieprasīto maksājumu vēsture + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - &Request payment - &Pieprasīt maksājumu + + %s is set very high! + - Show the selected request (does the same as double clicking an entry) - Parādīt atlasītos pieprasījumus (tas pats, kas dubultklikšķis uz ieraksta) + + ' doesn't exist in the database + - Show - Rādīt + + ' has already been used + - Remove the selected entries from the list - Noņemt atlasītos ierakstus no saraksta. + + ' is not a valid character in the expression: + - Remove - Noņemt + + ' the amount trying to reissue is to large + - - - ReceiveRequestDialog - QR Code - QR Kods + + (default: %s) + - Copy &URI - Kopēt &URI + + A space separated list of 12-words used to import a bip44 wallet + - Copy &Address - Kopēt &Adresi + + Always query for peer addresses via DNS lookup (default: %u) + - &Save Image... - &Saglabāt Attēlu... + + Asset Transfer amounts must be greater than 0 + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Sūtīt Bitkoinus + + Asset doesn't exist: + - Coin Control Features - Raven Kontroles Funkcijas + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Inputs... - Ieejas... + + Asset name is not valid + - automatically selected - automātiski atlasīts + + Asset with this name is already in the mempool + - Insufficient funds! - Nepietiekami līdzekļi! + + Done Loading + - Quantity: - Daudzums: + + Enable publish raw asset messages in <address> + - Bytes: - Baiti: + + Error creating %s: You can't create non-HD wallets with this version. + - Amount: - Daudzums: + + Error loading wallet %s. -wallet filename must be a regular file. + - Fee: - Maksa: + + Error loading wallet %s. Duplicate -wallet filename specified. + - After Fee: - Pēc Maksas: + + Error loading wallet %s. Invalid characters in -wallet filename. + - Change: - Atlikums: + + Error not set + - Custom change address - Pielāgota atlikuma adrese + + Error writing bip 39 passphrase to database + - Transaction Fee: - Transakcijas maksa: + + Error writing bip 39 vchseed to database + - Send to multiple recipients at once - Sūtīt vairākiem saņēmējiem uzreiz + + Error writing bip 39 words to database + - Add &Recipient - &Pievienot Saņēmēju + + Every '(' must have a corresponding ')' in the expression: + - Clear all fields of the form. - Notīrīt visus laukus formā. + + Failed to extract destination from change script + - Clear &All - &Notīrīt visu + + Failed to find restricted asset change address from inputs + - Balance: - Bilance: + + Failed to get asset data from script + - Confirm the send action - Apstiprināt nosūtīšanu + + Failed to get verifier string from output: + - S&end - &Sūtīt + + Failed to load Assets Database + - - - SendCoinsEntry - A&mount: - Apjo&ms + + Flag must be 1 or 0 + - Pay &To: - &Saņēmējs: + + How many blocks to check at startup (default: %u, 0 = all) + - &Label: - &Nosaukums: + + Include IP addresses in debug output (default: %u) + - Choose previously used address - Izvēlies iepriekš izmantoto adresi + + Init Message Channels - Scanning Asset Transactions + - This is a normal payment. - Šis ir parasts maksājums. + + Insufficient asset funds + - Alt+A - Alt+A + + Invalid Qualifier Name: + - Paste address from clipboard - ielīmēt adresi no starpliktuves + + Invalid expressions in verifier string: + - Alt+P - Alt+P + + Invalid parameter: amount must be + - Remove this entry - Noņem šo ierakstu + + Invalid parameter: amount must be between + - Message: - Ziņojums: + + Invalid parameter: asset amount can't be equal to or less than zero. + - Pay To: - Maksāt: + + Invalid parameter: asset amount greater than max money: + - Memo: - Memo: + + Invalid parameter: asset_name ' + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Neizslēdziet datoru kamēr šis logs nepazūd. + + Invalid parameter: has_ipfs must be 0 or 1. + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Paraksti - Parakstīt / Pabaudīt Ziņojumu + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - &Sign Message - Parakstīt &Ziņojumu + + Invalid parameter: reissuable must be 0 or 1 + - Choose previously used address - Izvēlies iepriekš izmantoto adresi + + Invalid parameter: reissuable must be 0 + - Alt+A - Alt+A + + Invalid parameter: units must be + - Paste address from clipboard - ielīmēt adresi no starpliktuves + + Invalid parameter: units must be between 0-8. + - Alt+P - Alt+P + + Invalid syntax: + - Enter the message you want to sign here - Šeit ievadi ziņojumu kuru vēlies parakstīt + + Keypool ran out, please call keypoolrefill first + - Signature - Paraksts + + Length is to large. Please use a smaller length + - Copy the current signature to the system clipboard - Kopēt parakstu uz sistēmas starpliktuvi + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Sign the message to prove you own this Raven address - Parakstīt ziņojumu lai pierādītu, ka esi šīs Raven adreses īpašnieks. + + Listen for connections on <port> (default: %u or testnet: %u) + - Sign &Message - Parakstīt &Ziņojumu + + Maintain at most <n> connections to peers (default: %u) + - Reset all sign message fields - Atiestatīt visus laukus + + Make the wallet broadcast transactions + - Clear &All - &Notīrīt visu + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - &Verify Message - &Pārbaudīt Ziņojumu + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Verify &Message - &Pārbaudīt Ziņojumu + + Mempool cleared + - Reset all verify message fields - Atiestatīt visus laukus + + Multiple verifier strings found in transaction + - - - SplashScreen - [testnet] - [testnets] + + Passphrase securing your 12-word mnemonic word-list + - - - TrafficGraphWidget - KB/s - KB/s + + Prepend debug output with timestamp (default: %u) + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Šis panelis parāda transakcijas detaļas + + Relay and mine data carrier transactions (default: %u) + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Iespējas: + + Relay non-P2SH multisig (default: %u) + - Specify data directory - Norādiet datu direktoriju + + Restricted asset transfer from address that has been frozen + - Connect to a node to retrieve peer addresses, and disconnect - Pievienoties mezglam, lai iegūtu citu mezglu adreses, un atvienoties + + Send transactions with full-RBF opt-in enabled (default: %u) + - Specify your own public address - Norādiet savu publisko adresi + + Set key pool size to <n> (default: %u) + - Accept command line and JSON-RPC commands - Pieņemt komandrindas un JSON-RPC komandas + + Set maximum BIP141 block weight (default: %d) + - Run in the background as a daemon and accept commands - Darbināt fonā kā servisu un pieņemt komandas + + Set the Maximum reorg depth (default: %u) + - Raven Core - Raven Core + + Set the number of threads to service RPC calls (default: %d) + - <category> can be: - <category> var būt: + + Signing asset transaction failed + - Block creation options: - Bloka izveidošanas iestatījumi: + + Specify configuration file (default: %s) + - Connection options: - Savienojuma iestatījumi: + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Debugging/Testing options: - Atkļūdošanas/Testēšanas iestatījumi: + + Specify pid file (default: %s) + - Error loading block database - Kļūda ielādējot bloku datubāzi + + Spend unconfirmed change when sending transactions (default: %u) + - Error: Disk space is low! - Kļūda: Zema diska vieta! + + Starting network threads... + - Importing... - Importē... + + The symbol: ' + - Verifying blocks... - Pārbauda blokus... + + The verifier string has two operators without a tag between them + - Verifying wallet... - Pārbauda maciņu... + + The wallet will avoid paying less than the minimum relay fee. + - Wallet options: - Maciņa iespējas: + + This is the minimum transaction fee you pay on every transaction. + - Information - Informācija + + This is the transaction fee you will pay if you send a transaction. + - RPC server options: - RPC servera iestatījumi: + + Threshold for disconnecting misbehaving peers (default: %u) + - Send trace/debug info to console instead of debug.log file - Debug/trace informāciju izvadīt konsolē, nevis debug.log failā + + Transaction amounts must not be negative + - Signing transaction failed - Transakcijas parakstīšana neizdevās + + Transaction has too long of a mempool chain + - Transaction amount too small - Transakcijas summa ir pārāk maza + + Transaction must have at least one recipient + - Transaction too large - Transakcija ir pārāk liela + + Turn off the databasing the messages sent with assets (default: %u) + - Username for JSON-RPC connections - JSON-RPC savienojumu lietotājvārds + + Unable to generate initial keys + - Warning - Brīdinājums + + Unable to get coin to verify restricted asset transfer from address + - Password for JSON-RPC connections - JSON-RPC savienojumu parole + + Unable to reissue asset: amount must be 0 or larger + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Izpildīt komandu, kad labāk atbilstošais bloks izmainās (%s cmd aizvieto ar bloka hešu) + + Unable to reissue asset: asset_name ' + - Allow DNS lookups for -addnode, -seednode and -connect - Atļaut DNS uzmeklēšanu priekš -addnode, -seednode un -connect + + Unable to reissue asset: reissuable is set to false + - Loading addresses... - Ielādē adreses... + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid -proxy address: '%s' - Nederīga -proxy adrese: '%s' + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - -onlynet komandā norādīts nepazīstams tīkls: '%s' + + Unknown network specified in -onlynet: '%s' + -onlynet komandā norādīts nepazīstams tīkls: '%s' + Insufficient funds Nepietiek bitkoinu + Loading block index... Ielādē bloku indeksu... - Add a node to connect to and attempt to keep the connection open - Pievienot mezglu, kam pievienoties un turēt savienojumu atvērtu - - + Loading wallet... Ielādē maciņu... + Cannot downgrade wallet Nevar maciņa formātu padarīt vecāku - Cannot write default address - Nevar ierakstīt adresi pēc noklusēšanas - - + Rescanning... Skanēju no jauna... - Done loading - Ielāde pabeigta - - + Error Kļūda diff --git a/src/qt/locale/raven_mk_MK.ts b/src/qt/locale/raven_mk_MK.ts index 58205f2a34..e6c7c45988 100644 --- a/src/qt/locale/raven_mk_MK.ts +++ b/src/qt/locale/raven_mk_MK.ts @@ -1,593 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label Десен клик за уредување на адреса или етикета + Create a new address Креирај нова адреса + &New &Нова + Copy the currently selected address to the system clipboard Копирај ја избраната адреса на системскиот клипборд + &Copy &Копирај + C&lose З&атвори + Delete the currently selected address from the list Избриши ја избраната адреса од листата + Export the data in the current tab to a file Експортирај ги податоците од активното јазиче во датотека + &Export &Експорт + &Delete &Избриши - - - AddressTableModel - - - AskPassphraseDialog - Enter passphrase - Внеси тајна фраза + + Choose the address to send coins to + - New passphrase - Нова тајна фраза + + Choose the address to receive coins with + - Repeat new passphrase - Повторете ја новата тајна фраза + + C&hoose + - - - BanTableModel - - - RavenGUI - Sign &message... - Потпиши &порака... + + Sending addresses + - Synchronizing with network... - Синхронизација со мрежата... + + Receiving addresses + - &Overview - &Преглед + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - Node - Јазол + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - &Transactions - &Трансакции + + &Copy Address + - Browse transaction history - Преглед на историјата на трансакции + + Copy &Label + - E&xit - И&злез + + &Edit + - Quit application - Напушти ја апликацијата + + Export Address List + - About &Qt - За &Qt + + Comma separated file (*.csv) + - Show information about Qt - Прикажи информации за Qt + + Exporting Failed + - &Options... - &Опции... + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - &Encrypt Wallet... - &Криптирање на Паричник... + + Label + - &Backup Wallet... - &Бекап на Паричник... + + Address + - &Change Passphrase... - &Измени Тајна Фраза... + + (no label) + + + + AskPassphraseDialog - &Sending addresses... - &Адреси за Испраќање... + + Passphrase Dialog + - &Receiving addresses... - &Адреси за Примање... + + Enter passphrase + Внеси тајна фраза - Open &URI... - Отвори &URI... + + New passphrase + Нова тајна фраза - Reindexing blocks on disk... - Повторно индексирање на блокови од дискот... + + Repeat new passphrase + Повторете ја новата тајна фраза - Send coins to a Raven address - Испрати биткоини на Биткоин адреса + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Verify message... - &Потврди порака... + + Encrypt wallet + - Raven - Биткоин + + This operation needs your wallet passphrase to unlock the wallet. + - Wallet - Паричник + + Unlock wallet + - &Send - &Испрати + + This operation needs your wallet passphrase to decrypt the wallet. + - &Receive - &Прими + + Decrypt wallet + - &Show / Hide - &Прикажи / Сокриј + + Change passphrase + - Encrypt the private keys that belong to your wallet - Криптирај ги приватните клучеви кои припаѓаат на твојот паричник + + Enter the old passphrase and new passphrase to the wallet. + - &Settings - &Подесувања + + Confirm wallet encryption + - &Help - &Помош + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - - Processed %n block(s) of transaction history. - Обработен %n блок од историјата на трансакции.Обработени %n блокови од историјата на трансакции. + + + Are you sure you wish to encrypt your wallet? + - %1 behind - %1 позади + + + Wallet encrypted + - Error - Грешка + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Warning - Предупредување + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Up to date - Во тек + + + + + Wallet encryption failed + - Date: %1 - - Дата: %1 - + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Amount: %1 - - Сума: %1 - + + + The supplied passphrases do not match. + - Type: %1 - - Тип: %1 - + + Wallet unlock failed + - Label: %1 - - Етикета: %1 - + + + + The passphrase entered for the wallet decryption was incorrect. + - Address: %1 - - Адреса: %1 - + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + - + - CoinControlDialog + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + Bytes: - Бајти: + + Amount: - Сума: + - Fee: - Провизија: + + Dust: + - Dust: - Прашина: + + Fee: + + After Fee: - После Провизија: + + Change: - Кусур: + - Amount - Сума + + (un)select all + - Date - Дата + + Tree mode + - - - EditAddressDialog - Edit Address - Измени Адреса + + List mode + - &Label - &Етикета + + View assets that you have the ownership asset for + - &Address - &Адреса + + View Administrator Assets + - - - FreespaceChecker - name - име + + Asset + - - - HelpMessageDialog - version - верзија + + Amount + - (%1-bit) - (%1-бит) + + Received with label + - - - Intro - Error - Грешка + + Received with address + - - - ModalOverlay - - - OpenURIDialog - Open URI - Отвори URI + + Date + - URI: - URI: + + Confirmations + - - - OptionsDialog - Options - Опции + + Confirmed + - MB - МБ + + Copy address + - &Network - &Мрежа + + Copy label + - W&allet - П&аричник + + + Copy amount + - &Window - &Прозорец + + Copy transaction ID + - &OK - &ОК + + Lock unspent + - &Cancel - &Откажи + + Unlock unspent + - none - нема + + Copy quantity + - - - OverviewPage - Total: - Вкупно: + + Copy fee + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Сума + + Copy after fee + - %1 d - %1 д + + Copy bytes + - %1 h - %1 ч + + Copy dust + - %1 m - %1 м + + Copy change + - %1 s - %1 с + + (%1 locked) + - %1 ms - %1 мс + + yes + - %1 and %2 - %1 и %2 + + no + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Network - Мрежа + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Name - Име + + Can vary +/- %1 satoshi(s) per input. + - Number of connections - Број на конекции + + + (no label) + - Block chain - Block chain + + change from %1 (%2) + - Sent - Испратени + + (change) + + + + AssetTableModel - Version - Верзија + + Name + - &Console - &Конзола + + Quantity + + + + AssetsDialog - %1 B - %1 Б + + + Send Coins + - %1 KB - %1 КБ + + Asset Control Features + - %1 MB - %1 МБ + + Inputs... + - %1 GB - %1 ГБ + + automatically selected + - - - ReceiveCoinsDialog - &Amount: - &Сума: + + Insufficient funds! + - &Label: - &Етикета: + + Quantity: + - &Message: - &Порака: + + Bytes: + - Show - Прикажи + + Amount: + - - - ReceiveRequestDialog - QR Code - QR Код + + Dust: + - Copy &URI - Копирај &URI + + Fee: + - Copy &Address - Копирај &Адреса + + After Fee: + - &Save Image... - &Сними Слика... + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + - + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - RecentRequestsTableModel - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - SendCoinsDialog + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + Quantity: + + + + Bytes: Бајти: + Amount: Сума: + Fee: Провизија: + + Dust: + Прашина: + + + After Fee: После Провизија: + Change: Кусур: - Dust: - Прашина: + + (un)select all + - - - SendCoinsEntry - A&mount: - Сума: + + Tree mode + - &Label: - &Етикета: + + List mode + - Message: - Порака: + + Amount + Сума - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Опции: + + Received with label + - Raven Core - Биткоин Core + + Received with address + - Warning - Предупредување + + Date + Дата + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Измени Адреса + + + + &Label + &Етикета + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Адреса + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + име + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + верзија + + + + + (%1-bit) + (%1-бит) + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Грешка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Отвори URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Опции + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + МБ + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &Мрежа + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + П&аричник + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Прозорец + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &ОК + + + + &Cancel + &Откажи + + + + default + + + + + none + нема + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Вкупно: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Сума + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + %1 д + + + + %1 h + %1 ч + + + + %1 m + %1 м + + + + + %1 s + %1 с + + + + None + + + + + N/A + + + + + %1 ms + %1 мс + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 и %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Мрежа + + + + Name + Име + + + + Number of connections + Број на конекции + + + + Block chain + Block chain + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + Испратени + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + Верзија + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + &Конзола + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Потпиши &порака... + + + + Synchronizing with network... + Синхронизација со мрежата... + + + + &Overview + &Преглед + + + + Node + Јазол + + + + Show general overview of wallet + + + + + &Transactions + &Трансакции + + + + Browse transaction history + Преглед на историјата на трансакции + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + И&злез + + + + Quit application + Напушти ја апликацијата + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + За &Qt + + + + Show information about Qt + Прикажи информации за Qt + + + + &Options... + &Опции... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Криптирање на Паричник... + + + + &Backup Wallet... + &Бекап на Паричник... + + + + &Change Passphrase... + &Измени Тајна Фраза... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Адреси за Испраќање... + + + + &Receiving addresses... + &Адреси за Примање... + + + + Open &URI... + Отвори &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Повторно индексирање на блокови од дискот... + + + + Send coins to a Raven address + Испрати биткоини на Биткоин адреса + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + &Потврди порака... + + + + Raven + Биткоин + + + + Wallet + Паричник + + + + &Send + &Испрати + + + + &Receive + &Прими + + + + &Show / Hide + &Прикажи / Сокриј + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + Криптирај ги приватните клучеви кои припаѓаат на твојот паричник + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + &Помош + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 позади + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Грешка + + + + Warning + Предупредување + + + + Information + + + + + Up to date + Во тек + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + Дата: %1 + + + + + + Amount: %1 + + Сума: %1 + + + + + Type: %1 + + Тип: %1 + + + + + Label: %1 + + Етикета: %1 + + + + + Address: %1 + + Адреса: %1 + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Сума: + + + + &Label: + &Етикета: + + + + &Message: + &Порака: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Прикажи + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Код + + + + Copy &URI + Копирај &URI + + + + Copy &Address + Копирај &Адреса + + + + &Save Image... + &Сними Слика... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + Бајти: + + + + Amount: + Сума: + + + + Fee: + Провизија: + + + + After Fee: + После Провизија: + + + + Change: + Кусур: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + Прашина: + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Сума: + + + + &Label: + &Етикета: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Порака: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Опции: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Биткоин Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Предупредување + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Грешка diff --git a/src/qt/locale/raven_mn.ts b/src/qt/locale/raven_mn.ts index 6bc303179a..7a0215df22 100644 --- a/src/qt/locale/raven_mn.ts +++ b/src/qt/locale/raven_mn.ts @@ -1,599 +1,8286 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Шинэ хаяг нээх + &New &Шинэ + Copy the currently selected address to the system clipboard Одоогоор сонгогдсон байгаа хаягуудыг сануулах + &Copy &Хуулах + C&lose &Хаах + Delete the currently selected address from the list Одоо сонгогдсон байгаа хаягуудыг жагсаалтаас устгах + Export the data in the current tab to a file Сонгогдсон таб дээрхи дата-г экспортлох + &Export &Экспортдлох + &Delete &Устгах - - - AddressTableModel - - - AskPassphraseDialog - Enter passphrase - Нууц үгийг оруул + + Choose the address to send coins to + - New passphrase - Шинэ нууц үг + + Choose the address to receive coins with + - Repeat new passphrase - Шинэ нууц үгийг давтана уу + + C&hoose + - - - BanTableModel - - - RavenGUI - Sign &message... - &Зурвас хавсаргах... + + Sending addresses + - Synchronizing with network... - Сүлжээтэй тааруулж байна... + + Receiving addresses + - Node - Нод + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + - &Transactions - Гүйлгээнүүд + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + - Browse transaction history - Гүйлгээнүүдийн түүхийг харах + + &Copy Address + - E&xit - Гарах + + Copy &Label + - Quit application - Програмаас Гарах + + &Edit + - About &Qt - &Клиентийн тухай + + Export Address List + - Show information about Qt - Клиентийн тухай мэдээллийг харуул + + Comma separated file (*.csv) + - &Options... - &Сонголтууд... + + Exporting Failed + - &Encrypt Wallet... - &Түрүйвчийг цоожлох... + + There was an error trying to save the address list to %1. Please try again. + + + + AddressTableModel - &Backup Wallet... - &Түрүйвчийг Жоорлох... + + Label + - &Change Passphrase... - &Нууц Үгийг Солих... + + Address + - &Receiving addresses... - Хүлээн авах хаяг + + (no label) + + + + AskPassphraseDialog - Change the passphrase used for wallet encryption - Түрүйвчийг цоожлох нууц үгийг солих + + Passphrase Dialog + - Open debugging and diagnostic console - Оношилгоо ба засварын консолыг онгойлго + + Enter passphrase + Нууц үгийг оруул - Raven - Биткойн + + New passphrase + Шинэ нууц үг - Wallet - Түрүйвч + + Repeat new passphrase + Шинэ нууц үгийг давтана уу - &Show / Hide - &Харуул / Нуу + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &File - &Файл + + Encrypt wallet + - &Settings - &Тохиргоо + + This operation needs your wallet passphrase to unlock the wallet. + - &Help - &Тусламж + + Unlock wallet + - Error - Алдаа + + This operation needs your wallet passphrase to decrypt the wallet. + - Information - Мэдээллэл + + Decrypt wallet + - Up to date - Шинэчлэгдсэн + + Change passphrase + - Sent transaction - Гадагшаа гүйлгээ + + Enter the old passphrase and new passphrase to the wallet. + - Incoming transaction - Дотогшоо гүйлгээ + + Confirm wallet encryption + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Түрүйвч <b>цоожтой</b> ба одоогоор цоож <b>онгорхой</b> байна + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Түрүйвч <b>цоожтой</b> ба одоогоор цоож <b>хаалттай</b> байна + + Are you sure you wish to encrypt your wallet? + - - - CoinControlDialog - Amount: - Хэмжээ: + + + Wallet encrypted + - Fee: - Тѳлбѳр: + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Amount - Хэмжээ + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Date - Огноо + + + + + Wallet encryption failed + - Confirmed - Баталгаажлаа + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - - - EditAddressDialog - Edit Address - Хаягийг ѳѳрчлѳх + + + The supplied passphrases do not match. + - &Label - &Шошго + + Wallet unlock failed + - &Address - &Хаяг + + + + The passphrase entered for the wallet decryption was incorrect. + - - - FreespaceChecker - - - HelpMessageDialog - version - хувилбар + + Wallet decryption failed + - Usage: - Хэрэглээ: + + Wallet passphrase was successfully changed. + - - - Intro - Error - Алдаа + + + Warning: The Caps Lock key is on! + - + - ModalOverlay + AssetControlDialog - Last block time - Сүүлийн блокийн хугацаа + + Asset Selection + - - - OpenURIDialog - - - OptionsDialog - Options - Сонголтууд + + Quantity: + - MB - МБ + + Bytes: + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - проксигийн IP хаяг (жишээ нь: IPv4: 127.0.0.1 / IPv6: ::1) + + Amount: + - &Network - Сүлжээ + + Dust: + - W&allet - Түрүйвч + + Fee: + - Client restart required to activate changes. - Ѳѳрчлѳлтүүдийг идэвхижүүлхийн тулд клиентийг ахин эхлүүлэх шаардлагтай + + After Fee: + - This change would require a client restart. - Энэ ѳѳрчлѳлтийг оруулахын тулд кли1нт програмыг ахин эхлүүлэх шаардлагтай + + Change: + - - - OverviewPage - Available: - Хэрэглэж болох хэмжээ: + + (un)select all + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Хэмжээ + + Tree mode + - N/A - Алга Байна + + List mode + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - Алга Байна + + View assets that you have the ownership asset for + - Client version - Клиентийн хувилбар + + View Administrator Assets + - &Information - &Мэдээллэл + + Asset + - General - Ерѳнхий + + Amount + - Network - Сүлжээ + + Received with label + - Name - Нэр + + Received with address + - Number of connections - Холболтын тоо + + Date + - Block chain - Блокийн цуваа + + Confirmations + - Current number of blocks - Одоогийн блокийн тоо + + Confirmed + - Last block time - Сүүлийн блокийн хугацаа + + Copy address + - &Open - &Нээх + + Copy label + - &Console - &Консол + + + Copy amount + - Clear console - Консолыг цэвэрлэх + + Copy transaction ID + - - - ReceiveCoinsDialog - &Amount: - Хэмжээ: + + Lock unspent + - &Label: - &Шошго: + + Unlock unspent + - &Message: - Зурвас: + + Copy quantity + - Show - Харуул + + Copy fee + - Remove the selected entries from the list - Сонгогдсон ѳгѳгдлүүдийг устгах + + Copy after fee + - Remove - Устгах + + Copy bytes + - - - ReceiveRequestDialog - Copy &Address - Хаягийг &Хуулбарлах + + Copy dust + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Зоос явуулах + + Copy change + - automatically selected - автоматаар сонгогдсон + + (%1 locked) + - Insufficient funds! - Таны дансны үлдэгдэл хүрэлцэхгүй байна! + + yes + - Amount: - Хэмжээ: + + no + - Fee: - Тѳлбѳр: + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Send to multiple recipients at once - Нэгэн зэрэг олон хүлээн авагчруу явуулах + + Can vary +/- %1 satoshi(s) per input. + - Add &Recipient - &Хүлээн авагчийг Нэмэх + + + (no label) + - Clear &All - &Бүгдийг Цэвэрлэ + + change from %1 (%2) + - Balance: - Баланс: + + (change) + + + + AssetTableModel - Confirm the send action - Явуулах үйлдлийг баталгаажуулна уу + + Name + - S&end - Яв&уул + + Quantity + - + - SendCoinsEntry + AssetsDialog - A&mount: - Дүн: + + + Send Coins + - Pay &To: - Тѳлѳх &хаяг: + + Asset Control Features + - &Label: - &Шошго: + + Inputs... + - Alt+A - Alt+A + + automatically selected + - Paste address from clipboard - Копидсон хаягийг буулгах + + Insufficient funds! + - Alt+P - Alt+P + + Quantity: + - Message: - Зурвас: + + Bytes: + - Pay To: - Тѳлѳх хаяг: + + Amount: + - - - SendConfirmationDialog - + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - ShutdownWindow + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Хэмжээ: + + + + Fee: + Тѳлбѳр: + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Хэмжээ + + + + Received with label + + + + + Received with address + + + + + Date + Огноо + + + + Confirmations + + + + + Confirmed + Баталгаажлаа + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Хаягийг ѳѳрчлѳх + + + + &Label + &Шошго + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Хаяг + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + хувилбар + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + Хэрэглээ: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Алдаа + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Сүүлийн блокийн хугацаа + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Сонголтууд + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + МБ + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + проксигийн IP хаяг (жишээ нь: IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + Сүлжээ + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Түрүйвч + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + Ѳѳрчлѳлтүүдийг идэвхижүүлхийн тулд клиентийг ахин эхлүүлэх шаардлагтай + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Энэ ѳѳрчлѳлтийг оруулахын тулд кли1нт програмыг ахин эхлүүлэх шаардлагтай + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Хэрэглэж болох хэмжээ: + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Хэмжээ + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + Алга Байна + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Алга Байна + + + + Client version + Клиентийн хувилбар + + + + &Information + &Мэдээллэл + + + + Debug window + + + + + General + Ерѳнхий + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Сүлжээ + + + + Name + Нэр + + + + Number of connections + Холболтын тоо + + + + Block chain + Блокийн цуваа + + + + Current number of blocks + Одоогийн блокийн тоо + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Сүүлийн блокийн хугацаа + + + + &Open + &Нээх + + + + &Console + &Консол + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + Консолыг цэвэрлэх + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + &Зурвас хавсаргах... + + + + Synchronizing with network... + Сүлжээтэй тааруулж байна... + + + + &Overview + + + + + Node + Нод + + + + Show general overview of wallet + + + + + &Transactions + Гүйлгээнүүд + + + + Browse transaction history + Гүйлгээнүүдийн түүхийг харах + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Гарах + + + + Quit application + Програмаас Гарах + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + &Клиентийн тухай + + + + Show information about Qt + Клиентийн тухай мэдээллийг харуул + + + + &Options... + &Сонголтууд... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Түрүйвчийг цоожлох... + + + + &Backup Wallet... + &Түрүйвчийг Жоорлох... + + + + &Change Passphrase... + &Нууц Үгийг Солих... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Хүлээн авах хаяг + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Түрүйвчийг цоожлох нууц үгийг солих + + + + Open debugging and diagnostic console + Оношилгоо ба засварын консолыг онгойлго + + + + &Verify message... + + + + + Raven + Биткойн + + + + Wallet + Түрүйвч + + + + &Send + + + + + &Receive + + + + + &Show / Hide + &Харуул / Нуу + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Файл + + + + &Help + &Тусламж + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Алдаа + + + + Warning + + + + + Information + Мэдээллэл + + + + Up to date + Шинэчлэгдсэн + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Гадагшаа гүйлгээ + + + + Incoming transaction + Дотогшоо гүйлгээ + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Түрүйвч <b>цоожтой</b> ба одоогоор цоож <b>онгорхой</b> байна + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Түрүйвч <b>цоожтой</b> ба одоогоор цоож <b>хаалттай</b> байна + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Хэмжээ: + + + + &Label: + &Шошго: + + + + &Message: + Зурвас: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Харуул + + + + Remove the selected entries from the list + Сонгогдсон ѳгѳгдлүүдийг устгах + + + + Remove + Устгах + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + Хаягийг &Хуулбарлах + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Зоос явуулах + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + автоматаар сонгогдсон + + + + Insufficient funds! + Таны дансны үлдэгдэл хүрэлцэхгүй байна! + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Хэмжээ: + + + + Fee: + Тѳлбѳр: + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Нэгэн зэрэг олон хүлээн авагчруу явуулах + + + + Add &Recipient + &Хүлээн авагчийг Нэмэх + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + &Бүгдийг Цэвэрлэ + + + + Balance: + Баланс: + + + + Confirm the send action + Явуулах үйлдлийг баталгаажуулна уу + + + + S&end + Яв&уул + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Дүн: + + + + &Label: + &Шошго: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Копидсон хаягийг буулгах + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Зурвас: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Энэ цонхыг хаагдтал компьютерээ бүү унтраагаарай + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Копидсон хаягийг буулгах + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + &Бүгдийг Цэвэрлэ + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Гүйлгээний дэлгэрэнгүйг энэ бичил цонх харуулж байна + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Сонголтууд: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + Түрүйвчийн сонголтууд: + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Мэдээллэл + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + - Do not shut down the computer until this window disappears. - Энэ цонхыг хаагдтал компьютерээ бүү унтраагаарай + + This is the transaction fee you may pay when fee estimates are not available. + - - - SignVerifyMessageDialog - Alt+A - Alt+A + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Paste address from clipboard - Копидсон хаягийг буулгах + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Alt+P - Alt+P + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Clear &All - &Бүгдийг Цэвэрлэ + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Гүйлгээний дэлгэрэнгүйг энэ бичил цонх харуулж байна + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Сонголтууд: + + Unable to reissue asset: unit must be larger than current unit selection + - Wallet options: - Түрүйвчийн сонголтууд: + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Information - Мэдээллэл + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + - Loading addresses... - Хаягуудыг ачааллаж байна... + + Flag must be 1 or 0 + - Invalid -proxy address: '%s' - Эдгээр прокси хаягнууд буруу байна: '%s' + + How many blocks to check at startup (default: %u, 0 = all) + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + Insufficient funds Таны дансны үлдэгдэл хүрэлцэхгүй байна + Loading block index... Блокийн индексүүдийг ачааллаж байна... - Add a node to connect to and attempt to keep the connection open - Холболт хийхийн тулд мѳн холболтой онгорхой хадгалхын тулд шинэ нод нэм - - + Loading wallet... Түрүйвчийг ачааллаж байна... - Rescanning... - Ахин уншиж байна... + + Cannot downgrade wallet + - Done loading - Ачааллаж дууслаа + + Rescanning... + Ахин уншиж байна... + Error Алдаа diff --git a/src/qt/locale/raven_ms_MY.ts b/src/qt/locale/raven_ms_MY.ts index 651efa2418..56d310e8c5 100644 --- a/src/qt/locale/raven_ms_MY.ts +++ b/src/qt/locale/raven_ms_MY.ts @@ -1,102 +1,124 @@ - - - + AddressBookPage + Right-click to edit address or label Klik-kanan untuk edit alamat ataupun label + Create a new address Cipta alamat baru + &New &Baru + Copy the currently selected address to the system clipboard Salin alamat terpilih ke dalam sistem papan klip + &Copy &Salin + C&lose &Tutup + Delete the currently selected address from the list Padam alamat semasa yang dipilih dari senaraiyang dipilih dari senarai + Export the data in the current tab to a file Alihkan fail data ke dalam tab semasa + &Export &Eksport + &Delete &Padam + Choose the address to send coins to Pilih alamat untuk hantar koin kepada + Choose the address to receive coins with Pilih alamat untuk menerima koin dengan + C&hoose &Pilih + Sending addresses alamat-alamat penghantaran + Receiving addresses alamat-alamat penerimaan + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Ini adalah alamat Raven anda untuk pembayaran. Periksa jumlah dan alamat penerima sebelum membuat penghantaran koin sentiasa. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Ini adalah alamat Raven anda untuk menerima pembayaraan. Anda disyorkan untuk menguna alamat menerima untuk setiap transaksi. + &Copy Address &Salin Aamat + Copy &Label Salin & Label + &Edit &Edit + Export Address List Eskport Senarai Alamat + Comma separated file (*.csv) Fail dibahagi oleh koma(*.csv) + Exporting Failed Mengeksport Gagal + There was an error trying to save the address list to %1. Please try again. Terdapat ralat semasa cubaan menyimpan senarai alamat kepada %1. Sila cuba lagi. @@ -104,14 +126,17 @@ Alihkan fail data ke dalam tab semasa AddressTableModel + Label Label + Address Alamat + (no label) (tiada label) @@ -119,389 +144,8147 @@ Alihkan fail data ke dalam tab semasa AskPassphraseDialog + Passphrase Dialog Dialog frasa laluan + Enter passphrase memasukkan frasa laluan + New passphrase Frasa laluan baru + Repeat new passphrase Ulangi frasa laluan baru + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Memasukkan frasa laluan baru kepada dompet.<br/>Sila mengunakkan frasa laluan yang<b>mengandungi 10 atau lebih aksara rawak</b>,ataupun<b>lapan atau lebih perkataan.</b> + Encrypt wallet Dompet encrypt + This operation needs your wallet passphrase to unlock the wallet. Operasi ini perlukan frasa laluan dompet anda untuk membuka kunci dompet. + Unlock wallet Membuka kunci dompet + This operation needs your wallet passphrase to decrypt the wallet. Operasi ini memerlukan frasa laluan dompet anda untuk menyahsulit dompet. + Decrypt wallet Menyahsulit dompet + Change passphrase Menukar frasa laluan + Enter the old passphrase and new passphrase to the wallet. Memasukkan frasa laluan lama dan frasa laluan baru untuk. + Confirm wallet encryption Mengesahkan enkripsi dompet + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Amaran: Jika anda enkripkan dompet anda dan hilangkan frasa laluan, anda akan <b>ANDA AKAN HILANGKAN SEMUA RAVEN ANDA</b>! + Are you sure you wish to encrypt your wallet? Anda pasti untuk membuat enkripsi dompet anda? + + Wallet encrypted Dompet dienkripsi + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 akan tutup untuk menyelesaikan proses enkripsi. Ingat bahawa enkripsi tidak boleh melidungi sepenuhnya ravens anda daripada dicuri oleh malware yang menjangkiti komputer anda. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. PENTING: Apa-apa sandaran yang anda buat sebelum ini untuk fail dompet anda hendaklah digantikan dengan fail dompet enkripsi yang dijana baru. Untuk sebab-sebab keselamatan , sandaran fail dompet yang belum dibuat enkripsi sebelum ini akan menjadi tidak berguna secepat anda mula guna dompet enkripsi baru. + + + + Wallet encryption failed Enkripsi dompet gagal + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Enkripsi dompet gagal kerana ralat dalaman. Dompet anda tidak dienkripkan. + + The supplied passphrases do not match. Frasa laluan yang dibekalkan tidak sepadan. + Wallet unlock failed Pembukaan kunci dompet gagal + + + The passphrase entered for the wallet decryption was incorrect. Frasa laluan dimasukki untuk dekripsi dompet adalah tidak betul. + Wallet decryption failed Dekripsi dompet gagal + Wallet passphrase was successfully changed. Frasa laluan dompet berjaya ditukar. + + Warning: The Caps Lock key is on! Amaran: Kunci Caps Lock buka! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmask + + Asset Selection + - Banned Until - Diharamkan sehingga + + Quantity: + - - - RavenGUI - Sign &message... - Tandatangan & mesej... + + Bytes: + - Synchronizing with network... - Penyegerakan dengan rangkaian... + + Amount: + - &Overview - &Gambaran Keseluruhan + + Dust: + - Node - Nod + + Fee: + - Show general overview of wallet - Tunjuk gambaran keseluruhan umum dompet + + After Fee: + - &Transactions - &Transaksi + + Change: + - Browse transaction history - Menyemak imbas sejarah transaksi + + (un)select all + - E&xit - &Keluar + + Tree mode + - Quit application - Berhenti aplikasi + + List mode + - &About %1 - &Mengenai%1 + + View assets that you have the ownership asset for + - Show information about %1 - Menunjuk informasi mengenai%1 + + View Administrator Assets + - About &Qt - Mengenai &Qt + + Asset + - Show information about Qt - Menunjuk informasi megenai Qt + + Amount + - &Options... - Pilihan + + Received with label + - Modify configuration options for %1 - Mengubah suai pilihan konfigurasi untuk %1 + + Received with address + - &Encrypt Wallet... - &Enkripsi Dompet + + Date + - &Backup Wallet... - &Dompet Sandaran... + + Confirmations + - &Change Passphrase... - &Menukar frasa-laluan + + Confirmed + - &Sending addresses... - &Menghantar frasa-laluan + + Copy address + - &Receiving addresses... - &Menerima frasa-laluan... + + Copy label + - Open &URI... - Buka &URI... + + + Copy amount + - Reindexing blocks on disk... - Reindexi blok pada cakera... + + Copy transaction ID + - Send coins to a Raven address - Menghantar koin kepada alamat Raven + + Lock unspent + - Backup wallet to another location - Wallet sandaran ke lokasi lain + + Unlock unspent + - - - CoinControlDialog - (no label) - (tiada label) + + Copy quantity + - - - EditAddressDialog - Edit Address - Alamat + + Copy fee + - &Address - Alamat + + Copy after fee + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Copy &Address - &Salin Alamat + + Copy bytes + - Address - Alamat + + Copy dust + - Label - Label + + Copy change + - - - RecentRequestsTableModel - Label - Label + + (%1 locked) + - (no label) - (tiada label) + + yes + - - - SendCoinsDialog - Balance: - Baki + + no + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + (no label) - (tiada label) + + + + + change from %1 (%2) + + + + + (change) + - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel + AssetTableModel - Label - Label + + Name + - (no label) - (tiada label) + + Quantity + - + - TransactionView + AssetsDialog - Comma separated file (*.csv) - Fail dibahagi oleh koma(*.csv) + + + Send Coins + - Label - Label + + Asset Control Features + - Address - Alamat + + Inputs... + - Exporting Failed - Mengeksport Gagal + + automatically selected + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - Export the data in the current tab to a file - -Alihkan fail data ke dalam tab semasa + + Insufficient funds! + - - - raven-core - + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Diharamkan sehingga + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (tiada label) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Alamat + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Alamat + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Tandatangan & mesej... + + + + Synchronizing with network... + Penyegerakan dengan rangkaian... + + + + &Overview + &Gambaran Keseluruhan + + + + Node + Nod + + + + Show general overview of wallet + Tunjuk gambaran keseluruhan umum dompet + + + + &Transactions + &Transaksi + + + + Browse transaction history + Menyemak imbas sejarah transaksi + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Keluar + + + + Quit application + Berhenti aplikasi + + + + &About %1 + &Mengenai%1 + + + + Show information about %1 + Menunjuk informasi mengenai%1 + + + + About &Qt + Mengenai &Qt + + + + Show information about Qt + Menunjuk informasi megenai Qt + + + + &Options... + Pilihan + + + + Modify configuration options for %1 + Mengubah suai pilihan konfigurasi untuk %1 + + + + &Encrypt Wallet... + &Enkripsi Dompet + + + + &Backup Wallet... + &Dompet Sandaran... + + + + &Change Passphrase... + &Menukar frasa-laluan + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Menghantar frasa-laluan + + + + &Receiving addresses... + &Menerima frasa-laluan... + + + + Open &URI... + Buka &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Reindexi blok pada cakera... + + + + Send coins to a Raven address + Menghantar koin kepada alamat Raven + + + + Backup wallet to another location + Wallet sandaran ke lokasi lain + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Salin Alamat + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Alamat + + + + Amount + + + + + Label + Label + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Label + + + + Message + + + + + (no label) + (tiada label) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Baki + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (tiada label) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Label + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (tiada label) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Fail dibahagi oleh koma(*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Label + + + + Address + Alamat + + + + Asset + + + + + ID + + + + + Exporting Failed + Mengeksport Gagal + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + +Alihkan fail data ke dalam tab semasa + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_nb.ts b/src/qt/locale/raven_nb.ts index c7ce1ea410..1495f04d6e 100644 --- a/src/qt/locale/raven_nb.ts +++ b/src/qt/locale/raven_nb.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Høyreklikk for å redigere adressen eller merkelappen + Create a new address - Opprett en ny addresse + Opprett ny addresse + &New &Ny + Copy the currently selected address to the system clipboard - Kopier den valgte adressen til systemets utklippstavle + Kopier adressen til utklippstavlen + &Copy &Kopier + C&lose &Lukk + Delete the currently selected address from the list Slett den valgte adressen fra listen. + Export the data in the current tab to a file Eksporter data fra nåværende fane til fil + &Export &Eksporter + &Delete &Slett + Choose the address to send coins to - Velg adressen å sende mynter til + Velg adressen myntene skal sendes til + Choose the address to receive coins with - Velg adressen til å motta mynter med + Velg adressen som skal motta mynter + C&hoose V&elg + Sending addresses Utsendingsadresser + Receiving addresses Mottaksadresser + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Dette er dine Raven-adresser for sending av betalinger. Sjekk alltid beløpet og mottakeradressen før sending av mynter. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Dette er dine Raven-adresser for å sende betalinger med. Det er anbefalt å bruke en ny mottaksadresse for hver transaksjon. + &Copy Address - &Kopier Adresse + &Kopier adresse + Copy &Label - Kopier &Merkelapp + Kopier &merkelapp + &Edit &Rediger + Export Address List Eksporter adresseliste + Comma separated file (*.csv) Kommaseparert fil (*.csv) + Exporting Failed Eksportering feilet + There was an error trying to save the address list to %1. Please try again. Det oppstod en feil under lagring av adresselisten til %1. Vennligst prøv på nytt. @@ -103,14 +125,17 @@ AddressTableModel + Label Merkelapp + Address Adresse + (no label) (ingen merkelapp) @@ -118,2720 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog - Dialog for Adgangsfrase + Vindu for adgangsfrase + Enter passphrase - Angi adgangsfrase + Angi adgangsfrase: + New passphrase - Ny adgangsfrase + Ny adgangsfrase: + Repeat new passphrase Gjenta ny adgangsfrase + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Oppgi adgangsfrasen til lommeboken.<br/>Vennligst bruk en adgangsfrase med <b>ti eller flere tilfeldige tegn</b>, eller <b>åtte eller flere ord</b>. + Encrypt wallet Krypter lommebok + This operation needs your wallet passphrase to unlock the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å låse den opp. + Unlock wallet Lås opp lommebok + This operation needs your wallet passphrase to decrypt the wallet. Denne operasjonen krever adgangsfrasen til lommeboken for å dekryptere den. + Decrypt wallet Dekrypter lommebok + Change passphrase Endre adgangsfrase + Enter the old passphrase and new passphrase to the wallet. Angi den gamle og en ny adgangsfrase til lommeboken. + Confirm wallet encryption Bekreft kryptering av lommebok + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Advarsel: Hvis du krypterer lommeboken og mister adgangsfrasen, så vil du <b>MISTE ALLE DINE RAVENS</b>! + Are you sure you wish to encrypt your wallet? Er du sikker på at du vil kryptere lommeboken? + + Wallet encrypted Lommebok kryptert + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 vil nå lukkes for å fullføre krypteringsprosessen. Husk at kryptering av lommeboken ikke fullt ut kan beskytte dine ravens fra å bli stjålet om skadevare infiserer datamaskinen din. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. VIKTIG: Tidligere sikkerhetskopier av din lommebokfil bør erstattes med den nylig genererte og krypterte filen, da de blir ugyldiggjort av sikkerhetshensyn så snart du begynner å bruke den nye krypterte lommeboken. + + + + Wallet encryption failed Kryptering av lommebok feilet + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av lommebok feilet på grunn av en intern feil. Din lommebok ble ikke kryptert. + + The supplied passphrases do not match. De angitte adgangsfrasene er ulike. + Wallet unlock failed Opplåsing av lommebok feilet + + + The passphrase entered for the wallet decryption was incorrect. Adgangsfrasen angitt for dekryptering av lommeboken var feil. + Wallet decryption failed Dekryptering av lommebok feilet + Wallet passphrase was successfully changed. Adgangsfrase for lommebok er endret. + + Warning: The Caps Lock key is on! Advarsel: Caps Lock er på! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Nettmaske + + Asset Selection + Velg Aktivum - Banned Until - Utestengt til + + Quantity: + Antall: - - - RavenGUI - Sign &message... - Signer &melding... + + Bytes: + Bytes: - Synchronizing with network... - Synkroniserer med nettverk... + + Amount: + Mengde: - &Overview - &Oversikt + + Dust: + Støv: - Node - Node + + Fee: + Avgift: - Show general overview of wallet - Vis generell oversikt over lommeboken + + After Fee: + Etter støv: - &Transactions - &Transaksjoner + + Change: + Veksel: - Browse transaction history - Vis transaksjonshistorikk + + (un)select all + (av)velg alle - E&xit - &Avslutt + + Tree mode + Tre modus - Quit application - Avslutt applikasjonen + + List mode + Liste modus - &About %1 - &Om %1 + + View assets that you have the ownership asset for + Vis aktivum du eier - Show information about %1 - Vis informasjon om %1 + + View Administrator Assets + Vis administrator aktivum - About &Qt - Om &Qt + + Asset + Aktivum - Show information about Qt - Vis informasjon om Qt + + Amount + Antall - &Options... - &Innstillinger... + + Received with label + Mottatt med merke - Modify configuration options for %1 - Endre innstilinger for %1 + + Received with address + Mottatt med adresse - &Encrypt Wallet... - &Krypter Lommebok... + + Date + Dato - &Backup Wallet... - Lag &Sikkerhetskopi av Lommebok... + + Confirmations + Bekreftelser - &Change Passphrase... - &Endre Adgangsfrase... + + Confirmed + Bekreftet - &Sending addresses... - &Utsendingsadresser... + + Copy address + Kopier adresse - &Receiving addresses... - &Mottaksadresser... + + Copy label + Kopier merke - Open &URI... - Åpne &URI... + + + Copy amount + Kopier antall - Click to disable network activity. - Klikk for å deaktivere nettverksaktivitet + + Copy transaction ID + Kopier transaksjons-ID - Network activity disabled. - Nettverksaktivitet deaktivert + + Lock unspent + Lås ubrukt - Click to enable network activity again. - Klikk for å aktivere nettverksaktivitet igjen. + + Unlock unspent + Lås opp ubrukt - Reindexing blocks on disk... - Reindekserer blokker på harddisk... + + Copy quantity + Kopier antall - Send coins to a Raven address - Send til en Raven-adresse + + Copy fee + Kopier avgift - Backup wallet to another location - Sikkerhetskopier lommebok til annet sted + + Copy after fee + Kopier etter avgift - Change the passphrase used for wallet encryption - Endre adgangsfrasen brukt for kryptering av lommebok + + Copy bytes + Kopier bytes - &Debug window - &Feilsøkingsvindu + + Copy dust + Kopier støv - Open debugging and diagnostic console - Åpne konsoll for feilsøk og diagnostikk + + Copy change + Kopier veksel - &Verify message... - &Verifiser melding... + + (%1 locked) + (%1 låst) - Raven - Raven + + yes + Ja - Wallet - Lommebok + + no + Nei - &Send - &Send + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Denne teksten blir rød hvis noen av mottakerene får en mengde som er mindre enn støv-grensen. - &Receive - &Motta + + Can vary +/- %1 satoshi(s) per input. + Kan variere +/- %1 satoshi(s) per inngang. - &Show / Hide - &Vis / Skjul + + + (no label) + (ingen merke) - Show or hide the main Window - Vis eller skjul hovedvinduet + + change from %1 (%2) + veksel fra %1 (%2) - Encrypt the private keys that belong to your wallet - Krypter de private nøklene som tilhører lommeboken din + + (change) + (veksel) + + + AssetTableModel - Sign messages with your Raven addresses to prove you own them - Signer en melding med Raven-adressene dine for å bevise at du eier dem + + Name + Navn - Verify messages to ensure they were signed with specified Raven addresses - Bekreft meldinger for å være sikker på at de ble signert av en angitt Raven-adresse + + Quantity + Antall + + + AssetsDialog - &File - &Fil + + + Send Coins + Send mynter - &Settings - &Innstillinger + + Asset Control Features + Aktivum detaljkontroll - &Help - &Hjelp + + Inputs... + Innganger.. - Tabs toolbar - Verktøylinje for faner + + automatically selected + automatisk valgt - Request payments (generates QR codes and raven: URIs) - Forespør betalinger (genererer QR-koder og raven: URIer) + + Insufficient funds! + For lite mynter - Show the list of used sending addresses and labels - Vis listen av brukte utsendingsadresser og merkelapper + + Quantity: + Antall: - Show the list of used receiving addresses and labels - Vis listen over bruke mottaksadresser og merkelapper + + Bytes: + Bytes: - Open a raven: URI or payment request - Åpne en Raven: URI eller betalingsetterspørring + + Amount: + Antall: - &Command-line options - &Kommandolinjevalg - - - %n active connection(s) to Raven network - %n aktiv forbindelse til Raven-nettverket%n aktive forbindelser til Raven-nettverket - - - Processed %n block(s) of transaction history. - Lastet %n blokk med transaksjonshistorikk.Lastet %n blokker med transaksjonshistorikk. + + Dust: + Støv: - %1 behind - %1 bak + + Fee: + Gebyr: - Last received block was generated %1 ago. - Siste mottatte blokk ble generert for %1 siden. + + After Fee: + Etter gebyr: - Transactions after this will not yet be visible. - Transaksjoner etter dette vil ikke være synlige enda. + + Change: + Veksel: - Error - Feil + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nygenerert adresse. - Warning - Advarsel + + Custom change address + Egendefinert adresse for veksel - Information - Informasjon + + Transaction Fee: + Transaksjonsgebyr: - Up to date - Oppdatert + + Choose... + Velg... - %1 client - %1 klient + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Bruk av standardgebyr kan ende med at transaksjonen tar flere timer, dager eller aldri blir verifisert. Vurder å velge avgift maneult eller å vente til du har verifisert hele kjeden. - Connecting to peers... - Kobler til likemannsnettverket... + + Warning: Fee estimation is currently not possible. + Advarsel: Beregning av gebyr er ikke mulig - Catching up... - Laster ned... + + collapse fee-settings + Legg ned gebyrinnstillinger - Date: %1 - - Dato: %1 - + + Hide + Skjul - Amount: %1 - - Beløp: %1: - + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Hvis den egendefinerte avgiften er satt til 1000 satoshis og transaksjonen bare er 250 bytes, da vil "per kilobyte" bare betale 250 satoshis i gebyr, mens "minstebeløp" betaler 1000 satoshis. For transaksjoner større enn en kilobyte vil begge betale for antall kilobyte. - Type: %1 - - Type: %1 - + + per kilobyte + per kilobyte - Label: %1 - - Merkelapp: %1 - + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Raven-transaksjoner enn nettverket kan behandle. - Address: %1 - - Adresse: %1 - + + (read the tooltip) + (les verktøytipset) - Sent transaction - Sendt transaksjon + + Recommended: + Anbefalt: - Incoming transaction - Innkommende transaksjon + + Custom: + Egendefinert: - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Lommeboken er <b>kryptert</b> og for tiden <b>låst opp</b> + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smartgebyr ikke innført ennå. Dette tar vanligvis noen blokker...) - Wallet is <b>encrypted</b> and currently <b>locked</b> - Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> + + Confirmation time target: + Tid for bekreftelse: - A fatal error occurred. Raven can no longer continue safely and will quit. - En fatal feil har inntruffet. Raven kan ikke lenger trygt fortsette, og må derfor avslutte. + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - - - CoinControlDialog - Coin Selection - Mynt Valg + + Request Replace-By-Fee + - Quantity: - Mengde: + + Confirm the send action + Bekreft sending - Bytes: + + S&end + S&end + + + + Clear all fields of the form. + Fjern alle felter fra skjemaet. + + + + Clear &All + Fjern &Alt + + + + Transfer to multiple recipients at once + Send til flere enn en mottaker + + + + Add &Recipient + Legg til &Mottaker + + + + Balance: + Saldo: + + + + Copy quantity + Kopier antall + + + + Copy amount + Kopier antall + + + + Copy fee + Kopier gebyr + + + + Copy after fee + Kopier etter gebyr + + + + Copy bytes + Kopier bytes + + + + Copy dust + Kopier støv + + + + Copy change + Kopier veksel + + + + %1 (%2 blocks) + %1 (%2 blokker) + + + + + + + %1 to %2 + %1 til %2 + + + + Are you sure you want to send? + Er du sikker på du vil sende? + + + + added as transaction fee + lagt til som transaksjonsgebyr + + + + Confirm send assets + Bekreft sending + + + + The recipient address is not valid. Please recheck. + Mottakeradressen er ugyldig. Vennligst sjekk. + + + + The amount to pay must be larger than 0. + Antall må være større enn 0 + + + + The amount exceeds your balance. + Antall er større enn saldo + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + Opprettelse av transaksjonen feilet. + + + + The transaction was rejected with the following reason: %1 + Transaksjonen ble avvist: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + Betalingsforespørsel utgått. + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Advarsel: Ugyldig Ravenadresse + + + + Warning: Unknown change address + Advarsel: Ukjent vekseladresse + + + + Confirm custom change address + Bekreft egendefinert vekseladresse + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Adressen du valgte for veksel, er ikke en del av denne lommeboken. Litt eller alt av mynter fra denne lommeboken kan bli sendt til denne adressen. Er du sikker? + + + + (no label) + (ingen merkelapp) + + + + AssignQualifier + + + Frame + Ramme + + + + Select Type: + Velg type: + + + + Select Qualifier: + + + + + Address: + Adresse + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + Egendefinert vekseladresse + + + + Check + Sjekk + + + + Clear + Fjern + + + + Submit + Send inn + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + Kan ikke gjennomføre handlingen akkurat nå + + + + BanTableModel + + + IP/Netmask + IP/Nettmaske + + + + Banned Until + Utestengt til + + + + CoinControlDialog + + + Coin Selection + Mynt Valg + + + + Quantity: + Mengde: + + + + Bytes: Bytes: + Amount: Beløp: + Fee: Avgift: + Dust: Støv: + After Fee: Totalt: + Change: Veksel: + (un)select all velg (fjern) alle + Tree mode Trevisning + List mode Listevisning + Amount Beløp + Received with label Mottatt med merkelapp + Received with address Mottatt med adresse + Date Dato + Confirmations Bekreftelser + Confirmed Bekreftet + Copy address Kopier adresse + + Copy label + Kopier &merkelapp + + + + Copy amount Kopier beløp + Copy transaction ID Kopier transaksjons-ID + + Lock unspent + Lås ubrukt + + + + Unlock unspent + Lås opp ubrukt + + + Copy quantity Kopier mengde + Copy fee Kopier gebyr + + Copy after fee + Kopier etter gebyr + + + + Copy bytes + Kopier bytes + + + + Copy dust + Kopier støv + + + Copy change Kopier veksel + (%1 locked) (%1 låst) + yes ja + no nei + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Denne teksten blir rød hvis noen av mottakerene får en mengde som er mindre enn støv-grensen. + + + Can vary +/- %1 satoshi(s) per input. Kan variere +/- %1 satoshi(er) per input. + + (no label) (ingen merkelapp) + change from %1 (%2) veksel fra %1 (%2) + (change) (veksel) - EditAddressDialog + CreateAssetDialog - Edit Address - Rediger adresse + + Coin Control Features + Myntkontroll Funksjoner - &Label - &Merkelapp + + Inputs... + Inndata... - The label associated with this address list entry - Merkelappen koblet til denne adresseliste oppføringen + + automatically selected + automatisk valgt - The address associated with this address list entry. This can only be modified for sending addresses. - Adressen til denne oppføringen i adresseboken. Denne kan kun endres for utsendingsadresser. + + Insufficient funds! + Utilstrekkelige midler! - &Address - &Adresse + + + Quantity: + Antall: - New receiving address - Ny mottaksadresse + + Bytes: + Bytes: - New sending address - Ny utsendingsadresse + + Amount: + Antall: - Edit receiving address - Rediger mottaksadresse + + Dust: + Støv: - Edit sending address - Rediger utsendingsadresse + + Fee: + Gebyr: - Could not unlock wallet. - Kunne ikke låse opp lommebok. + + After Fee: + Etter Gebyr: - New key generation failed. - Generering av ny nøkkel feilet. + + Change: + Veksel: - - - FreespaceChecker - A new data directory will be created. - En ny datamappe vil bli laget. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nygenerert adresse. - name - navn + + Custom change address + Egendefinert vekseladresse - Directory already exists. Add %1 if you intend to create a new directory here. - Mappe finnes allerede. Legg til %1 hvis du vil lage en ny mappe her. + + Name: + Navn - Path already exists, and is not a directory. - Snarvei finnes allerede, og er ikke en mappe. + + A-Z 0-9 and . or _ as the second character + A-Z 0-9 og . eller _ som andre tegn - Cannot create data directory here. - Kan ikke lage datamappe her. + + The name of the asset you would like to create + Navnet på aktivumet du ønsker å lage - - - HelpMessageDialog - version - versjon + + Check Availabilty + Sjekk tilgjengelighet - (%1-bit) - (%1-bit) + + Address: + Adresse: - About %1 - Om %1 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + RVN adressen som skal eie aktivumet. (Du må eie denne adressen). La stå tom for å lage ny adresse. - Command-line options - Kommandolinjevalg + + Verifier String: + - Usage: - Bruk: + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - command-line options - kommandolinjevalg + + Warning: + Advarsel: - UI Options: - Grensesnittvalg: + + The number of assets that will be created + Antall aktivum som blir laget - Choose data directory on startup (default: %u) - Velg datakatalog for oppstart (default: %u) + + Units: + Desimaler - Set language, for example "de_DE" (default: system locale) - Sett språk, for eksempel "nb_NO" (default: system-«locale») + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + Antall desimaler, (F.eks: 8 = 1.00000000, 2 = 1.00) - Start minimized - Begynn minimert + + e.g. 1 + f.eks. 1 - Set SSL root certificates for payment request (default: -system-) - Sett SSL-rootsertifikat for betalingshenvendelser (default: -system-) + + If the owner of this asset will be able to issue more assets in the future + Om eieren av dette aktivum skal ha mulighet til å lage flere - Show splash screen on startup (default: %u) - Vis velkomstbilde ved oppstart (default: %u) + + Reissuable + - Reset all settings changed in the GUI - Nullstill alle innstillinger endret i det grafiske brukergrensesnittet + + Does this asset have an ipfs hash to go with it + - - - Intro - Welcome - Velkommen + + Add IPFS/Txid Hash + Legg til IPFS/Txid Hash - Welcome to %1. - Velkommen til %1. + + The ipfs/txid hash that contains information about the asset + - Use the default data directory - Bruk standard datamappe + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Use a custom data directory: - Bruk en egendefinert datamappe: + + ERROR TEXT + ERRROR TEKST - Error: Specified data directory "%1" cannot be created. - Feil: Den oppgitte datamappen "%1" kan ikke opprettes. + + Transaction Fee: + Transaksjonsgebyr: - Error - Feil + + Choose... + Velg... - - %n GB of free space available - %n GB med ledig lagringsplass%n GB med ledig lagringsplass + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Bruk av standardgebyr kan ende med at transaksjonen tar flere timer, dager eller aldri blir verifisert. Vurder å velge avgift maneult eller å vente til du har verifisert hele kjeden. - - (of %n GB needed) - (av %n GB som trengs)(av %n GB som trengs) + + + Warning: Fee estimation is currently not possible. + Advarsel: Beregning av gebyr er ikke mulig - - - ModalOverlay - Form - Skjema + + collapse fee-settings + Legg ned gebyrinnstillinger - Unknown... - Ukjent... + + Hide + Skjul - Last block time - Tidspunkt for siste blokk + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Hvis den egendefinerte avgiften er satt til 1000 satoshis og transaksjonen bare er 250 bytes, da vil "per kilobyte" bare betale 250 satoshis i gebyr, mens "minstebeløp" betaler 1000 satoshis. For transaksjoner større enn en kilobyte vil begge betale for antall kilobyte. - Progress - Fremgang + + per kilobyte + per kilobyte - Progress increase per hour - Fremgangen stiger hver time + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Raven-transaksjoner enn nettverket kan behandle. - calculating... - kalkulerer... + + (read the tooltip) + (les verktøytipset) - Estimated time left until synced - Estimert gjenstående tid før ferdig synkronisert + + Recommended: + Anbefalt: - Hide - Skjul + + C&ustom: + Egendefinert: - - - OpenURIDialog - Open URI - Åpne URI + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smartgebyr ikke innført ennå. Dette tar vanligvis noen blokker...) - Open payment request from URI or file - Åpne betalingsetterspørring fra URI eller fil + + Confirmation time target: + Tid for bekreftelse: - URI: - URI: + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Select payment request file - Velg fil for betalingsetterspørring + + Request Replace-By-Fee + - - - OptionsDialog - Options - Innstillinger + + Create Asset + Lag aktivum - &Main - &Hoved + + Clear + Fjern - Size of &database cache - Størrelse på &database hurtigbuffer + + Balance: + Saldo: - MB - MB + + 123.456 RVN + 123.456 RVN - Number of script &verification threads - Antall script &verifikasjonstråder + + Copy quantity + Kopier antall - Accept connections from outside - Tillat tilkoblinger fra utsiden + + Copy amount + Kopier antall - Allow incoming connections - Tillatt innkommende tilkoblinger + + Copy fee + Kopier gebyr - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-adressen til proxyen (f.eks. IPv4: 127.0.0.1 / IPv6: ::1) + + Copy after fee + Kopier etter gebyr - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimer i stedet for å avslutte applikasjonen når vinduet lukkes. Når dette er valgt, vil applikasjonen avsluttes kun etter at Avslutte er valgt i menyen. + + Copy bytes + Kopier bytes - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Tredjepart URLer (f. eks. en blokkutforsker) som dukker opp i transaksjonsfanen som kontekst meny elementer. %s i URLen er erstattet med transaksjonen sin hash. Flere URLer er separert av en vertikal linje |. + + Copy dust + Kopier støv - Third party transaction URLs - Tredjepart transaksjon URLer + + Copy change + Kopier veksel - Active command-line options that override above options: - Aktive kommandolinjevalg som overstyrer valgene ovenfor: + + %1 (%2 blocks) + %1 (%2 blokker) - Reset all client options to default. - Tilbakestill alle klient valg til standard + + Main Asset + Hovedaktivum - &Reset Options - &Tilbakestill Instillinger + + Sub Asset + Underaktivum - &Network - &Nettverk + + Unique Asset + Unikt aktivum - (0 = auto, <0 = leave that many cores free) - (0 = automatisk, <0 = la så mange kjerner være ledig) + + Messaging Channel Asset + Meldingsaktivum - W&allet - L&ommebok + + Qualifier Asset + - Expert - Ekspert + + Sub Qualifier Asset + - Enable coin &control features - Aktiver &myntkontroll funksjoner + + Restricted Asset + Begrenset aktivum - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Hvis du sperrer for bruk av ubekreftet veksel, kan ikke vekselen fra transaksjonen bli brukt før transaksjonen har minimum en bekreftelse. Dette påvirker også hvordan balansen din blir beregnet. + + Asset Type + Type aktivum - &Spend unconfirmed change - &Bruk ubekreftet veksel + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + IPFS/Txid Hash må starte med 'Qm' og være 46 tegn (IPFS) eller 64 hex tegn (Txid hash). - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Åpne automatisk Raven klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + IPFS/Txid Hash må starte med 'Qm' og være 46 tegn (IPFS) eller 64 hex tegn (Txid hash). - Map port using &UPnP - Sett opp port ved hjelp av &UPnP + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + IPFS/Txid hash ikke gyldig. Vennligst bruk en gyldig verdi. - Connect to the Raven network through a SOCKS5 proxy. - Koble til Raven-nettverket gjennom en SOCKS5 proxy. + + + + Warning: Invalid Raven address + Advarsel: Ugyldig Ravenadresse - &Connect through SOCKS5 proxy (default proxy): - &Koble til gjennom SOCKS5 proxy (standardvalg proxy): + + Warning: Restricted Assets Reissuance requires an address + - Proxy &IP: - Proxy &IP: + + Valid Asset + Gyldig aktivum - &Port: - &Port: + + Invalid: Asset name already in use + Ugyldig: Aktivumnavn er allerede brukt - Port of the proxy (e.g. 9050) - Proxyens port (f.eks. 9050) + + Error: Asset Database not in sync + Feil: Aktivumdatabase ikke synkronisert - Used for reaching peers via: - Brukt for å nå noder via: + + + %1 to %2 + %1 til %2 - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Viser om angitt SOCKS5 mellomtjener blir brukt for å nå noder via denne nettverkstypen. + + Are you sure you want to send? + Er du sikker på du vil sende? - IPv4 - IPv4 + + added as transaction fee + lagt til som transaksjonsgebyr - IPv6 - IPv6 + + Total Amount %1 + Totalbeløp: %1: - Tor - Tor + + or + eller - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Koble til Raven-nettverket gjennom en separat SOCKS5 mellomtjener for Tor skjulte tjenester. + + Confirm send assets + Bekreft sending - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Bruk separat SOCKS5 mellomtjener for å nå noder via Tor skjulte tjenester: + + Invalid: + Ugyldig: - &Window - &Vindu + + Copy + &Kopier - &Hide the icon from the system tray. - &Skjul ikonet fra oppgavelinjen. + + Transaction ID Copied + Transaksjons-ID kopiert - Hide tray icon - Skjul søppel ikon + + Asset transaction sent to network: + Aktivumtransasjon sendt til nettverk: + + + + Estimated to begin confirmation within %n block(s). + - Show only a tray icon after minimizing the window. - Vis kun ikon i systemkurv etter minimering av vinduet. + + Warning: Unknown change address + Advarsel: Ukjent vekseladresse - &Minimize to the tray instead of the taskbar - &Minimer til systemkurv istedenfor oppgavelinjen + + Confirm custom change address + Bekreft egendefinert vekseladresse - M&inimize on close - M&inimer ved lukking + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Adressen du valgte for veksel, er ikke en del av denne lommeboken. Litt eller alt av mynter fra denne lommeboken kan bli sendt til denne adressen. Er du sikker? - &Display - &Visning + + (no label) + (ingen merkelapp) - User Interface &language: - &Språk for brukergrensesnitt + + Pay only the required fee of %1 + Betal kun nødvendig gebyr %1 + + + EditAddressDialog - &Unit to show amounts in: - &Enhet for visning av beløper: + + Edit Address + Rediger adresse - Choose the default subdivision unit to show in the interface and when sending coins. - Velg standard delt enhet for visning i grensesnittet og for sending av ravens. + + &Label + &Merkelapp - Whether to show coin control features or not. - Skal myntkontroll funksjoner vises eller ikke. + + The label associated with this address list entry + Merkelappen koblet til denne adresseliste oppføringen - &OK - &OK + + The address associated with this address list entry. This can only be modified for sending addresses. + Adressen til denne oppføringen i adresseboken. Denne kan kun endres for utsendingsadresser. - &Cancel - &Avbryt + + &Address + &Adresse - default - standardverdi + + New receiving address + Ny mottaksadresse - none - ingen + + New sending address + Ny utsendingsadresse - Confirm options reset - Bekreft tilbakestilling av innstillinger + + Edit receiving address + Rediger mottaksadresse - Client restart required to activate changes. - Omstart av klienten er nødvendig for å aktivere endringene. + + Edit sending address + Rediger utsendingsadresse - Client will be shut down. Do you want to proceed? - Klienten vil bli lukket. Ønsker du å gå videre? + + The entered address "%1" is not a valid Raven address. + Adressen er ugyldig. Vennligst sjekk. - This change would require a client restart. - Denne endringen krever omstart av klienten. + + The entered address "%1" is already in the address book. + Adressen %1 er i adresseboken fra før. - The supplied proxy address is invalid. - Angitt proxyadresse er ugyldig. + + Could not unlock wallet. + Kunne ikke låse opp lommebok. + + + + New key generation failed. + Generering av ny nøkkel feilet. - OverviewPage + FreespaceChecker - Form - Skjema + + A new data directory will be created. + En ny datamappe vil bli laget. - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Raven-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda. + + name + navn - Watch-only: - Kun observerbar: + + Directory already exists. Add %1 if you intend to create a new directory here. + Mappe finnes allerede. Legg til %1 hvis du vil lage en ny mappe her. - Available: - Tilgjengelig: + + Path already exists, and is not a directory. + Snarvei finnes allerede, og er ikke en mappe. - Your current spendable balance - Din nåværende saldo + + Cannot create data directory here. + Kan ikke lage datamappe her. + + + FreezeAddress - Pending: - Under behandling: + + Frame + Ramme - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totalt antall ubekreftede transaksjoner som ikke teller med i saldo + + Restricted Asset: + Begrenset aktivum - Immature: - Umoden: + + Address: + Adresse: - Mined balance that has not yet matured - Minet saldo har ikke modnet enda + + Custom Change Address + Egendefinert vekseladresse - Balances - Saldoer + + IPFS / Hash: + IPFS / Hash: - Total: - Totalt: + + Single Address Options + Alternativer for enkeltadresser - Your current total balance - Din nåværende saldo + + Global Options + Globale alternativer - Your current balance in watch-only addresses - Din nåværende balanse i kun observerbare adresser + + Free&ze trading on this address + Lås handling med denne adressen - Spendable: - Kan brukes: + + Unfreeze tradin&g on this address + Lås opp handling med denne adressen - Recent transactions - Nylige transaksjoner + + Freeze all &trading for the selected restricted asset + - Unconfirmed transactions to watch-only addresses - Ubekreftede transaksjoner til kun observerbare adresser + + &Unfreeze all trading for the selected restricted asset + - Mined balance in watch-only addresses that has not yet matured - Utvunnet balanse i kun observerbare adresser som ennå ikke har modnet + + Check + Sjekk - Current total balance in watch-only addresses - Nåværende totale balanse i kun observerbare adresser + + Clear + Fjern - - - PaymentServer - - - PeerTableModel - User Agent - Brukeragent + + Submit + Send inn - Node/Service - Node/Tjeneste + + Data has been validated, You can now submit the restriction transaction + Data er kontrollert. Du kan sende begrensningstransaksjonen. - - - QObject - Amount - Beløp + + Must have a restricted asset selected + - Enter a Raven address (e.g. %1) - Oppgi en Raven-adresse (f.eks. %1) + + Address is already frozen + Adressen er allerede låst - %1 d - %1 d + + Address is not frozen + Adressen er ikke låst - %1 h - %1 t + + Restricted asset is already frozen globally + Begrenset aktivum er allerede låst globalt - %1 m - %1 m + + Restricted asset is not frozen globally + Begrenset aktivum er ikke låst globalt - %1 s - %1 s + + Unable to preform action at this time + Kan ikke gjennomføre handlingen akkurat nå + + + GUIUtil::SyncWarningMessage - None - Ingen + + Warning: transaction while syncing wallet! + Advarsel: transaksjon mens synkroninsering pågår! - N/A - - + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - %1 ms - %1 ms + + version + versjon - - %n second(s) - %n sekund%n sekunder + + + + (%1-bit) + (%1-bit) - - %n minute(s) - %n minutt%n minutter + + + About %1 + Om %1 - - %n hour(s) - %n time%n timer + + + Command-line options + Kommandolinjevalg - - %n day(s) - %n dag%n dager + + + Usage: + Bruk: - - %n week(s) - %n uke%n uker + + + command-line options + kommandolinjevalg - %1 and %2 - %1 og %2 + + UI Options: + Grensesnittvalg: - - %n year(s) - %n år%n år + + + Choose data directory on startup (default: %u) + Velg datakatalog for oppstart (default: %u) - - - QObject::QObject - Error: %1 - Feil: %1 + + Set language, for example "de_DE" (default: system locale) + Sett språk, for eksempel "nb_NO" (default: system-«locale») - - - QRImageWidget - &Save Image... - &Lagre bilde... + + Start minimized + Begynn minimert - &Copy Image - &Kopier bilde + + Set SSL root certificates for payment request (default: -system-) + Sett SSL-rootsertifikat for betalingshenvendelser (default: -system-) - Save QR Code - Lagre QR-kode + + Show splash screen on startup (default: %u) + Vis velkomstbilde ved oppstart (default: %u) - PNG Image (*.png) - PNG-bilde (*.png) + + Reset all settings changed in the GUI + Nullstill alle innstillinger endret i det grafiske brukergrensesnittet - RPCConsole + Intro - N/A - - + + Welcome + Velkommen - Client version - Klientversjon + + Welcome to %1. + Velkommen til %1. - &Information - &Informasjon + + As this is the first time the program is launched, you can choose where %1 will store its data. + - Debug window - Feilsøkingsvindu + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + - General - Generelt + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + - Using BerkeleyDB version - Bruker BerkeleyDB versjon + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + - Startup time - Oppstartstidspunkt + + Use the default data directory + Bruk standard datamappe - Network - Nettverk + + Use a custom data directory: + Bruk en egendefinert datamappe: - Name - Navn + + Raven + Raven - Number of connections - Antall tilkoblinger + + At least %1 GB of data will be stored in this directory, and it will grow over time. + - Block chain - Blokkjeden + + Approximately %1 GB of data will be stored in this directory. + - Current number of blocks - Nåværende antall blokker + + %1 will download and store a copy of the Raven block chain. + - Memory Pool - Minnepool + + The wallet will also be stored in this directory. + Lommeboken blir lagret i denne mappen. - Current number of transactions - Nåværende antall transaksjoner + + Error: Specified data directory "%1" cannot be created. + Feil: Den oppgitte datamappen "%1" kan ikke opprettes. - Memory usage - Minnebruk + + Error + Feil - - Received - Mottatt + + + %n GB of free space available + %n GB med ledig lagringsplass%n GB med ledig lagringsplass - - Sent - Sendt + + + (of %n GB needed) + (av %n GB som trengs)(av %n GB som trengs) + + + MnemonicDialog - &Peers - &Noder + + HD Wallet Setup + Oppsett av HD lommebok + + + MnemonicDialog1 - Banned peers - Utestengte noder + + HD Wallet Setup + Oppsett av HD lommebok - Select a peer to view detailed information. - Velg en node for å vise detaljert informasjon. + + Select the type of wallet to create. + Velg lommeboktype - Whitelisted - Hvitelistet + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + - Direction - Retning + + Please choose what you would like to do: + - Version - Versjon + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + - Starting Block - Startblokk + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + - Synced Headers - Synkroniserte Blokkhoder + + Accept + Aksepter - Synced Blocks - Synkroniserte Blokker + + You are choosing to create a new wallet using new seed words. + - User Agent - Brukeragent + + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 - Decrease font size - Forminsk font størrelsen + + New HD Wallet Creation + Oppsett av ny HD lommebok - Increase font size - Forstørr font størrelse + + BIP39 Compliant Seed Words: + - Services - Tjenester + + Generate New Seed Words + - Ban Score - Ban Poengsum + + These 12 generated seed words will be used. + - Connection Time - Tilkoblingstid + + Passphrase: + - Last Send - Siste Sendte + + Enter a Passphrase to protect your seed words (optional). + - Last Receive - Siste Mottatte + + You may enter an optional Passphrase to protect your seed words. + - Ping Time - Ping-tid + + Warning: + Advarsel: - The duration of a currently outstanding ping. - Tidsforløp for utestående ping. + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Ping Wait - Ping Tid + + Accept + Aksepter - Time Offset - Tidsforskyvning + + Go Back + Tilbake - Last block time - Tidspunkt for siste blokk + + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 - &Open - &Åpne + + Previous HD Wallet Re-creation + - &Console - &Konsoll + + BIP39 Compliant Seed Words: + - &Network Traffic - &Nettverkstrafikk + + Enter the 12 seed words from your previous wallet here. + - &Clear - &Fjern + + Passphrase: + - Totals - Totalt + + You will need the Passphrase if your previous wallet used one. + - In: - Inn: + + Enter the Passphrase from your previous wallet if it used one. + - Out: - Ut: + + Warning: + Advarsel: - Debug log file - Loggfil for feilsøk + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + - Clear console - Tøm konsoll + + Accept + Aksepter - 1 &hour - 1 &time + + Go Back + Tilbake - 1 &day - 1 &dag + + Words are not valid, please check the words and try again + + + + ModalOverlay - 1 &week - 1 &uke + + Form + Skjema - 1 &year - 1 &år + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Bruk opp og ned pil for å navigere historikken, og <b>Ctrl-L</b> for å tømme skjermen. + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + - Type <b>help</b> for an overview of available commands. - Skriv <b>help</b> for en oversikt over kommandoer. + + Number of blocks left + Antall blokker igjen - %1 B - %1 B + + + + Unknown... + Ukjent... - %1 KB - %1 KB + + Last block time + Tidspunkt for siste blokk - %1 MB - %1 MB + + Progress + Fremgang - %1 GB - %1 GB + + Progress increase per hour + Fremgangen stiger hver time - (node id: %1) - (node id: %1) + + + calculating... + kalkulerer... - via %1 - via %1 + + Estimated time left until synced + Estimert gjenstående tid før ferdig synkronisert - never - aldri + + Hide + Skjul - Inbound - Innkommende - - - Outbound - Utgående - - - Yes - Ja + + Unknown. Syncing Headers (%1)... + Ukjent. Synkroniserer blokkhoder (%1)... + + + MyRestrictedAssetsTableModel - No - Nei + + Date + Dato - Unknown - Ukjent + + Type + Type - - - ReceiveCoinsDialog - &Amount: - &Beløp: + + Address + Adresse - &Label: - &Merkelapp: + + Asset Name + Aktivumnavn - &Message: - &Melding: + + Tagged + Merket - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Gjenbruk en av de tidligere brukte mottaksadressene. Gjenbruk av adresser har sikkerhets- og personvernsutfordringer. Ikke bruk dette med unntak for å gjennopprette en betalingsetterspørring som ble gjort tidligere. + + Untagged + Ikke merket - R&euse an existing receiving address (not recommended) - Gj&enbruk en eksisterende mottaksadresse (ikke anbefalt) + + Frozen + Fryst - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Raven-nettverket. + + Unfrozen + Ikke fryst - An optional label to associate with the new receiving address. - En valgfri merkelapp å tilknytte den nye mottakeradressen. + + Other + Annet - Use this form to request payments. All fields are <b>optional</b>. - Bruk dette skjemaet til betalingsforespørsler. Alle felt er <b>valgfrie</b>. + + watch-only + Kun observerbar: - An optional amount to request. Leave this empty or zero to not request a specific amount. - Et valgfritt beløp å etterspørre. La stå tomt eller null for ikke å etterspørre et spesifikt beløp. + + (no label) + (ingen merkelapp) - Clear all fields of the form. - Fjern alle felter fra skjemaet. + + Date and time that the transaction was received. + - Clear - Fjern + + Type of transaction. + - Requested payments history - Etterspurt betalingshistorikk + + User-defined intent/purpose of the transaction. + - &Request payment - &Etterspør betaling + + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog - Show the selected request (does the same as double clicking an entry) - Vis den valgte etterspørringen (gjør det samme som å dobbelklikke på en oppføring) + + Open URI + Åpne URI - Show - Vis + + Open payment request from URI or file + Åpne betalingsetterspørring fra URI eller fil - Remove the selected entries from the list - Fjern de valgte oppføringene fra listen + + URI: + URI: - Remove - Fjern + + Select payment request file + Velg fil for betalingsetterspørring - Copy amount - Kopier beløp + + Select payment request file to open + - ReceiveRequestDialog + OptionsDialog - QR Code - QR-kode + + Options + Innstillinger - Copy &URI - Kopier &URI + + &Main + &Hoved - Copy &Address - Kopier &Adresse + + Automatically start %1 after logging in to the system. + - &Save Image... - &Lagre Bilde... + + &Start %1 on system login + - Address - Adresse + + Size of &database cache + Størrelse på &database hurtigbuffer - Label - Merkelapp + + MB + MB - Message - Melding + + Number of script &verification threads + Antall script &verifikasjonstråder - - - RecentRequestsTableModel - Date - Dato + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-adressen til proxyen (f.eks. IPv4: 127.0.0.1 / IPv6: ::1) - Label - Merkelapp + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + - Message - Melding + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + - (no label) - (ingen merkelapp) + + Hide the icon from the system tray. + - - - SendCoinsDialog - Send Coins - Send Ravens + + &Hide tray icon + - Coin Control Features - Myntkontroll Funksjoner + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimer i stedet for å avslutte applikasjonen når vinduet lukkes. Når dette er valgt, vil applikasjonen avsluttes kun etter at Avslutte er valgt i menyen. - Inputs... - Inndata... + + &Currency Unit: + - automatically selected - automatisk valgte + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + - Insufficient funds! - Utilstrekkelige midler! + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Tredjepart URLer (f. eks. en blokkutforsker) som dukker opp i transaksjonsfanen som kontekst meny elementer. %s i URLen er erstattet med transaksjonen sin hash. Flere URLer er separert av en vertikal linje |. - Quantity: - Mengde: + + Active command-line options that override above options: + Aktive kommandolinjevalg som overstyrer valgene ovenfor: - Bytes: - Bytes: + + Open the %1 configuration file from the working directory. + - Amount: - Beløp: + + Open Configuration File + - Fee: - Gebyr: + + Reset all client options to default. + Tilbakestill alle klient valg til standard - After Fee: - Etter Gebyr: + + &Reset Options + &Tilbakestill Instillinger - Change: - Veksel: + + &Network + &Nettverk - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nylig generert adresse. + + (0 = auto, <0 = leave that many cores free) + (0 = automatisk, <0 = la så mange kjerner være ledig) - Custom change address - Egendefinert adresse for veksel + + W&allet + L&ommebok - Transaction Fee: - Transaksjonsgebyr: + + Expert + Ekspert - Choose... - Velg... + + Enable coin &control features + Aktiver &myntkontroll funksjoner - collapse fee-settings - Legg ned gebyrinnstillinger + + Enable fee control features + - per kilobyte - per kilobyte + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Hvis du sperrer for bruk av ubekreftet veksel, kan ikke vekselen fra transaksjonen bli brukt før transaksjonen har minimum en bekreftelse. Dette påvirker også hvordan balansen din blir beregnet. - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Hvis den egendefinerte avgiften er satt til 1000 satoshis og transaksjonen bare er 250 bytes, da vil "per kilobyte" bare betale 250 satoshis i gebyr, mens "minstebeløp" betaler 1000 satoshis. For transaksjoner større enn en kilobyte vil begge betale for antall kilobyte. + + &Spend unconfirmed change + &Bruk ubekreftet veksel - Hide - Skjul + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Åpne automatisk Raven klientporten på ruteren. Dette virker kun om din ruter støtter UPnP og dette er påslått. - total at least - minstebeløp + + Map port using &UPnP + Sett opp port ved hjelp av &UPnP - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Raven-transaksjoner enn nettverket kan behandle. + + Accept connections from outside. + - (read the tooltip) - (les verktøytipset) + + Allow incomin&g connections + - Recommended: - Anbefalt: + + Connect to the Raven network through a SOCKS5 proxy. + Koble til Raven-nettverket gjennom en SOCKS5 proxy. - Custom: - Egendefinert: + + &Connect through SOCKS5 proxy (default proxy): + &Koble til gjennom SOCKS5 proxy (standardvalg proxy): - (Smart fee not initialized yet. This usually takes a few blocks...) - (Smartgebyr ikke innført ennå. Dette tar vanligvis noen blokker...) + + + Proxy &IP: + Proxy &IP: - normal - normal + + + &Port: + &Port: - fast - rask + + + Port of the proxy (e.g. 9050) + Proxyens port (f.eks. 9050) - Send to multiple recipients at once - Send til flere enn en mottaker + + Used for reaching peers via: + Brukt for å nå noder via: - Add &Recipient - Legg til &Mottaker + + IPv4 + IPv4 - Clear all fields of the form. - Fjern alle felter fra skjemaet. + + IPv6 + IPv6 - Dust: - Støv: + + Tor + Tor - Clear &All - Fjern &Alt + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Koble til Raven-nettverket gjennom en separat SOCKS5 mellomtjener for Tor skjulte tjenester. - Balance: - Saldo: + + &Window + &Vindu - Confirm the send action - Bekreft sending + + Show only a tray icon after minimizing the window. + Vis kun ikon i systemkurv etter minimering av vinduet. - S&end - S&end + + &Minimize to the tray instead of the taskbar + &Minimer til systemkurv istedenfor oppgavelinjen - Copy quantity - Kopier mengde + + M&inimize on close + M&inimer ved lukking - Copy amount - Kopier beløp + + Only show toolbar icons. No text. + - Copy fee - Kopier gebyr + + &Icons only + - Copy change - Kopier veksel + + &Display + &Visning - or - eller + + User Interface &language: + &Språk for brukergrensesnitt - (no label) - (ingen merkelapp) + + The user interface language can be set here. This setting will take effect after restarting %1. + - - - SendCoinsEntry - A&mount: - &Beløp: + + &Unit to show amounts in: + &Enhet for visning av beløper: - Pay &To: - Betal &Til: + + Choose the default subdivision unit to show in the interface and when sending coins. + Velg standard delt enhet for visning i grensesnittet og for sending av ravens. - &Label: - &Merkelapp: - - - Choose previously used address - Velg tidligere brukt adresse + + Whether to show coin control features or not. + Skal myntkontroll funksjoner vises eller ikke. - This is a normal payment. - Dette er en normal betaling. + + &Third party transaction URLs + URLer til tjenester for transaksjonsvisning - The Raven address to send the payment to - Raven-adressen betalingen skal sendes til + + + Reset + - Alt+A - Alt+A + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + Tredjeparts URL for IPFS-fremviser. %s i URLen blir erstattet med IPFS-koden. - Paste address from clipboard - Lim inn adresse fra utklippstavlen + + IPFS Viewer URL + IPFS fremviser URL - Alt+P - Alt+P + + Enable Dark Mode + - Remove this entry - Fjern denne oppføringen + + &OK + &OK - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - Gebyret vil bli trukket fra beløpet som blir sendt. Mottakeren vil motta mindre ravens enn det du skriver inn i beløpsfeltet. Hvis det er valgt flere mottakere, deles gebyret likt. + + &Cancel + &Avbryt - S&ubtract fee from amount - T&rekk fra gebyr fra beløp + + default + standardverdi - Message: - Melding: + + none + ingen - This is an unauthenticated payment request. - Dette er en uautorisert betalingsetterspørring. + + Confirm options reset + Bekreft tilbakestilling av innstillinger - This is an authenticated payment request. - Dette er en autorisert betalingsetterspørring. + + + Client restart required to activate changes. + Omstart av klienten er nødvendig for å aktivere endringene. - Enter a label for this address to add it to the list of used addresses - Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + Client will be shut down. Do you want to proceed? + Klienten vil bli lukket. Ønsker du å gå videre? - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - En melding som var tilknyttet ravenen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Raven-nettverket. + + Configuration options + - Pay To: - Betal Til: + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + - Memo: - Memo: + + Error + - - - SendConfirmationDialog - Yes - Ja + + The configuration file could not be opened. + - - - ShutdownWindow - %1 is shutting down... - %1 lukker... + + This change would require a client restart. + Denne endringen krever omstart av klienten. - Do not shut down the computer until this window disappears. - Slå ikke av datamaskinen før dette vinduet forsvinner. + + The supplied proxy address is invalid. + Angitt proxyadresse er ugyldig. - SignVerifyMessageDialog + OverviewPage - Signatures - Sign / Verify a Message - Signaturer - Signer / Verifiser en Melding + + Form + Skjema - &Sign Message - &Signer Melding + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Informasjonen som vises kan være foreldet. Din lommebok synkroniseres automatisk med Raven-nettverket etter at tilkobling er opprettet, men denne prosessen er ikke ferdig enda. - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Du kan signere meldinger/avtaler med adresser for å bevise at du kan motta ravens sendt til dem. Vær forsiktig med å signere noe vagt eller tilfeldig, siden phishing-angrep kan prøve å lure deg til å signere din identitet over til dem. Bare signer fullt detaljerte utsagn som du er enig i. + + Watch-only: + Kun observerbar: - The Raven address to sign the message with - Raven-adressen meldingen skal signeres med + + Available: + Tilgjengelig: - Choose previously used address - Velg tidligere brukt adresse + + Your current spendable balance + Din nåværende saldo - Alt+A - Alt+A + + Pending: + Under behandling: - Paste address from clipboard - Lim inn adresse fra utklippstavlen + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totalt antall ubekreftede transaksjoner som ikke teller med i saldo - Alt+P - Alt+P + + Immature: + Umoden: - Enter the message you want to sign here - Skriv inn meldingen du vil signere her + + Mined balance that has not yet matured + Minet saldo har ikke modnet enda - Signature - Signatur + + Total: + Totalt: - Copy the current signature to the system clipboard - Kopier valgt signatur til utklippstavle + + Your current total balance + Din nåværende saldo - Sign the message to prove you own this Raven address - Signer meldingen for å bevise at du eier denne Raven-adressen + + RVN Balances + RVN Oversikt - Sign &Message - Signer &Melding + + Your current balance in watch-only addresses + Din nåværende balanse i kun observerbare adresser - Reset all sign message fields - Tilbakestill alle felter for meldingssignering + + Spendable: + Kan brukes: - Clear &All - Fjern &Alt + + Asset Balances + - &Verify Message - &Verifiser Melding + + Search + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Skriv inn mottakerens adresse, melding (forsikre deg om at du kopier linjeskift, mellomrom, faner osv. nøyaktig) og underskrift nedenfor for å bekrefte meldingen. Vær forsiktig så du ikke leser mer ut av signaturen enn hva som er i den signerte meldingen i seg selv, for å unngå å bli lurt av et man-in-the-middle-angrep. Merk at dette bare beviser at den som signerer kan motta med adressen, dette beviser ikke hvem som har sendt transaksjoner! + + Recent transactions + Nylige transaksjoner - The Raven address the message was signed with - Raven-adressen meldingen ble signert med + + Unconfirmed transactions to watch-only addresses + Ubekreftede transaksjoner til kun observerbare adresser - Verify the message to ensure it was signed with the specified Raven address - Verifiser meldingen for å være sikker på at den ble signert av den angitte Raven-adressen + + Mined balance in watch-only addresses that has not yet matured + Utvunnet balanse i kun observerbare adresser som ennå ikke har modnet - Verify &Message - Verifiser &Melding + + Current total balance in watch-only addresses + Nåværende totale balanse i kun observerbare adresser - Reset all verify message fields - Tilbakestill alle felter for meldingsverifikasjon + + Send Asset + - Message signing failed. - Signering av melding feilet. + + Copy Amount + - Message signed. - Melding signert. + + Copy Name + - - - SplashScreen - [testnet] - [testnett] + + Copy Hash + - - - TrafficGraphWidget - KB/s - KB/s + + Issue Sub Asset + - - - TransactionDesc - Date - Dato + + Issue Unique Asset + - From - Fra + + Reissue Asset + - unknown - ukjent + + Open IPFS in Browser + Åpne IPFS i nettleser - To - Til + + Open IPFS content? + - not accepted - ikke akseptert + + Open the following IPFS content in your default browser? + + + + + PaymentServer - Message - Melding + + + + + + + Payment request error + - Comment - Kommentar + + Cannot start raven: click-to-pay handler + - Transaction ID - Transaksjons-ID + + + + URI handling + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Her vises en detaljert beskrivelse av transaksjonen + + Payment request fetch URL is invalid: %1 + - - - TransactionTableModel - Date - Dato + + Invalid payment address %1 + - Label - Merkelapp + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + - Offline - Frakoblet + + Payment request file handling + - Unconfirmed - Ubekreftet + + Payment request file cannot be read! This can be caused by an invalid payment request file. + - Sent to - Sendt til + + + + + + + Payment request rejected + - (no label) - (ingen merkelapp) + + Payment request network doesn't match client network. + - - - TransactionView - All - Alt + + Payment request expired. + - Today - I dag + + Payment request is not initialized. + - This week - Denne uka + + Unverified payment requests to custom payment scripts are unsupported. + - This month - Denne måneden + + + Invalid payment request. + - Last month - Forrige måned + + Requested payment amount of %1 is too small (considered dust). + - This year - Dette året + + Refund from %1 + - Sent to - Sendt til + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + - To yourself - Til deg selv + + Error communicating with %1: %2 + - Copy address - Kopier adresse + + Payment request cannot be parsed! + - Copy amount - Kopier beløp + + Bad response from server %1 + - Copy transaction ID - Kopier transaksjons-ID + + Network request error + - Comma separated file (*.csv) - Kommaseparert fil (*.csv) + + Payment acknowledged + + + + PeerTableModel - Date - Dato + + User Agent + Brukeragent - Label - Merkelapp + + Node/Service + Node/Tjeneste - Address - Adresse + + NodeId + - Exporting Failed - Eksportering feilet + + Ping + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Enhet å vise beløper i. Klikk for å velge en annen enhet. + + Sent + + + + + Received + - WalletFrame - - - WalletModel - - - WalletView - - - raven-core + QObject - Options: - Innstillinger: + + Amount + Beløp - Specify data directory + + Enter a Raven address (e.g. %1) + Oppgi en Raven-adresse (f.eks. %1) + + + + %1 d + %1 d + + + + %1 h + %1 t + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ingen + + + + N/A + - + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 og %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Feil: %1 + + + + QRImageWidget + + + &Save Image... + &Lagre bilde... + + + + &Copy Image + &Kopier bilde + + + + Save QR Code + Lagre QR-kode + + + + PNG Image (*.png) + PNG-bilde (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + - + + + + Client version + Klientversjon + + + + &Information + &Informasjon + + + + Debug window + Feilsøkingsvindu + + + + General + Generelt + + + + Using BerkeleyDB version + Bruker BerkeleyDB versjon + + + + Datadir + + + + + Startup time + Oppstartstidspunkt + + + + Network + Nettverk + + + + Name + Navn + + + + Number of connections + Antall tilkoblinger + + + + Block chain + Blokkjeden + + + + Current number of blocks + Nåværende antall blokker + + + + Memory Pool + Minnepool + + + + Current number of transactions + Nåværende antall transaksjoner + + + + Memory usage + Minnebruk + + + + &Reset + + + + + + Received + Mottatt + + + + + Sent + Sendt + + + + &Peers + &Noder + + + + Banned peers + Utestengte noder + + + + + + Select a peer to view detailed information. + Velg en node for å vise detaljert informasjon. + + + + Whitelisted + Hvitelistet + + + + Direction + Retning + + + + Version + Versjon + + + + Starting Block + Startblokk + + + + Synced Headers + Synkroniserte blokkhoder + + + + Synced Blocks + Synkroniserte Blokker + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Brukeragent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + Forminsk font størrelsen + + + + Increase font size + Forstørr font størrelse + + + + Services + Tjenester + + + + Ban Score + Ban Poengsum + + + + Connection Time + Tilkoblingstid + + + + Last Send + Siste Sendte + + + + Last Receive + Siste Mottatte + + + + Ping Time + Ping-tid + + + + The duration of a currently outstanding ping. + Tidsforløp for utestående ping. + + + + Ping Wait + Ping Tid + + + + Min Ping + + + + + Time Offset + Tidsforskyvning + + + + Last block time + Tidspunkt for siste blokk + + + + &Open + &Åpne + + + + &Console + &Konsoll + + + + &Network Traffic + &Nettverkstrafikk + + + + Totals + Totalt + + + + In: + Inn: + + + + Out: + Ut: + + + + Debug log file + Loggfil for feilsøk + + + + Clear console + Tøm konsoll + + + + 1 &hour + 1 &time + + + + 1 &day + 1 &dag + + + + 1 &week + 1 &uke + + + + 1 &year + 1 &år + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Skriv <b>help</b> for en oversikt over kommandoer. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + (node id: %1) + + + + via %1 + via %1 + + + + + never + aldri + + + + Inbound + Innkommende + + + + Outbound + Utgående + + + + Yes + Ja + + + + No + Nei + + + + + Unknown + Ukjent + + + + RavenGUI + + + Sign &message... + Signer &melding... + + + + Synchronizing with network... + Synkroniserer med nettverk... + + + + &Overview + &Oversikt + + + + Node + Node + + + + Show general overview of wallet + Vis generell oversikt over lommeboken + + + + &Transactions + &Transaksjoner + + + + Browse transaction history + Vis transaksjonshistorikk + + + + &Create Assets + &Opprett aktivum + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + Aktivumover&føring + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + &Aktivumbehandling + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + Begrensede aktivum + + + + + Manage restricted assets + + + + + E&xit + &Avslutt + + + + Quit application + Avslutt applikasjonen + + + + &About %1 + &Om %1 + + + + Show information about %1 + Vis informasjon om %1 + + + + About &Qt + Om &Qt + + + + Show information about Qt + Vis informasjon om Qt + + + + &Options... + &Innstillinger... + + + + Modify configuration options for %1 + Endre innstilinger for %1 + + + + &Encrypt Wallet... + &Krypter Lommebok... + + + + &Backup Wallet... + Lag &Sikkerhetskopi av Lommebok... + + + + &Change Passphrase... + &Endre Adgangsfrase... + + + + &Get my words... + &Vis mine ord... + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + Lommebokreparasjon + + + + Open wallet repair options + Åpne lommebokreparasjon + + + + &Sending addresses... + &Utsendingsadresser... + + + + &Receiving addresses... + &Mottaksadresser... + + + + Open &URI... + Åpne &URI... + + + + &Wallet + Lommebok + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Klikk for å deaktivere nettverksaktivitet + + + + Network activity disabled. + Nettverksaktivitet deaktivert + + + + Click to enable network activity again. + Klikk for å aktivere nettverksaktivitet igjen. + + + + Syncing Headers (%1%)... + Synkroniserer blokkhoder (%1)... + + + + Reindexing blocks on disk... + Reindekserer blokker på harddisk... + + + + Send coins to a Raven address + Send til en Raven-adresse + + + + Backup wallet to another location + Sikkerhetskopier lommebok til annet sted + + + + Change the passphrase used for wallet encryption + Endre adgangsfrasen brukt for kryptering av lommebok + + + + Open debugging and diagnostic console + Åpne konsoll for feilsøk og diagnostikk + + + + &Verify message... + &Verifiser melding... + + + + Raven + Raven + + + + Wallet + Lommebok + + + + &Send + &Send + + + + &Receive + &Motta + + + + &Show / Hide + &Vis / Skjul + + + + Show or hide the main Window + Vis eller skjul hovedvinduet + + + + Encrypt the private keys that belong to your wallet + Krypter de private nøklene som tilhører lommeboken din + + + + Sign messages with your Raven addresses to prove you own them + Signer en melding med Raven-adressene dine for å bevise at du eier dem + + + + Verify messages to ensure they were signed with specified Raven addresses + Bekreft meldinger for å være sikker på at de ble signert av en angitt Raven-adresse + + + + &File + &Fil + + + + &Help + &Hjelp + + + + Request payments (generates QR codes and raven: URIs) + Forespør betalinger (genererer QR-koder og raven: URIer) + + + + Show the list of used sending addresses and labels + Vis listen av brukte utsendingsadresser og merkelapper + + + + Show the list of used receiving addresses and labels + Vis listen over bruke mottaksadresser og merkelapper + + + + Open a raven: URI or payment request + Åpne en Raven: URI eller betalingsetterspørring + + + + &Command-line options + &Kommandolinjevalg + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 bak + + + + Last received block was generated %1 ago. + Siste mottatte blokk ble generert for %1 siden. + + + + Transactions after this will not yet be visible. + Transaksjoner etter dette vil ikke være synlige enda. + + + + Error + Feil + + + + Warning + Advarsel + + + + Information + Informasjon + + + + Up to date + Oppdatert + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 klient + + + + Connecting to peers... + Kobler til likemannsnettverket... + + + + Catching up... + Laster ned... + + + + Date: %1 + + Dato: %1 + + + + + + Amount: %1 + + Beløp: %1: + + + + + Type: %1 + + Type: %1 + + + + + Label: %1 + + Merkelapp: %1 + + + + + Address: %1 + + Adresse: %1 + + + + + Sent transaction + Sendt transaksjon + + + + Incoming transaction + Innkommende transaksjon + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Lommeboken er <b>kryptert</b> og for tiden <b>låst opp</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Lommeboken er <b>kryptert</b> og for tiden <b>låst</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + En fatal feil har inntruffet. Raven kan ikke lenger trygt fortsette, og må derfor avslutte. + + + + ReceiveCoinsDialog + + + &Amount: + &Beløp: + + + + &Label: + &Merkelapp: + + + + &Message: + &Melding: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Gjenbruk en av de tidligere brukte mottaksadressene. Gjenbruk av adresser har sikkerhets- og personvernsutfordringer. Ikke bruk dette med unntak for å gjennopprette en betalingsetterspørring som ble gjort tidligere. + + + + R&euse an existing receiving address (not recommended) + Gj&enbruk en eksisterende mottaksadresse (ikke anbefalt) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + En valgfri melding å tilknytte betalingsetterspørringen, som vil bli vist når forespørselen er åpnet. Meldingen vil ikke bli sendt med betalingen over Raven-nettverket. + + + + + An optional label to associate with the new receiving address. + En valgfri merkelapp å tilknytte den nye mottakeradressen. + + + + Use this form to request payments. All fields are <b>optional</b>. + Bruk dette skjemaet til betalingsforespørsler. Alle felt er <b>valgfrie</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Et valgfritt beløp å etterspørre. La stå tomt eller null for ikke å etterspørre et spesifikt beløp. + + + + Clear all fields of the form. + Fjern alle felter fra skjemaet. + + + + Clear + Fjern + + + + Requested payments history + Etterspurt betalingshistorikk + + + + &Request payment + &Etterspør betaling + + + + Show the selected request (does the same as double clicking an entry) + Vis den valgte etterspørringen (gjør det samme som å dobbelklikke på en oppføring) + + + + Show + Vis + + + + Remove the selected entries from the list + Fjern de valgte oppføringene fra listen + + + + Remove + Fjern + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + Kopier beløp + + + + ReceiveRequestDialog + + + QR Code + QR-kode + + + + Copy &URI + Kopier &URI + + + + Copy &Address + Kopier &Adresse + + + + &Save Image... + &Lagre Bilde... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Adresse + + + + Amount + + + + + Label + Merkelapp + + + + Message + Melding + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Dato + + + + Label + Merkelapp + + + + Message + Melding + + + + (no label) + (ingen merkelapp) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + Endre IPFS/Txid kode + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + Transaksjonsgebyr: + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Bruk av standardgebyr kan ende med at transaksjonen tar flere timer, dager eller aldri blir verifisert. Vurder å velge avgift maneult eller å vente til du har verifisert hele kjeden. + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Hvis den egendefinerte avgiften er satt til 1000 satoshis og transaksjonen bare er 250 bytes, da vil "per kilobyte" bare betale 250 satoshis i gebyr, mens "minstebeløp" betaler 1000 satoshis. For transaksjoner større enn en kilobyte vil begge betale for antall kilobyte. + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Raven-transaksjoner enn nettverket kan behandle. + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + IPFS kode + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + lagt til som transaksjonsgebyr + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + Transaksjons-ID kopiert + + + + Asset transaction sent to network: + Aktivumtransasjon sendt til nettverk: + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + lagt til som transaksjonsgebyr + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + Dette er en aktivumoverføring + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + En melding som var tilknyttet ravenen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Raven-nettverket. + + + + + + Memo: + Memo: + + + + Amount: + Antall: + + + + Enter a label for this address to add it to the list of used addresses + Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + + + &Label: + &Merkelapp: + + + + Asset: + Aktivum + + + + The Raven address to send the payment to + Raven-adressen det skal overføres til + + + + Choose previously used address + Velg tidligere brukt adresse + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + + + Remove this entry + Fjern denne oppføringen + + + + Message: + &Melding: + + + + Transfer &To: + + + + + Transfer Administrator Asset + Overfør administrator aktivum + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + Dette er en uautorisert betalingsetterspørring. + + + + + Transfer to: + Overfør til: + + + + + A&mount: + Antall: + + + + This is an authenticated payment request. + Dette er en autorisert betalingsetterspørring. + + + + Enter a label for this address to add it to your address book + Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + + + Select to view administrator assets to transfer + Vis administrator aktivum + + + + + Select an asset to transfer + Velg aktivum for overføring + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + Dette begrensede aktivumet har blitt låst golbalt. Det kan ikke sendes på nettverket. + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + Lommeboksaldo + + + + Select an administrator asset to transfer + Velg administrator aktivum for overføring + + + + Warning: Transferring administrator asset + Advarsel: Overføring av administrator aktivum. + + + + SendCoinsDialog + + + + Send Coins + Send Ravens + + + + Coin Control Features + Myntkontroll Funksjoner + + + + Inputs... + Inndata... + + + + automatically selected + automatisk valgte + + + + Insufficient funds! + Utilstrekkelige midler! + + + + Quantity: + Mengde: + + + + Bytes: + Bytes: + + + + Amount: + Beløp: + + + + Fee: + Gebyr: + + + + After Fee: + Etter Gebyr: + + + + Change: + Veksel: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Hvis dette er aktivert, men adressen for veksel er tom eller ugyldig, vil veksel bli sendt til en nylig generert adresse. + + + + Custom change address + Egendefinert adresse for veksel + + + + Transaction Fee: + Transaksjonsgebyr: + + + + Choose... + Velg... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Bruk av standardgebyr kan ende med at transaksjonen tar flere timer, dager eller aldri blir verifisert. Vurder å velge avgift maneult eller å vente til du har verifisert hele kjeden. + + + + Warning: Fee estimation is currently not possible. + Advarsel: Beregning av gebyr er ikke mulig + + + + collapse fee-settings + Legg ned gebyrinnstillinger + + + + per kilobyte + per kilobyte + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Hvis den egendefinerte avgiften er satt til 1000 satoshis og transaksjonen bare er 250 bytes, da vil "per kilobyte" bare betale 250 satoshis i gebyr, mens "minstebeløp" betaler 1000 satoshis. For transaksjoner større enn en kilobyte vil begge betale for antall kilobyte. + + + + Hide + Skjul + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Betaling av bare minimumsavgiften går helt fint så lenge det er mindre transaksjonsvolum enn plass i blokkene. Men vær klar over at dette kan ende opp i en transaksjon som aldri blir bekreftet når det er mer etterspørsel etter Raven-transaksjoner enn nettverket kan behandle. + + + + (read the tooltip) + (les verktøytipset) + + + + Recommended: + Anbefalt: + + + + Custom: + Egendefinert: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smartgebyr ikke innført ennå. Dette tar vanligvis noen blokker...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Send til flere enn en mottaker + + + + Add &Recipient + Legg til &Mottaker + + + + Clear all fields of the form. + Fjern alle felter fra skjemaet. + + + + Dust: + Støv: + + + + Confirmation time target: + Tid for bekreftelse: + + + + Clear &All + Fjern &Alt + + + + Balance: + Saldo: + + + + Confirm the send action + Bekreft sending + + + + S&end + S&end + + + + Copy quantity + Kopier mengde + + + + Copy amount + Kopier beløp + + + + Copy fee + Kopier gebyr + + + + Copy after fee + Kopier etter gebyr + + + + Copy bytes + Kopier bytes + + + + Copy dust + Kopier støv + + + + Copy change + Kopier veksel + + + + %1 (%2 blocks) + %1 (%2 blokker) + + + + + + + %1 to %2 + %1 til %2 + + + + Are you sure you want to send? + Er du sikker på du vil sende? + + + + added as transaction fee + lagt til som transaksjonsgebyr + + + + Total Amount %1 + Totalantall: %1: + + + + or + eller + + + + Confirm send coins + Bekreft sending + + + + The recipient address is not valid. Please recheck. + Mottakeradressen er ugyldig. Vennligst sjekk. + + + + The amount to pay must be larger than 0. + Antall må være større enn 0 + + + + The amount exceeds your balance. + Antall er større enn saldo + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + Opprettelse av transaksjonen feilet. + + + + The transaction was rejected with the following reason: %1 + Transaksjonen ble avvist: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + Betalingsforespørsel utgått. + + + + Pay only the required fee of %1 + Betal kun nødvendig gebyr %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Advarsel: Ugyldig Ravenadresse + + + + Warning: Unknown change address + Advarsel: Ukjent vekseladresse + + + + Confirm custom change address + Bekreft egendefinert vekseladresse + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Adressen du valgte for veksel, er ikke en del av denne lommeboken. Litt eller alt av mynter fra denne lommeboken kan bli sendt til denne adressen. Er du sikker? + + + + (no label) + (ingen merkelapp) + + + + SendCoinsEntry + + + + + A&mount: + &Beløp: + + + + &Label: + &Merkelapp: + + + + Choose previously used address + Velg tidligere brukt adresse + + + + This is a normal payment. + Dette er en normal betaling. + + + + The Raven address to send the payment to + Raven-adressen betalingen skal sendes til + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + + + Remove this entry + Fjern denne oppføringen + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + Gebyret vil bli trukket fra beløpet som blir sendt. Mottakeren vil motta mindre ravens enn det du skriver inn i beløpsfeltet. Hvis det er valgt flere mottakere, deles gebyret likt. + + + + S&ubtract fee from amount + T&rekk fra gebyr fra beløp + + + + Message: + Melding: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Dette er en uautorisert betalingsetterspørring. + + + + + Send to: + Send til: + + + + This is an authenticated payment request. + Dette er en autorisert betalingsetterspørring. + + + + Enter a label for this address to add it to the list of used addresses + Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + En melding som var tilknyttet ravenen: URI vil bli lagret med transaksjonen for din oversikt. Denne meldingen vil ikke bli sendt over Raven-nettverket. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + Skriv inn en merkelapp for denne adressen for å legge den til listen av brukte adresser + + + + SendConfirmationDialog + + + + Yes + Ja + + + + ShutdownWindow + + + %1 is shutting down... + %1 lukker... + + + + Do not shut down the computer until this window disappears. + Slå ikke av datamaskinen før dette vinduet forsvinner. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Signaturer - Signer / Verifiser en Melding + + + + &Sign Message + &Signer Melding + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + Du kan signere meldinger/avtaler med adresser for å bevise at du kan motta ravens sendt til dem. Vær forsiktig med å signere noe vagt eller tilfeldig, siden phishing-angrep kan prøve å lure deg til å signere din identitet over til dem. Bare signer fullt detaljerte utsagn som du er enig i. + + + + The Raven address to sign the message with + Raven-adressen meldingen skal signeres med + + + + + Choose previously used address + Velg tidligere brukt adresse + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lim inn adresse fra utklippstavlen + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Skriv inn meldingen du vil signere her + + + + Signature + Signatur + + + + Copy the current signature to the system clipboard + Kopier valgt signatur til utklippstavle + + + + Sign the message to prove you own this Raven address + Signer meldingen for å bevise at du eier denne Raven-adressen + + + + Sign &Message + Signer &Melding + + + + Reset all sign message fields + Tilbakestill alle felter for meldingssignering + + + + + Clear &All + Fjern &Alt + + + + &Verify Message + &Verifiser Melding + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Skriv inn mottakerens adresse, melding (forsikre deg om at du kopier linjeskift, mellomrom, faner osv. nøyaktig) og underskrift nedenfor for å bekrefte meldingen. Vær forsiktig så du ikke leser mer ut av signaturen enn hva som er i den signerte meldingen i seg selv, for å unngå å bli lurt av et man-in-the-middle-angrep. Merk at dette bare beviser at den som signerer kan motta med adressen, dette beviser ikke hvem som har sendt transaksjoner! + + + + The Raven address the message was signed with + Raven-adressen meldingen ble signert med + + + + Verify the message to ensure it was signed with the specified Raven address + Verifiser meldingen for å være sikker på at den ble signert av den angitte Raven-adressen + + + + Verify &Message + Verifiser &Melding + + + + Reset all verify message fields + Tilbakestill alle felter for meldingsverifikasjon + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + Signering av melding feilet. + + + + Message signed. + Melding signert. + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnett] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + Dato + + + + Source + + + + + Generated + + + + + + + + + From + Fra + + + + + unknown + ukjent + + + + + + + + To + Til + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + ikke akseptert + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + Transaksjonsgebyr: + + + + Net amount + + + + + + + + Message + Melding + + + + + Comment + Kommentar + + + + + Transaction ID + Transaksjons-ID + + + + + Transaction total size + Transaksjonstørrelse + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + Feilsøkingsinformasjon + + + + Transaction + Transaksjon + + + + Inputs + Innganger.. + + + + Amount + Antall + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Her vises en detaljert beskrivelse av transaksjonen + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Dato + + + + Type + Type + + + + Label + Merkelapp + + + + Amount + Antall + + + + Asset + Aktivum + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + Frakoblet + + + + Unconfirmed + Ubekreftet + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + Generert men ikke akseptert + + + + Received with + Mottatt med + + + + Received from + Mottatt fra + + + + Sent to + Sendt til + + + + Payment to yourself + Betaling til deg selv + + + + Mined + + + + + Asset Issued + Aktivum opprettet + + + + Asset Reissued + + + + + Assets Received + Aktivum mottatt + + + + Assets Sent + Aktivum sendt + + + + watch-only + + + + + (n/a) + + + + + (no label) + (ingen merkelapp) + + + + Transaction status. Hover over this field to show number of confirmations. + Transaksjonstatus. Hold over dette feltet for å vise antall bekreftelser. + + + + Date and time that the transaction was received. + Dato og tidspunkt transaksjonen ble mottatt. + + + + Type of transaction. + Transaksjonstype. + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + Alt + + + + Today + I dag + + + + This week + Denne uka + + + + This month + Denne måneden + + + + Last month + Forrige måned + + + + This year + Dette året + + + + Range... + + + + + Received with + Mottatt med + + + + Sent to + Sendt til + + + + To yourself + Til deg selv + + + + Mined + + + + + Other + Annet + + + + Enter address or label to search + + + + + Min amount + Minstebeløp + + + + Asset name + Aktivumnavn + + + + Abandon transaction + + + + + Copy address + Kopier adresse + + + + Copy label + Kopier &merkelapp + + + + Copy amount + Kopier beløp + + + + Copy transaction ID + Kopier transaksjons-ID + + + + Copy raw transaction + Kopier rå transaksjon + + + + Copy full transaction details + Kopier alle transaksjonsdetaljer + + + + Edit label + Rediger merkelapp + + + + Show transaction details + Vis transaksjonsdetaljer + + + + Browse with: + + + + + Export Transaction History + Eksporter transaksjonshistorie + + + + Comma separated file (*.csv) + Kommaseparert fil (*.csv) + + + + Confirmed + Bekreftet + + + + Watch-only + + + + + Date + Dato + + + + Type + Type + + + + Label + Merkelapp + + + + Address + Adresse + + + + Asset + Aktivum + + + + ID + + + + + Exporting Failed + Eksportering feilet + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + Eksport vellykket + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + Aktivum mottatt + + + + Asset Sent + Aktivum sendt + + + + Copy asset name + + + + + Range: + + + + + to + til + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + Enhet å vise beløper i. Klikk for å velge en annen enhet. + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Send mynter + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &Eksporter + + + + Export the data in the current tab to a file + Eksporter data fra nåværende fane til fil + + + + Backup Wallet + Lag &Sikkerhetskopi av Lommebok... + + + + Wallet Data (*.dat) + + + + + Backup Failed + Sikkerhetskopi feilet + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + Sikkerhetskopi vellykket + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Innstillinger: + + + + Specify data directory Angi mappe for datafiler - Connect to a node to retrieve peer addresses, and disconnect - Koble til node for å hente adresser til andre noder, koble så fra igjen + + Connect to a node to retrieve peer addresses, and disconnect + Koble til node for å hente adresser til andre noder, koble så fra igjen + + + + Specify your own public address + Angi din egen offentlige adresse + + + + Accept command line and JSON-RPC commands + Ta imot kommandolinje- og JSON-RPC-kommandoer + + + + Distributed under the MIT software license, see the accompanying file %s or %s + Distribuert under MIT programvare lisensen. Les medfølgende fil %s eller %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + Hvis <category> ikke er oppgitt eller hvis <category> = 1, ta ut all informasjon for feilsøking. + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + Beskjæringsmodus er konfigurert under minimum på %d MiB. Vennligst bruk et høyere nummer. + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + Beskjæring: siste lommeboksynkronisering går utenfor beskjærte data. Du må bruke -reindex (laster ned hele blokkjeden igjen for beskjærte noder) + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + Omsøk er ikke mulig i beskjært modus. Du vil måtte bruke -reindex som vil laste nede hele blokkjeden på nytt. + + + + Error: A fatal internal error occurred, see debug.log for details + Feil: En fatal intern feil oppstod, se debug.log for detaljer + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + Gebyr (i %s/kB) for å legge til i transaksjoner du sender (standardverdi: %s) + + + + Pruning blockstore... + Beskjærer blokklageret... + + + + Run in the background as a daemon and accept commands + Kjør i bakgrunnen som daemon og ta imot kommandoer + + + + Unable to start HTTP server. See debug log for details. + Kunne ikke starte HTTP server. Se debug logg for detaljer. + + + + Raven Core + Raven Core + + + + The %s developers + Utviklerne av %s + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Bind til angitt adresse. Bruk [vertsmaskin]:port notasjon for IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Slett alle transaksjoner i lommeboken og gjenopprett kun de delene av blokkjeden gjennom -rescan ved oppstart + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Kjør kommando når en lommeboktransaksjon endres (%s i kommando er erstattet med TxID) + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Angi antall tråder for skriptverifisering (%u til %d, 0 = auto, <0 = la det antallet kjerner være ledig, standard: %d) + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + Blokkdatabasen inneholder en blokk som ser ut til å være fra fremtiden. Dette kan være fordi dato og tid på din datamaskin er satt feil. Gjenopprett kun blokkdatabasen når du er sikker på at dato og tid er satt riktig. + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + Bruk UPnP for lytteport (standardverdi: 1 ved lytting og uten -proxy) + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + -maxmempool må være minst %d MB + + + + <category> can be: + <category> kan være: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + Valg for opprettelse av blokker: + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + Innstillinger for tilkobling: + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + Oppdaget korrupt blokkdatabase + + + + Debugging/Testing options: + Valg for feilsøking/testing: + + + + Do not load the wallet and disable wallet RPC calls + Ikke last inn lommeboken og deaktiver RPC-kall + + + + Do you want to rebuild the block database now? + Ønsker du å gjenopprette blokkdatabasen nå? + + + + Enable publish hash block in <address> + Slå på publish hash block i <address> + + + + Enable publish hash transaction in <address> + Slå på publish hash transaction i <address> + + + + Enable publish raw block in <address> + Slå på publisering av råblokk i <address> + + + + Enable publish raw transaction in <address> + Slå på publisering av råtransaksjon i <address> + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + Feil under initialisering av blokkdatabase + + + + Error initializing wallet database environment %s! + Feil under oppstart av lommeboken sitt databasemiljø %s! + + + + Error loading %s + Feil ved lasting av %s + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + Feil ved lasting av blokkdatabase + + + + Error opening block database + Feil under åpning av blokkdatabase + + + + Error: Disk space is low! + Feil: Lite ledig lagringsplass! + + + + Failed to listen on any port. Use -listen=0 if you want this. + Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil. + + + + Importing... + Importerer... + + + + Incorrect or no genesis block found. Wrong datadir for network? + Ugyldig eller ingen skaperblokk funnet. Feil datamappe for nettverk? + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + Hold transaksjonsminnet under <n> megabytes (standard: %u) + + + + Loading P2P addresses... + Laster P2P adresser... + + + + Loading banlist... + Laster svarteliste... + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + For få fildeskriptorer tilgjengelig. + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Bare koble til noder i nettverket <net> (IPv4, IPv6 eller onion) + + + + Print this help message and exit + Skriv ut denne hjelpemeldingen og avslutt + + + + Print version and exit + Skriv ut denne versjonen og avslutt + + + + Prune cannot be configured with a negative value. + Beskjæringsmodus kan ikke konfigureres med en negativ verdi. + + + + Prune mode is incompatible with -txindex. + Beskjæringsmodus er ikke kompatibel med -txindex. + + + + Rebuild chain state and block index from the blk*.dat files on disk + Gjennoppbygger kjedestatus og blokk-indeks fra blk*.dat filene på datamaskinen. + + + + Rebuild chain state from the currently indexed blocks + Gjennoppbygger kjedestatus fra indekserte blokker + + + + Replaying blocks... + + + + + Rewinding blocks... + Reverserer blokker... + + + + Set database cache size in megabytes (%d to %d, default: %d) + Sett databasen sin størrelse på hurtigbufferen i megabytes (%d til %d, standardverdi: %d) + + + + Specify wallet file (within data directory) + Angi lommebokfil (inne i datamappe) + + + + The source code is available from %s. + Kildekoden er tilgjengelig fra %s. + + + + Transaction fee and change calculation failed + Beregning av transaksjonsgebyr og veksel feilet + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + Ustøttet argument -benchmark ble ignorert, bruk -debug=bench. + + + + Unsupported argument -debugnet ignored, use -debug=net. + Advarsel: Argumentet -debugnet er ikke støttet og ble ignorert, bruk -debug=net. + + + + Unsupported argument -tor found, use -onion. + Feil: Argumentet -tor er ikke støttet, bruk -onion. + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + Oppgraderer UTXO databasen + + + + Use UPnP to map the listening port (default: %u) + Bruk UPnP for å sette opp lytteport (standardverdi: %u) + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + User Agent kommentar (%s) inneholder utrygge tegn. + + + + Verifying blocks... + Verifiserer blokker... - Specify your own public address - Angi din egen offentlige adresse + + Wallet %s resides outside data directory %s + Lommebok %s befinner seg utenfor datamappe %s - Accept command line and JSON-RPC commands - Ta imot kommandolinje- og JSON-RPC-kommandoer + + Wallet debugging/testing options: + - If <category> is not supplied or if <category> = 1, output all debugging information. - Hvis <category> ikke er oppgitt eller hvis <category> = 1, ta ut all informasjon for feilsøking. + + Wallet needed to be rewritten: restart %s to complete + - Prune configured below the minimum of %d MiB. Please use a higher number. - Beskjæringsmodus er konfigurert under minimum på %d MiB. Vennligst bruk et høyere nummer. + + Wallet options: + Valg for lommebok: - Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) - Beskjæring: siste lommeboksynkronisering går utenfor beskjærte data. Du må bruke -reindex (laster ned hele blokkjeden igjen for beskjærte noder) + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Tillat JSON-RPC-tilkoblinger fra angitt kilde. Gyldig for <ip> er en enkelt IP (f. eks. 1.2.3.4), et nettverk/nettmaske (f. eks. 1.2.3.4/255.255.255.0) eller et nettverk/CIDR (f. eks. 1.2.3.4/24). Dette alternativet kan angis flere ganger - Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. - Omsøk er ikke mulig i beskjært modus. Du vil måtte bruke -reindex som vil laste nede hele blokkjeden på nytt. + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Bind til gitt adresse og hvitlist peers som kobler seg til den. Bruk [host]:port notasjon for IPv6 - Error: A fatal internal error occurred, see debug.log for details - Feil: En fatal intern feil oppstod, se debug.log for detaljer + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Opprett nye filer med standardtillatelser i systemet, i stedet for umask 077 (kun virksom med lommebokfunksjonalitet slått av) - Fee (in %s/kB) to add to transactions you send (default: %s) - Gebyr (i %s/kB) for å legge til i transaksjoner du sender (standardverdi: %s) + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Oppdag egne IP-adresser (standardverdi: 1 ved lytting og ingen -externalip eller -proxy) - Pruning blockstore... - Beskjærer blokklageret... + + Error: Listening for incoming connections failed (listen returned error %s) + Feil: Lytting etter innkommende tilkoblinger feilet (lytting returnerte feil %s) - Run in the background as a daemon and accept commands - Kjør i bakgrunnen som daemon og ta imot kommandoer + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Utfør kommando når et relevant varsel er mottatt eller vi ser en veldig lang gaffel (%s i kommando er erstattet med melding) - Unable to start HTTP server. See debug log for details. - Kunne ikke starte HTTP server. Se debug logg for detaljer. + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + Gebyrer (i %s/kB) mindre enn dette anses som null gebyr for videresending, graving og laging av transaksjoner (standardverdi: %s) - Raven Core - Raven Core + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Hvis paytxfee ikke er angitt, inkluderer da nok i gebyr til at transaksjoner gjennomsnittligt bekreftes innen n blokker (standardverdi: %u) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Bind til angitt adresse. Bruk [vertsmaskin]:port notasjon for IPv6 + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Ugyldig beløp for -maxtxfee=<amount>: '%s' (må være minst minimum relé gebyr på %s for å hindre fastlåste transaksjoner) - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Slett alle transaksjoner i lommeboken og gjenopprett kun de delene av blokkjeden gjennom -rescan ved oppstart + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + Maksimal størrelse på data i databærende transaksjoner vi videresender og ufører graving på (standardverdi: %u) - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Kjør kommando når en lommeboktransaksjon endres (%s i kommando er erstattet med TxID) + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + Bruk tilfeldig identitet for hver proxytilkobling. Dette muliggjør TOR stream isolasjon (standardverdi: %u) - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Angi antall tråder for skriptverifisering (%u til %d, 0 = auto, <0 = la det antallet kjerner være ledig, standard: %d) + + The transaction amount is too small to send after the fee has been deducted + Transaksjonsbeløpet er for lite til å sendes etter at gebyret er fratrukket - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - Blokkdatabasen inneholder en blokk som ser ut til å være fra fremtiden. Dette kan være fordi dato og tid på din datamaskin er satt feil. Gjenopprett kun blokkdatabasen når du er sikker på at dato og tid er satt riktig. + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + Hvitlistede noder kan ikke DoS-blokkeres, og deres transaksjoner videresendes alltid, selv om de allerede er i minnelageret. Nyttig f.eks. for en gateway. - Use UPnP to map the listening port (default: 1 when listening and no -proxy) - Bruk UPnP for lytteport (standardverdi: 1 ved lytting og uten -proxy) + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + Du må gjenoppbygge databasen ved hjelp av -reindex for å gå tilbake til ubeskåret modus. Dette vil laste ned hele blokkjeden på nytt. - -maxmempool must be at least %d MB - -maxmempool må være minst %d MB + + (default: %u) + (standardverdi: %u) - <category> can be: - <category> kan være: + + Accept public REST requests (default: %u) + Godta offentlige REST forespørsler (standardverdi: %u) - Block creation options: - Valg for opprettelse av blokker: + + Automatically create Tor hidden service (default: %d) + Automatisk opprette Tor skjult tjeneste (standardverdi: %d) - Connection options: - Innstillinger for tilkobling: + + Connect through SOCKS5 proxy + Koble til via SOCKS5-proxy - Corrupted block database detected - Oppdaget korrupt blokkdatabase + + Error loading %s: You can't disable HD on an already existing HD wallet + - Debugging/Testing options: - Valg for feilsøking/testing: + + Error reading from database, shutting down. + Feil ved lesing fra database, stenger ned. - Do not load the wallet and disable wallet RPC calls - Ikke last inn lommeboken og deaktiver RPC-kall + + Error upgrading chainstate database + Feil ved oppgradering av kjedestatus-database - Do you want to rebuild the block database now? - Ønsker du å gjenopprette blokkdatabasen nå? + + Imports blocks from external blk000??.dat file on startup + Importerer blokker fra ekstern fil blk000??.dat ved oppstart - Enable publish hash block in <address> - Slå på publish hash block i <address> + + Information + Informasjon - Enable publish hash transaction in <address> - Slå på publish hash transaction i <address> + + Invalid -onion address or hostname: '%s' + - Enable publish raw block in <address> - Slå på publisering av råblokk i <address> + + Invalid -proxy address or hostname: '%s' + - Enable publish raw transaction in <address> - Slå på publisering av råtransaksjon i <address> + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Ugyldig beløp for -paytxfee=<amount>: '%s' (må være minst %s) - Error initializing block database - Feil under initialisering av blokkdatabase + + Invalid netmask specified in -whitelist: '%s' + Ugyldig nettmaske spesifisert i -whitelist: '%s' - Error initializing wallet database environment %s! - Feil under oppstart av lommeboken sitt databasemiljø %s! + + Keep at most <n> unconnectable transactions in memory (default: %u) + Hold på det meste <n> transaksjoner som ikke kobles i minnet (standardverdi: %u) - Error loading %s - Feil ved lasting av %s + + Need to specify a port with -whitebind: '%s' + Må oppgi en port med -whitebind: '%s' - Error loading block database - Feil ved lasting av blokkdatabase + + Node relay options: + Node alternativer for videresending: + + + + RPC server options: + Innstillinger for RPC-server: + + + + Reducing -maxconnections from %d to %d, because of system limitations. + Reduserer -maxconnections fra %d til %d, pga. systembegrensninger. + + + + Rescan the block chain for missing wallet transactions on startup + Se gjennom blokkjeden etter manglende lommeboktransaksjoner ved oppstart + + + + Send trace/debug info to console instead of debug.log file + Send spor-/feilsøkingsinformasjon til konsollen istedenfor filen debug.log + + + + Show all debugging options (usage: --help -help-debug) + Vis alle feilsøkingsvalg (bruk: --help -help-debug) + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + Krymp filen debug.log når klienten starter (standardverdi: 1 hvis uten -debug) + + + + Signing transaction failed + Signering av transaksjon feilet + + + + The transaction amount is too small to pay the fee + Transaksjonsbeløpet er for lite til å betale gebyr + + + + This is experimental software. + Dette er eksperimentell programvare. + + + + Tor control port password (default: empty) + Passord for Tor-kontrollport (standardverdi: tom) + + + + Tor control port to use if onion listening enabled (default: %s) + Tor-kontrollport å bruke hvis onion-lytting er aktivert (standardverdi: %s) + + + + Transaction amount too small + Transaksjonen er for liten + + + + Transaction too large for fee policy + Transaksjon for stor for gebyrpolitikken + + + + Transaction too large + Transaksjonen er for stor + + + + Unable to bind to %s on this computer (bind returned error %s) + Kan ikke binde til %s på denne datamaskinen (binding returnerte feilen %s) + + + + Upgrade wallet to latest format on startup + Oppgrader lommebok til nyeste format ved oppstart + + + + Username for JSON-RPC connections + Brukernavn for JSON-RPC forbindelser + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + Verifiserer lommebok... + + + + Warning + Advarsel + + + + Warning: unknown new rules activated (versionbit %i) + Advarsel: ukjente nye regler aktivert. (Versjonsbit %i) + + + + Whether to operate in a blocks only mode (default: %u) + Hvorvidt å operere i modus med kun blokker (standardverdi: %u) + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + Zapper alle transaksjoner fra lommeboken... + + + + ZeroMQ notification options: + Valg for ZeroMQ-meldinger: + + + + Password for JSON-RPC connections + Passord for JSON-RPC forbindelser + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Utfør kommando når beste blokk endrer seg (%s i kommandoen erstattes med blokkens hash) + + + + Allow DNS lookups for -addnode, -seednode and -connect + Tillat oppslag i DNS for -addnode, -seednode og -connect + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + (1 = behold metadata for transaksjon som f. eks. kontoeier og informasjon om betalingsanmodning, 2 = dropp metadata for transaksjon) + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + -maxtxfee er satt veldig høyt! Så stort gebyr kan bli betalt ved en enkelt transaksjon. + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + Ikke hold transaksjoner i minnet lenger enn <n> timer (standard: %u) + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Error opening block database - Feil under åpning av blokkdatabase + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Error: Disk space is low! - Feil: Lite ledig lagringsplass! + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Failed to listen on any port. Use -listen=0 if you want this. - Kunne ikke lytte på noen port. Bruk -listen=0 hvis det er dette du vil. + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + Gebyrer (i %s/Kb) mindre enn dette anses som null gebyr for laging av transaksjoner (standardverdi: %s) - Importing... - Importerer... + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Incorrect or no genesis block found. Wrong datadir for network? - Ugyldig eller ingen skaperblokk funnet. Feil datamappe for nettverk? + + How thorough the block verification of -checkblocks is (0-4, default: %u) + Hvor grundig blokkverifiseringen til -checkblocks er (0-4, standardverdi: %u) - Invalid -onion address: '%s' - Ugyldig -onion adresse: '%s' + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Keep the transaction memory pool below <n> megabytes (default: %u) - Hold transaksjonsminnet under <n> megabytes (standard: %u) + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Not enough file descriptors available. - For få fildeskriptorer tilgjengelig. + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Bare koble til noder i nettverket <net> (IPv4, IPv6 eller onion) + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Print this help message and exit - Skriv ut denne hjelpemeldingen og avslutt + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Print version and exit - Skriv ut denne versjonen og avslutt + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Prune cannot be configured with a negative value. - Beskjæringsmodus kan ikke konfigureres med en negativ verdi. + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Prune mode is incompatible with -txindex. - Beskjæringsmodus er ikke kompatibel med -txindex. + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Set database cache size in megabytes (%d to %d, default: %d) - Sett databasen sin størrelse på hurtigbufferen i megabytes (%d til %d, standardverdi: %d) + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + Oppretthold en full transaksjonsindeks, brukt av getrawtransaction RPC-kall (standardverdi: %u) - Set maximum block size in bytes (default: %d) - Sett maks blokkstørrelse i bytes (standardverdi: %d) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Specify wallet file (within data directory) - Angi lommebokfil (inne i datamappe) + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + Antall sekunder noder med dårlig oppførsel hindres fra å koble til på nytt (standardverdi: %u) - The source code is available from %s. - Kildekoden er tilgjengelig fra %s. + + Output debugging information (default: %u, supplying <category> is optional) + Ta ut feilsøkingsinformasjon (standardverdi: %u, bruk av <category> er valgfritt) - Unsupported argument -benchmark ignored, use -debug=bench. - Ustøttet argument -benchmark ble ignorert, bruk -debug=bench. + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Unsupported argument -debugnet ignored, use -debug=net. - Advarsel: Argumentet -debugnet er ikke støttet og ble ignorert, bruk -debug=net. + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Unsupported argument -tor found, use -onion. - Feil: Argumentet -tor er ikke støttet, bruk -onion. + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Use UPnP to map the listening port (default: %u) - Bruk UPnP for å sette opp lytteport (standardverdi: %u) + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - User Agent comment (%s) contains unsafe characters. - User Agent kommentar (%s) inneholder utrygge tegn. + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Verifying blocks... - Verifiserer blokker... + + Support filtering of blocks and transaction with bloom filters (default: %u) + Støtte filtrering av blokker og transaksjoner med bloomfiltre (standardverdi: %u) - Verifying wallet... - Verifiserer lommebok... + + The default height that is required before rewards are allowed to be sent out + - Wallet %s resides outside data directory %s - Lommebok %s befinner seg utenfor datamappe %s + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Wallet options: - Valg for lommebok: + + This address doesn't contain the correct tags to pass the verifier string check: + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Tillat JSON-RPC-tilkoblinger fra angitt kilde. Gyldig for <ip> er en enkelt IP (f. eks. 1.2.3.4), et nettverk/nettmaske (f. eks. 1.2.3.4/255.255.255.0) eller et nettverk/CIDR (f. eks. 1.2.3.4/24). Dette alternativet kan angis flere ganger + + This is the transaction fee you may pay when fee estimates are not available. + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Bind til gitt adresse og hvitlist peers som kobler seg til den. Bruk [host]:port notasjon for IPv6 + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Bind til gitt adresse for å lytte for JSON-RPC-tilkoblinger. Bruk [host]:port notasjon for IPv6. Dette alternativet kan angis flere ganger (standardverdi: bind til alle grensesnitt) + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + Total lengde av nettverks-versionstreng (%i) er over maks lengde (%i). Reduser tallet eller størrelsen av uacomments. - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Opprett nye filer med standardtillatelser i systemet, i stedet for umask 077 (kun virksom med lommebokfunksjonalitet slått av) + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + Prøv å holde utgående trafikk under angitt mål (i MB per 24t), 0 = ingen grense (standard: %d) - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Oppdag egne IP-adresser (standardverdi: 1 ved lytting og ingen -externalip eller -proxy) + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Error: Listening for incoming connections failed (listen returned error %s) - Feil: Lytting etter innkommende tilkoblinger feilet (lytting returnerte feil %s) + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Utfør kommando når et relevant varsel er mottatt eller vi ser en veldig lang gaffel (%s i kommando er erstattet med melding) + + Unable to reissue asset: unit must be larger than current unit selection + - Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) - Gebyrer (i %s/kB) mindre enn dette anses som null gebyr for videresending, graving og laging av transaksjoner (standardverdi: %s) + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Hvis paytxfee ikke er angitt, inkluderer da nok i gebyr til at transaksjoner gjennomsnittligt bekreftes innen n blokker (standardverdi: %u) + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + Argumentet -socks er ikke støttet. Det er ikke lenger mulig å sette SOCKS-versjon; bare SOCKS5-proxyer er støttet. - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Ugyldig beløp for -maxtxfee=<amount>: '%s' (må være minst minimum relé gebyr på %s for å hindre fastlåste transaksjoner) + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Maximum size of data in data carrier transactions we relay and mine (default: %u) - Maksimal størrelse på data i databærende transaksjoner vi videresender og ufører graving på (standardverdi: %u) + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Bruk separate SOCKS5 proxyer for å nå noder via Tor skjulte tjenester (standardverdi: %s) - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Bruk tilfeldig identitet for hver proxytilkobling. Dette muliggjør TOR stream isolasjon (standardverdi: %u) + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Sett maksimum størrelse for transaksjoner med høy prioritet / lavt gebyr, i bytes (standardverdi: %d) + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - The transaction amount is too small to send after the fee has been deducted - Transaksjonsbeløpet er for lite til å sendes etter at gebyret er fratrukket + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Hvitlistede noder kan ikke DoS-blokkeres, og deres transaksjoner videresendes alltid, selv om de allerede er i minnelageret. Nyttig f.eks. for en gateway. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - Du må gjenoppbygge databasen ved hjelp av -reindex for å gå tilbake til ubeskåret modus. Dette vil laste ned hele blokkjeden på nytt. + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - (default: %u) - (standardverdi: %u) + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Accept public REST requests (default: %u) - Godta offentlige REST forespørsler (standardverdi: %u) + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Automatically create Tor hidden service (default: %d) - Automatisk opprette Tor skjult tjeneste (standardverdi: %d) + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Connect through SOCKS5 proxy - Koble til via SOCKS5-proxy + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Error reading from database, shutting down. - Feil ved lesing fra database, stenger ned. + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Imports blocks from external blk000??.dat file on startup - Importerer blokker fra ekstern fil blk000??.dat ved oppstart + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Information - Informasjon + + %s is set very high! + %s er satt veldig høyt! - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Ugyldig beløp for -paytxfee=<amount>: '%s' (må være minst %s) + + ' doesn't exist in the database + - Invalid netmask specified in -whitelist: '%s' - Ugyldig nettmaske spesifisert i -whitelist: '%s' + + ' has already been used + - Keep at most <n> unconnectable transactions in memory (default: %u) - Hold på det meste <n> transaksjoner som ikke kobles i minnet (standardverdi: %u) + + ' is not a valid character in the expression: + - Need to specify a port with -whitebind: '%s' - Må oppgi en port med -whitebind: '%s' + + ' the amount trying to reissue is to large + - Node relay options: - Node alternativer for videresending: + + (default: %s) + (standardverdi: %s) - RPC server options: - Innstillinger for RPC-server: + + A space separated list of 12-words used to import a bip44 wallet + - Reducing -maxconnections from %d to %d, because of system limitations. - Reduserer -maxconnections fra %d til %d, pga. systembegrensninger. + + Always query for peer addresses via DNS lookup (default: %u) + Alltid søk etter nodeadresser via DNS-oppslag (standardverdi: %u) - Rescan the block chain for missing wallet transactions on startup - Se gjennom blokkjeden etter manglende lommeboktransaksjoner ved oppstart + + Asset Transfer amounts must be greater than 0 + - Send trace/debug info to console instead of debug.log file - Send spor-/feilsøkingsinformasjon til konsollen istedenfor filen debug.log + + Asset doesn't exist: + - Send transactions as zero-fee transactions if possible (default: %u) - Send transaksjoner uten transaksjonsgebyr hvis mulig (standardverdi: %u) + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Show all debugging options (usage: --help -help-debug) - Vis alle feilsøkingsvalg (bruk: --help -help-debug) + + Asset name is not valid + - Shrink debug.log file on client startup (default: 1 when no -debug) - Krymp filen debug.log når klienten starter (standardverdi: 1 hvis uten -debug) + + Asset with this name is already in the mempool + - Signing transaction failed - Signering av transaksjon feilet + + Done Loading + - The transaction amount is too small to pay the fee - Transaksjonsbeløpet er for lite til å betale gebyr + + Enable publish raw asset messages in <address> + - This is experimental software. - Dette er eksperimentell programvare. + + Error creating %s: You can't create non-HD wallets with this version. + - Tor control port password (default: empty) - Passord for Tor-kontrollport (standardverdi: tom) + + Error loading wallet %s. -wallet filename must be a regular file. + - Tor control port to use if onion listening enabled (default: %s) - Tor-kontrollport å bruke hvis onion-lytting er aktivert (standardverdi: %s) + + Error loading wallet %s. Duplicate -wallet filename specified. + - Transaction amount too small - Transaksjonen er for liten + + Error loading wallet %s. Invalid characters in -wallet filename. + - Transaction too large for fee policy - Transaksjon for stor for gebyrpolitikken + + Error not set + - Transaction too large - Transaksjonen er for stor + + Error writing bip 39 passphrase to database + - Unable to bind to %s on this computer (bind returned error %s) - Kan ikke binde til %s på denne datamaskinen (binding returnerte feilen %s) + + Error writing bip 39 vchseed to database + - Upgrade wallet to latest format on startup - Oppgrader lommebok til nyeste format ved oppstart + + Error writing bip 39 words to database + - Username for JSON-RPC connections - Brukernavn for JSON-RPC forbindelser + + Every '(' must have a corresponding ')' in the expression: + - Warning - Advarsel + + Failed to extract destination from change script + - Whether to operate in a blocks only mode (default: %u) - Hvorvidt å operere i modus med kun blokker (standardverdi: %u) + + Failed to find restricted asset change address from inputs + - Zapping all transactions from wallet... - Zapper alle transaksjoner fra lommeboken... + + Failed to get asset data from script + - ZeroMQ notification options: - Valg for ZeroMQ-meldinger: + + Failed to get verifier string from output: + - Password for JSON-RPC connections - Passord for JSON-RPC forbindelser + + Failed to load Assets Database + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Utfør kommando når beste blokk endrer seg (%s i kommandoen erstattes med blokkens hash) + + Flag must be 1 or 0 + - Allow DNS lookups for -addnode, -seednode and -connect - Tillat oppslag i DNS for -addnode, -seednode og -connect + + How many blocks to check at startup (default: %u, 0 = all) + Hvor mange blokker skal sjekkes ved oppstart (standardverdi: %u, 0 = alle) - Loading addresses... - Laster adresser... + + Include IP addresses in debug output (default: %u) + Inkludere IP-adresser i feilsøkingslogg (standardverdi: %u) - (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) - (1 = behold metadata for transaksjon som f. eks. kontoeier og informasjon om betalingsanmodning, 2 = dropp metadata for transaksjon) + + Init Message Channels - Scanning Asset Transactions + - -maxtxfee is set very high! Fees this large could be paid on a single transaction. - -maxtxfee er satt veldig høyt! Så stort gebyr kan bli betalt ved en enkelt transaksjon. + + Insufficient asset funds + - Do not keep transactions in the mempool longer than <n> hours (default: %u) - Ikke hold transaksjoner i minnet lenger enn <n> timer (standard: %u) + + Invalid Qualifier Name: + - Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) - Gebyrer (i %s/Kb) mindre enn dette anses som null gebyr for laging av transaksjoner (standardverdi: %s) + + Invalid expressions in verifier string: + - How thorough the block verification of -checkblocks is (0-4, default: %u) - Hvor grundig blokkverifiseringen til -checkblocks er (0-4, standardverdi: %u) + + Invalid parameter: amount must be + - Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) - Oppretthold en full transaksjonsindeks, brukt av getrawtransaction RPC-kall (standardverdi: %u) + + Invalid parameter: amount must be between + - Number of seconds to keep misbehaving peers from reconnecting (default: %u) - Antall sekunder noder med dårlig oppførsel hindres fra å koble til på nytt (standardverdi: %u) + + Invalid parameter: asset amount can't be equal to or less than zero. + - Output debugging information (default: %u, supplying <category> is optional) - Ta ut feilsøkingsinformasjon (standardverdi: %u, bruk av <category> er valgfritt) + + Invalid parameter: asset amount greater than max money: + - Support filtering of blocks and transaction with bloom filters (default: %u) - Støtte filtrering av blokker og transaksjoner med bloomfiltre (standardverdi: %u) + + Invalid parameter: asset_name ' + - Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. - Total lengde av nettverks-versionstreng (%i) er over maks lengde (%i). Reduser tallet eller størrelsen av uacomments. + + Invalid parameter: has_ipfs must be 0 or 1. + - Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) - Prøv å holde utgående trafikk under angitt mål (i MB per 24t), 0 = ingen grense (standard: %d) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. - Argumentet -socks er ikke støttet. Det er ikke lenger mulig å sette SOCKS-versjon; bare SOCKS5-proxyer er støttet. + + Invalid parameter: reissuable must be 0 or 1 + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Bruk separate SOCKS5 proxyer for å nå noder via Tor skjulte tjenester (standardverdi: %s) + + Invalid parameter: reissuable must be 0 + - (default: %s) - (standardverdi: %s) + + Invalid parameter: units must be + - Always query for peer addresses via DNS lookup (default: %u) - Alltid søk etter nodeadresser via DNS-oppslag (standardverdi: %u) + + Invalid parameter: units must be between 0-8. + - How many blocks to check at startup (default: %u, 0 = all) - Hvor mange blokker skal sjekkes ved oppstart (standardverdi: %u, 0 = alle) + + Invalid syntax: + - Include IP addresses in debug output (default: %u) - Inkludere IP-adresser i feilsøkingslogg (standardverdi: %u) + + Keypool ran out, please call keypoolrefill first + - Invalid -proxy address: '%s' - Ugyldig -proxy adresse: '%s' + + Length is to large. Please use a smaller length + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Lytt etter JSON-RPC tilkoblinger på <port> (standardverdi: %u eller testnett: %u) + Listen for connections on <port> (default: %u or testnet: %u) Lytt etter tilkoblinger på <port> (standardverdi: %u eller testnett: %u) + Maintain at most <n> connections to peers (default: %u) Hold maks <n> koblinger åpne til andre noder (standardverdi: %u) + Make the wallet broadcast transactions Få lommeboken til å kringkaste transaksjoner + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maks mottaksbuffer per forbindelse, <n>*1000 bytes (standardverdi: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maks sendebuffer per forbindelse, <n>*1000 bytes (standardverdi: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Sett inn tidsstempel i front av feilsøkingsdata (standardverdi: %u) + Relay and mine data carrier transactions (default: %u) Videresend og ufør graving av databærende transaksjoner (standardverdi: %u) + Relay non-P2SH multisig (default: %u) Videresend ikke-P2SH multisig (standardverdi: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Angi størrelse på nøkkel-lager til <n> (standardverdi: %u) + + Set maximum BIP141 block weight (default: %d) + Sett maksimal BIP141 blokk tyngde (standard: %d) + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Sett antall tråder til betjening av RPC-kall (standardverdi: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Angi konfigurasjonsfil (standardverdi: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Angi tidsavbrudd for forbindelse i millisekunder (minimum: 1, standardverdi: %d) + Specify pid file (default: %s) Angi pid-fil (standardverdi: %s) + Spend unconfirmed change when sending transactions (default: %u) Bruk ubekreftet veksel ved sending av transaksjoner (standardverdi: %u) + + Starting network threads... + Starter nettverkstråder... + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + Lommeboken vil ikke betale mindre enn den minste videresendingsavgiften. + + + + This is the minimum transaction fee you pay on every transaction. + Dette er det minste transaksjonsgebyret du kan betale for hver transaksjon. + + + + This is the transaction fee you will pay if you send a transaction. + Dette er transaksjonsgebyret du må betale hvis du sender en transaksjon. + + + Threshold for disconnecting misbehaving peers (default: %u) Grenseverdi for å koble fra noder med dårlig oppførsel (standardverdi: %u) - Unknown network specified in -onlynet: '%s' - Ukjent nettverk angitt i -onlynet '%s' + + Transaction amounts must not be negative + Transaksjonen kan ikke ha negativt mengde + + + + Transaction has too long of a mempool chain + Transaksjonen har for lang mempool-kjede + + + + Transaction must have at least one recipient + Transaksjonen må ha minst en mottaker + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Ukjent nettverk angitt i -onlynet '%s' + + + Insufficient funds Utilstrekkelige midler + Loading block index... Laster blokkindeks... - Add a node to connect to and attempt to keep the connection open - Legg til node for tilkobling og hold forbindelsen åpen - - + Loading wallet... Laster lommebok... + Cannot downgrade wallet Kan ikke nedgradere lommebok - Cannot write default address - Kan ikke skrive standardadresse - - + Rescanning... Leser gjennom... - Done loading - Ferdig med lasting - - + Error Feil diff --git a/src/qt/locale/raven_ne.ts b/src/qt/locale/raven_ne.ts index e62038c1b4..2149cd8e88 100644 --- a/src/qt/locale/raven_ne.ts +++ b/src/qt/locale/raven_ne.ts @@ -1,633 +1,8292 @@ - - - + AddressBookPage + Right-click to edit address or label ठेगाना वा लेबल सम्पादन गर्न दायाँ-क्लिक गर्नुहोस् + Create a new address नयाँ ठेगाना सिर्जना गर्नुहोस् + &New &amp;नयाँ + Copy the currently selected address to the system clipboard भर्खरै चयन गरेको ठेगाना प्रणाली क्लिपबोर्डमा कपी गर्नुहोस् + &Copy &amp;कपी गर्नुहोस् + C&lose बन्द गर्नुहोस् + Delete the currently selected address from the list भर्खरै चयन गरेको ठेगाना सूचीबाट मेटाउनुहोस् + Export the data in the current tab to a file वर्तमान ट्याबको डाटालाई फाइलमा निर्यात गर्नुहोस् + &Export &amp;निर्यात गर्नुहोस् + &Delete &amp;मेटाउनुहोस् + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + C&hoose छनौट गर्नुहोस्... + Sending addresses पठाउने ठेगानाहरू... + Receiving addresses प्राप्त गर्ने ठेगानाहरू... + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address ठेगाना कपी गर्नुहोस् - + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog पासफ्रेज संवाद + Enter passphrase पासफ्रेज प्रवेश गर्नुहोस् + New passphrase नयाँ पासफ्रेज + Repeat new passphrase नयाँ पासफ्रेज दोहोर्याउनुहोस् - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - BanTableModel + AssetControlDialog - IP/Netmask - IP/नेटमास्क + + Asset Selection + - Banned Until - प्रतिबन्धित समय + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + - RavenGUI + AssetTableModel - Sign &message... - सन्देशमा &amp;हस्ताक्षर गर्नुहोस्... + + Name + - Synchronizing with network... - नेटवर्कमा समिकरण हुँदै... + + Quantity + + + + AssetsDialog - &Overview - शारांश + + + Send Coins + - Node - नोड + + Asset Control Features + - Show general overview of wallet - वालेटको साधारण शारांश देखाउनुहोस् + + Inputs... + - &Transactions - &amp;कारोबार + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/नेटमास्क + + + + Banned Until + प्रतिबन्धित समय + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + रकम + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + ठेगाना कपी गर्नुहोस् + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + इन्टरफेसमा र सिक्का पठाउँदा देखिने डिफल्ट उपविभाजन एकाइ चयन गर्नुहोस् । + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + देखाइएको सूचना पूरानो हुन सक्छ । कनेक्सन स्थापित भएपछि, तपाईंको वालेट बिटकोइन नेटवर्कमा स्वचालित रूपमा समिकरण हुन्छ , तर यो प्रक्रिया अहिले सम्म पूरा भएको छैन । + + + + Watch-only: + हेर्ने-मात्र: + + + + Available: + उपलब्ध: + + + + Your current spendable balance + तपाईंको खर्च गर्न मिल्ने ब्यालेन्स + + + + Pending: + विचाराधिन: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + अझै पुष्टि हुन बाँकी र खर्च गर्न मिल्ने ब्यालेन्समा गणना गर्न नमिल्ने जम्मा कारोबार + + + + Immature: + अपरिपक्व: + + + + Mined balance that has not yet matured + अझै परिपक्व नभएको खनन गरिएको ब्यालेन्स + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + अहिलेसम्म परिपक्व नभएको खनन गरिएको, हेर्ने-मात्र ठेगानामा रहेको ब्यालेन्स + + + + Current total balance in watch-only addresses + हेर्ने-मात्र ठेगानामा रहेको हालको जम्मा ब्यालेन्स + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + प्रयोगकर्ता एजेन्ट + + + + Node/Service + नोड/सेव + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + रकम + + + + Enter a Raven address (e.g. %1) + कृपया बिटकोइन ठेगाना प्रवेश गर्नुहोस् (उदाहरण %1) + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + प्रयोगकर्ता एजेन्ट + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + पिङ समय + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + सन्देशमा &amp;हस्ताक्षर गर्नुहोस्... + + + + Synchronizing with network... + नेटवर्कमा समिकरण हुँदै... + + + + &Overview + शारांश + + + + Node + नोड + + + + Show general overview of wallet + वालेटको साधारण शारांश देखाउनुहोस् + + + + &Transactions + &amp;कारोबार + + + + Browse transaction history + कारोबारको इतिहास हेर्नुहोस् + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + बाहिर निस्कनुहोस् + + + + Quit application + एप्लिकेसन बन्द गर्नुहोस् + + + + &About %1 + &amp;बारेमा %1 + + + + Show information about %1 + %1 को बारेमा सूचना देखाउनुहोस् + + + + About &Qt + &amp;Qt + + + + Show information about Qt + Qt को बारेमा सूचना देखाउनुहोस् + + + + &Options... + &amp;विकल्प... + + + + Modify configuration options for %1 + %1 का लागि कन्फिगुरेसनको विकल्प परिमार्जन गर्नुहोस + + + + &Encrypt Wallet... + &amp;वालेटलाई इन्क्रिप्ट गर्नुहोस्... + + + + &Backup Wallet... + &amp;वालेटलाई ब्याकअप गर्नुहोस्... + + + + &Change Passphrase... + &amp;पासफ्रेज परिवर्तन गर्नुहोस्... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &amp;पठाउने ठेगानाहरू... + + + + &Receiving addresses... + &amp;प्राप्त गर्ने ठेगानाहरू... + + + + Open &URI... + URI &amp;खोल्नुहोस्... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + डिस्कमा ब्लकलाई पुनः सूचीकरण गरिँदै... + + + + Send coins to a Raven address + बिटकोइन ठेगानामा सिक्का पठाउनुहोस् + + + + Backup wallet to another location + वालेटलाई अर्को ठेगानामा ब्याकअप गर्नुहोस् + + + + Change the passphrase used for wallet encryption + वालेट इन्क्रिप्सनमा प्रयोग हुने इन्क्रिप्सन पासफ्रेज परिवर्तन गर्नुहोस् + + + + Open debugging and diagnostic console + डिबगिङ र डायाग्नोस्टिक कन्सोल खोल्नुहोस् + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + छनौट गर्नुहोस्... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + पहिला प्रयोग गरिएको ठेगाना प्रयोग गर्नुहोस् + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + पठाइँदै गरेको रकमबाट शुल्क कटौती गरिनेछ । प्राप्तकर्ताले तपाईंले रकम क्षेत्रमा प्रवेष गरेको भन्दा थोरै बिटकोइन प्राप्त गर्ने छन् । धेरै प्राप्तकर्ता चयन गरिएको छ भने समान रूपमा शुल्क विभाजित गरिनेछ । + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + यो ठेगानालाई प्रयोग गरिएको ठेगानाको सूचीमा थप्न एउटा लेबल प्रविष्ट गर्नुहोस् + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + बिटकोइनमा संलग्न गरिएको सन्देश: तपाईंको मध्यस्थको लागि कारोबारको साथमा भण्डारण गरिने URI । नोट: यो सन्देश बिटकोइन नेटवर्क मार्फत पठाइने छैन । + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + आफ्नो ठेगानामा पठाइएको बिटकोइन प्राप्त गर्न सकिन्छ भनेर प्रमाणित गर्न तपाईंले ती ठेगानाले सन्देश/सम्झौताहरूमा हस्ताक्षर गर्न सक्नुहुन्छ । फिसिङ आक्रमणले तपाईंलाई छक्याएर अरूका लागि तपाईंको परिचयमा हस्ताक्षर गराउने प्रयास गर्न सक्ने भएकाले अस्पष्ट वा जथाभावीमा हस्ताक्षर गर्दा ध्यान दिनुहोस् । आफू सहमत भएको पूर्ण विस्तृत-कथनमा मात्र हस्ताक्षर गर्नुहोस् । + + + + The Raven address to sign the message with + + + + + + Choose previously used address + पहिला प्रयोग गरिएको ठेगाना प्रयोग गर्नुहोस् + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + वर्तमान हस्ताक्षरलाई प्रणाली क्लिपबोर्डमा कपी गर्नुहोस् + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + सन्देश प्रमाणित गर्न, तल दिइएको स्थानमा प्राप्तकर्ता ठेगाना, सन्देश (लाइन ब्रेक, स्पेस, ट्याब, आदि उस्तै गरी कपी गर्ने कुरा सुनिश्चित गर्नुहोस्) र हस्ताक्षर &apos;s प्रविष्ट गर्नुहोस् । बीचमा-मानिसको-आक्रमणबाट बच्न हस्ताक्षर पढ्दा हस्ताक्षर गरिएको सन्देशमा जे छ त्यो भन्दा धेरै कुरामा ध्यान नदिनुहोस् । यो कार्यले हस्ताक्षर गर्ने पक्षले मात्र यो ठेगानाले प्राप्त गर्छ भन्ने कुरा प्रमाणित गर्छ, यसले कुनै पनि कारोबारको प्रेषककर्तालाई प्रमाणित गर्न सक्दैन भन्ने कुरा याद गर्नुहोस्! + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + ठेगाना कपी गर्नुहोस् + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + &amp;निर्यात गर्नुहोस् + + + + + Export the data in the current tab to a file + वर्तमान ट्याबको डाटालाई फाइलमा निर्यात गर्नुहोस् + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + वालेटको सबै कारोबार मेटाउनुहोस् र -स्टार्टअपको पुनः स्क्यान मार्फत ब्लकचेनका ती भागहरूलाई मात्र पुनः प्राप्त गर्नुहोस् + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + ब्लक डाटाबेसमा भविष्यबाट आए जस्तो देखिने एउटा ब्लक हुन्छ । तपाईंको कम्प्युटरको मिति र समय गलत तरिकाले सेट गरिएकाले यस्तो हुन सक्छ । तपाईं आफ्नो कम्प्युटरको मिति र समय सही छ भनेर पक्का हुनुहुन्छ भने मात्र ब्लक डाटाबेस पुनर्निर्माण गर्नुहोस् । + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + प्रि-फर्क अवस्थामा डाटाबेस रिवाइन्ड गर्न सकिएन । तपाईंले फेरि ब्लकचेन डाउनलोड गर्नु पर्ने हुन्छ + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + UPnP प्रयोग गरेर सुन्ने पोर्टलाई म्याप गर्नुहोस् (सुन्दा र -प्रोक्सी नहुँदा डिफल्ट: 1) + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + %s मा क्षति, बचाव विफल भयो + + + + -maxmempool must be at least %d MB + -maxmempool कम्तिमा %d MB को हुनुपर्छ । + + + + <category> can be: + &lt;वर्ग&gt; निम्न आकारको हुनसक्छ: + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + प्रयोगकर्ता एजेन्ट स्ट्रिङमा टिप्पणी जोड्नुहोस् + + + + Attempt to recover private keys from a corrupt wallet on startup + स्टार्टअपमा क्षति पूगेको वालेटबाट निजी की प्राप्त गर्न प्रयास गर्नुहोस् + + + + Block creation options: + ब्लक सिर्जनाको बिकल्प: + + + + Cannot resolve -%s address: '%s' + -%s ठेगाना: &apos;%s&apos; निश्चय गर्न सकिँदैन + + + + Chain selection options: + + + + + Change index out of range + सूचकांक परिवर्तन सीमा भन्दा बाहर + + + + Connection options: + कनेक्सनको विकल्प: + + + + Copyright (C) %i-%i + सर्वाधिकार (C) %i-%i + + + + Corrupted block database detected + क्षति पुगेको ब्लक डाटाबेस फेला पर + + + + Debugging/Testing options: + डिबगिङ/परीक्षणका विकल्पहरू: + + + + Do not load the wallet and disable wallet RPC calls + वालेट लोड नगर्नुहोस् र वालेट RPC कलहरू अक्षम गर्नुहोस् + + + + Do you want to rebuild the block database now? + तपाईं अहिले ब्लक डेटाबेस पुनर्निर्माण गर्न चाहनुहुन्छ ? + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + यो कम्प्युटरको %s मा बाँध्न सकिएन । %s सम्भवित रूपमा पहिलैबाट चलिरहेको छ । + + + + Unsupported argument -benchmark ignored, use -debug=bench. + असमर्थित तर्क -बेन्चमार्कलाई बेवास्ता गरियो, -डिबग=बेन्च प्रयोग गर्नुहोस् । + + + + Unsupported argument -debugnet ignored, use -debug=net. + असमर्थित तर्क -डिबगनेटलाई बेवास्ता गरियो, -डिबग=नेट प्रयोग गर्नुहोस् । + + + + Unsupported argument -tor found, use -onion. + असमर्थित तर्क -टोर फेला पर्यो, -ओनियन प्रयोग गर्नुहोस् । + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + UPnP प्रयोग गरेर सुन्ने पोर्ट म्याप गर्नुहोस् (डिफल्ट: %u) + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + ब्लक प्रमाणित गरिँदै... + + + + Wallet %s resides outside data directory %s + वालेट %s डाटा निर्देशिका %s बाहिरमा बस्छ + + + + Wallet debugging/testing options: + वालेट डिबगिङ/परीक्षणका विकल्पहरू: + + + + Wallet needed to be rewritten: restart %s to complete + वालेट फेरि लेख्नु आवश्यक छ: पूरा गर्न %s लाई पुन: सुरु गर्नुहोस् + + + + Wallet options: + वालेटका विकल्पहरू: + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + निर्दिष्ट गरिएको स्रोतबाट आएको JSON-RPC कनेक्सनलाई अनुमति दिनुहोस् । एकल IP (e.g. 1.2.3.4), नेटवर्क/नेटमास्क (उदाहरण 1.2.3.4/255.255.255.0) वा नेटवर्क/CIDR (उदाहरण 1.2.3.4/24) &lt;ip&gt; का लागि मान्य छन् । यो विकल्पलाई धेरै पटक निर्दिष्ट गर्न सकिन्छ + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + दिइएको ठेगानामा बाँध्नुहोस् र यसमा कनेक्ट गर्ने सहकर्मीलाई श्वेतसूचीमा राख्नुहोस् । IPv6 लागि [होस्ट]:पोर्ट संकेतन प्रयोग गर्नुहोस् + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + umask 077 को सट्टामा प्रणालीको डिफल्ट अनुमतिको साथमा नयाँ फाइलहरू सिर्जना गर्नुहोस् । (असक्षम गरिएको वालेट कार्यक्षमतामा मात्र प्रभावकारी हुने) + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + आफ्नै IP ठेगाना पत्ता लगाउनुहोस् (सुन्दा र -बाहिरीआइपी वा -प्रोक्सी नहुँदा डिफल्ट: 1 ) + + + + Error: Listening for incoming connections failed (listen returned error %s) + त्रुटि: आगमन कनेक्सनमा सुन्ने कार्य असफल भयो (सुन्ने कार्यले त्रुटि %s फर्कायो) + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + सान्दर्भिक चेतावनी प्राप्त गर्दा आदेश कार्यान्वयन गर्नुहोस् नभए धेरै लामो फोर्क देखा पर्न सक्छ । (cmd को %s लाई सन्देशले प्रतिस्थापन गर्छ) + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + रिले, खनन वा कारोबारको सिर्जनाको लागि यो भन्दा कम शुल्क (%s/kB मा) लाई शून्य शुल्कको रूपमा लिइन्छ । (डिफल्ट: %s) + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + paytxfee सेट गरिएको छैन भने, औसतमा n ब्लक भित्र कारोबार पुष्टिकरण सुरु होस् भन्नका लागि पर्याप्त शुल्क समावेश गर्नुहोस् (डिफल्ट: %u) + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + maxtxfee=&lt;रकम&gt;: का लागि अमान्य रकम &apos;%s&apos; (कारोबारलाई अड्कन नदिन अनिवार्य रूपमा कम्तिमा %s को न्यूनतम रिले शुल्क हुनु पर्छ) + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + हामीले रिले र खनन गर्ने डाटा वाहक कारोबारको डाटाको अधिकतम आकार (डिफल्ट: %u) + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + हरेक प्रोक्सी कनेक्सनका लागि क्रेडिन्सियल अनियमित बनाउनुहोस् । यसले टोर स्ट्रिमको अलगावलाई सक्षम पार्छ (डिफल्ट: %u) + + + + The transaction amount is too small to send after the fee has been deducted + कारोबार रकम शुल्क कटौती गरेपछि पठाउँदा धेरै नै सानो हुन्छ + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + श्वेतसूचीका सहकर्मी पहिलैबाट मेमपूल, उपयोगीमा भए पनि उनीहरूलाई DoS banned गर्न सकिँदैन र उनीहरूको कारोबार सधैं रिले हुन्छ, उदाहरण, गेटवेको लाग + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + तपाईंले काटछाँट नगरेको मोडमा जान पुनः सूचकांक प्रयोग गरेर डाटाबेस पुनर्निर्माण गर्नु पर्ने हुन्छ । यसले सम्पूर्ण ब्लकचेनलाई फेरि डाउनलोड गर्नेछ + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Browse transaction history - कारोबारको इतिहास हेर्नुहोस् + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - E&xit - बाहिर निस्कनुहोस् + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Quit application - एप्लिकेसन बन्द गर्नुहोस् + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - &About %1 - &amp;बारेमा %1 + + %s is set very high! + - Show information about %1 - %1 को बारेमा सूचना देखाउनुहोस् + + ' doesn't exist in the database + - About &Qt - &amp;Qt + + ' has already been used + - Show information about Qt - Qt को बारेमा सूचना देखाउनुहोस् + + ' is not a valid character in the expression: + - &Options... - &amp;विकल्प... + + ' the amount trying to reissue is to large + - Modify configuration options for %1 - %1 का लागि कन्फिगुरेसनको विकल्प परिमार्जन गर्नुहोस + + (default: %s) + - &Encrypt Wallet... - &amp;वालेटलाई इन्क्रिप्ट गर्नुहोस्... + + A space separated list of 12-words used to import a bip44 wallet + - &Backup Wallet... - &amp;वालेटलाई ब्याकअप गर्नुहोस्... + + Always query for peer addresses via DNS lookup (default: %u) + - &Change Passphrase... - &amp;पासफ्रेज परिवर्तन गर्नुहोस्... + + Asset Transfer amounts must be greater than 0 + - &Sending addresses... - &amp;पठाउने ठेगानाहरू... + + Asset doesn't exist: + - &Receiving addresses... - &amp;प्राप्त गर्ने ठेगानाहरू... + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Open &URI... - URI &amp;खोल्नुहोस्... + + Asset name is not valid + - Reindexing blocks on disk... - डिस्कमा ब्लकलाई पुनः सूचीकरण गरिँदै... + + Asset with this name is already in the mempool + - Send coins to a Raven address - बिटकोइन ठेगानामा सिक्का पठाउनुहोस् + + Done Loading + - Backup wallet to another location - वालेटलाई अर्को ठेगानामा ब्याकअप गर्नुहोस् + + Enable publish raw asset messages in <address> + - Change the passphrase used for wallet encryption - वालेट इन्क्रिप्सनमा प्रयोग हुने इन्क्रिप्सन पासफ्रेज परिवर्तन गर्नुहोस् + + Error creating %s: You can't create non-HD wallets with this version. + - &Debug window - &amp;डिबग विन्डो + + Error loading wallet %s. -wallet filename must be a regular file. + - Open debugging and diagnostic console - डिबगिङ र डायाग्नोस्टिक कन्सोल खोल्नुहोस् + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - CoinControlDialog - Amount - रकम + + Error loading wallet %s. Invalid characters in -wallet filename. + - Copy address - ठेगाना कपी गर्नुहोस् - + + Error not set + - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 ले बिटकोइन ब्लक चेनको एउटा प्रतिलिपि डाउनलोड र भण्डारण गर्नेछ । यो निर्देशिकामा कम्तिमा पनि %2GB डाटा भण्डारण गरिनेछ, र यो समयसँगै बढ्नेछ । वालेटलाई पनि यो निर्देशिकामा भण्डारण गरिनेछ । + + Error writing bip 39 passphrase to database + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - Choose the default subdivision unit to show in the interface and when sending coins. - इन्टरफेसमा र सिक्का पठाउँदा देखिने डिफल्ट उपविभाजन एकाइ चयन गर्नुहोस् । + + Error writing bip 39 vchseed to database + - - - OverviewPage - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - देखाइएको सूचना पूरानो हुन सक्छ । कनेक्सन स्थापित भएपछि, तपाईंको वालेट बिटकोइन नेटवर्कमा स्वचालित रूपमा समिकरण हुन्छ , तर यो प्रक्रिया अहिले सम्म पूरा भएको छैन । + + Error writing bip 39 words to database + - Watch-only: - हेर्ने-मात्र: + + Every '(' must have a corresponding ')' in the expression: + - Available: - उपलब्ध: + + Failed to extract destination from change script + - Your current spendable balance - तपाईंको खर्च गर्न मिल्ने ब्यालेन्स + + Failed to find restricted asset change address from inputs + - Pending: - विचाराधिन: + + Failed to get asset data from script + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - अझै पुष्टि हुन बाँकी र खर्च गर्न मिल्ने ब्यालेन्समा गणना गर्न नमिल्ने जम्मा कारोबार + + Failed to get verifier string from output: + - Immature: - अपरिपक्व: + + Failed to load Assets Database + - Mined balance that has not yet matured - अझै परिपक्व नभएको खनन गरिएको ब्यालेन्स + + Flag must be 1 or 0 + - Balances - ब्यालेन्स + + How many blocks to check at startup (default: %u, 0 = all) + - Mined balance in watch-only addresses that has not yet matured - अहिलेसम्म परिपक्व नभएको खनन गरिएको, हेर्ने-मात्र ठेगानामा रहेको ब्यालेन्स + + Include IP addresses in debug output (default: %u) + - Current total balance in watch-only addresses - हेर्ने-मात्र ठेगानामा रहेको हालको जम्मा ब्यालेन्स + + Init Message Channels - Scanning Asset Transactions + - - - PaymentServer - - - PeerTableModel - User Agent - प्रयोगकर्ता एजेन्ट + + Insufficient asset funds + - Node/Service - नोड/सेव + + Invalid Qualifier Name: + - - - QObject - Amount - रकम + + Invalid expressions in verifier string: + - Enter a Raven address (e.g. %1) - कृपया बिटकोइन ठेगाना प्रवेश गर्नुहोस् (उदाहरण %1) + + Invalid parameter: amount must be + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - User Agent - प्रयोगकर्ता एजेन्ट + + Invalid parameter: amount must be between + - Ping Time - पिङ समय + + Invalid parameter: asset amount can't be equal to or less than zero. + - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - Choose... - छनौट गर्नुहोस्... + + Invalid parameter: asset amount greater than max money: + - - - SendCoinsEntry - Choose previously used address - पहिला प्रयोग गरिएको ठेगाना प्रयोग गर्नुहोस् + + Invalid parameter: asset_name ' + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - पठाइँदै गरेको रकमबाट शुल्क कटौती गरिनेछ । प्राप्तकर्ताले तपाईंले रकम क्षेत्रमा प्रवेष गरेको भन्दा थोरै बिटकोइन प्राप्त गर्ने छन् । धेरै प्राप्तकर्ता चयन गरिएको छ भने समान रूपमा शुल्क विभाजित गरिनेछ । + + Invalid parameter: has_ipfs must be 0 or 1. + - Enter a label for this address to add it to the list of used addresses - यो ठेगानालाई प्रयोग गरिएको ठेगानाको सूचीमा थप्न एउटा लेबल प्रविष्ट गर्नुहोस् + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - बिटकोइनमा संलग्न गरिएको सन्देश: तपाईंको मध्यस्थको लागि कारोबारको साथमा भण्डारण गरिने URI । नोट: यो सन्देश बिटकोइन नेटवर्क मार्फत पठाइने छैन । + + Invalid parameter: reissuable must be 0 or 1 + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - आफ्नो ठेगानामा पठाइएको बिटकोइन प्राप्त गर्न सकिन्छ भनेर प्रमाणित गर्न तपाईंले ती ठेगानाले सन्देश/सम्झौताहरूमा हस्ताक्षर गर्न सक्नुहुन्छ । फिसिङ आक्रमणले तपाईंलाई छक्याएर अरूका लागि तपाईंको परिचयमा हस्ताक्षर गराउने प्रयास गर्न सक्ने भएकाले अस्पष्ट वा जथाभावीमा हस्ताक्षर गर्दा ध्यान दिनुहोस् । आफू सहमत भएको पूर्ण विस्तृत-कथनमा मात्र हस्ताक्षर गर्नुहोस् । + + Invalid parameter: reissuable must be 0 + - Choose previously used address - पहिला प्रयोग गरिएको ठेगाना प्रयोग गर्नुहोस् + + Invalid parameter: units must be + - Copy the current signature to the system clipboard - वर्तमान हस्ताक्षरलाई प्रणाली क्लिपबोर्डमा कपी गर्नुहोस् + + Invalid parameter: units must be between 0-8. + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - सन्देश प्रमाणित गर्न, तल दिइएको स्थानमा प्राप्तकर्ता ठेगाना, सन्देश (लाइन ब्रेक, स्पेस, ट्याब, आदि उस्तै गरी कपी गर्ने कुरा सुनिश्चित गर्नुहोस्) र हस्ताक्षर &apos;s प्रविष्ट गर्नुहोस् । बीचमा-मानिसको-आक्रमणबाट बच्न हस्ताक्षर पढ्दा हस्ताक्षर गरिएको सन्देशमा जे छ त्यो भन्दा धेरै कुरामा ध्यान नदिनुहोस् । यो कार्यले हस्ताक्षर गर्ने पक्षले मात्र यो ठेगानाले प्राप्त गर्छ भन्ने कुरा प्रमाणित गर्छ, यसले कुनै पनि कारोबारको प्रेषककर्तालाई प्रमाणित गर्न सक्दैन भन्ने कुरा याद गर्नुहोस्! + + Invalid syntax: + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - Copy address - ठेगाना कपी गर्नुहोस् - + + Keypool ran out, please call keypoolrefill first + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - &Export - &amp;निर्यात गर्नुहोस् - + + Length is to large. Please use a smaller length + - Export the data in the current tab to a file - वर्तमान ट्याबको डाटालाई फाइलमा निर्यात गर्नुहोस् + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - - - raven-core - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - वालेटको सबै कारोबार मेटाउनुहोस् र -स्टार्टअपको पुनः स्क्यान मार्फत ब्लकचेनका ती भागहरूलाई मात्र पुनः प्राप्त गर्नुहोस् + + Listen for connections on <port> (default: %u or testnet: %u) + - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct - ब्लक डाटाबेसमा भविष्यबाट आए जस्तो देखिने एउटा ब्लक हुन्छ । तपाईंको कम्प्युटरको मिति र समय गलत तरिकाले सेट गरिएकाले यस्तो हुन सक्छ । तपाईं आफ्नो कम्प्युटरको मिति र समय सही छ भनेर पक्का हुनुहुन्छ भने मात्र ब्लक डाटाबेस पुनर्निर्माण गर्नुहोस् । + + Maintain at most <n> connections to peers (default: %u) + - Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain - प्रि-फर्क अवस्थामा डाटाबेस रिवाइन्ड गर्न सकिएन । तपाईंले फेरि ब्लकचेन डाउनलोड गर्नु पर्ने हुन्छ + + Make the wallet broadcast transactions + - Use UPnP to map the listening port (default: 1 when listening and no -proxy) - UPnP प्रयोग गरेर सुन्ने पोर्टलाई म्याप गर्नुहोस् (सुन्दा र -प्रोक्सी नहुँदा डिफल्ट: 1) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - You need to rebuild the database using -reindex-chainstate to change -txindex - तपाईंले -चेनस्टेट-पुनः सूचकांकबाट -txindex परिवर्तन प्रयोग गरेर डाटाबेस पुनर्निर्माण गर्नु आवश्यक छ + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - %s corrupt, salvage failed - %s मा क्षति, बचाव विफल भयो + + Mempool cleared + - -maxmempool must be at least %d MB - -maxmempool कम्तिमा %d MB को हुनुपर्छ । + + Multiple verifier strings found in transaction + - <category> can be: - &lt;वर्ग&gt; निम्न आकारको हुनसक्छ: + + Passphrase securing your 12-word mnemonic word-list + - Append comment to the user agent string - प्रयोगकर्ता एजेन्ट स्ट्रिङमा टिप्पणी जोड्नुहोस् + + Prepend debug output with timestamp (default: %u) + - Attempt to recover private keys from a corrupt wallet on startup - स्टार्टअपमा क्षति पूगेको वालेटबाट निजी की प्राप्त गर्न प्रयास गर्नुहोस् + + Relay and mine data carrier transactions (default: %u) + - Block creation options: - ब्लक सिर्जनाको बिकल्प: + + Relay non-P2SH multisig (default: %u) + - Cannot resolve -%s address: '%s' - -%s ठेगाना: &apos;%s&apos; निश्चय गर्न सकिँदैन + + Restricted asset transfer from address that has been frozen + - Change index out of range - सूचकांक परिवर्तन सीमा भन्दा बाहर + + Send transactions with full-RBF opt-in enabled (default: %u) + - Connection options: - कनेक्सनको विकल्प: + + Set key pool size to <n> (default: %u) + - Copyright (C) %i-%i - सर्वाधिकार (C) %i-%i + + Set maximum BIP141 block weight (default: %d) + - Corrupted block database detected - क्षति पुगेको ब्लक डाटाबेस फेला पर + + Set the Maximum reorg depth (default: %u) + - Debugging/Testing options: - डिबगिङ/परीक्षणका विकल्पहरू: + + Set the number of threads to service RPC calls (default: %d) + - Do not load the wallet and disable wallet RPC calls - वालेट लोड नगर्नुहोस् र वालेट RPC कलहरू अक्षम गर्नुहोस् + + Signing asset transaction failed + - Do you want to rebuild the block database now? - तपाईं अहिले ब्लक डेटाबेस पुनर्निर्माण गर्न चाहनुहुन्छ ? + + Specify configuration file (default: %s) + - Unable to bind to %s on this computer. %s is probably already running. - यो कम्प्युटरको %s मा बाँध्न सकिएन । %s सम्भवित रूपमा पहिलैबाट चलिरहेको छ । + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Unsupported argument -benchmark ignored, use -debug=bench. - असमर्थित तर्क -बेन्चमार्कलाई बेवास्ता गरियो, -डिबग=बेन्च प्रयोग गर्नुहोस् । + + Specify pid file (default: %s) + - Unsupported argument -debugnet ignored, use -debug=net. - असमर्थित तर्क -डिबगनेटलाई बेवास्ता गरियो, -डिबग=नेट प्रयोग गर्नुहोस् । + + Spend unconfirmed change when sending transactions (default: %u) + - Unsupported argument -tor found, use -onion. - असमर्थित तर्क -टोर फेला पर्यो, -ओनियन प्रयोग गर्नुहोस् । + + Starting network threads... + - Use UPnP to map the listening port (default: %u) - UPnP प्रयोग गरेर सुन्ने पोर्ट म्याप गर्नुहोस् (डिफल्ट: %u) + + The symbol: ' + - Verifying blocks... - ब्लक प्रमाणित गरिँदै... + + The verifier string has two operators without a tag between them + - Verifying wallet... - वालेट प्रमाणित गरिँदै... + + The wallet will avoid paying less than the minimum relay fee. + - Wallet %s resides outside data directory %s - वालेट %s डाटा निर्देशिका %s बाहिरमा बस्छ + + This is the minimum transaction fee you pay on every transaction. + - Wallet debugging/testing options: - वालेट डिबगिङ/परीक्षणका विकल्पहरू: + + This is the transaction fee you will pay if you send a transaction. + - Wallet needed to be rewritten: restart %s to complete - वालेट फेरि लेख्नु आवश्यक छ: पूरा गर्न %s लाई पुन: सुरु गर्नुहोस् + + Threshold for disconnecting misbehaving peers (default: %u) + - Wallet options: - वालेटका विकल्पहरू: + + Transaction amounts must not be negative + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - निर्दिष्ट गरिएको स्रोतबाट आएको JSON-RPC कनेक्सनलाई अनुमति दिनुहोस् । एकल IP (e.g. 1.2.3.4), नेटवर्क/नेटमास्क (उदाहरण 1.2.3.4/255.255.255.0) वा नेटवर्क/CIDR (उदाहरण 1.2.3.4/24) &lt;ip&gt; का लागि मान्य छन् । यो विकल्पलाई धेरै पटक निर्दिष्ट गर्न सकिन्छ + + Transaction has too long of a mempool chain + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - दिइएको ठेगानामा बाँध्नुहोस् र यसमा कनेक्ट गर्ने सहकर्मीलाई श्वेतसूचीमा राख्नुहोस् । IPv6 लागि [होस्ट]:पोर्ट संकेतन प्रयोग गर्नुहोस् + + Transaction must have at least one recipient + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - JSON-RPC कनेक्सन सुन्नको लागि दिइएको ठेगानामा बाँध्नुहोस् । IPv6 लागि [होस्ट]:पोर्ट संकेतन प्रयोग गर्नुहोस् । यो विकल्पलाई धेरै पटक निर्दिष्ट गर्न सकिन्छ (डिफल्ट: सबै इन्टरफेसमा बाँध्नुहोस्) + + Turn off the databasing the messages sent with assets (default: %u) + - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - umask 077 को सट्टामा प्रणालीको डिफल्ट अनुमतिको साथमा नयाँ फाइलहरू सिर्जना गर्नुहोस् । (असक्षम गरिएको वालेट कार्यक्षमतामा मात्र प्रभावकारी हुने) + + Unable to generate initial keys + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - आफ्नै IP ठेगाना पत्ता लगाउनुहोस् (सुन्दा र -बाहिरीआइपी वा -प्रोक्सी नहुँदा डिफल्ट: 1 ) + + Unable to get coin to verify restricted asset transfer from address + - Error: Listening for incoming connections failed (listen returned error %s) - त्रुटि: आगमन कनेक्सनमा सुन्ने कार्य असफल भयो (सुन्ने कार्यले त्रुटि %s फर्कायो) + + Unable to reissue asset: amount must be 0 or larger + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - सान्दर्भिक चेतावनी प्राप्त गर्दा आदेश कार्यान्वयन गर्नुहोस् नभए धेरै लामो फोर्क देखा पर्न सक्छ । (cmd को %s लाई सन्देशले प्रतिस्थापन गर्छ) + + Unable to reissue asset: asset_name ' + - Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) - रिले, खनन वा कारोबारको सिर्जनाको लागि यो भन्दा कम शुल्क (%s/kB मा) लाई शून्य शुल्कको रूपमा लिइन्छ । (डिफल्ट: %s) + + Unable to reissue asset: reissuable is set to false + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - paytxfee सेट गरिएको छैन भने, औसतमा n ब्लक भित्र कारोबार पुष्टिकरण सुरु होस् भन्नका लागि पर्याप्त शुल्क समावेश गर्नुहोस् (डिफल्ट: %u) + + Unable to reissue asset: reissuable must be 0 or 1 + - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - maxtxfee=&lt;रकम&gt;: का लागि अमान्य रकम &apos;%s&apos; (कारोबारलाई अड्कन नदिन अनिवार्य रूपमा कम्तिमा %s को न्यूनतम रिले शुल्क हुनु पर्छ) + + Unable to reissue asset: unit must be between 8 and -1 + - Maximum size of data in data carrier transactions we relay and mine (default: %u) - हामीले रिले र खनन गर्ने डाटा वाहक कारोबारको डाटाको अधिकतम आकार (डिफल्ट: %u) + + Unknown network specified in -onlynet: '%s' + - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - हरेक प्रोक्सी कनेक्सनका लागि क्रेडिन्सियल अनियमित बनाउनुहोस् । यसले टोर स्ट्रिमको अलगावलाई सक्षम पार्छ (डिफल्ट: %u) + + Insufficient funds + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - बाइटमा उच्च-प्राथमिकता/कम शुल्कको कारोबारको अधिकतम आकार सेट गर्नुहोस् (डिफल्ट: %d) + + Loading block index... + - The transaction amount is too small to send after the fee has been deducted - कारोबार रकम शुल्क कटौती गरेपछि पठाउँदा धेरै नै सानो हुन्छ + + Loading wallet... + - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - BIP32 पछि पदानुक्रमित निर्धारक की सिर्जना (HD) प्रयोग गर्नुहोस् ।. केवल वालेट सिर्जना/पहिलो सुरुवातको समयमा प्रभाव पार्छ + + Cannot downgrade wallet + - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - श्वेतसूचीका सहकर्मी पहिलैबाट मेमपूल, उपयोगीमा भए पनि उनीहरूलाई DoS banned गर्न सकिँदैन र उनीहरूको कारोबार सधैं रिले हुन्छ, उदाहरण, गेटवेको लाग + + Rescanning... + - You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain - तपाईंले काटछाँट नगरेको मोडमा जान पुनः सूचकांक प्रयोग गरेर डाटाबेस पुनर्निर्माण गर्नु पर्ने हुन्छ । यसले सम्पूर्ण ब्लकचेनलाई फेरि डाउनलोड गर्नेछ + + Error + - + \ No newline at end of file diff --git a/src/qt/locale/raven_nl.ts b/src/qt/locale/raven_nl.ts index 3f55bb14ff..4fe904c657 100644 --- a/src/qt/locale/raven_nl.ts +++ b/src/qt/locale/raven_nl.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Rechtermuisklik om het adres of label te wijzigen + Create a new address Maak een nieuw adres aan + &New &Nieuw + Copy the currently selected address to the system clipboard Kopieer het geselecteerde adres naar het klembord + &Copy &Kopieer + C&lose S&luiten + Delete the currently selected address from the list Verwijder het geselecteerde adres van de lijst + Export the data in the current tab to a file Exporteer de data in de huidige tab naar een bestand + &Export &Exporteer + &Delete &Verwijder + Choose the address to send coins to Kies het adres om munten naar te versturen + Choose the address to receive coins with Kies het adres om munten op te ontvangen + C&hoose K&iezen + Sending addresses Verzendadressen + Receiving addresses Ontvangstadressen + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Dit zijn uw Ravenadressen om betalingen mee te verzenden. Controleer altijd het bedrag en het ontvangstadres voordat u uw ravens verzendt. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Dit zijn uw Raven-adressen waarmee u betalingen kunt ontvangen. We raden u aan om een nieuw ontvangstadres voor elke transactie te gebruiken. + &Copy Address &Kopiëer Adres + Copy &Label Kopieer &Label + &Edit &Bewerk + Export Address List Exporteer adreslijst + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) + Exporting Failed Export mislukt + There was an error trying to save the address list to %1. Please try again. Een fout is opgetreden tijdens het opslaan van deze adreslijst naar %1. Probeer het nogmaals. @@ -103,14 +125,17 @@ AddressTableModel + Label Label + Address Adres + (no label) (geen label) @@ -118,2107 +143,5357 @@ AskPassphraseDialog + Passphrase Dialog Wachtwoorddialoog + Enter passphrase Voer wachtwoord in + New passphrase Nieuw wachtwoord + Repeat new passphrase Herhaal nieuw wachtwoord + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Voer een nieuw wachtwoord in voor uw portemonnee.<br/>Gebruik een wachtwoord van <b>tien of meer willekeurige karakters</b>, of <b>acht of meer woorden</b>. + Encrypt wallet Versleutel portemonnee + This operation needs your wallet passphrase to unlock the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te openen. + Unlock wallet Open portemonnee + This operation needs your wallet passphrase to decrypt the wallet. Deze operatie vereist uw portemonneewachtwoord om de portemonnee te ontsleutelen + Decrypt wallet Ontsleutel portemonnee + Change passphrase Wijzig wachtwoord + Enter the old passphrase and new passphrase to the wallet. Voer het oude en nieuwe wachtwoord in voor uw portemonnee. + Confirm wallet encryption Bevestig versleuteling van de portemonnee + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Waarschuwing: Als u uw portemonnee versleutelt en uw wachtwoord vergeet, zult u <b>AL UW RAVENS VERLIEZEN</b>! + Are you sure you wish to encrypt your wallet? Weet u zeker dat u uw portemonnee wilt versleutelen? + + Wallet encrypted Portemonnee versleuteld + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 zal nu afsluiten om het versleutelingsproces te voltooien. Onthoud dat het versleutelen van uw portemonnee u niet volledig kan beschermen: Malware kan uw computer infecteren en uw ravens stelen. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. BELANGRIJK: Elke eerder gemaakte backup van uw portemonneebestand dient u te vervangen door het nieuw gegenereerde, versleutelde portemonneebestand. Om veiligheidsredenen zullen eerdere backups van het niet-versleutelde portemonneebestand onbruikbaar worden zodra u uw nieuwe, versleutelde, portemonnee begint te gebruiken. + + + + Wallet encryption failed Portemonneeversleuteling mislukt + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Portemonneeversleuteling mislukt door een interne fout. Uw portemonnee is niet versleuteld. + + The supplied passphrases do not match. De opgegeven wachtwoorden komen niet overeen + Wallet unlock failed Portemonnee openen mislukt + + + The passphrase entered for the wallet decryption was incorrect. Het opgegeven wachtwoord voor de portemonnee-ontsleuteling is niet correct. + Wallet decryption failed Portemonnee-ontsleuteling mislukt + Wallet passphrase was successfully changed. Portemonneewachtwoord is met succes gewijzigd. + + Warning: The Caps Lock key is on! Waarschuwing: De Caps-Lock-toets staat aan! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Netmasker + + Asset Selection + Asset Selectie - Banned Until - Geband tot + + Quantity: + Hoeveelheid: - - - RavenGUI - Sign &message... - &Onderteken bericht... + + Bytes: + Bytes: - Synchronizing with network... - Synchroniseren met netwerk... + + Amount: + Bedrag: - &Overview - &Overzicht + + Dust: + Stof: - Node - Node + + Fee: + Transactiekosten: - Show general overview of wallet - Toon algemeen overzicht van uw portemonnee + + After Fee: + Na transactiekosten: - &Transactions - &Transacties + + Change: + Verander: - Browse transaction history - Blader door transactiegescheidenis + + (un)select all + (de)selecteer alles - E&xit - A&fsluiten + + Tree mode + Boom modus - Quit application - Programma afsluiten + + List mode + Lijst modus - &About %1 - &Over %1 + + View assets that you have the ownership asset for + Bekijk de assets waarvan u eigenaarsasset bezit - Show information about %1 - Toon informatie over %1 + + View Administrator Assets + Bekijk Eigenaarsassets - About &Qt - Over &Qt + + Asset + - Show information about Qt - Toon informatie over Qt + + Amount + Bedrag: - &Options... - &Opties... + + Received with label + Ontvangen met etiket - Modify configuration options for %1 - Wijzig configuratieopties voor %1 + + Received with address + - &Encrypt Wallet... - &Versleutel Portemonnee... + + Date + Datum - &Backup Wallet... - &Backup Portemonnee... + + Confirmations + Bevestigingen - &Change Passphrase... - &Wijzig Wachtwoord + + Confirmed + Bevestigd - &Sending addresses... - &Verstuuradressen... + + Copy address + Kopieer adres - &Receiving addresses... - &Ontvang adressen... + + Copy label + Kopieer label - Open &URI... - Open &URI... + + + Copy amount + Kopieer bedrag - Click to disable network activity. - Klik om de netwerkactiviteit te stoppen. + + Copy transaction ID + Kopieer transactie-ID - Network activity disabled. - Netwerkactiviteit gestopt. + + Lock unspent + Blokkeer ongebruikte - Click to enable network activity again. - Klik om de netwerkactiviteit opnieuw te starten. + + Unlock unspent + Deblokkeer ongebruikte - Syncing Headers (%1%)... - Kopteksten synchroniseren (%1%)... + + Copy quantity + Kopieer aantal - Reindexing blocks on disk... - Bezig met herindexeren van blokken op harde schijf... + + Copy fee + Kopieer vergoeding - Send coins to a Raven address - Verstuur munten naar een Ravenadres + + Copy after fee + - Backup wallet to another location - Backup portemonnee naar een andere locatie + + Copy bytes + - Change the passphrase used for wallet encryption - Wijzig het wachtwoord voor uw portemonneversleuteling + + Copy dust + - &Debug window - &Debugscherm + + Copy change + - Open debugging and diagnostic console - Open debugging en diagnostische console + + (%1 locked) + - &Verify message... - &Verifiëer bericht... + + yes + ja - Raven - Raven + + no + nee - Wallet - Portemonnee + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Verstuur + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Ontvangen + + + (no label) + (geen label) - &Show / Hide - &Toon / Verberg + + change from %1 (%2) + - Show or hide the main Window - Toon of verberg het hoofdvenster + + (change) + (aanpassen) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Versleutel de geheime sleutels die bij uw portemonnee horen + + Name + Naam - Sign messages with your Raven addresses to prove you own them - Onderteken berichten met uw Ravenadressen om te bewijzen dat u deze adressen bezit + + Quantity + Hoeveelheid + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Ravenadressen + + + Send Coins + Verzend munten - &File - &Bestand + + Asset Control Features + - &Settings - &Instellingen + + Inputs... + Invoer.. - &Help - &Hulp + + automatically selected + - Tabs toolbar - Tab-werkbalk + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Vraag betaling aan (genereert QR-codes en raven: URI's) + + Quantity: + - Show the list of used sending addresses and labels - Toon de lijst met gebruikte verstuuradressen en -labels + + Bytes: + - Show the list of used receiving addresses and labels - Toon de lijst met gebruikte ontvangst adressen en labels + + Amount: + Aantal: - Open a raven: URI or payment request - Open een raven: URI of betalingsverzoek + + Dust: + - &Command-line options - &Opdrachtregelopties - - - %n active connection(s) to Raven network - %n actieve verbinding met Ravennetwerk + + Fee: + - Indexing blocks on disk... - Bezig met indexeren van blokken op harde schijf... + + After Fee: + - Processing blocks on disk... - Bezig met verwerken van blokken op harde schijf... + + Change: + Verander: - - Processed %n block(s) of transaction history. - %n blok aan transactiegeschiedenis verwerkt. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 achter + + Custom change address + - Last received block was generated %1 ago. - Laatst ontvangen blok was %1 geleden gegenereerd. + + Transaction Fee: + - Transactions after this will not yet be visible. - Transacties na dit moment zullen nu nog niet zichtbaar zijn. + + Choose... + Kies... - Error - Fout + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Waarschuwing + + Warning: Fee estimation is currently not possible. + - Information - Informatie + + collapse fee-settings + - Up to date - Bijgewerkt + + Hide + Verbergen - Show the %1 help message to get a list with possible Raven command-line options - Toon het %1 hulpbericht om een lijst te krijgen met mogelijke Raven commandoregelopties + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1 client + + per kilobyte + - Connecting to peers... - Gelijke worden verbonden... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Aan het bijwerken... + + (read the tooltip) + - Date: %1 - - Datum: %1 - + + Recommended: + Aanbevolen: - Amount: %1 - - Aantal: %1 - + + Custom: + - Type: %1 - - Type: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Label: %1 - + + Confirmation time target: + - Address: %1 - - Adres: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Verstuurde transactie + + Request Replace-By-Fee + - Incoming transaction - Binnenkomende transactie + + Confirm the send action + - HD key generation is <b>enabled</b> - HD sleutel voortbrenging is <b>ingeschakeld</b> + + S&end + - HD key generation is <b>disabled</b> - HD sleutel voortbrenging is <b>uitgeschakeld</b> + + Clear all fields of the form. + Wis alle formulier velden - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Een fatale fout heeft zich voorgedaan. Raven kan niet veilig worden verdergezet en wordt afgesloten. + + Add &Recipient + + + + + Balance: + Balans: + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 naar %2 + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmasker + + + + Banned Until + Geband tot CoinControlDialog + Coin Selection Munt Selectie + Quantity: Kwantiteit + Bytes: Bytes: + Amount: Bedrag: + Fee: Transactiekosten: + Dust: Stof: + After Fee: Naheffing: + Change: Wisselgeld: + (un)select all (de)selecteer alles + Tree mode Boom modus + List mode Lijst modus + Amount Bedrag + Received with label Ontvangen met label + Received with address Ontvangen met adres + Date Datum + Confirmations Bevestigingen + Confirmed Bevestigd + Copy address Kopieer adres + Copy label Kopieer label + + Copy amount Kopieer bedrag + Copy transaction ID Kopieer transactie-ID + Lock unspent Blokeer ongebruikte + Unlock unspent Deblokkeer ongebruikte + Copy quantity Kopieer aantal + Copy fee Kopieer vergoeding + Copy after fee Kopieer na vergoeding + Copy bytes Kopieer bytes + Copy dust Kopieër stof + Copy change Kopieer wijziging + (%1 locked) (%1 geblokkeerd) + yes ja + no nee + This label turns red if any recipient receives an amount smaller than the current dust threshold. Dit label wordt rood, als een ontvanger een bedrag van minder dan de huidige dust-drempel gekregen heeft. + Can vary +/- %1 satoshi(s) per input. Kan per input +/- %1 satoshi(s) variëren. + + (no label) (geen label) + change from %1 (%2) wijzig van %1 (%2) + (change) (wijzig) - EditAddressDialog + CreateAssetDialog - Edit Address - Bewerk Adres + + Coin Control Features + - &Label - &Label + + Inputs... + - The label associated with this address list entry - Het label dat bij dit adres item hoort + + automatically selected + automatisch geselecteerd - The address associated with this address list entry. This can only be modified for sending addresses. - Het adres dat bij dit adresitem hoort. Dit kan alleen bewerkt worden voor verstuuradressen. + + Insufficient funds! + - &Address - &Adres + + + Quantity: + Aantal: - New receiving address - Nieuw ontvangstadres + + Bytes: + Bytes: - New sending address - Nieuw verzendadres + + Amount: + - Edit receiving address - Bewerk ontvangstadres + + Dust: + - Edit sending address - Bewerk verzendadres + + Fee: + - The entered address "%1" is not a valid Raven address. - Het opgegeven adres "%1" is een ongeldig Ravenadres. + + After Fee: + - The entered address "%1" is already in the address book. - Het opgegeven adres "%1" bestaat al in uw adresboek. + + Change: + - Could not unlock wallet. - Kon de portemonnee niet openen. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Genereren nieuwe sleutel mislukt. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Een nieuwe gegevensmap wordt aangemaakt. + + Name: + Naam: - name - naam + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Map bestaat al. Voeg %1 toe als u van plan bent hier een nieuwe map aan te maken. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Communicatiepad bestaat al, en is geen map. + + Check Availabilty + Controleer beschikbaarheid - Cannot create data directory here. - Kan hier geen gegevensmap aanmaken. + + Address: + Adres: - - - HelpMessageDialog - version - versie + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Over %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opdrachtregelopties + + Warning: + Waarschuwing: - Usage: - Gebruik: + + The number of assets that will be created + - command-line options - opdrachtregelopties + + Units: + - UI Options: - UI-opties: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Kies gegevensmap bij opstarten (standaard: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Stel taal in, bijvoorbeeld "nl_NL" (standaard: systeemlocale) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Geminimaliseerd starten + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Zet SSL-rootcertificaat voor betalingsverzoeken (standaard: -systeem-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Toon opstartscherm bij opstarten (standaard: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Reset alle wijzigingen aan instellingen gedaan in de GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Welkom + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Welkom bij %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Omdat dit de eerste keer is dat het programma gestart is, kunt u nu kiezen waar %1 de data moet opslaan. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 zal een kopie van de Raven blokketen downloaden en opslaan. Tenminste %2 GB aan data wordt opgeslagen in deze map en het zal groeien in de tijd. De portemonnee wordt ook in deze map opgeslagen. + + Choose... + Kies... - Use the default data directory - Gebruik de standaard gegevensmap + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Gebruik een persoonlijke gegevensmap: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Fout: De gespecificeerde directory "%1" kan niet worden gecreëerd. + + collapse fee-settings + - Error - Fout - - - %n GB of free space available - %n GB aan vrije opslagruimte beschikbaar - - - (of %n GB needed) - (van %n GB nodig) + + Hide + Verberg - - - ModalOverlay - Form - Vorm + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Recente transacties zijn mogelijk nog niet zichtbaar. De balans van de geldbeugel is daarom mogelijk niet correct. Deze informatie is correct van zodra de synchronisatie met het Raven-netwerk werd voltooid, zoals onderaan beschreven. + + per kilobyte + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Poging om ravens te besteden die door "nog niet weergegeven" transacties worden beïnvloed, worden niet door het netwerk geaccepteerd. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Number of blocks left - Aantal blokken resterend. + + (read the tooltip) + - Unknown... - Onbekend... + + Recommended: + Aanbevolen: - Last block time - Tijd laatste blok + + C&ustom: + - Progress - Vooruitgang + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress increase per hour - Vooruitgang per uur + + Confirmation time target: + - calculating... - Berekenen... + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Estimated time left until synced - Geschatte tijd tot volledig synchroon + + Request Replace-By-Fee + - Hide - Verbergen + + Create Asset + Maak Asset - Unknown. Syncing Headers (%1)... - Onbekend. Kopteksten synchroniseren (%1%)... + + Clear + Wis - - - OpenURIDialog - Open URI - Open URI + + Balance: + - Open payment request from URI or file - Open betalingsverzoek via URI of bestand + + 123.456 RVN + 123.456 RVN - URI: - URI: + + Copy quantity + - Select payment request file - Selecteer betalingsverzoek bestand + + Copy amount + - Select payment request file to open - Selecteer betalingsverzoekbestand om te openen + + Copy fee + - - - OptionsDialog - Options - Opties + + Copy after fee + - &Main - &Algemeen + + Copy bytes + - Automatically start %1 after logging in to the system. - Start %1 automatisch na inloggen in het systeem. + + Copy dust + - &Start %1 on system login - &Start %1 bij het inloggen op het systeem + + Copy change + - Size of &database cache - Grootte van de &databasecache + + %1 (%2 blocks) + - MB - MB + + Main Asset + - Number of script &verification threads - Aantal threads voor &scriptverificatie + + Sub Asset + - Accept connections from outside - Accepteer binnenkomende verbindingen + + Unique Asset + - Allow incoming connections - Sta inkomende verbindingen toe + + Messaging Channel Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-adres van de proxy (bijv. IPv4: 127.0.0.1 / IPv6: ::1) + + Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimaliseren in plaats van de applicatie af te sluiten wanneer het venster is afgesloten. Als deze optie is ingeschakeld, zal de toepassing pas worden afgesloten na het selecteren van Exit in het menu. + + Sub Qualifier Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL's van derden (bijvoorbeeld block explorer) die in de transacties tab verschijnen als contextmenuelementen. %s in de URL is vervangen door transactiehash. Verscheidene URL's zijn gescheiden door een verticale streep |. + + Restricted Asset + - Third party transaction URLs - Transactie-URLs van derde partijen + + Asset Type + - Active command-line options that override above options: - Actieve opdrachtregelopties die bovenstaande opties overschrijven: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Reset all client options to default. - Reset alle clientopties naar de standaardinstellingen. + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Reset Options - &Reset Opties + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Network - &Netwerk + + + + Warning: Invalid Raven address + Waarschuwing: Ongeldig Ravenadres - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = laat dit aantal kernen vrij) + + Warning: Restricted Assets Reissuance requires an address + - W&allet - W&allet + + Valid Asset + - Expert - Expert + + Invalid: Asset name already in use + - Enable coin &control features - Coin &Control activeren + + Error: Asset Database not in sync + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Indien het uitgeven van onbevestigd wisselgeld uitgeschakeld wordt dan kan het wisselgeld van een transactie niet worden gebruikt totdat de transactie ten minste een bevestiging heeft. Dit heeft ook invloed op de manier waarop uw saldo wordt berekend. + + + %1 to %2 + - &Spend unconfirmed change - &Spendeer onbevestigd wisselgeld + + Are you sure you want to send? + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Open de Ravenpoort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat. + + added as transaction fee + - Map port using &UPnP - Portmapping via &UPnP + + Total Amount %1 + - Connect to the Raven network through a SOCKS5 proxy. - Verbind met het Ravennetwerk via een SOCKS5 proxy. + + or + of - &Connect through SOCKS5 proxy (default proxy): - &Verbind via een SOCKS5-proxy (standaardproxy): + + Confirm send assets + - Proxy &IP: - Proxy &IP: + + Invalid: + Ongeldig: - &Port: - &Poort: + + Copy + Kopie - Port of the proxy (e.g. 9050) - Poort van de proxy (bijv. 9050) + + Transaction ID Copied + Transactie ID gekopieerd - Used for reaching peers via: - Gebruikt om peers te bereiken via: + + Asset transaction sent to network: + - - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Vertoningen, als de opgegeven standaard SOCKS5-proxy is gebruikt om peers te benaderen via dit type netwerk. + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Unknown change address + - IPv6 - IPv6 + + Confirm custom change address + - Tor - Tor + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Maak verbinding met Ravennetwerk door een aparte SOCKS5-proxy voor verborgen diensten van Tor. + + (no label) + (geen label) - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Gebruikt aparte SOCKS5-proxy om peers te bereiken via verborgen diensten van Tor: + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - &Scherm + + Edit Address + Bewerk Adres - &Hide the icon from the system tray. - &Verberg het icoon van de systeembalk. + + &Label + &Label - Hide tray icon - Verberg systeembalk icoon + + The label associated with this address list entry + Het label dat bij dit adres item hoort - Show only a tray icon after minimizing the window. - Laat alleen een systeemvakicoon zien wanneer het venster geminimaliseerd is + + The address associated with this address list entry. This can only be modified for sending addresses. + Het adres dat bij dit adresitem hoort. Dit kan alleen bewerkt worden voor verstuuradressen. - &Minimize to the tray instead of the taskbar - &Minimaliseer naar het systeemvak in plaats van de taakbalk + + &Address + &Adres - M&inimize on close - M&inimaliseer bij sluiten van het venster + + New receiving address + Nieuw ontvangstadres - &Display - &Interface + + New sending address + Nieuw verzendadres - User Interface &language: - Taal &Gebruikersinterface: + + Edit receiving address + Bewerk ontvangstadres - The user interface language can be set here. This setting will take effect after restarting %1. - De taal van de gebruikersinterface kan hier ingesteld worden. Deze instelling zal pas van kracht worden nadat %1 herstart wordt. + + Edit sending address + Bewerk verzendadres - &Unit to show amounts in: - &Eenheid om bedrag in te tonen: + + The entered address "%1" is not a valid Raven address. + Het opgegeven adres "%1" is een ongeldig Ravenadres. - Choose the default subdivision unit to show in the interface and when sending coins. - Kies de standaardonderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten + + The entered address "%1" is already in the address book. + Het opgegeven adres "%1" bestaat al in uw adresboek. - Whether to show coin control features or not. - Munt controle functies weergeven of niet. + + Could not unlock wallet. + Kon de portemonnee niet openen. - &OK - &OK + + New key generation failed. + Genereren nieuwe sleutel mislukt. + + + FreespaceChecker - &Cancel - &Annuleren + + A new data directory will be created. + Een nieuwe gegevensmap wordt aangemaakt. - default - standaard + + name + naam - none - geen + + Directory already exists. Add %1 if you intend to create a new directory here. + Map bestaat al. Voeg %1 toe als u van plan bent hier een nieuwe map aan te maken. - Confirm options reset - Bevestig reset opties + + Path already exists, and is not a directory. + Communicatiepad bestaat al, en is geen map. - Client restart required to activate changes. - Herstart van de client is vereist om veranderingen door te voeren. + + Cannot create data directory here. + Kan hier geen gegevensmap aanmaken. + + + FreezeAddress - Client will be shut down. Do you want to proceed? - Applicatie zal worden afgesloten. Wilt u doorgaan? + + Frame + - This change would require a client restart. - Om dit aan te passen moet de client opnieuw gestart worden. + + Restricted Asset: + - The supplied proxy address is invalid. - Het opgegeven proxyadres is ongeldig. + + Address: + Adres: - - - OverviewPage - Form - Vorm + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automatisch met het Ravennetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid. + + IPFS / Hash: + - Watch-only: - Alleen-bekijkbaar: + + Single Address Options + - Available: - Beschikbaar: + + Global Options + - Your current spendable balance - Uw beschikbare saldo + + Free&ze trading on this address + - Pending: - Afwachtend: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - De som van de transacties die nog bevestigd moeten worden, en nog niet meetellen in uw beschikbare saldo + + Freeze all &trading for the selected restricted asset + - Immature: - Immatuur: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - Gedolven saldo dat nog niet tot wasdom is gekomen + + Check + Controle - Balances - Saldi + + Clear + Wis - Total: - Totaal: + + Submit + Bevestig - Your current total balance - Uw totale saldo + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - Uw huidige balans in alleen-bekijkbare adressen + + Must have a restricted asset selected + - Spendable: - Besteedbaar: + + Address is already frozen + - Recent transactions - Recente transacties + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - Onbevestigde transacties naar alleen-bekijkbare adressen + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - Ontgonnen saldo dat nog niet tot wasdom is gekomen + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - Huidige balans in alleen-bekijkbare adressen. + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - Fout bij betalingsverzoek + + Warning: transaction while syncing wallet! + Waarschuwing: transactie tijdens portemonnee synchronisatie! - Cannot start raven: click-to-pay handler - Kan raven niet starten: click-to-pay handler + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + U probeert om een transactie te doen terwijl uw wallet nog niet volledig gesynchroniseerd is. Dit is niet aanbevolen want de transactie kan mogelijk vastlopen in uw wallet. Weet u zeker dat u verder wil gaan? + +Aanbevolen actie: Synchroniseer uw wallet volledig vooraleer uw transactie te verzenden. + + + + HelpMessageDialog - URI handling - URI-behandeling + + version + versie - Payment request fetch URL is invalid: %1 - URL om betalingsverzoek te verkrijgen is ongeldig: %1 + + + (%1-bit) + (%1-bit) - Invalid payment address %1 - Ongeldig betalingsadres %1 - + + About %1 + Over %1 + + + + Command-line options + Opdrachtregelopties + + + + Usage: + Gebruik: + + + + command-line options + opdrachtregelopties + + + + UI Options: + UI-opties: + + + + Choose data directory on startup (default: %u) + Kies gegevensmap bij opstarten (standaard: %u) + + + + Set language, for example "de_DE" (default: system locale) + Stel taal in, bijvoorbeeld "nl_NL" (standaard: systeemlocale) + + + + Start minimized + Geminimaliseerd starten + + + + Set SSL root certificates for payment request (default: -system-) + Zet SSL-rootcertificaat voor betalingsverzoeken (standaard: -systeem-) + + + + Show splash screen on startup (default: %u) + Toon opstartscherm bij opstarten (standaard: %u) + + + + Reset all settings changed in the GUI + Reset alle wijzigingen aan instellingen gedaan in de GUI + + + + Intro + + + Welcome + Welkom + + + + Welcome to %1. + Welkom bij %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Omdat dit de eerste keer is dat het programma gestart is, kunt u nu kiezen waar %1 de data moet opslaan. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Gebruik de standaard gegevensmap + + + + Use a custom data directory: + Gebruik een persoonlijke gegevensmap: + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + Ongeveer %1 GB data zal in deze directory worden opgeslagen. + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + De portemonnee zal ook in deze directory worden opgeslagen. + + + + Error: Specified data directory "%1" cannot be created. + Fout: De gespecificeerde directory "%1" kan niet worden gecreëerd. + + + + Error + Fout + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + HD Portemonnee Setup + + + + MnemonicDialog1 + + + HD Wallet Setup + HD portemonnee Setup + + + + Select the type of wallet to create. + Selecteer het type portemonnee om aan te maken + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + Selecteer aub wat u wilt doen: + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + Accepteer + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + Wachtwoordzin: + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + Waarschuwing: + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Accepteer + + + + Go Back + Terug + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + Wachtwoordzin: + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + Waarschuwing + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Accepteer + + + + Go Back + Terug + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Vorm + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Recente transacties zijn mogelijk nog niet zichtbaar. De balans van de geldbeugel is daarom mogelijk niet correct. Deze informatie is correct van zodra de synchronisatie met het Raven-netwerk werd voltooid, zoals onderaan beschreven. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Poging om ravens te besteden die door "nog niet weergegeven" transacties worden beïnvloed, worden niet door het netwerk geaccepteerd. + + + + Number of blocks left + Aantal blokken resterend. + + + + + + Unknown... + Onbekend... + + + + Last block time + Tijd laatste blok + + + + Progress + Vooruitgang + + + + Progress increase per hour + Vooruitgang per uur + + + + + calculating... + Berekenen... + + + + Estimated time left until synced + Geschatte tijd tot volledig synchroon + + + + Hide + Verbergen + + + + Unknown. Syncing Headers (%1)... + Onbekend. Kopteksten synchroniseren (%1%)... + + + + MyRestrictedAssetsTableModel + + + Date + Datum + + + + Type + Type + + + + Address + Adres + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + Bevroren + + + + Unfrozen + + + + + Other + Anders + + + + watch-only + + + + + (no label) + (geen label) + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Open URI + + + + Open payment request from URI or file + Open betalingsverzoek via URI of bestand + + + + URI: + URI: + + + + Select payment request file + Selecteer betalingsverzoek bestand + + + + Select payment request file to open + Selecteer betalingsverzoekbestand om te openen + + + + OptionsDialog + + + Options + Opties + + + + &Main + &Algemeen + + + + Automatically start %1 after logging in to the system. + Start %1 automatisch na inloggen in het systeem. + + + + &Start %1 on system login + &Start %1 bij het inloggen op het systeem + + + + Size of &database cache + Grootte van de &databasecache + + + + MB + MB + + + + Number of script &verification threads + Aantal threads voor &scriptverificatie + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-adres van de proxy (bijv. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + &Verberg prullenbak + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimaliseren in plaats van de applicatie af te sluiten wanneer het venster is afgesloten. Als deze optie is ingeschakeld, zal de toepassing pas worden afgesloten na het selecteren van Exit in het menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL's van derden (bijvoorbeeld block explorer) die in de transacties tab verschijnen als contextmenuelementen. %s in de URL is vervangen door transactiehash. Verscheidene URL's zijn gescheiden door een verticale streep |. + + + + Active command-line options that override above options: + Actieve opdrachtregelopties die bovenstaande opties overschrijven: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + Open configuratie bestand + + + + Reset all client options to default. + Reset alle clientopties naar de standaardinstellingen. + + + + &Reset Options + &Reset Opties + + + + &Network + &Netwerk + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = laat dit aantal kernen vrij) + + + + W&allet + W&allet + + + + Expert + Expert + + + + Enable coin &control features + Coin &Control activeren + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Indien het uitgeven van onbevestigd wisselgeld uitgeschakeld wordt dan kan het wisselgeld van een transactie niet worden gebruikt totdat de transactie ten minste een bevestiging heeft. Dit heeft ook invloed op de manier waarop uw saldo wordt berekend. + + + + &Spend unconfirmed change + &Spendeer onbevestigd wisselgeld + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Open de Ravenpoort automatisch op de router. Dit werkt alleen als de router UPnP ondersteunt en het aanstaat. + + + + Map port using &UPnP + Portmapping via &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + Accepteer inkomende connecties + + + + Connect to the Raven network through a SOCKS5 proxy. + Verbind met het Ravennetwerk via een SOCKS5 proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + &Verbind via een SOCKS5-proxy (standaardproxy): + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Poort: + + + + + Port of the proxy (e.g. 9050) + Poort van de proxy (bijv. 9050) + + + + Used for reaching peers via: + Gebruikt om peers te bereiken via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Maak verbinding met Ravennetwerk door een aparte SOCKS5-proxy voor verborgen diensten van Tor. + + + + &Window + &Scherm + + + + Show only a tray icon after minimizing the window. + Laat alleen een systeemvakicoon zien wanneer het venster geminimaliseerd is + + + + &Minimize to the tray instead of the taskbar + &Minimaliseer naar het systeemvak in plaats van de taakbalk + + + + M&inimize on close + M&inimaliseer bij sluiten van het venster + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Interface + + + + User Interface &language: + Taal &Gebruikersinterface: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + De taal van de gebruikersinterface kan hier ingesteld worden. Deze instelling zal pas van kracht worden nadat %1 herstart wordt. + + + + &Unit to show amounts in: + &Eenheid om bedrag in te tonen: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Kies de standaardonderverdelingseenheid om weer te geven in uw programma, en voor het versturen van munten + + + + Whether to show coin control features or not. + Munt controle functies weergeven of niet. + + + + &Third party transaction URLs + + + + + + Reset + Herstel + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + Inschakelen Dark Mode + + + + &OK + &OK + + + + &Cancel + &Annuleren + + + + default + standaard + + + + none + geen + + + + Confirm options reset + Bevestig reset opties + + + + + Client restart required to activate changes. + Herstart van de client is vereist om veranderingen door te voeren. + + + + Client will be shut down. Do you want to proceed? + Applicatie zal worden afgesloten. Wilt u doorgaan? + + + + Configuration options + Configuratie opties + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + Fout + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Om dit aan te passen moet de client opnieuw gestart worden. + + + + The supplied proxy address is invalid. + Het opgegeven proxyadres is ongeldig. + + + + OverviewPage + + + Form + Vorm + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + De weergegeven informatie kan verouderd zijn. Uw portemonnee synchroniseert automatisch met het Ravennetwerk nadat een verbinding is gelegd, maar dit proces is nog niet voltooid. + + + + Watch-only: + Alleen-bekijkbaar: + + + + Available: + Beschikbaar: + + + + Your current spendable balance + Uw beschikbare saldo + + + + Pending: + Afwachtend: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + De som van de transacties die nog bevestigd moeten worden, en nog niet meetellen in uw beschikbare saldo + + + + Immature: + Immatuur: + + + + Mined balance that has not yet matured + Gedolven saldo dat nog niet tot wasdom is gekomen + + + + Total: + Totaal: + + + + Your current total balance + Uw totale saldo + + + + RVN Balances + RVN Balance + + + + Your current balance in watch-only addresses + Uw huidige balans in alleen-bekijkbare adressen + + + + Spendable: + Besteedbaar: + + + + Asset Balances + + + + + Search + Zoeken + + + + Recent transactions + Recente transacties + + + + Unconfirmed transactions to watch-only addresses + Onbevestigde transacties naar alleen-bekijkbare adressen + + + + Mined balance in watch-only addresses that has not yet matured + Ontgonnen saldo dat nog niet tot wasdom is gekomen + + + + Current total balance in watch-only addresses + Huidige balans in alleen-bekijkbare adressen. + + + + Send Asset + Verstuur Asset + + + + Copy Amount + + + + + Copy Name + Kopieer naam + + + + Copy Hash + Kopieer Hash + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fout bij betalingsverzoek + + + + Cannot start raven: click-to-pay handler + Kan raven niet starten: click-to-pay handler + + + + + + URI handling + URI-behandeling + + + + Payment request fetch URL is invalid: %1 + URL om betalingsverzoek te verkrijgen is ongeldig: %1 + + + + Invalid payment address %1 + Ongeldig betalingsadres %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig Raven adres of misvormde URI parameters. + + + + Payment request file handling + Betalingsverzoek bestandsafhandeling + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Betalingsverzoekbestand kan niet gelezen of verwerkt worden! Dit kan veroorzaakt worden door een ongeldig betalingsverzoekbestand. + + + + + + + + + Payment request rejected + Betalingsverzoek geweigerd + + + + Payment request network doesn't match client network. + Betalingsaanvraagnetwerk komt niet overeen met klantennetwerk. + + + + Payment request expired. + Betalingsverzoek verlopen. + + + + Payment request is not initialized. + Betalingsaanvraag is niet geïnitialiseerd. + + + + Unverified payment requests to custom payment scripts are unsupported. + Niet-geverifieerde betalingsverzoeken naar aangepaste betalingsscripts worden niet ondersteund. + + + + + Invalid payment request. + Ongeldig betalingsverzoek. + + + + Requested payment amount of %1 is too small (considered dust). + Het gevraagde betalingsbedrag van %1 is te weinig (beschouwd als stof). + + + + Refund from %1 + Restitutie van %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalingsverzoek %1 is te groot (%2 bytes, toegestaan ​​%3 bytes). + + + + Error communicating with %1: %2 + Fout bij communiceren met %1: %2 + + + + Payment request cannot be parsed! + Betalingsverzoek kan niet worden verwerkt! + + + + Bad response from server %1 + Ongeldige respons van server %1 + + + + Network request error + Fout bij netwerkverzoek + + + + Payment acknowledged + Betaling bevestigd + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Node/Dienst + + + + NodeId + Node ID + + + + Ping + Ping + + + + Sent + Versturen + + + + Received + Ontvangen + + + + QObject + + + Amount + Bedrag + + + + Enter a Raven address (e.g. %1) + Voer een Ravenadres in (bijv. %1) + + + + %1 d + %1 d + + + + %1 h + %1 uur + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Geen + + + + N/A + N.v.t. + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 en %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 sloot nog niet veilig af... + + + + unknown + onbekend + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Fout: Opgegeven gegevensmap "%1" bestaat niet. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fout: Kan configuratiebestand niet verwerken: %1. Gebruik enkel de key=value syntax. + + + + Error: %1 + Fout: %1 + + + + QRImageWidget + + + &Save Image... + &Sla afbeelding op... + + + + &Copy Image + &Afbeelding kopiëren + + + + Save QR Code + Sla QR-code op + + + + PNG Image (*.png) + PNG afbeelding (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N.v.t. + + + + Client version + Clientversie + + + + &Information + &Informatie + + + + Debug window + Debug venster + + + + General + Algemeen + + + + Using BerkeleyDB version + Gebruikt BerkeleyDB versie + + + + Datadir + Data map + + + + Startup time + Opstarttijd + + + + Network + Netwerk + + + + Name + Naam + + + + Number of connections + Aantal connecties + + + + Block chain + Blokketen + + + + Current number of blocks + Huidig aantal blokken + + + + Memory Pool + Geheugenpoel + + + + Current number of transactions + Huidig aantal transacties + + + + Memory usage + Geheugengebruik + + + + &Reset + + + + + + Received + Ontvangen + + + + + Sent + Verstuurd + + + + &Peers + &Peers + + + + Banned peers + Gebande peers + + + + + + Select a peer to view detailed information. + Selecteer een peer om gedetailleerde informatie te bekijken. + + + + Whitelisted + Toegestaan + + + + Direction + Directie + + + + Version + Versie + + + + Starting Block + Start Blok + + + + Synced Headers + Gesynchroniseerde headers + + + + Synced Blocks + Gesynchroniseerde blokken + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + Herstel transacties + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Open het %1 debug-logbestand van de huidige datamap. Dit kan een aantal seconden duren voor grote logbestanden. + + + + Decrease font size + Verklein lettergrootte + + + + Increase font size + Vergroot lettergrootte + + + + Services + Diensten + + + + Ban Score + Ban score + + + + Connection Time + Connectie tijd + + + + Last Send + Laatst verstuurd + + + + Last Receive + Laatst ontvangen + + + + Ping Time + Ping Tijd + + + + The duration of a currently outstanding ping. + De tijdsduur van een op het moment openstaande ping. + + + + Ping Wait + Pingwachttijd + + + + Min Ping + Min Ping + + + + Time Offset + Tijdcompensatie + + + + Last block time + Tijd laatste blok + + + + &Open + &Open + + + + &Console + &Console + + + + &Network Traffic + &Netwerkverkeer + + + + Totals + Totalen + + + + In: + In: + + + + Out: + Uit: + + + + Debug log file + Debuglogbestand + + + + Clear console + Maak console leeg + + + + 1 &hour + 1 &uur + + + + 1 &day + 1 &dag + + + + 1 &week + 1 &week + + + + 1 &year + 1 &jaar + + + + &Disconnect + &Verbreek verbinding + + + + + + + Ban for + Ban Node voor + + + + &Unban + &Maak ban voor Node ongedaan + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Welkom bij de %1 RPC-console. + + + + Type <b>help</b> for an overview of available commands. + Typ <b>help</b> voor een overzicht van de beschikbare opdrachten. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Netwerkactiviteit uitgeschakeld + + + + (node id: %1) + (node id: %1) + + + + via %1 + via %1 + + + + + never + nooit + + + + Inbound + Inkomend + + + + Outbound + Uitgaand + + + + Yes + Ja + + + + No + Nee + + + + + Unknown + Onbekend + + + + RavenGUI + + + Sign &message... + &Onderteken bericht... + + + + Synchronizing with network... + Synchroniseren met netwerk... + + + + &Overview + &Overzicht + + + + Node + Node + + + + Show general overview of wallet + Toon algemeen overzicht van uw portemonnee + + + + &Transactions + &Transacties + + + + Browse transaction history + Blader door transactiegescheidenis + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + Binnenkort beschikbaar + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + A&fsluiten + + + + Quit application + Programma afsluiten + + + + &About %1 + &Over %1 + + + + Show information about %1 + Toon informatie over %1 + + + + About &Qt + Over &Qt + + + + Show information about Qt + Toon informatie over Qt + + + + &Options... + &Opties... + + + + Modify configuration options for %1 + Wijzig configuratieopties voor %1 + + + + &Encrypt Wallet... + &Versleutel Portemonnee... + + + + &Backup Wallet... + &Backup Portemonnee... + + + + &Change Passphrase... + &Wijzig Wachtwoord + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Verstuuradressen... + + + + &Receiving addresses... + &Ontvang adressen... + + + + Open &URI... + Open &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Klik om de netwerkactiviteit te stoppen. + + + + Network activity disabled. + Netwerkactiviteit gestopt. + + + + Click to enable network activity again. + Klik om de netwerkactiviteit opnieuw te starten. + + + + Syncing Headers (%1%)... + Kopteksten synchroniseren (%1%)... + + + + Reindexing blocks on disk... + Bezig met herindexeren van blokken op harde schijf... + + + + Send coins to a Raven address + Verstuur munten naar een Ravenadres + + + + Backup wallet to another location + Backup portemonnee naar een andere locatie + + + + Change the passphrase used for wallet encryption + Wijzig het wachtwoord voor uw portemonneversleuteling + + + + Open debugging and diagnostic console + Open debugging en diagnostische console + + + + &Verify message... + &Verifiëer bericht... + + + + Raven + Raven + + + + Wallet + Portemonnee + + + + &Send + &Verstuur + + + + &Receive + &Ontvangen + + + + &Show / Hide + &Toon / Verberg + + + + Show or hide the main Window + Toon of verberg het hoofdvenster + + + + Encrypt the private keys that belong to your wallet + Versleutel de geheime sleutels die bij uw portemonnee horen + + + + Sign messages with your Raven addresses to prove you own them + Onderteken berichten met uw Ravenadressen om te bewijzen dat u deze adressen bezit + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifiëer handtekeningen om zeker te zijn dat de berichten zijn ondertekend met de gespecificeerde Ravenadressen + + + + &File + &Bestand + + + + &Help + &Hulp + + + + Request payments (generates QR codes and raven: URIs) + Vraag betaling aan (genereert QR-codes en raven: URI's) + + + + Show the list of used sending addresses and labels + Toon de lijst met gebruikte verstuuradressen en -labels + + + + Show the list of used receiving addresses and labels + Toon de lijst met gebruikte ontvangst adressen en labels + + + + Open a raven: URI or payment request + Open een raven: URI of betalingsverzoek + + + + &Command-line options + &Opdrachtregelopties + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Bezig met indexeren van blokken op harde schijf... + + + + Processing blocks on disk... + Bezig met verwerken van blokken op harde schijf... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 achter + + + + Last received block was generated %1 ago. + Laatst ontvangen blok was %1 geleden gegenereerd. + - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI kan niet verwerkt worden! Dit kan het gevolg zijn van een ongeldig Raven adres of misvormde URI parameters. + + Transactions after this will not yet be visible. + Transacties na dit moment zullen nu nog niet zichtbaar zijn. - Payment request file handling - Betalingsverzoek bestandsafhandeling + + Error + Fout - Payment request file cannot be read! This can be caused by an invalid payment request file. - Betalingsverzoekbestand kan niet gelezen of verwerkt worden! Dit kan veroorzaakt worden door een ongeldig betalingsverzoekbestand. + + Warning + Waarschuwing - Payment request rejected - Betalingsverzoek geweigerd + + Information + Informatie + + + + Up to date + Bijgewerkt + + + + Show the %1 help message to get a list with possible Raven command-line options + Toon het %1 hulpbericht om een lijst te krijgen met mogelijke Raven commandoregelopties + + + + %1 client + %1 client + + + + Connecting to peers... + Gelijke worden verbonden... + + + + Catching up... + Aan het bijwerken... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Aantal: %1 + + + + + Type: %1 + + Type: %1 + + + + + Label: %1 + + Label: %1 + + + + + Address: %1 + + Adres: %1 + + + + + Sent transaction + Verstuurde transactie + + + + Incoming transaction + Binnenkomende transactie + + + + + Assets not yet active + Assets nog niet actief + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD sleutel voortbrenging is <b>ingeschakeld</b> + + + + HD key generation is <b>disabled</b> + HD sleutel voortbrenging is <b>uitgeschakeld</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portemonnee is <b>versleuteld</b> en momenteel <b>geopend</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portemonnee is <b>versleuteld</b> en momenteel <b>gesloten</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Een fatale fout heeft zich voorgedaan. Raven kan niet veilig worden verdergezet en wordt afgesloten. + + + + ReceiveCoinsDialog + + + &Amount: + &Bedrag + + + + &Label: + &Label: + + + + &Message: + &Bericht + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Gebruik een van de eerder gebruikte ontvangstadressen opnieuw. Het opnieuw gebruiken van adressen heeft beveiliging- en privacy problemen. Gebruik dit niet, behalve als er eerder een betalingsverzoek opnieuw gegenereerd is. + + + + R&euse an existing receiving address (not recommended) + H&ergebruik en bestaand ontvangstadres (niet aanbevolen) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Een optioneel bericht om bij te voegen aan het betalingsverzoek, welke zal getoond worden wanneer het verzoek is geopend. Opmerking: Het bericht zal niet worden verzonden met de betaling over het Ravennetwerk. + + + + + An optional label to associate with the new receiving address. + Een optioneel label om te associëren met het nieuwe ontvangende adres + + + + Use this form to request payments. All fields are <b>optional</b>. + Gebruik dit formulier om te verzoeken tot betaling. Alle velden zijn <b>optioneel</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Een optioneel te verzoeken bedrag. Laat dit leeg, of nul, om geen specifiek bedrag aan te vragen. + + + + Clear all fields of the form. + Wis alle velden op het formulier. + + + + Clear + Wissen + + + + Requested payments history + Geschiedenis van de betalingsverzoeken + + + + &Request payment + &Betalingsverzoek + + + + Show the selected request (does the same as double clicking an entry) + Toon het geselecteerde verzoek (doet hetzelfde als dubbelklikken) + + + + Show + Toon + + + + Remove the selected entries from the list + Verwijder de geselecteerde items van de lijst + + + + Remove + Verwijder + + + + Copy URI + Kopieer URI + + + + Copy label + Kopieer label + + + + Copy message + Kopieer bericht + + + + Copy amount + Kopieer bedrag + + + + ReceiveRequestDialog + + + QR Code + QR-code + + + + Copy &URI + Kopieer &URI + + + + Copy &Address + Kopieer &adres + + + + &Save Image... + &Sla afbeelding op... + + + + Request payment to %1 + Betalingsverzoek tot %1 + + + + Payment information + Betalingsinformatie + + + + URI + URI + + + + Address + Adres + + + + Amount + Bedrag + + + + Label + Label + + + + Message + Bericht + + + + Resulting URI too long, try to reduce the text for label / message. + Resulterende URI te lang, probeer de tekst korter te maken voor het label/bericht. + + + + Error encoding URI into QR Code. + Fout tijdens encoderen URI in QR-code + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Label + + + + Message + Bericht - Payment request network doesn't match client network. - Betalingsaanvraagnetwerk komt niet overeen met klantennetwerk. + + (no label) + (geen label) - Payment request expired. - Betalingsverzoek verlopen. + + (no message) + (geen bericht) - Payment request is not initialized. - Betalingsaanvraag is niet geïnitialiseerd. + + (no amount requested) + (geen bedrag aangevraagd) - Unverified payment requests to custom payment scripts are unsupported. - Niet-geverifieerde betalingsverzoeken naar aangepaste betalingsscripts worden niet ondersteund. + + Requested + Verzoek ingediend + + + ReissueAssetDialog - Invalid payment request. - Ongeldig betalingsverzoek. + + Coin Control Features + - Requested payment amount of %1 is too small (considered dust). - Het gevraagde betalingsbedrag van %1 is te weinig (beschouwd als stof). + + Inputs... + Invoer... - Refund from %1 - Restitutie van %1 + + automatically selected + automatisch geselecteerd - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Betalingsverzoek %1 is te groot (%2 bytes, toegestaan ​​%3 bytes). + + Insufficient funds! + - Error communicating with %1: %2 - Fout bij communiceren met %1: %2 + + + Quantity: + - Payment request cannot be parsed! - Betalingsverzoek kan niet worden verwerkt! + + Bytes: + - Bad response from server %1 - Ongeldige respons van server %1 + + Amount: + - Network request error - Fout bij netwerkverzoek + + Dust: + - Payment acknowledged - Betaling bevestigd + + Fee: + - - - PeerTableModel - User Agent - User Agent + + After Fee: + - Node/Service - Node/Dienst + + Change: + - NodeId - Node ID + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Ping - Ping + + Custom change address + - - - QObject - Amount - Bedrag + + + Reissue Asset + - Enter a Raven address (e.g. %1) - Voer een Ravenadres in (bijv. %1) + + Select an asset to reissue: + - %1 d - %1 d + + Address: + Adres: - %1 h - %1 uur + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 m - %1 m + + Verifier String: + - %1 s - %1 s + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - None - Geen + + Warning: + Waarschuwing: - N/A - N.v.t. + + The number of assets that will be created + - %1 ms - %1 ms + + Unit: + - - %n second(s) - %n seconde + + + e.g. 1.00000000 + - - %n minute(s) - %n minuut + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n uur + + + Reissuable + - - %n day(s) - %n dag + + + Change IPFS/Txid Hash + - - %n week(s) - %n week + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 en %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n jaar + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 sloot nog niet veilig af... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Fout: Opgegeven gegevensmap "%1" bestaat niet. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Fout: Kan configuratiebestand niet verwerken: %1. Gebruik enkel de key=value syntax. + + Transaction Fee: + - Error: %1 - Fout: %1 + + Choose... + Kies... - - - QRImageWidget - &Save Image... - &Sla afbeelding op... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Afbeelding kopiëren + + Warning: Fee estimation is currently not possible. + - Save QR Code - Sla QR-code op + + collapse fee-settings + - PNG Image (*.png) - PNG afbeelding (*.png) + + Hide + Verbergen - - - RPCConsole - N/A - N.v.t. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Clientversie + + per kilobyte + per kilobyte - &Information - &Informatie + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Debug venster + + (read the tooltip) + - General - Algemeen + + Recommended: + Aanbevolen: - Using BerkeleyDB version - Gebruikt BerkeleyDB versie + + Cus&tom: + - Datadir - Data map + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Opstarttijd + + Confirmation time target: + - Network - Netwerk + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Naam + + Request Replace-By-Fee + - Number of connections - Aantal connecties + + Clear + Wissen - Block chain - Blokketen + + Balance: + - Current number of blocks - Huidig aantal blokken + + 123.456 RVN + - Memory Pool - Geheugenpoel + + Copy quantity + - Current number of transactions - Huidig aantal transacties + + Copy amount + - Memory usage - Geheugengebruik + + Copy fee + - Received - Ontvangen + + Copy after fee + - Sent - Verstuurd + + Copy bytes + - &Peers - &Peers + + Copy dust + - Banned peers - Gebande peers + + Copy change + - Select a peer to view detailed information. - Selecteer een peer om gedetailleerde informatie te bekijken. + + Select an asset to reissue.. + - Whitelisted - Toegestaan + + Select the asset you want to reissue. + - Direction - Directie + + %1 (%2 blocks) + - Version - Versie + + Cost + - Starting Block - Start Blok + + Asset data couldn't be found + - Synced Headers - Gesynchroniseerde headers + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Gesynchroniseerde blokken + + Invalid Raven Destination Address + - User Agent - User Agent + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Open het %1 debug-logbestand van de huidige datamap. Dit kan een aantal seconden duren voor grote logbestanden. + + + Warning: Invalid Raven address + - Decrease font size - Verklein lettergrootte + + + Yes + Ja - Increase font size - Vergroot lettergrootte + + No + Nee - Services - Diensten + + + Name + Naam - Ban Score - Ban score + + + Total Quantity + - Connection Time - Connectie tijd + + + Units + - Last Send - Laatst verstuurd + + + Can Reisssue + - Last Receive - Laatst ontvangen + + + + IPFS Hash + - Ping Time - Ping Tijd + + + + Txid Hash + - The duration of a currently outstanding ping. - De tijdsduur van een op het moment openstaande ping. + + Verifier String + - Ping Wait - Pingwachttijd + + + Current Verifier String + - Min Ping - Min Ping + + Please select a asset from the menu to display the assets current settings + - Time Offset - Tijdcompensatie + + Please select a asset from the menu to display the assets updated settings + - Last block time - Tijd laatste blok + + Current Quantity + - &Open - &Open + + Current Units + - &Console - &Console + + Can Reissue + - &Network Traffic - &Netwerkverkeer + + Unknown data hash type + - &Clear - &Wissen + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totalen + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - In: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Uit: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Debuglogbestand + + + %1 to %2 + - Clear console - Maak console leeg + + Are you sure you want to send? + - 1 &hour - 1 &uur + + added as transaction fee + - 1 &day - 1 &dag + + Total Amount %1 + - 1 &week - 1 &week + + or + of - 1 &year - 1 &jaar + + Confirm reissue assets + - &Disconnect - &Verbreek verbinding + + Copy + Kopie - Ban for - Ban Node voor + + Transaction ID Copied + - &Unban - &Maak ban voor Node ongedaan + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Welkom bij de %1 RPC-console. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Gebruik de pijltjestoetsen om door de geschiedenis te navigeren, en <b>Ctrl-L</b> om het scherm leeg te maken. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Typ <b>help</b> voor een overzicht van de beschikbare opdrachten. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - WAARSCHUWING: Er zijn Scammers actief geweest, die gebruikers vragen om hier commando's te typen, waardoor de inhoud van hun portefeuille werd gestolen. Gebruik deze console niet zonder de toedracht van een opdracht volledig te begrijpen. + + (no label) + (geen label) - Network activity disabled - Netwerkactiviteit uitgeschakeld + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + Verstuur munten - %1 KB - %1 Kb + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 Gb + + Address List + Adreslijst - (node id: %1) - (node id: %1) + + Balance: + - via %1 - via %1 + + + Failed to create a change address + - never - nooit + + Failed to generate the correct transaction. Please try again + - Inbound - Inkomend + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Uitgaand + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Ja + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Nee + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Onbekend + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - &Bedrag + + + Total Amount %1 + - &Label: - &Label: + + + or + of - &Message: - &Bericht + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Gebruik een van de eerder gebruikte ontvangstadressen opnieuw. Het opnieuw gebruiken van adressen heeft beveiliging- en privacy problemen. Gebruik dit niet, behalve als er eerder een betalingsverzoek opnieuw gegenereerd is. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - H&ergebruik en bestaand ontvangstadres (niet aanbevolen) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Een optioneel bericht om bij te voegen aan het betalingsverzoek, welke zal getoond worden wanneer het verzoek is geopend. Opmerking: Het bericht zal niet worden verzonden met de betaling over het Ravennetwerk. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Een optioneel label om te associëren met het nieuwe ontvangende adres + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Gebruik dit formulier om te verzoeken tot betaling. Alle velden zijn <b>optioneel</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Een optioneel te verzoeken bedrag. Laat dit leeg, of nul, om geen specifiek bedrag aan te vragen. + + This is an asset payment + - Clear all fields of the form. - Wis alle velden op het formulier. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Wissen + + + + Memo: + Nota: - Requested payments history - Geschiedenis van de betalingsverzoeken + + Amount: + Hoeveelheid: - &Request payment - &Betalingsverzoek + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Toon het geselecteerde verzoek (doet hetzelfde als dubbelklikken) + + &Label: + &Label: - Show - Toon + + Asset: + - Remove the selected entries from the list - Verwijder de geselecteerde items van de lijst + + The Raven address to send the payment to + - Remove - Verwijder + + Choose previously used address + - Copy URI - Kopieer URI + + Alt+A + ALT+A - Copy label - Kopieer label + + Paste address from clipboard + - Copy message - Kopieer bericht + + Alt+P + ALT+P - Copy amount - Kopieer bedrag + + + + Remove this entry + Verwijder dit item - - - ReceiveRequestDialog - QR Code - QR-code + + Message: + Bericht: - Copy &URI - Kopieer &URI + + Transfer &To: + - Copy &Address - Kopieer &adres + + Transfer Administrator Asset + - &Save Image... - &Sla afbeelding op... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Betalingsverzoek tot %1 + + This is an unauthenticated payment request. + - Payment information - Betalingsinformatie + + + Transfer to: + Verzenden naar: - URI - URI + + + A&mount: + - Address - Adres + + This is an authenticated payment request. + - Amount - Bedrag + + Enter a label for this address to add it to your address book + - Label - Label + + Select to view administrator assets to transfer + - Message - Bericht + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Resulterende URI te lang, probeer de tekst korter te maken voor het label/bericht. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Fout tijdens encoderen URI in QR-code + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Datum + + Failed to get asset metadata for: + - Label - Label + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Bericht + + Failed to get asset outpoints from database + - (no label) - (geen label) + + Selected Balance + - (no message) - (geen bericht) + + Wallet Balance + - (no amount requested) - (geen bedrag aangevraagd) + + Select an administrator asset to transfer + - Requested - Verzoek ingediend + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Verstuurde munten + Coin Control Features Coin controle opties + Inputs... Invoer... + automatically selected automatisch geselecteerd + Insufficient funds! Onvoldoende fonds! + Quantity: Kwantiteit + Bytes: Bytes: + Amount: Bedrag: + Fee: Kosten: + After Fee: Naheffing: + Change: Wisselgeld: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Als dit is geactiveerd, maar het wisselgeldadres is leeg of ongeldig, dan wordt het wisselgeld verstuurd naar een nieuw gegenereerd adres. + Custom change address Aangepast wisselgeldadres + Transaction Fee: Transactiekosten: + Choose... Kies... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings verberg kosteninstellingen + per kilobyte per kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Als de aangepaste toeslag is ingesteld op 1000 satoshis en de transactie is maar 250 bytes, dan wordt bij "per kilobyte" 250 satoshis aan toeslag berekend, terwijl er bij "totaal tenminste" 1000 satoshis worden berekend. Voor transacties die groter zijn dan een kilobyte, wordt in beide gevallen per kilobyte de toeslag berekend. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Als de aangepaste toeslag is ingesteld op 1000 satoshis en de transactie is maar 250 bytes, dan wordt bij "per kilobyte" 250 satoshis aan toeslag berekend, terwijl er bij "totaal tenminste" 1000 satoshis worden berekend. Voor transacties die groter zijn dan een kilobyte, wordt in beide gevallen per kilobyte de toeslag berekend. + Hide Verbergen - total at least - totaal ten minste - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. De minimale toeslag betalen is prima mits het transactievolume kleiner is dan de ruimte in de blokken. Let wel op dat dit tot gevolg kan hebben dat een transactie nooit wordt bevestigd als er meer vraag is naar raventransacties dan het netwerk kan verwerken. + (read the tooltip) (lees de tooltip) + Recommended: Aanbevolen: + Custom: Handmatig: + (Smart fee not initialized yet. This usually takes a few blocks...) (Slimme transactiekosten is nog niet geïnitialiseerd. Dit duurt meestal een paar blokken...) - normal - normaal + + Request Replace-By-Fee + - fast - snel + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Verstuur in een keer aan verschillende ontvangers + Add &Recipient Voeg &Ontvanger Toe + Clear all fields of the form. Wis alle velden van het formulier. + Dust: Stof: + Confirmation time target: Bevestigingstijddoel: + Clear &All Verwijder &Alles + Balance: Saldo: + Confirm the send action Bevestig de verstuuractie + S&end V&erstuur + Copy quantity Kopieer aantal + Copy amount Kopieer bedrag + Copy fee Kopieer vergoeding + Copy after fee Kopieer na vergoeding + Copy bytes Kopieer bytes + Copy dust Kopieër stof + Copy change Kopieer wijziging + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 tot %2 + Are you sure you want to send? Weet u zeker dat u wilt verzenden? + added as transaction fee toegevoegd als transactiekosten + Total Amount %1 Totaalbedrag %1 + or of + Confirm send coins Bevestig versturen munten + The recipient address is not valid. Please recheck. Het adres van de ontvanger is niet geldig. Gelieve opnieuw te controleren. + The amount to pay must be larger than 0. Het ingevoerde bedrag moet groter zijn dan 0. + The amount exceeds your balance. Het bedrag is hoger dan uw huidige saldo. + The total exceeds your balance when the %1 transaction fee is included. Het totaal overschrijdt uw huidige saldo wanneer de %1 transactiekosten worden meegerekend. + Duplicate address found: addresses should only be used once each. Dubbel adres gevonden: adressen mogen maar één keer worden gebruikt worden. + Transaction creation failed! Transactiecreatie mislukt + The transaction was rejected with the following reason: %1 De transactie werd afgewezen om de volgende reden: %1 + A fee higher than %1 is considered an absurdly high fee. Een vergoeding van meer dan %1 wordt beschouwd als een absurd hoge vergoeding. + Payment request expired. Betalingsverzoek verlopen. - - %n block(s) - %n blok - + Pay only the required fee of %1 Betaal alleen de verplichte transactiekosten van %1 + Estimated to begin confirmation within %n block(s). - Schatting is dat bevestiging begint over %n blok. + + Warning: Invalid Raven address Waarschuwing: Ongeldig Ravenadres + Warning: Unknown change address Waarschuwing: Onbekend wisselgeldadres + Confirm custom change address Bevestig aangepast wisselgeldadres + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Het wisselgeldadres dat u heeft geselecteerd maakt geen deel uit van deze portemonnee. Een deel of zelfs alle geld in uw portemonnee kan mogelijk naar dit adres worden verzonden. Weet je het zeker? + (no label) (geen label) @@ -2226,82 +5501,108 @@ SendCoinsEntry + + + A&mount: B&edrag: - Pay &To: - Betaal &Aan: - - + &Label: &Label: + Choose previously used address Kies een eerder gebruikt adres + This is a normal payment. Dit is een normale betaling. + The Raven address to send the payment to Het Ravenadres om betaling aan te versturen + Alt+A Alt+A + Paste address from clipboard Plak adres vanuit klembord + Alt+P Alt+P + + + Remove this entry Verwijder deze toevoeging + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. De transactiekosten zal worden afgetrokken van het bedrag dat verstuurd wordt. De ontvangers zullen minder ravens ontvangen dan ingevoerd is in het hoeveelheidsveld. Als er meerdere ontvangers geselecteerd zijn, dan worden de transactiekosten gelijk verdeeld. + S&ubtract fee from amount Trek de transactiekosten a&f van het bedrag. + Message: Bericht: + + Send &To: + + + + This is an unauthenticated payment request. Dit is een niet-geverifieerd betalingsverzoek. + + + Send to: + + + + This is an authenticated payment request. Dit is een geverifieerd betalingsverzoek. + Enter a label for this address to add it to the list of used addresses Vul een label voor dit adres in om het aan de lijst met gebruikte adressen toe te voegen + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Een bericht dat werd toegevoegd aan de raven: URI welke wordt opgeslagen met de transactie ter referentie. Opmerking: Dit bericht zal niet worden verzonden over het Ravennetwerk. - Pay To: - Betaal Aan: - - + + Memo: Memo: + Enter a label for this address to add it to your address book Vul een label in voor dit adres om het toe te voegen aan uw adresboek @@ -2309,6 +5610,8 @@ SendConfirmationDialog + + Yes Ja @@ -2316,10 +5619,12 @@ ShutdownWindow + %1 is shutting down... %1 is aan het afsluiten... + Do not shut down the computer until this window disappears. Sluit de computer niet af totdat dit venster verdwenen is. @@ -2327,138 +5632,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Handtekeningen – Onderteken een bericht / Verifiëer een handtekening + &Sign Message &Onderteken Bericht + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. U kunt berichten/overeenkomsten ondertekenen met uw adres om te bewijzen dat u Ravens kunt versturen. Wees voorzichtig met het ondertekenen van iets vaags of willekeurigs, omdat phishingaanvallen u kunnen proberen te misleiden tot het ondertekenen van overeenkomsten om uw identiteit aan hen toe te vertrouwen. Onderteken alleen volledig gedetailleerde verklaringen voordat u akkoord gaat. + The Raven address to sign the message with Het Ravenadres om bericht mee te ondertekenen + + Choose previously used address Kies een eerder gebruikt adres + + Alt+A Alt+A + Paste address from clipboard Plak adres vanuit klembord + Alt+P Alt+P + Enter the message you want to sign here Typ hier het bericht dat u wilt ondertekenen + Signature Handtekening + Copy the current signature to the system clipboard Kopieer de huidige handtekening naar het systeemklembord + Sign the message to prove you own this Raven address Onderteken een bericht om te bewijzen dat u een bepaald Ravenadres bezit + Sign &Message Onderteken &Bericht + Reset all sign message fields Verwijder alles in de invulvelden + + Clear &All Verwijder &Alles + &Verify Message &Verifiëer Bericht - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Voer het adres van de ontvanger in, bericht (zorg ervoor dat de regeleinden, spaties, tabs etc. precies kloppen) en onderteken onderaan om het bericht te verifiëren. Wees voorzicht om niet meer in de ondertekening te lezen dan in het getekende bericht zelf, om te voorkomen dat je wordt aangevallen met een man-in-the-middle attack. Houd er mee rekening dat dit alleen de ondertekende partij bewijst met het ontvangen adres, er kan niet bewezen worden dat er een transactie heeft plaatsgevonden! + The Raven address the message was signed with Het Ravenadres waarmee het bericht ondertekend is + Verify the message to ensure it was signed with the specified Raven address Controleer een bericht om te verifiëren dat het gespecificeerde Ravenadres het bericht heeft ondertekend. + Verify &Message Verifiëer &Bericht + Reset all verify message fields Verwijder alles in de invulvelden - Click "Sign Message" to generate signature - Klik op "Onderteken Bericht" om de handtekening te genereren + + Click "Sign Message" to generate signature + Klik op "Onderteken Bericht" om de handtekening te genereren + + The entered address is invalid. Het opgegeven adres is ongeldig. + + + + Please check the address and try again. Controleer het adres en probeer het opnieuw. + + The entered address does not refer to a key. Het opgegeven adres verwijst niet naar een sleutel. + Wallet unlock was cancelled. Portemonnee-ontsleuteling is geannuleerd. + Private key for the entered address is not available. Geheime sleutel voor het ingevoerde adres is niet beschikbaar. + Message signing failed. Ondertekenen van het bericht is mislukt. + Message signed. Bericht ondertekend. + The signature could not be decoded. De handtekening kon niet worden gedecodeerd. + + Please check the signature and try again. Controleer de handtekening en probeer het opnieuw. + The signature did not match the message digest. De handtekening hoort niet bij het bericht. + Message verification failed. Berichtverificatie mislukt. + Message verified. Bericht geverifiëerd. @@ -2466,6 +5814,7 @@ SplashScreen + [testnet] [testnetwerk] @@ -2473,6 +5822,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2480,170 +5830,260 @@ TransactionDesc + Open for %n more block(s) - Open voor nog %n blok + + Open until %1 Open tot %1 + conflicted with a transaction with %1 confirmations geconflicteerd met een transactie met %1 confirmaties + %1/offline %1/offline + 0/unconfirmed, %1 0/onbevestigd, %1 + in memory pool in geheugenpoel + not in memory pool niet in geheugenpoel + abandoned opgegeven + %1/unconfirmed %1/onbevestigd + %1 confirmations %1 bevestigingen + + Status Status + + , has not been successfully broadcast yet , is nog niet met succes uitgezonden + + + + , broadcast through %n node(s) + + + + Date Datum + Source Bron + Generated Gegenereerd + + + + + From Van + + unknown onbekend + + + + + To Aan + + own address eigen adres + + + watch-only alleen-bekijkbaar + + label label + + + + + + + Credit Credit + matures in %n more block(s) - komt beschikbaar na %n nieuwe blok + + not accepted niet geaccepteerd + + + + + Debit Debet + Total debit Totaal debit + Total credit Totaal credit + Transaction fee Transactiekosten + Net amount Netto bedrag + + + + Message Bericht + + Comment Opmerking + + Transaction ID Transactie-ID + + Transaction total size Transactie totale grootte + + Output index Output index + + Merchant Handelaar - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Gegenereerde munten moeten %1 blokken rijpen voordat ze kunnen worden besteed. Toen dit blok gegenereerd werd, werd het uitgezonden naar het netwerk om aan de blokketen toegevoegd te worden. Als het niet lukt om in de keten toegevoegd te worden, zal de status te veranderen naar "niet geaccepteerd" en zal het niet besteedbaar zijn. Dit kan soms gebeuren als een ander knooppunt een blok genereert binnen een paar seconden na die van u. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Gegenereerde munten moeten %1 blokken rijpen voordat ze kunnen worden besteed. Toen dit blok gegenereerd werd, werd het uitgezonden naar het netwerk om aan de blokketen toegevoegd te worden. Als het niet lukt om in de keten toegevoegd te worden, zal de status te veranderen naar "niet geaccepteerd" en zal het niet besteedbaar zijn. Dit kan soms gebeuren als een ander knooppunt een blok genereert binnen een paar seconden na die van u. + + + + Net RVN amount + + Debug information Debug-informatie + Transaction Transactie + Inputs Inputs + Amount Bedrag + + true waar + + false onwaar @@ -2651,10 +6091,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Dit venster laat een uitgebreide beschrijving van de transactie zien + Details for %1 Details voor %1 @@ -2662,269 +6104,411 @@ TransactionTableModel + Date Datum + Type Type + Label Label + + + Amount + + + + + Asset + + + Open for %n more block(s) - Open voor nog %n blok + + Open until %1 Open tot %1 + Offline Offline + Unconfirmed Onbevestigd + Abandoned Opgegeven + Confirming (%1 of %2 recommended confirmations) Bevestigen (%1 van %2 aanbevolen bevestigingen) + Confirmed (%1 confirmations) Bevestigd (%1 bevestigingen) + Conflicted Conflicterend + Immature (%1 confirmations, will be available after %2) Niet beschikbaar (%1 bevestigingen, zal beschikbaar zijn na %2) + This block was not received by any other nodes and will probably not be accepted! Dit blok is niet ontvangen bij andere nodes en zal waarschijnlijk niet worden geaccepteerd! + Generated but not accepted Gegenereerd maar niet geaccepteerd + Received with Ontvangen met + Received from Ontvangen van + Sent to Verzonden aan + Payment to yourself Betaling aan uzelf + Mined Gedolven + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only alleen-bekijkbaar + (n/a) (nvt) + (no label) (geen label) + Transaction status. Hover over this field to show number of confirmations. Transactiestatus. Houd de cursor boven dit veld om het aantal bevestigingen te laten zien. + Date and time that the transaction was received. Datum en tijd waarop deze transactie is ontvangen. + Type of transaction. Type transactie. + Whether or not a watch-only address is involved in this transaction. Of er een alleen-bekijken-adres is betrokken bij deze transactie. + User-defined intent/purpose of the transaction. Door gebruiker gedefinieerde intentie/doel van de transactie. + Amount removed from or added to balance. Bedrag verwijderd van of toegevoegd aan saldo. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Alles + Today Vandaag + This week Deze week + This month Deze maand + Last month Vorige maand + This year Dit jaar + Range... Bereik... + Received with Ontvangen met + Sent to Verzonden aan + To yourself Aan uzelf + Mined Gedolven + Other Anders + Enter address or label to search Vul adres of label in om te zoeken + Min amount Min. bedrag + + Asset name + + + + Abandon transaction Doe afstand van transactie + Copy address Kopieer adres + Copy label Kopieer label + Copy amount Kopieer bedrag + Copy transaction ID Kopieer transactie-ID + Copy raw transaction Kopieer ruwe transactie + Copy full transaction details Kopieer volledige transactiedetials + Edit label Bewerk label + Show transaction details Toon transactiedetails + + Browse with: + + + + Export Transaction History Exporteer transactiegeschiedenis + Comma separated file (*.csv) Kommagescheiden bestand (*.csv) + Confirmed Bevestigd + Watch-only Alleen-bekijkbaar + Date Datum + Type Type + Label Label + Address Adres + + Asset + + + + ID ID + Exporting Failed Export mislukt + There was an error trying to save the transaction history to %1. Er is een fout opgetreden bij het opslaan van de transactiegeschiedenis naar %1. + Exporting Successful Export succesvol + The transaction history was successfully saved to %1. De transactiegeschiedenis was succesvol bewaard in %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Bereik: + to naar @@ -2932,6 +6516,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Eenheid om bedragen uit te drukken. Klik om een andere eenheid te selecteren. @@ -2939,6 +6524,7 @@ WalletFrame + No wallet has been loaded. Er is geen portemonnee geladen. @@ -2946,964 +6532,1763 @@ WalletModel + Send Coins Verstuur munten + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exporteer + Export the data in the current tab to a file Exporteer de data in de huidige tab naar een bestand + Backup Wallet Portemonnee backuppen + Wallet Data (*.dat) Portemonneedata (*.dat) + Backup Failed Backup mislukt + There was an error trying to save the wallet data to %1. Er is een fout opgetreden bij het wegschrijven van de portemonneedata naar %1. + Backup Successful Backup succesvol + The wallet data was successfully saved to %1. De portemonneedata is succesvol opgeslagen in %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opties: + Specify data directory Stel datamap in + Connect to a node to retrieve peer addresses, and disconnect Verbind naar een node om adressen van anderen op te halen, en verbreek vervolgens de verbinding + Specify your own public address Specificeer uw eigen publieke adres + Accept command line and JSON-RPC commands Aanvaard opdrachtregel- en JSON-RPC-opdrachten - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Accepteer verbindingen van buitenaf (standaard: 1 indien geen -proxy of -connect/-noconnect werd opgegeven) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Verbind enkel met de opgegeven knooppunt(en); -noconnect of -connect = 0 alleen om automatische verbindingen uit te schakelen - - + Distributed under the MIT software license, see the accompanying file %s or %s Uitgegeven onder de MIT software licentie, zie het bijgevoegde bestand %s of %s + If <category> is not supplied or if <category> = 1, output all debugging information. Als er geen <categorie> is opgegeven of als de <categorie> 1 is, laat dan alle debugginginformatie zien. + Prune configured below the minimum of %d MiB. Please use a higher number. Snoeien is geconfigureerd on het minimum van %d MiB. Gebruik a.u.b. een hoger aantal. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Snoei: laatste portemoneesynchronisatie gaat verder dan de gesnoeide data. U moet -reindex gebruiken (download opnieuw de gehele blokketen voor een weggesnoeide node) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Herscannen is niet mogelijk in de snoeimodus. U moet -reindex gebruiken dat de hele blokketen opnieuw zal downloaden. + Error: A fatal internal error occurred, see debug.log for details Fout: er is een fout opgetreden, zie debug.log voor details + Fee (in %s/kB) to add to transactions you send (default: %s) Transactiekosten (in %s/kB) toevoegen aan transacties die u doet (standaard: %s) + Pruning blockstore... Snoei blokopslag... + Run in the background as a daemon and accept commands Draai in de achtergrond als daemon en aanvaard opdrachten + Unable to start HTTP server. See debug log for details. Niet mogelijk ok HTTP-server te starten. Zie debuglogboek voor details. + Raven Core Raven Core + The %s developers De %s ontwikkelaars + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Een transactietarief (in %s/kB) dat gebruikt wordt als de transactiekosten schatting niet genoeg data heeft. (normaal: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Accepteer doorgestuurde transacties ontvangen van goedgekeurde peers, ook wanneer je zelf geen transacties doorstuurt (standaard: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Bind aan opgegeven adres en luister er altijd op. Gebruik [host]:port notatie voor IPv6 + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Bind aan opgegeven adres en luister er altijd op. Gebruik [host]:port notatie voor IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + Kan geen lock verkrijgen op gegevensmap %s. %s draait waarschijnlijk al. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - Kan geen lock verkrijgen op gegevensmap %s. %s draait waarschijnlijk al. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Verwijder alle transacties van de portemonnee en herstel alleen de delen van de blokketen door -rescan tijdens het opstarten - Error loading %s: You can't enable HD on a already existing non-HD wallet - Fout bij het laden van %s: Je kan HD niet activeren voor een reeds bestaande niet-HD portemonnee + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + Waarschuwing: Fout bij het lezen van %s! Alle sleutels zijn in goede orde uitgelezen, maar transactiedata of adresboeklemma's zouden kunnen ontbreken of fouten bevatten. - Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. - Waarschuwing: Fout bij het lezen van %s! Alle sleutels zijn in goede orde uitgelezen, maar transactiedata of adresboeklemma's zouden kunnen ontbreken of fouten bevatten. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Voer opdracht uit zodra een portemonneetransactie verandert (%s in cmd wordt vervangen door TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Extra transacties wordt bijgehouden voor compacte blokreconstructie (standaard: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Als dit blok in de keten staat, gaat het ervan uit dat dit blok en zijn voorouders geldig zijn en mogelijk hun script verificatie overslaan (0 om alles te verifiëren, standaard:%s, testnet:%s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Maximum toegestane peer tijd compensatie. Lokaal perspectief van tijd mag worden beinvloed door peers die met deze hoeveelheid voor of achter lopen. (standaard: %u seconden) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Maximum totale transactiekosten (in %s) om te gebruiken in een enkele portemoneetransactie; als dit te laag is ingesteld kunnen grote transacties worden verhinderd (standaard: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Waarschuwing: Controleer dat de datum en tijd van uw computer correct zijn ingesteld! Bij een onjuist ingestelde klok zal %s niet goed werken. + Please contribute if you find %s useful. Visit %s for further information about the software. Gelieve bij te dragen als je %s nuttig vindt. Bezoek %s voor meer informatie over de software. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Beperk benodigde opslag door trimmen (verwijderen) van oude blokken in te schakelen. Dit maakt het mogelijk om de pruneblockchain RPC aan te roepen om specifieke blokken te verwijderen, en maakt het automatische trimmen van oude blokken mogelijk wanneer een doelgrootte in MiB is voorzien. Deze modus is niet compatibele met -txindex en -rescan. Waarschuwing: Terugzetten van deze instellingen vereist het opnieuw downloaden van gehele de blokketen. (standaard:0 = uitzetten trimmodus, 1 = manueel trimmen via RPC toestaan, >%u = automatisch blokbestanden trimmen om beneden de gespecificeerde doelgrootte in MiB te blijven) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Specificeer het laagste tarief (in %s/kB) voor transacties die bij het maken van een blok moeten worden in rekening worden gebracht (standaard: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Kies het aantal scriptverificatie processen (%u tot %d, 0 = auto, <0 = laat dit aantal kernen vrij, standaard: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct De blokdatabase bevat een blok dat lijkt uit de toekomst te komen. Dit kan gebeuren omdat de datum en tijd van uw computer niet goed staat. Herbouw de blokdatabase pas nadat u de datum en tijd van uw computer correct heeft ingesteld. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Dit is een pre-release testversie - gebruik op eigen risico! Gebruik deze niet voor het delven van munten of handelsdoeleinden + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Niet mogelijk om de databank terug te draaien naar een staat voor de vork. Je zal je blokketen opnieuw moeten downloaden + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Gebruik UPnP om de luisterende poort te mappen (standaard: 1 als er geluisterd worden en geen -proxy is meegegeven) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Gebruikersnaam en gehasht wachtwoord voor JSON-RPC-verbindingen. De velden <userpw> is in het formaat: <GEBRUIKERSNAAM>:<SALT>$<HASH>. Een kanoniek Pythonscript is inbegrepen in de share/rpcuser. De klant connecteert dan normaal via de rpcuser=<GEBRUIKERSNAAM>/rpcpassword=<PASWOORD> argumenten. Deze optie kan meerdere keren worden meegegeven + Wallet will not create transactions that violate mempool chain limits (default: %u) Portemonnee creëert geen transacties die mempool-ketenlimieten schenden (standaard: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Waarschuwing: Het lijkt erop dat het netwerk geen consensus kan vinden! Sommige delvers lijken problemen te ondervinden. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Waarschuwing: Het lijkt erop dat we geen consensus kunnen vinden met onze peers! Mogelijk dient u te upgraden, of andere nodes moeten wellicht upgraden. - You need to rebuild the database using -reindex-chainstate to change -txindex - Om -txindex te kunnen veranderen dient u de database opnieuw te bouwen met gebruik van -reindex-chainstate. + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrupt, veiligstellen mislukt + -maxmempool must be at least %d MB -maxmempool moet tenminste %d MB zijn + <category> can be: <categorie> kan zijn: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Voeg commentaar toe aan de user agent string + Attempt to recover private keys from a corrupt wallet on startup Probeer privésleutels te herstellen van een corrupte wallet bij opstarten + Block creation options: Blokcreatie-opties: - Cannot resolve -%s address: '%s' - Kan -%s adres niet herleiden: '%s' + + Cannot resolve -%s address: '%s' + Kan -%s adres niet herleiden: '%s' + Chain selection options: Keten selectie opties: + Change index out of range Wijzigingsindex buiten bereik + Connection options: Verbindingsopties: + Copyright (C) %i-%i Auteursrecht (C) %i-%i + Corrupted block database detected Corrupte blokkendatabase gedetecteerd + Debugging/Testing options: Foutopsporing/Testopties: + Do not load the wallet and disable wallet RPC calls Laad de wallet niet en schakel wallet RPC oproepen uit + Do you want to rebuild the block database now? Wilt u de blokkendatabase nu herbouwen? + Enable publish hash block in <address> Sta toe om hashblok te publiceren in <adres> + Enable publish hash transaction in <address> Stat toe om hashtransactie te publiceren in <adres> + Enable publish raw block in <address> Sta toe rauw blok te publiceren in <adres> + Enable publish raw transaction in <address> Sta toe ruwe transacties te publiceren in <adres> + Enable transaction replacement in the memory pool (default: %u) Transactie vervanging inschakelen in het geheugen (standaard: %u) + Error initializing block database Fout bij intialisatie blokkendatabase + Error initializing wallet database environment %s! Probleem met initializeren van de database-omgeving %s! + Error loading %s Fout bij het laden van %s + Error loading %s: Wallet corrupted Fout bij het laden van %s: Portomonnee corrupt + Error loading %s: Wallet requires newer version of %s Fout bij laden %s: Portemonnee vereist een nieuwere versie van %s - Error loading %s: You can't disable HD on a already existing HD wallet - Fout bij het laden van %s: Je kan HD niet deactiveren voor een reeds bestaande HD portemonnee - - + Error loading block database Fout bij het laden van blokkendatabase + Error opening block database Fout bij openen blokkendatabase + Error: Disk space is low! Fout: Weinig vrije diskruimte! + Failed to listen on any port. Use -listen=0 if you want this. Mislukt om op welke poort dan ook te luisteren. Gebruik -listen=0 as u dit wilt. + Importing... Importeren... + Incorrect or no genesis block found. Wrong datadir for network? Incorrect of geen genesisblok gevonden. Verkeerde datamap voor het netwerk? + Initialization sanity check failed. %s is shutting down. Initialisatie sanity check mislukt. %s is aan het afsluiten. - Invalid -onion address: '%s' - Ongeldig -onion adres '%s' + + Invalid amount for -%s=<amount>: '%s' + Ongeldig bedrag voor -%s=<bedrag>: '%s' - Invalid amount for -%s=<amount>: '%s' - Ongeldig bedrag voor -%s=<bedrag>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Ongeldig bedrag voor -fallbackfee=<bedrag>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Ongeldig bedrag voor -fallbackfee=<bedrag>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) De transactiegeheugenpool moet onder de <n> megabytes blijven (standaard: %u) + + Loading P2P addresses... + + + + Loading banlist... Verbanningslijst aan het laden... + Location of the auth cookie (default: data dir) Locatie van de auth cookie (standaard: data dir) + Not enough file descriptors available. Niet genoeg file descriptors beschikbaar. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Verbind alleen met nodes in netwerk <net> (ipv4, ipv6 of onion) + Print this help message and exit Print dit helpbericht en sluit af + Print version and exit Laat versie zien en sluit af + Prune cannot be configured with a negative value. Snoeien kan niet worden geconfigureerd met een negatieve waarde. + Prune mode is incompatible with -txindex. Snoeimodus is niet-compatibel met -txindex + Rebuild chain state and block index from the blk*.dat files on disk Herbouw ketenstaat en block index met behulp van de blk*.dat bestanden op de hardeschijf + Rebuild chain state from the currently indexed blocks Herbouw ketenstaat vanuit de huidige geindexeerde blokken + + Replaying blocks... + + + + Rewinding blocks... Blokken aan het terugdraaien... + Set database cache size in megabytes (%d to %d, default: %d) Zet database cache grootte in megabytes (%d tot %d, standaard: %d) - Set maximum block size in bytes (default: %d) - Stel maximum blokgrootte in in bytes (standaard: %d) - - + Specify wallet file (within data directory) Specificeer het portemonnee bestand (vanuit de gegevensmap) + The source code is available from %s. De broncode is beschikbaar van %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Niet in staat om %s te verbinden op deze computer. %s draait waarschijnlijk al. + Unsupported argument -benchmark ignored, use -debug=bench. Niet-ondersteund argument -benchmark genegeerd, gebruik -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Niet-ondersteund argument -debugnet genegeerd, gebruik -debug=net + Unsupported argument -tor found, use -onion. Niet-ondersteund argument -tor gevonden, gebruik -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Gebruik UPnP om de luisterende poort te mappen (standaard: %u) + Use the test chain Gebruik de test keten + User Agent comment (%s) contains unsafe characters. User Agentcommentaar (%s) bevat onveilige karakters. + Verifying blocks... Blokken aan het controleren... - Verifying wallet... - Portemonnee aan het controleren... - - + Wallet %s resides outside data directory %s Portemonnee %s bevindt zich buiten de gegevensmap %s + Wallet debugging/testing options: Portomonee debugging/testing opties: + Wallet needed to be rewritten: restart %s to complete Portemonnee moest herschreven worden: Herstart %s om te voltooien + Wallet options: Portemonnee instellingen: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Sta JSON-RPC verbindingen toe vanuit een gespecificeerde bron. Geldig voor <ip> zijn een enkel IP (bijv. 1.2.3.4), een netwerk/netmask (bijv. 1.2.3.4/255.255.255.0) of een netwerk/CIDR (bijv. 1.2.3.4/24). Deze optie kan meerdere keren gespecificeerd worden. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Bind aan opgegeven adres en keur peers die ermee verbinden goed. Gebruik [host]:poort notatie voor IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Bind aan gegeven adres om te luisteren voor JSON-RPC verbindingen. Gebruik [host]:poort notatie voor IPv6. Deze optie kan meerdere keren gespecificeerd worden (standaard: bind aan alle interfaces. - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Creër nieuwe bestanden met standaard systeem bestandsrechten in plaats van umask 077 (alleen effectief met uitgeschakelde portemonnee functionaliteit) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Ontdek eigen IP-adressen (standaard: 1 voor luisteren en geen -externalip of -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Fout: luisteren naar binnenkomende verbindingen mislukt (luisteren gaf foutmelding %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Voer opdracht uit zodra een waarschuwing is ontvangen of wanneer we een erg lange fork detecteren (%s in opdracht wordt vervangen door bericht) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Transactiekosten (in %s/kB) kleiner dan dit worden beschouw dat geen transactiekosten in rekening worden gebracht voor doorgeven, mijnen en transactiecreatie (standaard: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Als paytxfee niet is ingesteld, voeg voldoende transactiekosten toe zodat transacties starten met bevestigingen binnen in n blokken (standaard: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - ongeldig bedrag voor -maxtxfee=<bedrag>: '%s' (moet ten minste de minimale doorgeeftransactiekosten van %s het voorkomen geplakt transacties voorkomen) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + ongeldig bedrag voor -maxtxfee=<bedrag>: '%s' (moet ten minste de minimale doorgeeftransactiekosten van %s het voorkomen geplakt transacties voorkomen) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximale grootte va n de gegevens in gegevensdragertransacties die we doorgeven en mijnen (standaard: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Gebruik willekeurige inloggegevens voor elke proxyverbinding. Dit maakt streamislatie voor Tor mogelijk (standaard: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Stel maximumgrootte in bytes in voor hoge-prioriteits-/lage-transactiekosten-transacties (standaard: %d) - - + The transaction amount is too small to send after the fee has been deducted Het transactiebedrag is te klein om te versturen nadat de transactiekosten in mindering zijn gebracht - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Gebruik hiërarchische deterministische sleutelgeneratie (HD) na BIP32. Dit heeft enkel effect bij het aanmaken van portemonnees of het eerste gebruik - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Goedgekeurde peers kunnen niet ge-DoS-banned worden en hun transacties worden altijd doorgegeven, zelfs als ze reeds in de mempool aanwezig zijn, nuttig voor bijv. een gateway + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain U moet de database herbouwen met -reindex om terug te gaan naar de ongesnoeide modus. Dit zal de gehele blokketen opnieuw downloaden. + (default: %u) (standaard: %u) + Accept public REST requests (default: %u) Accepteer publieke REST-verzoeken (standaard: %u) + Automatically create Tor hidden service (default: %d) Creëer automatisch verborgen dienst van Tor (standaard:%d) + Connect through SOCKS5 proxy Verbind door SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Fout bij het lezen van de database, afsluiten. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importeer blokken van externe blk000??.dat-bestand bij opstarten + Information Informatie - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' (Minimum %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Ongeldig netmask gespecificeerd in -whitelist: '%s' + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Ongeldig bedrag voor -paytxfee=<bedrag>: '%s' (Minimum %s) + + Invalid netmask specified in -whitelist: '%s' + Ongeldig netmask gespecificeerd in -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Houd maximaal <n> onverbonden transacties in geheugen (standaard: %u) - Need to specify a port with -whitebind: '%s' - Verplicht een poort met -whitebind op te geven: '%s' + + Need to specify a port with -whitebind: '%s' + Verplicht een poort met -whitebind op te geven: '%s' + Node relay options: Nodedoorgeefopties: + RPC server options: RPC server opties: + Reducing -maxconnections from %d to %d, because of system limitations. Verminder -maxconnections van %d naar %d, vanwege systeembeperkingen. + Rescan the block chain for missing wallet transactions on startup Herscan de blokketen voor missende portemonneetransacties bij opstarten + Send trace/debug info to console instead of debug.log file Verzend trace/debug-info naar de console in plaats van het debug.log-bestand - Send transactions as zero-fee transactions if possible (default: %u) - Indien mogelijk, verstuur zonder transactiekosten (standaard: %u) - - + Show all debugging options (usage: --help -help-debug) Toon alle foutopsporingsopties (gebruik: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Verklein debug.log-bestand bij het opstarten van de client (standaard: 1 als geen -debug) + Signing transaction failed Ondertekenen van transactie mislukt + The transaction amount is too small to pay the fee Het transactiebedrag is te klein om transactiekosten in rekening te brengen + This is experimental software. Dit is experimentele software. + Tor control port password (default: empty) Tor bepaalt poortwachtwoord (standaard: empty) + Tor control port to use if onion listening enabled (default: %s) Tor bepaalt welke poort te gebruiken als luisteren naar onion wordt gebruikt (standaard: %s) + Transaction amount too small Transactiebedrag te klein + Transaction too large for fee policy De transactie is te groot voor het transactiekostenbeleid + Transaction too large Transactie te groot + Unable to bind to %s on this computer (bind returned error %s) Niet in staat om aan %s te binden op deze computer (bind gaf error %s) + Upgrade wallet to latest format on startup Upgrade portemonee naar laatste formaat bij opstarten + Username for JSON-RPC connections Gebruikersnaam voor JSON-RPC-verbindingen + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Waarschuwing + Warning: unknown new rules activated (versionbit %i) Waarschuwing: onbekende nieuwe regels geactiveerd (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Om in alleen een blokmodus te opereren (standaard: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Bezig met het zappen van alle transacties van de portemonnee... + ZeroMQ notification options: ZeroMQ notificatieopties: + Password for JSON-RPC connections Wachtwoord voor JSON-RPC-verbindingen + Execute command when the best block changes (%s in cmd is replaced by block hash) Voer opdracht uit zodra het beste blok verandert (%s in cmd wordt vervangen door blokhash) + Allow DNS lookups for -addnode, -seednode and -connect Sta DNS-naslag toe voor -addnode, -seednode en -connect - Loading addresses... - Adressen aan het laden... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = behoudt tx meta data bijv. account eigenaar en betalingsverzoek informatie, 2. sla tx meta data niet op) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee staat zeer hoog! Transactiekosten van de grootte kunnen worden gebruikt in een enkele transactie. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Bewaar transactie niet langer dan <n> uren in de geheugenpool (standaard: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Equivalent byter per sigop in transactions voor doorsturen en mijnen (standaard: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Transactiekosten (in %s/kB) kleiner dan dit worden beschouwd dat geen transactiekosten in rekening worden gebracht voor transactiecreatie (standaard: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Forceer het doorsturen van transacties van goedgekeurde peers, zelfs wanneer deze niet voldoen aan de lokale doorstuurregels (standaard: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Hoe grondig de blokverificatie van -checkblocks is (0-4, standaard: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Onderhoud een volledige transactieindex, gebruikt door de getrawtransaction rpc call (standaard: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Aantal seconden dat zich misdragende peers niet opnieuw kunnen verbinden (standaard: %u) + Output debugging information (default: %u, supplying <category> is optional) Output extra debugginginformatie (standaard: %u, het leveren van <categorie> is optioneel) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Query voor peer-adressen via DNS-lookup , indien laag aan adressen (default: 1 unless -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Ondersteun filtering van blokken en transacties met bloomfilters (standaard: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Dit is de transactiekost die je mogelijk betaald indien geschatte tarief niet beschikbaar is + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Dit product bevat software dat ontwikkeld is door het OpenSSL Project voor gebruik in de OpenSSL Toolkit %s en cryptografische software geschreven door Eric Young en UPnP software geschreven door Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Totale lengte van netwerkversiestring (%i) overschrijdt maximale lengte (%i). Verminder het aantal of grootte van uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Pogingen om uitgaand verkeer onder een bepaald doel te houden (in MiB per 24u), 0 = geen limiet (standaard: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Niet-ondersteund argument -socks gevonden. Instellen van SOCKS-versie is niet meer mogelijk, alleen SOCKS5-proxies worden ondersteund. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Niet ondersteund argument -whitelistalwaysrelay genegeerd, gebruik -whitelistrelay en/of -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Gebruik een aparte SOCKS5 proxy om verborgen diensten van Tor te bereiken (standaard: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Waarschuwing: Onbekende blok versies worden gemined! Er zijn mogelijk onbekende regels in werking getreden + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Waarschuwing: portomonee bestand is corrupt, data is veiliggesteld! Originele %s is opgeslagen als %s in %s; als uw balans of transacties incorrect zijn dient u een backup terug te zetten. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Goedgekeurde peers die verbinden vanaf een bepaald IP adres (vb. 1.2.3.4) of CIDR genoteerd netwerk (vb. 1.2.3.0/24). Kan meerdere keren worden gespecificeerd. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s is zeer hoog ingesteld! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (standaard: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Vind anderen door middel van een DNS-naslag (standaard: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Aantal te checken blokken bij het opstarten (standaard: %u, 0 = allemaal) + Include IP addresses in debug output (default: %u) IP-adressen toevoegen in de debuguitvoer (standaard: %u) - Invalid -proxy address: '%s' - Ongeldig -proxy adres: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Keypool op geraakt, roep alsjeblieft eerst keypoolrefill functie aan + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Luister naar JSON-RPC-verbindingen op <poort> (standaard: %u of testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Luister naar verbindingen op <poort> (standaard: %u of testnet: %u) + Maintain at most <n> connections to peers (default: %u) Onderhoud maximaal <n> verbindingen naar peers (standaard: %u) + Make the wallet broadcast transactions Laat de portemonnee transacties uitsturen + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximum per-connectie ontvangstbuffer, <n>*1000 bytes (standaard: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximum per-connectie verstuurbuffer, <n>*1000 bytes (standaard: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Prepend debug output met tijdstempel (standaard: %u) + Relay and mine data carrier transactions (default: %u) Geef gegevensdragertransacties door en mijn ze ook (standaard: %u) + Relay non-P2SH multisig (default: %u) Geef non-P2SH multisig door (standaard: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Verstuur transacties met full-RBF opt-in ingeschakeld (standaard: %u) + Set key pool size to <n> (default: %u) Stel sleutelpoelgrootte in op <n> (standaard: %u) + Set maximum BIP141 block weight (default: %d) Zet het BIP141 maximum gewicht van een blok (standaard: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Stel het aantal threads in om RPC-aanvragen mee te bedienen (standaard: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Specificeer configuratiebestand (standaard: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Specificeer de time-out tijd in milliseconden (minimum: 1, standaard: %d) + Specify pid file (default: %s) Specificeer pid-bestand (standaard: %s) + Spend unconfirmed change when sending transactions (default: %u) Besteed onbevestigd wisselgeld bij het doen van transacties (standaard: %u) + Starting network threads... Netwerkthread starten... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. De portemonnee vermijdt minder te betalen dan het minimale relay vergoeding. + This is the minimum transaction fee you pay on every transaction. Dit is het minimum transactietarief dat je betaald op elke transactie. + This is the transaction fee you will pay if you send a transaction. Dit is het transactietarief dat je betaald wanneer je een transactie verstuurt. + Threshold for disconnecting misbehaving peers (default: %u) Drempel om verbinding te verbreken naar zich misdragende peers (standaard: %u) + Transaction amounts must not be negative Transactiebedragen moeten positief zijn + Transaction has too long of a mempool chain Transactie heeft een te lange mempoolketen + Transaction must have at least one recipient Transactie moet ten minste één ontvanger hebben - Unknown network specified in -onlynet: '%s' - Onbekend netwerk gespecificeerd in -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Onbekend netwerk gespecificeerd in -onlynet: '%s' + + + Insufficient funds Ontoereikend saldo + Loading block index... Blokindex aan het laden... - Add a node to connect to and attempt to keep the connection open - Voeg een node om naar te verbinden toe en probeer de verbinding open te houden - - + Loading wallet... Portemonnee aan het laden... + Cannot downgrade wallet Kan portemonnee niet downgraden - Cannot write default address - Kan standaardadres niet schrijven - - + Rescanning... - Blokketen aan het herscannen... - - - Done loading - Klaar met laden + Aan het herscannen... + Error Fout diff --git a/src/qt/locale/raven_pl.ts b/src/qt/locale/raven_pl.ts index 8e51b59d21..34b68e4470 100644 --- a/src/qt/locale/raven_pl.ts +++ b/src/qt/locale/raven_pl.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Kliknij prawy przycisk myszy, aby edytować adres lub etykietę + Create a new address Utwórz nowy adres + &New &Nowy + Copy the currently selected address to the system clipboard Skopiuj aktualnie wybrany adres do schowka + &Copy &Kopiuj + C&lose Z&amknij + Delete the currently selected address from the list Usuń zaznaczony adres z listy + Export the data in the current tab to a file Eksportuj dane z aktywnej karty do pliku + &Export &Eksportuj + &Delete &Usuń + Choose the address to send coins to Wybierz adres, na który chcesz wysłać monety + Choose the address to receive coins with Wybierz adres, na który chcesz otrzymać monety + C&hoose W&ybierz + Sending addresses Adresy wysyłania + Receiving addresses Adresy odbioru + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Tutaj znajdują się adresy Raven na które wysyłasz płatności. Zawsze sprawdzaj ilość i adres odbiorcy przed wysyłką monet. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. To są twoje adresy Raven do odbierania płatności. Zaleca się używanie nowych adresów odbiorczych dla każdej transakcji. + &Copy Address &Kopiuj adres + Copy &Label Kopiuj &Etykietę + &Edit &Edytuj + Export Address List Eksportuj listę adresów + Comma separated file (*.csv) Plik *.CSV (dane rozdzielane przecinkami) + Exporting Failed Eksportowanie nie powiodło się + There was an error trying to save the address list to %1. Please try again. Wystąpił błąd podczas próby zapisu listy adresów do %1. Proszę spróbować ponownie. @@ -103,14 +125,17 @@ AddressTableModel + Label Etykieta + Address Adres + (no label) (brak etykiety) @@ -118,2027 +143,5366 @@ AskPassphraseDialog + Passphrase Dialog Okienko Hasła + Enter passphrase Wpisz hasło + New passphrase Nowe hasło + Repeat new passphrase Powtórz nowe hasło + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. - Wprowadź nowe hasło do portfela.<br/>Proszę używać hasła złożonego z <b>10 lub więcej losowych znaków</b> albo <b>8 lub więcej słów.</b> + Wprowadź nowe hasło do portfela.<br/>Proszę użyć hasła złożonego z <b>10 lub więcej losowych znaków</b> albo <b>8 lub więcej słów.</b> + Encrypt wallet Zaszyfruj portfel + This operation needs your wallet passphrase to unlock the wallet. Ta operacja wymaga hasła do portfela aby odblokować portfel. + Unlock wallet Odblokuj portfel + This operation needs your wallet passphrase to decrypt the wallet. Ta operacja wymaga hasła portfela, aby go odszyfrować. + Decrypt wallet Odszyfruj portfel + Change passphrase Zmień hasło + Enter the old passphrase and new passphrase to the wallet. Podaj stare i nowe hasło do portfela. + Confirm wallet encryption Potwierdź szyfrowanie portfela + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Uwaga: jeśli zaszyfrujesz swój portfel i zgubisz hasło <b>STRACISZ WSZYSTKIE SWOJE RAVENY</b>! + Are you sure you wish to encrypt your wallet? Jesteś pewien, że chcesz zaszyfrować swój portfel? + + Wallet encrypted Portfel zaszyfrowany + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 zamknie się aby dokończyć proces szyfrowania. Pamiętaj, że szyfrowanie portfela nie zabezpiecza w pełni Twoich ravenów przed kradzieżą przez wirusy lub trojany mogące zainfekować Twój komputer. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. WAŻNE: Wszystkie wykonane wcześniej kopie pliku portfela powinny być zamienione na nowe, szyfrowane pliki. Z powodów bezpieczeństwa, poprzednie kopie nieszyfrowanych plików portfela staną się bezużyteczne jak tylko zaczniesz korzystać z nowego, szyfrowanego portfela. + + + + Wallet encryption failed Szyfrowanie portfela nie powiodło się + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Szyfrowanie portfela nie powiodło się z powodu wewnętrznego błędu. Twój portfel nie został zaszyfrowany. + + The supplied passphrases do not match. Podane hasła nie są takie same. + Wallet unlock failed Odblokowanie portfela nie powiodło się + + + The passphrase entered for the wallet decryption was incorrect. Wprowadzone hasło do odszyfrowania portfela jest niepoprawne. + Wallet decryption failed Odszyfrowanie portfela nie powiodło się + Wallet passphrase was successfully changed. Hasło do portfela zostało pomyślnie zmienione. + + Warning: The Caps Lock key is on! Ostrzeżenie: Caps Lock jest włączony! - BanTableModel + AssetControlDialog - IP/Netmask - IP / maska podsieci + + Asset Selection + Wybór aktywów: - Banned Until - Blokada do + + Quantity: + Ilość: - - - RavenGUI - Sign &message... - Podpisz wiado&mość... + + Bytes: + Bajtów: - Synchronizing with network... - Synchronizacja z siecią... + + Amount: + Ilość: - &Overview - P&odsumowanie + + Dust: + Pył: - Node - Węzeł + + Fee: + Opłata: - Show general overview of wallet - Pokazuje ogólny widok portfela + + After Fee: + Po uwzględnieniu opłaty - &Transactions - &Transakcje + + Change: + Zmiana: - Browse transaction history - Przeglądaj historię transakcji + + (un)select all + Zaznacz/Odznacz wszystko - E&xit - &Zakończ + + Tree mode + Widok drzewa - Quit application - Zamknij program + + List mode + Widok listy - &About %1 - &O %1 + + View assets that you have the ownership asset for + Wyświetl aktywa, do których masz prawo własności - Show information about %1 - Pokaż informacje o %1 + + View Administrator Assets + Przejdź do administratora aktywów - About &Qt - O &Qt + + Asset + Aktywa - Show information about Qt - Pokazuje informacje o Qt + + Amount + Ilość - &Options... - &Opcje... + + Received with label + Otrzymano z etykietą - Modify configuration options for %1 - Zmień opcje konfiguracji dla %1 + + Received with address + Otrzymano z adresem - &Encrypt Wallet... - Zaszyfruj Portf&el + + Date + Data - &Backup Wallet... - Wykonaj kopię zapasową... + + Confirmations + Potwierdzenia - &Change Passphrase... - &Zmień hasło... + + Confirmed + Potwierdzono - &Sending addresses... - Adresy wysyłania... + + Copy address + Kopiuj adres - &Receiving addresses... - Adresy odbioru... + + Copy label + Kopiuj etykietę - Open &URI... - Otwórz URI... + + + Copy amount + Kopiuj kwotę - Click to disable network activity. - Kliknij aby wyłączyć aktywność sieciową. + + Copy transaction ID + Kopiuj ID transakcji - Network activity disabled. - Aktywność sieciowa została wyłączona. + + Lock unspent + Zablokuj niewydane - Click to enable network activity again. - Kliknij, aby ponownie włączyć aktywności sieciową. + + Unlock unspent + Odblokuj niewydane - Syncing Headers (%1%)... - Synchronizowanie headerów (%1%)... + + Copy quantity + Skopiuj ilość - Reindexing blocks on disk... - Ponowne indeksowanie bloków na dysku... + + Copy fee + Skopiuj opłatę - Send coins to a Raven address - Wyślij monety na adres ravenowy + + Copy after fee + Skopiuj po uwzględnieniu opłaty - Backup wallet to another location - Zapasowy portfel w innej lokalizacji + + Copy bytes + Skopiuj bajty - Change the passphrase used for wallet encryption - Zmień hasło użyte do szyfrowania portfela + + Copy dust + Skopiuj mikrosaldo - &Debug window - &Okno debugowania + + Copy change + Skopiuj resztę - Open debugging and diagnostic console - Otwórz konsolę debugowania i diagnostyki + + (%1 locked) + (1% zablokowany) - &Verify message... - &Zweryfikuj wiadomość... + + yes + tak - Raven - Raven + + no + nie - Wallet - Portfel + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Ta etykieta zmieni kolor na czerwony jeśli którykolwiek z odbiorców otrzyma kwotę mniejszą niż aktualny prog pyłu - &Send - Wyślij + + Can vary +/- %1 satoshi(s) per input. + Może zmienić się o +/- %1 satoshi(s) na wejście. - &Receive - Odbie&rz + + + (no label) + (brak etykiety) - &Show / Hide - &Pokaż / Ukryj + + change from %1 (%2) + reszta z %1 (%2) - Show or hide the main Window - Pokazuje lub ukrywa główne okno + + (change) + (reszta) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Szyfruj klucze prywatne, które są w twoim portfelu + + Name + Nazwa - Sign messages with your Raven addresses to prove you own them - Podpisz wiadomości swoim adresem aby udowodnić jego posiadanie + + Quantity + Ilość + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Zweryfikuj wiadomość, aby upewnić się, że została podpisana podanym adresem ravenowym. + + + Send Coins + Prześlij monety - &File - &Plik + + Asset Control Features + Funkcje Kontroli Aktywów +  + +  +  +  +  +  - &Settings - P&referencje + + Inputs... + Wejścia... - &Help - Pomo&c + + automatically selected + wybrane automatycznie - Tabs toolbar - Pasek zakładek + + Insufficient funds! + Niewystarczająca ilość środków! - Request payments (generates QR codes and raven: URIs) - Żądaj płatności (generuje kod QR oraz ravenowe URI) + + Quantity: + Ilość: - Show the list of used sending addresses and labels - Pokaż listę adresów i etykiet użytych do wysyłania + + Bytes: + Bajty: - Show the list of used receiving addresses and labels - Pokaż listę adresów i etykiet użytych do odbierania + + Amount: + Ilość - Open a raven: URI or payment request - Otwórz URI raven: lub żądanie zapłaty + + Dust: + Mikrosaldo: - &Command-line options - &Opcje linii komend - - - %n active connection(s) to Raven network - %n aktywnych połączeń do sieci Raven + + Fee: + Opłata - Indexing blocks on disk... - Indeksowanie bloków na dysku... + + After Fee: + Po uwzględnieniu opłaty: - Processing blocks on disk... - Przetwarzanie blocks on disk... + + Change: + Reszta: - - Processed %n block(s) of transaction history. - Przetworzono %n bloków historii transakcji. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Jeśli ta opcja jest aktywna ale adres do przesłania reszty jest pusty lub nieprawidłowy, reszta zostanie przesłana na adres nowo wygenerowany. - %1 behind - %1 za + + Custom change address + Niestandardowy adres reszty - Last received block was generated %1 ago. - Ostatni otrzymany blok został wygenerowany %1 temu. + + Transaction Fee: + Opłata transakcyjna - Transactions after this will not yet be visible. - Transakcje po tym momencie nie będą jeszcze widoczne. + + Choose... + Wybierz - Error - Błąd + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Użycie opłaty rezerwowej może spowodować opóźnienie potwierdzenie wysłania transakcji o wiele godzin lub dni (lub nigdy). Rozważ ustawienie ręczne opłaty lub zaczekaj dopóki nie zatwierdzisz całego łańcucha. - Warning - Ostrzeżenie + + Warning: Fee estimation is currently not possible. + Uwaga: Ustalenia poziomu opłaty jest w tym momencie niemożliwe. - Information - Informacja + + collapse fee-settings + ustawienia opłaty za - Up to date - Aktualny + + Hide + Ukryj - Show the %1 help message to get a list with possible Raven command-line options - Pokaż pomoc %1 aby zobaczyć listę wszystkich opcji lnii poleceń. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Jeśli niestandardowo ustawiono opłatę w wysokości 1000 satoshi, a transakcja zajmuje jedynie 250 bajtow, wtedy opłata za każdy kilobajt wynosi tylko 250 satoshi - %1 client - %1 klient + + per kilobyte + na kilobajt - Connecting to peers... - Łączenie z peerami... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Stosowanie minimalnej opłaty jest wystarczające tak długo jak objętość transakcji nie przekracza przestrzeni w bloku. Jednak proszę być świadomym, że ta oszczędność może doprowadzić do sytuacji, w której transakcja będzie oczekiwać na potwierdzenie w nieskończoność jeśli zapotrzebowanie na wykonanie transakcji przekroczy ilość, którą sieć będzie zdolna przetworzyć. - Catching up... - Trwa synchronizacja… + + (read the tooltip) + (przeczytaj podpowiedź) - Date: %1 - - Data: %1 - + + Recommended: + Zalecane: - Amount: %1 - - Kwota: %1 - + + Custom: + Niestandardowe: - Type: %1 - - Typ: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Mała opłata jeszcze nie zainicjalizowana. Z reguły trwa to kilka bloków...) - Label: %1 - - Etykieta: %1 - + + Confirmation time target: + Docelowy czas potwierdzenia: - Address: %1 - - Adres: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Wskazuje, że nadawca może chcieć zastąpić tę transakcję nową z wyższą opłatą (wyższy priorytet potwierdzenia) - Sent transaction - Transakcja wysłana + + Request Replace-By-Fee + - Incoming transaction - Transakcja przychodząca + + Confirm the send action + Potwierdź zgodę na przesłanie - HD key generation is <b>enabled</b> - Generowanie kluczy HD jest <b>włączone</b> + + S&end + W&yślij - HD key generation is <b>disabled</b> - Generowanie kluczy HD jest <b>wyłączone</b> + + Clear all fields of the form. + Wyczyść formularz. - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portfel jest <b>zaszyfrowany</b> i obecnie <b>odblokowany</b> + + Clear &All + Wyczyść &Wszystko - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> + + Transfer to multiple recipients at once + Wyślij do wielu odbiorców równocześnie - A fatal error occurred. Raven can no longer continue safely and will quit. - Wystąpił krytyczny błąd. Raven nie jest w stanie kontynuować bezpiecznie i zostanie zamknięty. + + Add &Recipient + Dodaj &Odbiorcę + + + + Balance: + Saldo: + + + + Copy quantity + Skopiuj ilość + + + + Copy amount + Skopiuj sumę + + + + Copy fee + Skopiuj opłatę + + + + Copy after fee + Skopiuj po uwzględnieniu opłaty + + + + Copy bytes + Skopiuj ilość bajtów + + + + Copy dust + Skopiuj mikrosaldo - pył + + + + Copy change + Skopiuj resztę + + + + %1 (%2 blocks) + %1 (%2 bloki) + + + + + + + %1 to %2 + %1 do %2 + + + + Are you sure you want to send? + Czy jesteś pewien, że chcesz wysłać? + + + + added as transaction fee + dodane jako opłata za transakcję + + + + Confirm send assets + Potwierdź przesłanie aktywa + + + + The recipient address is not valid. Please recheck. + Adres odbiorcy jest nieprawidłowy. Proszę o ponowne sprawdzenie. + + + + The amount to pay must be larger than 0. + Kwota zapłaty musi być większa od 0. + + + + The amount exceeds your balance. + Kwota przekracza Twoje saldo. + + + + The total exceeds your balance when the %1 transaction fee is included. + Całkowita kwota transakcji przekroczy Twoje saldo po doliczeniu %1 opłaty transakcyjnej. + + + + Duplicate address found: addresses should only be used once each. + Wykryto zduplikowany adres: adres powinien być używany tylko raz dla każdego. + + + + Transaction creation failed! + Utworzenie transakcji nie powiodło się! + + + + The transaction was rejected with the following reason: %1 + Transakcja została odrzucona z następujących powodów: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + Opłata wyższa niż %1 jest uważana za absurdalnie wysoką. + + + + Payment request expired. + Żądanie zapłaty uległo przedawnieniu. + + + + Pay only the required fee of %1 + Zapłać tylko kwotę wymaganej opłaty %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Uwaga: Nieprawidłowy adres + + + + Warning: Unknown change address + Ostrzeżenie: Nieznany adres reszty + + + + Confirm custom change address + Potwierdź niestandardowy adres dla reszty + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Wybrany adres dla reszty nie jest częścią tego portfela. Cześć lub wszystkie fundusze z tego portfela mogą zostać wysłane na wskazany dres. Czy jesteś pewien swoich działań? + + + + (no label) + (brak etykiety) + + + + AssignQualifier + + + Frame + Ramka + + + + Select Type: + Wybierz Typ: + + + + Select Qualifier: + Wybierz Kwalifikator: + + + + Address: + Adres + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + Niestandardowy Adres Reszty + + + + Check + Sprawdź + + + + Clear + Wyczyść + + + + Submit + Wyślij + + + + Assign Qualifier + Przypisz kwalifikator:  + + + + Remove Qualifier + Usuń Kwalifikator + + + + Data has been validated, You can now submit the qualifier request + Dane zostały zatwierdzone. Możesz teraz przesłać żądanie kwalifikatora + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + Nie można w tym momencie wykonać działania + + + + BanTableModel + + + IP/Netmask + IP / maska podsieci + + + + Banned Until + Blokada do CoinControlDialog + Coin Selection Wybór monet + Quantity: Ilość: + Bytes: Bajtów: + Amount: Kwota: + Fee: Opłata: + Dust: Pył: + After Fee: Po opłacie: + Change: Reszta: + (un)select all Zaznacz/Odznacz wszystko + Tree mode Widok drzewa + List mode Widok listy + Amount Kwota + Received with label Otrzymano z opisem + Received with address Otrzymano z adresem + Date Data + Confirmations Potwierdzenia + Confirmed Potwierdzony + Copy address Kopiuj adres + Copy label Kopiuj etykietę + + Copy amount Kopiuj kwotę + Copy transaction ID Skopiuj ID transakcji + Lock unspent Zablokuj niewydane + Unlock unspent Odblokuj niewydane + Copy quantity Skopiuj ilość + Copy fee Skopiuj prowizję + Copy after fee Skopiuj ilość po opłacie + Copy bytes Skopiuj ilość bajtów + Copy dust Kopiuj pył + Copy change Skopiuj resztę + (%1 locked) (%1 zablokowane) + yes tak + no nie + This label turns red if any recipient receives an amount smaller than the current dust threshold. Ta etykieta staje się czerwona jeżeli którykolwiek odbiorca otrzymuje kwotę mniejszą niż obecny próg pyłu. + Can vary +/- %1 satoshi(s) per input. Waha się +/- %1 satoshi na wejście. + + (no label) (brak etykiety) + change from %1 (%2) reszta z %1 (%2) + (change) (reszta) - EditAddressDialog + CreateAssetDialog - Edit Address - Zmień adres + + Coin Control Features + Funkcje Kontroli Monet - &Label - &Etykieta + + Inputs... + Wejścia... - The label associated with this address list entry - Etykieta skojarzona z tym wpisem na liście adresów + + automatically selected + wybrano automatycznie - The address associated with this address list entry. This can only be modified for sending addresses. - Ten adres jest skojarzony z wpisem na liście adresów. Może być zmodyfikowany jedynie dla adresów wysyłających. + + Insufficient funds! + Niewystarczająca ilość środków! - &Address - &Adres + + + Quantity: + Ilość: - New receiving address - Nowy adres odbiorczy + + Bytes: + Bajty: - New sending address - Nowy adres wysyłania + + Amount: + Kwota: - Edit receiving address - Zmień adres odbioru + + Dust: + Mikrosaldo: - Edit sending address - Zmień adres wysyłania + + Fee: + Opłata: - The entered address "%1" is not a valid Raven address. - Wprowadzony adres "%1" nie jest prawidłowym adresem Raven. + + After Fee: + Po uwzględnieniu opłaty: - The entered address "%1" is already in the address book. - Wprowadzony adres "%1" znajduje się już w książce adresowej. + + Change: + Reszta: - Could not unlock wallet. - Nie można było odblokować portfela. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Jeśli ta opcja jest aktywna ale adres dla przesłania reszty jest pusty lub nieprawidłowy, reszta zostanie przesłana na nowo wygenerowany adres . - New key generation failed. - Generowanie nowego klucza nie powiodło się. + + Custom change address + Niestandardowy adres dla reszty - - - FreespaceChecker - A new data directory will be created. - Będzie utworzony nowy folder danych. + + Name: + Nazwa: - name - nazwa + + A-Z 0-9 and . or _ as the second character + A-Z 0-9 i . lub _ jako drugi znak - Directory already exists. Add %1 if you intend to create a new directory here. - Katalog już istnieje. Dodaj %1 jeśli masz zamiar utworzyć tutaj nowy katalog. + + The name of the asset you would like to create + Nazwa aktywa, które chcesz utworzyć - Path already exists, and is not a directory. - Ścieżka już istnieje i nie jest katalogiem. + + Check Availabilty + Sprawdź Dostępność - Cannot create data directory here. - Nie można było tutaj utworzyć folderu. + + Address: + Adres: - - - HelpMessageDialog - version - wersja + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + Adres RVN, na którym będzie przechowywane to aktywo. +(Musisz być jego właścicielem). Zostaw puste miejsce jeśli chcesz utworzyć nowy adres. - (%1-bit) - (%1-bit) + + Verifier String: + Ciąg Weryfikacyjny: - About %1 - Informacje o %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opcje konsoli + + Warning: + Ostrzeżenie: - Usage: - Użycie: + + The number of assets that will be created + Ilość aktywów, które chcesz utworzyć - command-line options - opcje konsoli + + Units: + Jednostek: - UI Options: - Opcje interfejsu + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + Jak podzielne będą aktywa (np. 8 = 1.00000000, 2 = 1.00) - Choose data directory on startup (default: %u) - Katalog danych używany podczas uruchamiania programu (domyślny: %u) + + e.g. 1 + np. 1 - Set language, for example "de_DE" (default: system locale) - Wybierz język, na przykład «de_DE» (domyślnie: język systemowy) + + If the owner of this asset will be able to issue more assets in the future + Jeśli właściciel tego aktywa będzie mógł wyemitować więcej aktywów w przyszłości - Start minimized - Uruchom zminimalizowany + + Reissuable + Możliwość dodatkowej emisji. - Set SSL root certificates for payment request (default: -system-) - Ustaw certyfikaty główne SSL dla żądań płatności (domyślnie: -system-) + + Does this asset have an ipfs hash to go with it + Czy to aktywo posiada dołączony ipfs hash - Show splash screen on startup (default: %u) - Wyświetl okno powitalne podczas uruchamiania (domyślnie: %u) + + Add IPFS/Txid Hash + Dołącz IPFS/Txid Hash - Reset all settings changed in the GUI - Zresetuj wszystkie ustawienia zmienione w GUI + + The ipfs/txid hash that contains information about the asset + Ipfs/txid -hash zawierający informację na temat danego aktywa. - - - Intro - Welcome - Witaj + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + Hash ipfs/txid powiązany z aktywem został utworzony (e.g. QmU4h365LYMHx...) - Welcome to %1. - Witaj w %1. + + ERROR TEXT + BŁĘDNY TEKST - As this is the first time the program is launched, you can choose where %1 will store its data. - Ponieważ jest to pierwsze uruchomienie programu, możesz wybrać gdzie %1 będzie przechowywał swoje dane. + + Transaction Fee: + Opłata transakcyjna: - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 pobierze i będzie przechowywał kopię łańcucha bloków Raven. W wybranym katalogu zostanie zapisanych %2GB danych, a z czasem ta ilość będzie rosła. Portfel będzie przechowywany w tym samym katalogu. + + Choose... + Wybierz... - Use the default data directory - Użyj domyślnego folderu danych + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Użycie opłaty rezerwowej może spowodować opóźnienie potwierdzenie wysłania transakcji o wiele godzin lub dni (lub nigdy). Rozważ ustawienie ręczne opłaty lub zaczekaj dopóki nie zatwierdzisz całego łańcucha. - Use a custom data directory: - Użyj wybranego folderu dla danych + + Warning: Fee estimation is currently not possible. + Uwaga: określenie opłaty jest obecnie niemożliwe. - Error: Specified data directory "%1" cannot be created. - Błąd: podany folder danych «%1» nie mógł zostać utworzony. + + collapse fee-settings + - Error - Błąd + + Hide + Ukryj - - %n GB of free space available - %n GB dostępnego wolnego miejsca + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Jeśli niestandardowo ustawiono opłatę w wysokości 1000 satoshi, a transakcja zajmuje jedynie 250 bajtow i w przeliczeniu za kilobajt powinna wynieść tylko 250 satoshi to i tak zostanie pobrane co najmniej 1000 satoshi. Koszt transakcji większej niż kilobajt w obu przypadkach zostanie policzony od każdego kilobajta. - - (of %n GB needed) - (z %n GB potrzebnych) + + + per kilobyte + za kilobajt - - - ModalOverlay - Form - Formularz + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Stosowanie minimalnej opłaty jest wystarczające tak długo jak objętość transakcji nie przekracza przestrzeni w bloku. Jednak proszę być świadomym, że ta oszczędność może doprowadzić do sytuacji, w której transakcja będzie oczekiwać na potwierdzenie w nieskończoność jeśli zapotrzebowanie na wykonanie transakcji przekroczy ilość, którą sieć będzie zdolna przetworzyć. - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Świeże transakcje mogą nie być jeszcze widoczne, a zatem saldo portfela może być nieprawidłowe. Te detale będą poprawne, gdy portfel zakończy synchronizację z siecią raven, zgodnie z poniższym opisem. + + (read the tooltip) + (przeczytaj podpowiedź) - Number of blocks left - Pozostało bloków + + Recommended: + Zalecane: - Unknown... - Nienznane... + + C&ustom: + D&owolne: - Last block time - Czas ostatniego bloku + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Automatyczna opłata nie została jeszcze zainicjalizowana. Z reguły trwa to kilka bloków...) - Progress - Postęp + + Confirmation time target: + Docelowy czas potwierdzenia: - Progress increase per hour - Przyrost postępu na godzinę + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Wskazuje, że nadawca może chcieć zastąpić tę transakcję nową z wyższą opłatą (wyższy priorytet potwierdzenia) - calculating... - obliczanie... + + Request Replace-By-Fee + - Estimated time left until synced - Przewidywany czas zakończenia synchronizacji + + Create Asset + Stwórz aktywa - Hide - Ukryj + + Clear + Wyczyść - Unknown. Syncing Headers (%1)... - Nieznane. Synchronizowanie nagłówków (%1)... + + Balance: + Saldo: - - - OpenURIDialog - Open URI - Otwórz URI + + 123.456 RVN + 123.456 RVN - Open payment request from URI or file - Otwórz żądanie zapłaty z URI lub pliku + + Copy quantity + Skopiuj ilość - URI: - URI: + + Copy amount + Kopiuj kwotę - Select payment request file - Otwórz żądanie zapłaty z pliku + + Copy fee + Skopiuj opłatę - Select payment request file to open - Wybierz plik żądania zapłaty do otwarcia + + Copy after fee + Skopiuj po uwzględnieniu opłaty - - - OptionsDialog - Options - Opcje + + Copy bytes + Skopiuj ilość bajtów - &Main - Główne + + Copy dust + Skopiuj mikrosaldo - Automatically start %1 after logging in to the system. - Automatycznie uruchom %1 po zalogowaniu do systemu. + + Copy change + Skopiuj resztę - &Start %1 on system login - Uruchamiaj %1 wraz z zalogowaniem do &systemu + + %1 (%2 blocks) + %1 (%2 bloki) - Size of &database cache - Wielkość bufora bazy &danych + + Main Asset + Aktywo głowne - MB - MB + + Sub Asset + Aktywo podrzędne - Number of script &verification threads - Liczba wątków &weryfikacji skryptu + + Unique Asset + Aktywo unikatowe - Accept connections from outside - Akceptuj połączenia z zewnątrz + + Messaging Channel Asset + Kanał Komunikacyjny Aktywa - Allow incoming connections - Zezwól na połączenia przychodzące + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adres IP serwera proxy (np. IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimalizuje zamiast zakończyć działanie programu przy zamykaniu okna. Kiedy ta opcja jest włączona, program zakończy działanie po wybieraniu Zamknij w menu. + + Restricted Asset + Aktywo zastrzeżone - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Zewnętrzne URL podglądu transakcji (np. eksplorator bloków), które będą wyświetlały się w menu kontekstowym, w zakładce transakcji. %s będzie zamieniany w adresie na hash transakcji. Oddziel wiele adresów pionową kreską |. + + Asset Type + Typ aktywa - Third party transaction URLs - Zewnętrzny URL podglądu transakcji + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + IPFS/Txid Hash musi zaczynać się od 'Qm' i mieć 46 znaków lub Txid Hash musi mieć 64 znaki w hexie - Active command-line options that override above options: - Aktywne opcje linii komend, które nadpisują powyższe opcje: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + IPFS/Txid Hash musi posiadać 46 znaków lub 64 znaki w hexie - Reset all client options to default. - Przywróć wszystkie domyślne ustawienia klienta. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + IPFS/Txid hash jest nieprawidłowy. Proszę użyć prawidłowego IPFS/Txid hash - &Reset Options - Z&resetuj ustawienia + + + + Warning: Invalid Raven address + Uwaga: Nieprawidłowy adres - &Network - &Sieć + + Warning: Restricted Assets Reissuance requires an address + Uwaga: Ponowne wydanie zastrzeżonego aktywa wymaga adresu - (0 = auto, <0 = leave that many cores free) - (0 = automatycznie, <0 = zostaw tyle wolnych rdzeni) + + Valid Asset + Prawidłowe Aktywo - W&allet - Portfel + + Invalid: Asset name already in use + Błąd: Nazwa aktywa jest już w użyciu - Expert - Ekspert + + Error: Asset Database not in sync + Błąd: Baza danych aktywów nie została zsynchronizowana - Enable coin &control features - Włącz funk&cje kontoli monet + + + %1 to %2 + %1 do %2 - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Jeżeli wyłączysz możliwość wydania niezatwierdzonej wydanej reszty, reszta z transakcji nie będzie mogła zostać wykorzystana, dopóki ta transakcja nie będzie miała przynajmniej jednego potwierdzenia. To także ma wpływ na obliczanie Twojego salda. + + Are you sure you want to send? + Czy na pewno chcesz wysłać? - &Spend unconfirmed change - Wydaj niepotwierdzoną re&sztę + + added as transaction fee + dodano jako opłatę transakcyjną - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automatycznie otwiera port klienta Raven na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. + + Total Amount %1 + Łączna kwota %1 - Map port using &UPnP - Mapuj port używając &UPnP + + or + lub - Connect to the Raven network through a SOCKS5 proxy. - Połącz się z siecią Raven poprzez proxy SOCKS5. + + Confirm send assets + Potwierdź przesłanie aktywa - &Connect through SOCKS5 proxy (default proxy): - Połącz przez proxy SO&CKS5 (domyślne proxy): + + Invalid: + Nieprawidłowy: - Proxy &IP: - &IP proxy: + + Copy + Kopiuj - &Port: - &Port: + + Transaction ID Copied + ID transakcji zostało skopiowane - Port of the proxy (e.g. 9050) - Port proxy (np. 9050) + + Asset transaction sent to network: + Transakcja aktywa została wysłana do sieci: + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Użyto do połączenia z peerami przy pomocy: + + Warning: Unknown change address + Ostrzeżenie: Nieznany adres reszty - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Pokazuje, czy wspierane domyślnie proxy SOCKS5 jest używane do łączenia się z peerami w tej sieci + + Confirm custom change address + Potwierdź niestandardowy adres dla reszty - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Wybrany adres dla reszty nie jest częścią tego portfela. Cześć lub wszystkie fundusze z tego portfela mogą zostać wysłane na wskazany dres. Czy jesteś pewien swoich działań? - IPv6 - IPv6 + + (no label) + (brak etykiety) - Tor - Tor + + Pay only the required fee of %1 + Zapłać tylko kwotę wymaganej opłaty %1 + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Połącz się z siecią Raven przy pomocy oddzielnego SOCKS5 proxy dla sieci TOR + + Edit Address + Zmień adres - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Użyj oddzielnego proxy SOCKS5 aby osiągnąć węzły w ukrytych usługach Tor: + + &Label + &Etykieta - &Window - &Okno + + The label associated with this address list entry + Etykieta skojarzona z tym wpisem na liście adresów - &Hide the icon from the system tray. - Ukryj ikonę z zasobnika systemowego. + + The address associated with this address list entry. This can only be modified for sending addresses. + Ten adres jest skojarzony z wpisem na liście adresów. Może być zmodyfikowany jedynie dla adresów wysyłających. - Hide tray icon - Ukryj ikonę zasobnika + + &Address + &Adres - Show only a tray icon after minimizing the window. - Pokazuj tylko ikonę przy zegarku po zminimalizowaniu okna. + + New receiving address + Nowy adres odbiorczy - &Minimize to the tray instead of the taskbar - &Minimalizuj do zasobnika systemowego zamiast do paska zadań + + New sending address + Nowy adres wysyłania - M&inimize on close - M&inimalizuj przy zamknięciu + + Edit receiving address + Zmień adres odbioru - &Display - &Wyświetlanie + + Edit sending address + Zmień adres wysyłania - User Interface &language: - Język &użytkownika: + + The entered address "%1" is not a valid Raven address. + Wprowadzony adres "%1" nie jest prawidłowym adresem Raven. - The user interface language can be set here. This setting will take effect after restarting %1. - Można tu ustawić język interfejsu uzytkownika. Ustawienie przyniesie skutek po ponownym uruchomieniu %1. + + The entered address "%1" is already in the address book. + Wprowadzony adres "%1" znajduje się już w książce adresowej. - &Unit to show amounts in: - &Jednostka pokazywana przy kwocie: + + Could not unlock wallet. + Nie można było odblokować portfela. - Choose the default subdivision unit to show in the interface and when sending coins. - Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet + + New key generation failed. + Generowanie nowego klucza nie powiodło się. + + + FreespaceChecker - Whether to show coin control features or not. - Wybierz pokazywanie lub nie funkcji kontroli monet. + + A new data directory will be created. + Będzie utworzony nowy folder danych. - &OK - &OK + + name + nazwa - &Cancel - &Anuluj + + Directory already exists. Add %1 if you intend to create a new directory here. + Katalog już istnieje. Dodaj %1 jeśli masz zamiar utworzyć tutaj nowy katalog. - default - domyślny + + Path already exists, and is not a directory. + Ścieżka już istnieje i nie jest katalogiem. - none - żaden + + Cannot create data directory here. + Nie można było tutaj utworzyć folderu. + + + FreezeAddress - Confirm options reset - Potwierdź reset ustawień + + Frame + Ramka - Client restart required to activate changes. - Wymagany restart programu, aby uaktywnić zmiany. + + Restricted Asset: + Aktywo Zastrzeżone: - Client will be shut down. Do you want to proceed? - Program zostanie wyłączony. Czy chcesz kontynuować? + + Address: + Adres: - This change would require a client restart. - Ta zmiana może wymagać ponownego uruchomienia klienta. + + Custom Change Address + Niestandardowy Adres Reszty - The supplied proxy address is invalid. - Adres podanego proxy jest nieprawidłowy + + IPFS / Hash: + IPFS / Hash: - - - OverviewPage - Form - Formularz + + Single Address Options + Ustawienia Pojedynczego Adresu - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią raven, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. + + Global Options + Ustawienia Ogólne - Watch-only: - Tylko podglądaj: + + Free&ze trading on this address + Zamr&oź handel pod tym adresem - Available: - Dostępne: + + Unfreeze tradin&g on this address + Odmroź hande&l pod tym adresem - Your current spendable balance - Twoje obecne saldo + + Freeze all &trading for the selected restricted asset + Zamroź wszystkie &transakcje dla wybranego aktywa zastrzeżonego - Pending: - W toku: + + &Unfreeze all trading for the selected restricted asset + &Odmroź wszystkie transakcje dla wybranego aktywa zastrzeżonego - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Suma transakcji, które nie zostały jeszcze potwierdzone, a które nie zostały wliczone do twojego obecnego salda + + Check + Sprawdź - Immature: - Niedojrzały: + + Clear + Wyczyść - Mined balance that has not yet matured - Balans wydobytych monet, które jeszcze nie dojrzały + + Submit + Wyślij - Balances - Salda + + Data has been validated, You can now submit the restriction transaction + Dane zostały zatwierdzone. Możesz teraz przesłać żądanie zastrzeżonej transakcji - Total: - Ogółem: + + Must have a restricted asset selected + - Your current total balance + + Address is already frozen + Adres jest już zamrożony + + + + Address is not frozen + Adres nie jest zamrożony + + + + Restricted asset is already frozen globally + Zastrzeżone aktywo jest już całkowicie zamrożone + + + + Restricted asset is not frozen globally + Zastrzeżone aktywo nie jest całkowicie zamrożone + + + + Unable to preform action at this time + Nie można wykonać działania w tym momencie + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + Ostrzeżenie: transakcja w czasie synchronizacji portfela! + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + Próbujesz przesłać transakcję podczas gdy Twój portfel nie jest całkowicie zsynchronizowany. Jest to działanie niezalecane ponieważ transakcja może utknąć w Twoim potful. Czy jesteś pewien, że chcesz kontynuować? + +Zalecane działanie: Zsynchronizuj całkowicie portfel zanim wyślesz transakcję. + + + + + HelpMessageDialog + + + version + wersja + + + + + (%1-bit) + (%1-bit) + + + + About %1 + Informacje o %1 + + + + Command-line options + Opcje konsoli + + + + Usage: + Użycie: + + + + command-line options + opcje konsoli + + + + UI Options: + Opcje interfejsu + + + + Choose data directory on startup (default: %u) + Katalog danych używany podczas uruchamiania programu (domyślny: %u) + + + + Set language, for example "de_DE" (default: system locale) + Wybierz język, na przykład «de_DE» (domyślnie: język systemowy) + + + + Start minimized + Uruchom zminimalizowany + + + + Set SSL root certificates for payment request (default: -system-) + Ustaw certyfikaty główne SSL dla żądań płatności (domyślnie: -system-) + + + + Show splash screen on startup (default: %u) + Wyświetl okno powitalne podczas uruchamiania (domyślnie: %u) + + + + Reset all settings changed in the GUI + Zresetuj wszystkie ustawienia zmienione w GUI + + + + Intro + + + Welcome + Witaj + + + + Welcome to %1. + Witaj w %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Ponieważ jest to pierwsze uruchomienie programu, możesz wybrać gdzie %1 będzie przechowywał swoje dane. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Użyj domyślnego folderu danych + + + + Use a custom data directory: + Użyj wybranego folderu dla danych + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + Portfel będzie przechowywany również w tym folderze + + + + Error: Specified data directory "%1" cannot be created. + Błąd: podany folder danych «%1» nie mógł zostać utworzony. + + + + Error + Błąd + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + Wybierz rodzaj portfela, który ma zostać utworzony. + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + Wybierz co chcesz zrobić: + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + Zatwierdź + + + + You are choosing to create a new wallet using new seed words. + Wybrałeś opcję stworzenia nowego portfela oraz nowych słów źródłowych. + + + + + You are choosing to re-create an old wallet using seed words which you know. + Wybrałeś opcję odtworzenia istniejącego portfela używając przypisanych do niego słów źródłowych. + + + + MnemonicDialog2 + + + New HD Wallet Creation + Tworzenie nowego portfela HD + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + Wygeneruj nowe słowa źródłowe. + + + + These 12 generated seed words will be used. + Wygenerowane poniżej 12 slow źródłowych zostanie użyte. + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + Ostrzeżenie: + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Zatwierdź + + + + Go Back + Powrót + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + Ostrzeżenie: + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + Zatwierdź + + + + Go Back + Powrót + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formularz + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Świeże transakcje mogą nie być jeszcze widoczne, a zatem saldo portfela może być nieprawidłowe. Te detale będą poprawne, gdy portfel zakończy synchronizację z siecią raven, zgodnie z poniższym opisem. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + Pozostało bloków + + + + + + Unknown... + Nienznane... + + + + Last block time + Czas ostatniego bloku + + + + Progress + Postęp + + + + Progress increase per hour + Przyrost postępu na godzinę + + + + + calculating... + obliczanie... + + + + Estimated time left until synced + Przewidywany czas zakończenia synchronizacji + + + + Hide + Ukryj + + + + Unknown. Syncing Headers (%1)... + Nieznane. Synchronizowanie nagłówków (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + Data + + + + Type + Typ + + + + Address + Adres + + + + Asset Name + Nazwa aktywa + + + + Tagged + Zaznaczone + + + + Untagged + Odznaczone + + + + Frozen + Zamrożone + + + + Unfrozen + Odmrożone + + + + Other + Inne + + + + watch-only + podgląd + + + + (no label) + (bez etykiety) + + + + Date and time that the transaction was received. + Data i czas otrzymania transakcji. + + + + Type of transaction. + Rodzaj transakcji + + + + User-defined intent/purpose of the transaction. + Zdefiniowany przez użytkownika cel transakcji. + + + + The asset (or RVN) removed or added to balance. + Aktywo (lub RVN) usunięte lub dodane do salda. + + + + OpenURIDialog + + + Open URI + Otwórz URI + + + + Open payment request from URI or file + Otwórz żądanie zapłaty z URI lub pliku + + + + URI: + URI: + + + + Select payment request file + Otwórz żądanie zapłaty z pliku + + + + Select payment request file to open + Wybierz plik żądania zapłaty do otwarcia + + + + OptionsDialog + + + Options + Opcje + + + + &Main + Główne + + + + Automatically start %1 after logging in to the system. + Automatycznie uruchom %1 po zalogowaniu do systemu. + + + + &Start %1 on system login + Uruchamiaj %1 wraz z zalogowaniem do &systemu + + + + Size of &database cache + Wielkość bufora bazy &danych + + + + MB + MB + + + + Number of script &verification threads + Liczba wątków &weryfikacji skryptu + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adres IP serwera proxy (np. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimalizuje zamiast zakończyć działanie programu przy zamykaniu okna. Kiedy ta opcja jest włączona, program zakończy działanie po wybieraniu Zamknij w menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Zewnętrzne URL podglądu transakcji (np. eksplorator bloków), które będą wyświetlały się w menu kontekstowym, w zakładce transakcji. %s będzie zamieniany w adresie na hash transakcji. Oddziel wiele adresów pionową kreską |. + + + + Active command-line options that override above options: + Aktywne opcje linii komend, które nadpisują powyższe opcje: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + Otwórz plik konfiguracji + + + + Reset all client options to default. + Przywróć wszystkie domyślne ustawienia klienta. + + + + &Reset Options + Z&resetuj ustawienia + + + + &Network + &Sieć + + + + (0 = auto, <0 = leave that many cores free) + (0 = automatycznie, <0 = zostaw tyle wolnych rdzeni) + + + + W&allet + Portfel + + + + Expert + Ekspert + + + + Enable coin &control features + Włącz funk&cje kontoli monet + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Jeżeli wyłączysz możliwość wydania niezatwierdzonej wydanej reszty, reszta z transakcji nie będzie mogła zostać wykorzystana, dopóki ta transakcja nie będzie miała przynajmniej jednego potwierdzenia. To także ma wpływ na obliczanie Twojego salda. + + + + &Spend unconfirmed change + Wydaj niepotwierdzoną re&sztę + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automatycznie otwiera port klienta Raven na routerze. Ta opcja dzieła tylko jeśli twój router wspiera UPnP i jest ono włączone. + + + + Map port using &UPnP + Mapuj port używając &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Połącz się z siecią Raven poprzez proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + Połącz przez proxy SO&CKS5 (domyślne proxy): + + + + + Proxy &IP: + &IP proxy: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port proxy (np. 9050) + + + + Used for reaching peers via: + Użyto do połączenia z peerami przy pomocy: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Połącz się z siecią Raven przy pomocy oddzielnego SOCKS5 proxy dla sieci TOR + + + + &Window + &Okno + + + + Show only a tray icon after minimizing the window. + Pokazuj tylko ikonę przy zegarku po zminimalizowaniu okna. + + + + &Minimize to the tray instead of the taskbar + &Minimalizuj do zasobnika systemowego zamiast do paska zadań + + + + M&inimize on close + M&inimalizuj przy zamknięciu + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Wyświetlanie + + + + User Interface &language: + Język &użytkownika: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Można tu ustawić język interfejsu uzytkownika. Ustawienie przyniesie skutek po ponownym uruchomieniu %1. + + + + &Unit to show amounts in: + &Jednostka pokazywana przy kwocie: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Wybierz podział jednostki pokazywany w interfejsie oraz podczas wysyłania monet + + + + Whether to show coin control features or not. + Wybierz pokazywanie lub nie funkcji kontroli monet. + + + + &Third party transaction URLs + + + + + + Reset + Resetuj + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + Przeglądarka IPFS URL + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Anuluj + + + + default + domyślny + + + + none + żaden + + + + Confirm options reset + Potwierdź reset ustawień + + + + + Client restart required to activate changes. + Wymagany restart programu, aby uaktywnić zmiany. + + + + Client will be shut down. Do you want to proceed? + Program zostanie wyłączony. Czy chcesz kontynuować? + + + + Configuration options + Opcje konfiguracji + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + Błąd + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Ta zmiana może wymagać ponownego uruchomienia klienta. + + + + The supplied proxy address is invalid. + Adres podanego proxy jest nieprawidłowy + + + + OverviewPage + + + Form + Formularz + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Wyświetlana informacja może być nieaktualna. Twój portfel synchronizuje się automatycznie z siecią raven, zaraz po tym jak uzyskano połączenie, ale proces ten nie został jeszcze ukończony. + + + + Watch-only: + Tylko podglądaj: + + + + Available: + Dostępne: + + + + Your current spendable balance + Twoje obecne saldo + + + + Pending: + W toku: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Suma transakcji, które nie zostały jeszcze potwierdzone, a które nie zostały wliczone do twojego obecnego salda + + + + Immature: + Niedojrzały: + + + + Mined balance that has not yet matured + Balans wydobytych monet, które jeszcze nie dojrzały + + + + Total: + Ogółem: + + + + Your current total balance Twoje obecne saldo - Your current balance in watch-only addresses - Twoje obecne saldo na podglądanym adresie + + RVN Balances + Salda RVN + + + + Your current balance in watch-only addresses + Twoje obecne saldo na podglądanym adresie + + + + Spendable: + Możliwe do wydania: + + + + Asset Balances + Salda Aktywa + + + + Search + Szukaj + + + + Recent transactions + Ostatnie transakcje + + + + Unconfirmed transactions to watch-only addresses + Niepotwierdzone transakcje na podglądanych adresach + + + + Mined balance in watch-only addresses that has not yet matured + Wykopane monety na podglądanych adresach które jeszcze nie dojrzały + + + + Current total balance in watch-only addresses + Łączna kwota na podglądanych adresach + + + + Send Asset + Wyślij Aktywo + + + + Copy Amount + Skopiuj Kwotę + + + + Copy Name + Skopiuj Nazwę + + + + Copy Hash + Skopiuj Hash + + + + Issue Sub Asset + Wyemituj Aktywo Podrzędne + + + + Issue Unique Asset + Wyemituj Aktywo Unikatowe + + + + Reissue Asset + Ponownie Wyemituj AKtywo + + + + Open IPFS in Browser + Otwórz IPFS w Przeglądarce + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Błąd żądania płatności + + + + Cannot start raven: click-to-pay handler + Nie można uruchomić protokołu raven: kliknij-by-zapłacić + + + + + + URI handling + Obsługa URI + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + błędny adres płatności %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + Żądanie płatności odrzucone + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + Żądanie płatności upłynęło. + + + + Payment request is not initialized. + Żądanie płatności nie jest zainicjowane. + + + + Unverified payment requests to custom payment scripts are unsupported. + Niezweryfikowane żądania płatności do własnych skryptów płatności są niewspierane. + + + + + Invalid payment request. + Nieprawidłowe żądanie płatności + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + Zwrot z %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + Błąd komunikacji z %1 : %2 + + + + Payment request cannot be parsed! + Żądanie płatności nie może zostać przetworzone. + + + + Bad response from server %1 + Błędna odpowiedź z serwera %1 + + + + Network request error + Błąd żądania sieci + + + + Payment acknowledged + Płatność potwierdzona + + + + PeerTableModel + + + User Agent + Aplikacja kliencka + + + + Node/Service + Węzeł/Usługi + + + + NodeId + Identyfikator węzła + + + + Ping + Ping + + + + Sent + Wysłane + + + + Received + Odebrane + + + + QObject + + + Amount + Kwota + + + + Enter a Raven address (e.g. %1) + Wprowadź adres ravenowy (np. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Żaden + + + + N/A + NIEDOSTĘPNE + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 i %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 jeszcze się bezpiecznie nie zamknął... + + + + unknown + nieznany + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Błąd: Określony folder danych "%1" nie istnieje. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Błąd: %1 + + + + QRImageWidget + + + &Save Image... + &Zapisz obraz... + + + + &Copy Image + &Kopiuj obraz + + + + Save QR Code + Zapisz Kod QR + + + + PNG Image (*.png) + Obraz PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + NIEDOSTĘPNE + + + + Client version + Wersja klienta + + + + &Information + &Informacje + + + + Debug window + Okno debugowania + + + + General + Ogólne + + + + Using BerkeleyDB version + Używana wersja BerkeleyDB + + + + Datadir + Katalog danych + + + + Startup time + Czas uruchomienia + + + + Network + Sieć + + + + Name + Nazwa + + + + Number of connections + Liczba połączeń + + + + Block chain + Łańcuch bloków + + + + Current number of blocks + Aktualna liczba bloków + + + + Memory Pool + Memory Pool (obszar pamięci) + + + + Current number of transactions + Obecna liczba transakcji + + + + Memory usage + Zużycie pamięci + + + + &Reset + + + + + + Received + Otrzymane + + + + + Sent + Wysłane + + + + &Peers + &Węzły + + + + Banned peers + Blokowane węzły + + + + + + Select a peer to view detailed information. + Wybierz węzeł żeby zobaczyć szczegóły. + + + + Whitelisted + Biała lista + + + + Direction + Kierunek + + + + Version + Wersja + + + + Starting Block + Blok startowy + + + + Synced Headers + Zsynchronizowane nagłówki + + + + Synced Blocks + Zsynchronizowane bloki + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Aplikacja kliencka + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Otwórz plik dziennika debugowania %1 z obecnego katalogu z danymi. Może to potrwać kilka sekund przy większych plikach. + + + + Decrease font size + Zmniejsz rozmiar czcionki + + + + Increase font size + Zwiększ rozmiar czcionki + + + + Services + Usługi + + + + Ban Score + Punkty karne + + + + Connection Time + Czas połączenia + + + + Last Send + Ostatnio wysłano + + + + Last Receive + Ostatnio odebrano + + + + Ping Time + Czas odpowiedzi + + + + The duration of a currently outstanding ping. + Czas trwania nadmiarowego pingu + + + + Ping Wait + Czas odpowiedzi + + + + Min Ping + Minimalny czas odpowiedzi + + + + Time Offset + Przesunięcie czasu + + + + Last block time + Czas ostatniego bloku + + + + &Open + &Otwórz + + + + &Console + &Konsola + + + + &Network Traffic + $Ruch sieci + + + + Totals + Kwota ogólna + + + + In: + Wejście: + + + + Out: + Wyjście: + + + + Debug log file + Plik logowania debugowania + + + + Clear console + Wyczyść konsolę + + + + 1 &hour + 1 &godzina + + + + 1 &day + 1 &dzień + + + + 1 &week + 1 &tydzień + + + + 1 &year + 1 &rok + + + + &Disconnect + &Rozłącz + + + + + + + Ban for + Zbanuj na + + + + &Unban + &Odblokuj + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Witaj w konsoli %1 RPC. + + + + Type <b>help</b> for an overview of available commands. + Wpisz <b>help</b> aby uzyskać listę dostępnych komend + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Aktywność sieciowa wyłączona + + + + (node id: %1) + (id węzła: %1) + + + + via %1 + przez %1 + + + + + never + nigdy + + + + Inbound + Wejściowy + + + + Outbound + Wyjściowy + + + + Yes + Tak + + + + No + Nie + + + + + Unknown + Nieznany + + + + RavenGUI + + + Sign &message... + Podpisz wiado&mość... + + + + Synchronizing with network... + Synchronizacja z siecią... + + + + &Overview + P&odsumowanie + + + + Node + Węzeł + + + + Show general overview of wallet + Pokazuje ogólny widok portfela + + + + &Transactions + &Transakcje + + + + Browse transaction history + Przeglądaj historię transakcji + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + W Krótce + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Zakończ + + + + Quit application + Zamknij program + + + + &About %1 + &O %1 + + + + Show information about %1 + Pokaż informacje o %1 + + + + About &Qt + O &Qt + + + + Show information about Qt + Pokazuje informacje o Qt + + + + &Options... + &Opcje... + + + + Modify configuration options for %1 + Zmień opcje konfiguracji dla %1 + + + + &Encrypt Wallet... + Zaszyfruj Portf&el + + + + &Backup Wallet... + Wykonaj kopię zapasową... + + + + &Change Passphrase... + &Zmień hasło... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adresy wysyłania... + + + + &Receiving addresses... + Adresy odbioru... + + + + Open &URI... + Otwórz URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Kliknij aby wyłączyć aktywność sieciową. + + + + Network activity disabled. + Aktywność sieciowa została wyłączona. + + + + Click to enable network activity again. + Kliknij, aby ponownie włączyć aktywności sieciową. + + + + Syncing Headers (%1%)... + Synchronizowanie headerów (%1%)... + + + + Reindexing blocks on disk... + Ponowne indeksowanie bloków na dysku... + + + + Send coins to a Raven address + Wyślij monety na adres ravenowy + + + + Backup wallet to another location + Zapasowy portfel w innej lokalizacji + + + + Change the passphrase used for wallet encryption + Zmień hasło użyte do szyfrowania portfela + + + + Open debugging and diagnostic console + Otwórz konsolę debugowania i diagnostyki + + + + &Verify message... + &Zweryfikuj wiadomość... + + + + Raven + Raven + + + + Wallet + Portfel + + + + &Send + Wyślij + + + + &Receive + Odbie&rz + + + + &Show / Hide + &Pokaż / Ukryj + + + + Show or hide the main Window + Pokazuje lub ukrywa główne okno + + + + Encrypt the private keys that belong to your wallet + Szyfruj klucze prywatne, które są w twoim portfelu + + + + Sign messages with your Raven addresses to prove you own them + Podpisz wiadomości swoim adresem aby udowodnić jego posiadanie + + + + Verify messages to ensure they were signed with specified Raven addresses + Zweryfikuj wiadomość, aby upewnić się, że została podpisana podanym adresem ravenowym. + + + + &File + &Plik + + + + &Help + Pomo&c + + + + Request payments (generates QR codes and raven: URIs) + Żądaj płatności (generuje kod QR oraz ravenowe URI) + + + + Show the list of used sending addresses and labels + Pokaż listę adresów i etykiet użytych do wysyłania + + + + Show the list of used receiving addresses and labels + Pokaż listę adresów i etykiet użytych do odbierania + + + + Open a raven: URI or payment request + Otwórz URI raven: lub żądanie zapłaty + + + + &Command-line options + &Opcje linii komend + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indeksowanie bloków na dysku... + + + + Processing blocks on disk... + Przetwarzanie blocks on disk... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 za + + + + Last received block was generated %1 ago. + Ostatni otrzymany blok został wygenerowany %1 temu. + + + + Transactions after this will not yet be visible. + Transakcje po tym momencie nie będą jeszcze widoczne. + + + + Error + Błąd - Spendable: - Możliwe do wydania: + + Warning + Ostrzeżenie - Recent transactions - Ostatnie transakcje + + Information + Informacja - Unconfirmed transactions to watch-only addresses - Niepotwierdzone transakcje na podglądanych adresach + + Up to date + Aktualny + + + + Show the %1 help message to get a list with possible Raven command-line options + Pokaż pomoc %1 aby zobaczyć listę wszystkich opcji lnii poleceń. + + + + %1 client + %1 klient + + + + Connecting to peers... + Łączenie z peerami... + + + + Catching up... + Trwa synchronizacja… + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Kwota: %1 + + + + + Type: %1 + + Typ: %1 + + + + + Label: %1 + + Etykieta: %1 + + + + + Address: %1 + + Adres: %1 + + + + + Sent transaction + Transakcja wysłana + + + + Incoming transaction + Transakcja przychodząca + + + + + Assets not yet active + Aktywo wciąż nieaktywne + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Generowanie kluczy HD jest <b>włączone</b> + + + + HD key generation is <b>disabled</b> + Generowanie kluczy HD jest <b>wyłączone</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>odblokowany</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portfel jest <b>zaszyfrowany</b> i obecnie <b>zablokowany</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Wystąpił krytyczny błąd. Raven nie jest w stanie kontynuować bezpiecznie i zostanie zamknięty. + + + + ReceiveCoinsDialog + + + &Amount: + &Ilość: + + + + &Label: + &Etykieta: + + + + &Message: + &Wiadomość: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Użyj jednego z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. + + + + R&euse an existing receiving address (not recommended) + U&żyj ponownie istniejącego adresu odbiorczego (niepolecane) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Opcjonalna wiadomość do dołączenia do żądania płatności, która będzie wyświetlana, gdy żądanie zostanie otwarte. Uwaga: wiadomość ta nie zostanie wysłana wraz z płatnością w sieci Raven. + + + + + An optional label to associate with the new receiving address. + Opcjonalna etykieta do skojarzenia z nowym adresem odbiorczym. + + + + Use this form to request payments. All fields are <b>optional</b>. + Użyj tego formularza do zażądania płatności. Wszystkie pola są <b>opcjonalne</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Opcjonalna kwota by zażądać. Zostaw puste lub zero by nie zażądać konkretnej kwoty. + + + + Clear all fields of the form. + Wyczyść wszystkie pola formularza. + + + + Clear + Wyczyść + + + + Requested payments history + Żądanie historii płatności + + + + &Request payment + &Żądaj płatności + + + + Show the selected request (does the same as double clicking an entry) + Pokaż wybrane żądanie (robi to samo co dwukrotne kliknięcie pozycji) + + + + Show + Pokaż + + + + Remove the selected entries from the list + Usuń zaznaczone z listy + + + + Remove + Usuń + + + + Copy URI + Kopiuj URI: + + + + Copy label + Kopiuj etykietę + + + + Copy message + Kopiuj wiadomość + + + + Copy amount + Kopiuj kwotę + + + + ReceiveRequestDialog + + + QR Code + Kod QR + + + + Copy &URI + Kopiuj &URI + + + + Copy &Address + Kopiuj &adres + + + + &Save Image... + &Zapisz obraz... + + + + Request payment to %1 + Zażądaj płatności do %1 + + + + Payment information + Informacje o płatności + + + + URI + URI + + + + Address + Adres + + + + Amount + Kwota + + + + Label + Etykieta + + + + Message + Wiadomość + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etykieta + + + + Message + Wiadomość + + + + (no label) + (brak etykiety) + + + + (no message) + (brak wiadomości) - Mined balance in watch-only addresses that has not yet matured - Wykopane monety na podglądanych adresach które jeszcze nie dojrzały + + (no amount requested) + (brak kwoty) - Current total balance in watch-only addresses - Łączna kwota na podglądanych adresach + + Requested + Zażądano - PaymentServer + ReissueAssetDialog - Payment request error - Błąd żądania płatności + + Coin Control Features + - Cannot start raven: click-to-pay handler - Nie można uruchomić protokołu raven: kliknij-by-zapłacić + + Inputs... + Wejścia... - URI handling - Obsługa URI + + automatically selected + wybrano automatycznie - Invalid payment address %1 - błędny adres płatności %1 + + Insufficient funds! + Niewystarczająca ilość środków! - Payment request rejected - Żądanie płatności odrzucone + + + Quantity: + Ilość: - Payment request expired. - Żądanie płatności upłynęło. + + Bytes: + Bajtów: - Payment request is not initialized. - Żądanie płatności nie jest zainicjowane. + + Amount: + Kwota: - Unverified payment requests to custom payment scripts are unsupported. - Niezweryfikowane żądania płatności do własnych skryptów płatności są niewspierane. + + Dust: + Mikrosaldo: - Invalid payment request. - Nieprawidłowe żądanie płatności + + Fee: + Opłata: - Refund from %1 - Zwrot z %1 + + After Fee: + Po uwzględnieniu opłaty: - Error communicating with %1: %2 - Błąd komunikacji z %1 : %2 + + Change: + Reszta: - Payment request cannot be parsed! - Żądanie płatności nie może zostać przetworzone. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Bad response from server %1 - Błędna odpowiedź z serwera %1 + + Custom change address + - Network request error - Błąd żądania sieci + + + Reissue Asset + Ponownie Wyemituj AKtywo - Payment acknowledged - Płatność potwierdzona + + Select an asset to reissue: + Wybierz aktywo do ponownego wyemitowania: - - - PeerTableModel - User Agent - Aplikacja kliencka + + Address: + Adres - Node/Service - Węzeł/Usługi + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - NodeId - Identyfikator węzła + + Verifier String: + - Ping - Ping + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - - - QObject - Amount - Kwota + + Warning: + Ostrzeżenie: - Enter a Raven address (e.g. %1) - Wprowadź adres ravenowy (np. %1) + + The number of assets that will be created + Ilość aktywów, które chcesz utworzyć - %1 d - %1 d + + Unit: + Jednostka: - %1 h - %1 h + + e.g. 1.00000000 + - %1 m - %1 m + + If the owner of this asset will be able to issue more assets in the future + - %1 s - %1 s + + Reissuable + Możliwość dodatkowej emisji. - None - Żaden + + Change IPFS/Txid Hash + Zmień IPFS/Txid Hash - N/A - NIEDOSTĘPNE + + The ipfs/txid hash that contains information about the asset + - %1 ms - %1 ms - - - %n second(s) - %n sekunda - - - %n minute(s) - %n minuta + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n hour(s) - %n godzinę + + + ERROR TEXT + - - %n day(s) - %n dzień + + + Current Asset Settings + - - %n week(s) - %n tydzień + + + Updated Asset Settings + - %1 and %2 - %1 i %2 + + Transaction Fee: + Opłata transakcyjna: - - %n year(s) - %n rok + + + Choose... + Wybierz... - %1 didn't yet exit safely... - %1 jeszcze się bezpiecznie nie zamknął... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Błąd: Określony folder danych "%1" nie istnieje. + + Warning: Fee estimation is currently not possible. + - Error: %1 - Błąd: %1 + + collapse fee-settings + - - - QRImageWidget - &Save Image... - &Zapisz obraz... + + Hide + Ukryj - &Copy Image - &Kopiuj obraz + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Save QR Code - Zapisz Kod QR + + per kilobyte + - PNG Image (*.png) - Obraz PNG (*.png) + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - - - RPCConsole - N/A - NIEDOSTĘPNE + + (read the tooltip) + - Client version - Wersja klienta + + Recommended: + Zalecane: - &Information - &Informacje + + Cus&tom: + - Debug window - Okno debugowania + + (Smart fee not initialized yet. This usually takes a few blocks...) + - General - Ogólne + + Confirmation time target: + - Using BerkeleyDB version - Używana wersja BerkeleyDB + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Datadir - Katalog danych + + Request Replace-By-Fee + - Startup time - Czas uruchomienia + + Clear + Wyczyść - Network - Sieć + + Balance: + Saldo: - Name - Nazwa + + 123.456 RVN + 123.456 RVN - Number of connections - Liczba połączeń + + Copy quantity + Skopiuj ilość - Block chain - Łańcuch bloków + + Copy amount + Kopiuj kwotę - Current number of blocks - Aktualna liczba bloków + + Copy fee + Skopiuj opłatę - Memory Pool - Memory Pool (obszar pamięci) + + Copy after fee + Skopiuj po uwzględnieniu opłaty - Current number of transactions - Obecna liczba transakcji + + Copy bytes + Skopiuj ilość bajtów - Memory usage - Zużycie pamięci + + Copy dust + Skopiuj mikrosaldo - Received - Otrzymane + + Copy change + Skopiuj resztę - Sent - Wysłane + + Select an asset to reissue.. + Wybierz aktywo do ponownego wyemitowania: - &Peers - &Węzły + + Select the asset you want to reissue. + - Banned peers - Blokowane węzły + + %1 (%2 blocks) + - Select a peer to view detailed information. - Wybierz węzeł żeby zobaczyć szczegóły. + + Cost + Koszt - Whitelisted - Biała lista + + Asset data couldn't be found + - Direction - Kierunek + + Quantity is to large. Max is 21,000,000,000 + - Version - Wersja + + Invalid Raven Destination Address + - Starting Block - Blok startowy + + Warning: Restricted Assets Issuance requires an address + - Synced Headers - Zsynchronizowane nagłówki + + + Warning: Invalid Raven address + - Synced Blocks - Zsynchronizowane bloki + + + Yes + Tak - User Agent - Aplikacja kliencka + + No + Nie - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Otwórz plik dziennika debugowania %1 z obecnego katalogu z danymi. Może to potrwać kilka sekund przy większych plikach. + + + Name + Nazwa - Decrease font size - Zmniejsz rozmiar czcionki + + + Total Quantity + Całkowita Ilość - Increase font size - Zwiększ rozmiar czcionki + + + Units + Jednostki - Services - Usługi + + + Can Reisssue + - Ban Score - Punkty karne + + + + IPFS Hash + IPFS Hash - Connection Time - Czas połączenia + + + + Txid Hash + Txid Hash - Last Send - Ostatnio wysłano + + Verifier String + Ciąg Weryfikacyjny: - Last Receive - Ostatnio odebrano + + + Current Verifier String + Aktualny Ciąg Weryfikacyjny: - Ping Time - Czas odpowiedzi + + Please select a asset from the menu to display the assets current settings + - The duration of a currently outstanding ping. - Czas trwania nadmiarowego pingu + + Please select a asset from the menu to display the assets updated settings + - Ping Wait - Czas odpowiedzi + + Current Quantity + Aktualna Ilość - Min Ping - Minimalny czas odpowiedzi + + Current Units + Aktualne Jednostki - Time Offset - Przesunięcie czasu + + Can Reissue + - Last block time - Czas ostatniego bloku + + Unknown data hash type + - &Open - &Otwórz + + Only IPFS Hashes allowed until RIP5 is activated + - &Console - &Konsola + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Network Traffic - $Ruch sieci + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Clear - &Wyczyść + + + %1 to %2 + %1 do %2 - Totals - Kwota ogólna + + Are you sure you want to send? + Czy na pewno chcesz wysłać? - In: - Wejście: + + added as transaction fee + dodano jako opłata transakcyjna - Out: - Wyjście: + + Total Amount %1 + Łączna kwota %1 - Debug log file - Plik logowania debugowania + + or + lub - Clear console - Wyczyść konsolę + + Confirm reissue assets + Potwierdź wznowienie aktywa - 1 &hour - 1 &godzina + + Copy + Kopiuj - 1 &day - 1 &dzień + + Transaction ID Copied + ID transakcji zostało skopiowane - 1 &week - 1 &tydzień + + Asset transaction sent to network: + Transakcja aktywa została wysłana do sieci: + + + + Estimated to begin confirmation within %n block(s). + - 1 &year - 1 &rok + + Warning: Unknown change address + Ostrzeżenie: Nieznany adres reszty - &Disconnect - &Rozłącz + + Confirm custom change address + Potwierdź niestandardowy adres dla reszty - Ban for - Zbanuj na + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Wybrany adres dla reszty nie jest częścią tego portfela. Cześć lub wszystkie fundusze z tego portfela mogą zostać wysłane na wskazany dres. Czy jesteś pewien swoich działań? - &Unban - &Odblokuj + + (no label) + - Welcome to the %1 RPC console. - Witaj w konsoli %1 RPC. + + Pay only the required fee of %1 + Zapłać tylko wymaganą opłatę w wysokości %1 + + + RestrictedAssetsDialog - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Użyj strzałek do przewijania historii i <b>Ctrl-L</b> aby wyczyścić ekran + + Send Coins + Wyślij monety - Type <b>help</b> for an overview of available commands. - Wpisz <b>help</b> aby uzyskać listę dostępnych komend + + Asset Balances + Saldo Aktywa - %1 B - %1 B + + + Search + Szukaj - %1 KB - %1 KB + + Address List + Lista Adresów - %1 MB - %1 MB + + Balance: + Saldo: - %1 GB - %1 GB + + + Failed to create a change address + - (node id: %1) - (id węzła: %1) + + Failed to generate the correct transaction. Please try again + - via %1 - przez %1 + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - never - nigdy + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Inbound - Wejściowy + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Outbound - Wyjściowy + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Yes - Tak + + + added as transaction fee + - No - Nie + + + Total Amount %1 + - Unknown - Nieznany + + + or + lub - - - ReceiveCoinsDialog - &Amount: - &Ilość: + + Confirm adding restriction + - &Label: - &Etykieta: + + Confirm removing resetricton + - &Message: - &Wiadomość: + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Użyj jednego z poprzednio użytych adresów odbiorczych. Podczas ponownego używania adresów występują problemy z bezpieczeństwem i prywatnością. Nie korzystaj z tej opcji, chyba że odtwarzasz żądanie płatności wykonane już wcześniej. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - R&euse an existing receiving address (not recommended) - U&żyj ponownie istniejącego adresu odbiorczego (niepolecane) + + Confirm adding qualifier + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Opcjonalna wiadomość do dołączenia do żądania płatności, która będzie wyświetlana, gdy żądanie zostanie otwarte. Uwaga: wiadomość ta nie zostanie wysłana wraz z płatnością w sieci Raven. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional label to associate with the new receiving address. - Opcjonalna etykieta do skojarzenia z nowym adresem odbiorczym. + + This is an asset payment + - Use this form to request payments. All fields are <b>optional</b>. - Użyj tego formularza do zażądania płatności. Wszystkie pola są <b>opcjonalne</b>. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Opcjonalna kwota by zażądać. Zostaw puste lub zero by nie zażądać konkretnej kwoty. + + + + Memo: + - Clear all fields of the form. - Wyczyść wszystkie pola formularza. + + Amount: + Kwota: - Clear - Wyczyść + + Enter a label for this address to add it to the list of used addresses + - Requested payments history - Żądanie historii płatności + + &Label: + - &Request payment - &Żądaj płatności + + Asset: + Aktywo: - Show the selected request (does the same as double clicking an entry) - Pokaż wybrane żądanie (robi to samo co dwukrotne kliknięcie pozycji) + + The Raven address to send the payment to + Adres Raven dla przesłania płatności - Show - Pokaż + + Choose previously used address + Wybierz wcześniej użytego adresu - Remove the selected entries from the list - Usuń zaznaczone z listy + + Alt+A + Alt+A - Remove - Usuń + + Paste address from clipboard + Wklej adres ze schowka - Copy URI - Kopiuj URI: + + Alt+P + Alt+P - Copy label - Kopiuj etykietę + + + + Remove this entry + Usuń ten wpis - Copy message - Kopiuj wiadomość + + Message: + Wiadomość: - Copy amount - Kopiuj kwotę + + Transfer &To: + - - - ReceiveRequestDialog - QR Code - Kod QR + + Transfer Administrator Asset + - Copy &URI - Kopiuj &URI + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Copy &Address - Kopiuj &adres + + This is an unauthenticated payment request. + - &Save Image... - &Zapisz obraz... + + + Transfer to: + Prześlij do: - Request payment to %1 - Zażądaj płatności do %1 + + + A&mount: + - Payment information - Informacje o płatności + + This is an authenticated payment request. + - URI - URI + + Enter a label for this address to add it to your address book + - Address - Adres + + Select to view administrator assets to transfer + - Amount - Kwota + + + Select an asset to transfer + Wybierz aktyw, które chcesz przesłać - Label - Etykieta + + Memos can only be added once RIP5 is voted in + - Message - Wiadomość + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Data + + Failed to get asset metadata for: + - Label - Etykieta + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Wiadomość + + Failed to get asset outpoints from database + - (no label) - (brak etykiety) + + Selected Balance + Wybierz Saldo - (no message) - (brak wiadomości) + + Wallet Balance + Saldo Portfela - (no amount requested) - (brak kwoty) + + Select an administrator asset to transfer + - Requested - Zażądano + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Wyślij monety + Coin Control Features Funkcje kontroli monet + Inputs... Wejścia... + automatically selected zaznaczone automatycznie + Insufficient funds! Niewystarczające środki! + Quantity: Ilość: + Bytes: Bajtów: + Amount: Kwota: + Fee: Opłata: + After Fee: Po opłacie: + Change: Reszta: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Kiedy ta opcja jest wybrana, to jeżeli adres reszty jest pusty lub nieprawidłowy, to reszta będzie wysyłana na nowo wygenerowany adres, + Custom change address Niestandardowe zmiany adresu + Transaction Fee: Opłata transakcyjna: + Choose... Wybierz... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + Uwaga: określenie opłaty jest obecnie niemożliwe. + + + collapse fee-settings zwiń opcje opłaty + per kilobyte za kilobajt - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Jeżeli własna opłata zostanie ustawiona na 1000 satoshi, a transakcja będzie miała tylko 250 bajtów, to "za kilobajt" płaci tylko 250 satoshi, podczas gdy, "razem przynajmniej" płaci 1000 satoshi. Przy transakcjach większych niż kilobajt, w obu przypadkach płaci za każdy kilobajt. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Jeżeli własna opłata zostanie ustawiona na 1000 satoshi, a transakcja będzie miała tylko 250 bajtów, to "za kilobajt" płaci tylko 250 satoshi, podczas gdy, "razem przynajmniej" płaci 1000 satoshi. Przy transakcjach większych niż kilobajt, w obu przypadkach płaci za każdy kilobajt. + Hide Ukryj - total at least - razem przynajmniej - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Zapłacenie tylko minimalnej opłaty jest nadal wystarczające, dopóki jest mniejszy wolumen transakcji niż miejsca w blokach. Należy jednak mieć świadomość, że może skończyć się to niezatwierdzeniem nigdy transakcji, gdy jest większe zapotrzebowanie na transakcje ravena niż sieć może przetworzyć. + (read the tooltip) (przeczytaj podpowiedź) + Recommended: Zalecane: + Custom: Własna: + (Smart fee not initialized yet. This usually takes a few blocks...) (Sprytne opłaty nie są jeszcze zainicjowane. Trwa to zwykle kilka bloków...) - normal - normalnie + + Request Replace-By-Fee + - fast - szybko + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Wyślij do wielu odbiorców na raz + Add &Recipient Dodaj Odbio&rcę + Clear all fields of the form. Wyczyść wszystkie pola formularza. + Dust: Pył: + Confirmation time target: Docelowy czas potwierdzenia: + Clear &All Wyczyść &wszystko + Balance: Saldo: + Confirm the send action Potwierdź akcję wysyłania + S&end Wy&syłka + Copy quantity Skopiuj ilość + Copy amount Kopiuj kwotę + Copy fee Skopiuj prowizję + Copy after fee Skopiuj ilość po opłacie + Copy bytes Skopiuj ilość bajtów + Copy dust Kopiuj pył + Copy change Skopiuj resztę + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 do %2 + Are you sure you want to send? Czy na pewno chcesz wysłać? + added as transaction fee dodano jako opłata transakcyjna + Total Amount %1 Łączna kwota %1 + or lub + Confirm send coins Potwierdź wysyłanie monet + The recipient address is not valid. Please recheck. Adres odbiorcy jest nieprawidłowy, proszę sprawić ponownie. + The amount to pay must be larger than 0. Kwota do zapłacenia musi być większa od 0. + The amount exceeds your balance. Kwota przekracza twoje saldo. + The total exceeds your balance when the %1 transaction fee is included. Suma przekracza twoje saldo, gdy doliczymy %1 opłaty transakcyjnej. + + Duplicate address found: addresses should only be used once each. + + + + Transaction creation failed! Utworzenie transakcji nie powiodło się! + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + Opłata powyżej 1% jest uważana za absurdalnie wysoką + + + Payment request expired. Żądanie płatności upłynęło. + Pay only the required fee of %1 Zapłać tylko wymaganą opłatę w wysokości %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address Ostrzeżenie: nieprawidłowy adres Raven + Warning: Unknown change address Ostrzeżenie: Nieznany adres reszty + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) (brak etykiety) @@ -2146,85 +5510,117 @@ SendCoinsEntry + + + A&mount: Su&ma: - Pay &To: - Zapłać &dla: - - + &Label: &Etykieta: + Choose previously used address Wybierz wcześniej użyty adres + This is a normal payment. To jest standardowa płatność + The Raven address to send the payment to Adres Raven gdzie wysłać płatność + Alt+A Alt+A + Paste address from clipboard Wklej adres ze schowka + Alt+P Alt+P + + + Remove this entry Usuń ten wpis + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Opłata zostanie odjęta od kwoty wysyłane.Odbiorca otrzyma mniej niż ravens wpisz w polu kwoty. Jeśli wybrano kilku odbiorców, opłata jest podzielona równo. + S&ubtract fee from amount Odejmij od wysokości opłaty + Message: Wiadomość: + + Send &To: + + + + This is an unauthenticated payment request. To żądanie zapłaty nie zostało zweryfikowane. + + + Send to: + + + + This is an authenticated payment request. To żądanie zapłaty jest zweryfikowane. + Enter a label for this address to add it to the list of used addresses Wprowadź etykietę dla tego adresu by dodać go do listy użytych adresów + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Wiadomość, która została dołączona do URI raven:, która będzie przechowywana wraz z transakcją w celach informacyjnych. Uwaga: Ta wiadomość nie będzie rozsyłana w sieci Raven. - Pay To: - Wpłać do: - - + + Memo: Notatka: - + + + Enter a label for this address to add it to your address book + Wprowadź etykietę dla tego adresu aby dodać go do książki adresowej + + SendConfirmationDialog + + Yes Tak @@ -2232,10 +5628,12 @@ ShutdownWindow + %1 is shutting down... %1 się zamyka... + Do not shut down the computer until this window disappears. Nie wyłączaj komputera dopóki to okno nie zniknie. @@ -2243,115 +5641,182 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Podpisy - Podpisz / zweryfikuj wiadomość + &Sign Message Podpi&sz Wiadomość + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Możesz podpisywać wiadomości swoimi adresami aby udowodnić, że jesteś ich właścicielem. Uważaj, aby nie podpisywać niczego co wzbudza Twoje podejrzenia, ponieważ ktoś może stosować phishing próbując nakłonić Cię do ich podpisania. Akceptuj i podpisuj tylko w pełni zrozumiałe komunikaty i wiadomości. + The Raven address to sign the message with Adres Raven, za pomocą którego podpisać wiadomość + + Choose previously used address Wybierz wcześniej użyty adres + + Alt+A Alt+A + Paste address from clipboard Wklej adres ze schowka + Alt+P Alt+P + Enter the message you want to sign here Tutaj wprowadź wiadomość, którą chcesz podpisać + Signature Podpis + Copy the current signature to the system clipboard Kopiuje aktualny podpis do schowka systemowego + Sign the message to prove you own this Raven address Podpisz wiadomość aby dowieść, że ten adres jest twój + Sign &Message Podpisz Wiado&mość + Reset all sign message fields Zresetuj wszystkie pola podpisanej wiadomości + + Clear &All Wyczyść &wszystko + &Verify Message &Zweryfikuj wiadomość - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Wpisz adres, wiadomość oraz sygnaturę (podpis) odbiorcy (upewnij się, że dokładnie skopiujesz wszystkie zakończenia linii, spacje, tabulacje itp.). Uważaj by nie dodać więcej do podpisu niż do samej podpisywanej wiadomości by uniknąć ataku man-in-the-middle. Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadawca posiada klucz do adresu, natomiast nie potwierdza to, że poprawne wysłanie jakiejkolwiek transakcji! + The Raven address the message was signed with Adres Raven, którym została podpisana wiadomość + Verify the message to ensure it was signed with the specified Raven address Zweryfikuj wiadomość, aby upewnić się, że została podpisana odpowiednim adresem Raven. + Verify &Message Zweryfikuj Wiado&mość + Reset all verify message fields Resetuje wszystkie pola weryfikacji wiadomości + + Click "Sign Message" to generate signature + + + + + The entered address is invalid. Podany adres jest nieprawidłowy. + + + + Please check the address and try again. Proszę sprawdzić adres i spróbować ponownie. + + + The entered address does not refer to a key. + Wprowadzony adres nie odwołuje się do klucza + + + Wallet unlock was cancelled. Odblokowanie portfela zostało anulowane. + Private key for the entered address is not available. Klucz prywatny dla podanego adresu nie jest dostępny. + Message signing failed. Podpisanie wiadomości nie powiodło się. + Message signed. Wiadomość podpisana. + + The signature could not be decoded. + Podpis nie może zostać odczytany + + + + + Please check the signature and try again. + Proszę sprawdź podpis i spróbuj ponownie. + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + Message verified. Wiadomość zweryfikowana. @@ -2359,6 +5824,7 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw SplashScreen + [testnet] [testnet] @@ -2366,77 +5832,268 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw TrafficGraphWidget + KB/s KB/s - - - TransactionDesc + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + porzucone + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + Status + - abandoned - porzucone + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + Date Data + Source Źródło + Generated Wygenerowano + + + + + From Od + + unknown nieznane + + + + + To Do + + own address własny adres + + + watch-only tylko-obserwowany + + label etykieta + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + Transaction fee Opłata transakcyjna + + Net amount + Ilość netto + + + + + + Message Wiadomość + + + Comment + Skomentuj + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + Transaction Transakcja + Inputs Wejścia + Amount Kwota + + true prawda + + false fałsz @@ -2444,140 +6101,424 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw TransactionDescDialog + This pane shows a detailed description of the transaction Ten panel pokazuje szczegółowy opis transakcji - + + + Details for %1 + + + TransactionTableModel + Date Data + Type Typ + Label Etykieta + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + Offline Offline + Unconfirmed Niepotwierdzone + Abandoned Porzucone + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + Conflicted Skonfliktowane + + Immature (%1 confirmations, will be available after %2) + Niedojrzały (%1 potwierdzeń, będzie gotowy po %2) + + + + This block was not received by any other nodes and will probably not be accepted! + Ten blok nie dotarł do żadnego innego węzła i prawdopodobnie zostanie odrzucony! + + + Generated but not accepted Wygenerowane ale nie zaakceptowane + + Received with + Otrzymano z + + + + Received from + Otrzymano od: + + + Sent to Wysłane do + + Payment to yourself + Płatność do siebie + + + + Mined + Wykopane + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only tylko-obserwowany + + (n/a) + (niedostępne) + + + (no label) (brak etykiety) - + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + Data i godzina, o której transakcja zakończyła się + + + + Type of transaction. + Rodzaj transakcji + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + TransactionView + + All Wszystko + Today Dzisiaj + This week W tym tygodniu + This month W tym miesiącu + Last month W zeszłym miesiącu + This year W tym roku + Range... Zakres... + + Received with + + + + Sent to Wysłane do + + To yourself + Do siebie + + + + Mined + Wykopane + + + + Other + Inne + + + + Enter address or label to search + + + + + Min amount + Min. ilość + + + + Asset name + Nazwa aktywa + + + + Abandon transaction + + + + Copy address Kopiuj adres + Copy label Kopiuj etykietę + Copy amount Kopiuj kwotę + Copy transaction ID Skopiuj ID transakcji + + Copy raw transaction + Skopiuj surową transakcję + + + + Copy full transaction details + Skopiuj wszystkie szczegóły transakcji + + + Edit label Zmień etykietę + + Show transaction details + Pokaż szczegóły transakcji + + + + Browse with: + Przeglądaj za pomocą: + + + + Export Transaction History + Eksportuj Historię Transakcji + + + Comma separated file (*.csv) Plik *.CSV (dane rozdzielane przecinkami) + + Confirmed + Potwierdzony + + + + Watch-only + + + + Date Data + Type Typ + Label Etykieta + Address Adres + + Asset + Aktywo + + + + ID + ID + + + Exporting Failed Eksportowanie nie powiodło się + + There was an error trying to save the transaction history to %1. + Wystąpił błąd podczas próby zapisania historii transakcji %1. + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + Historia transakcji została prawidłowo zapisana do %1. + + + + Asset Issued + Aktywo Wyemitowane + + + + Asset Reissued + Aktywo Wznowione + + + + Asset Received + Aktywo Otrzymane + + + + Asset Sent + Aktywo Przesłane + + + + Copy asset name + + + + Range: Zakres: + to do @@ -2585,770 +6526,1779 @@ Zwróć uwagę, że poprawnie zweryfikowana wiadomość potwierdza to, że nadaw UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Jednostka w jakiej pokazywane są kwoty. Kliknij aby wybrać inną. WalletFrame - + + + No wallet has been loaded. + + + WalletModel - + + + Send Coins + Wyślij Monety + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + WalletView + + &Export + + + + + Export the data in the current tab to a file + + + + Backup Wallet Kopia zapasowa portfela + + Wallet Data (*.dat) + + + + Backup Failed Nie udało się wykonać kopii zapasowej + + There was an error trying to save the wallet data to %1. + + + + Backup Successful Wykonano kopię zapasową + The wallet data was successfully saved to %1. Dane portfela zostały poprawnie zapisane w %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opcje: + Specify data directory Wskaż folder danych + Connect to a node to retrieve peer addresses, and disconnect Podłącz się do węzła aby otrzymać adresy peerów i rozłącz + Specify your own public address Podaj swój publiczny adres + Accept command line and JSON-RPC commands Akceptuj linię poleceń oraz polecenia JSON-RPC + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. Jeżeli <category> nie zostanie określona lub <category> = 1, wyświetl wszystkie informacje debugowania. + Prune configured below the minimum of %d MiB. Please use a higher number. Przycinanie skonfigurowano poniżej minimalnych %d MiB. Proszę użyć wyższej liczby. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Prune: ostatnia synchronizacja portfela jest za danymi. Muszisz -reindexować (pobrać cały ciąg bloków ponownie w przypadku przyciętego węzła) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Ponowne skanowanie nie jest możliwe w trybie przycinania. Będzie trzeba użyć -reindex, co pobierze ponownie cały łańcuch bloków. + Error: A fatal internal error occurred, see debug.log for details Błąd: Wystąpił fatalny błąd wewnętrzny, sprawdź szczegóły w debug.log + Fee (in %s/kB) to add to transactions you send (default: %s) Prowizja (w %s/kB) dodawana do wysyłanych transakcji (domyślnie: %s) + Pruning blockstore... Przycinanie zapisu bloków... + Run in the background as a daemon and accept commands Uruchom w tle jako daemon i przyjmuj polecenia + Unable to start HTTP server. See debug log for details. Uruchomienie serwera HTTP nie powiodło się. Zobacz dziennik debugowania, aby uzyskać więcej szczegółów. + Raven Core Rdzeń Ravena + The %s developers Deweloperzy %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Stawka prowizji (w %s/kB), która będzie użyta, gdy oszacowane dane o prowizjach nie będą wystarczające (domyślnie: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Skojarz z podanym adresem i nasłuchuj na nim. Użyj formatu [host]:port dla IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. Nie można uzyskać blokady na katalogu z danymi %s. %s najprawdopodobniej jest już uruchomiony. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Usuwa wszystkie transakcje w portfelu i tylko odtwarza te części z łańcucha bloków poprzez -rescan przy starcie + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Błąd odczytu %s! Wszystkie klucze zostały odczytane poprawnie, ale może brakować danych transakcji lub wpisów w książce adresowej, lub mogą one być nieprawidłowe. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Wykonaj polecenie, kiedy transakcja portfela ulegnie zmianie (%s w poleceniu zostanie zastąpione przez TxID) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Proszę sprawdzić czy data i czas na Twoim komputerze są poprawne! Jeżeli ustawienia zegara będą złe, %s nie będzie działał prawidłowo. + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Ustaw liczbę wątków skryptu weryfikacyjnego (%u do %d, 0 = auto, <0 = zostaw tyle rdzeni wolnych, domyślnie: %d) + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Użyj UPnP do mapowania portu nasłuchu (domyślnie: 1 gdy nasłuchuje i brak -proxy) - You need to rebuild the database using -reindex-chainstate to change -txindex - Musisz przebudować bazę używając -reindex-chainstate aby zmienić -txindex + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s uszkodzony, odtworzenie się nie powiodło + -maxmempool must be at least %d MB -maxmempool musi być przynajmniej %d MB + <category> can be: <category> mogą być: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Dodaj komentarz do pola user agent + Attempt to recover private keys from a corrupt wallet on startup Próbuj odzyskać klucze prywatne z uszkodzonego portfela podczas uruchamiania. + Block creation options: Opcje tworzenia bloku: - Cannot resolve -%s address: '%s' - Nie można rozpoznać -%s adresu: '%s' + + Cannot resolve -%s address: '%s' + Nie można rozpoznać -%s adresu: '%s' + + Chain selection options: + + + + + Change index out of range + + + + Connection options: Opcje połączenia: + Copyright (C) %i-%i Prawa autorskie (C) %i-%i + Corrupted block database detected Wykryto uszkodzoną bazę bloków + Debugging/Testing options: Opcje debugowania/testowania: + Do not load the wallet and disable wallet RPC calls Nie ładuj portfela i wyłącz wywołania RPC portfela + Do you want to rebuild the block database now? Czy chcesz teraz przebudować bazę bloków? + Enable publish hash block in <address> Włącz wyświetlanie hasha bloku w <address> + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + Error initializing block database Błąd inicjowania bazy danych bloków + Error initializing wallet database environment %s! Błąd inicjowania środowiska bazy portfela %s! + Error loading %s Błąd ładowania %s + Error loading %s: Wallet corrupted Błąd ładowania %s: Uszkodzony portfel + Error loading %s: Wallet requires newer version of %s Błąd ładowania %s: Portfel wymaga nowszej wersji %s + Error loading block database Błąd ładowania bazy bloków + Error opening block database Błąd otwierania bazy bloków + Error: Disk space is low! Błąd: Mało miejsca na dysku! + Failed to listen on any port. Use -listen=0 if you want this. Próba nasłuchiwania na jakimkolwiek porcie nie powiodła się. Użyj -listen=0 jeśli tego chcesz. + Importing... Importowanie… + Incorrect or no genesis block found. Wrong datadir for network? Nieprawidłowy lub brak bloku genezy. Błędny folder_danych dla sieci? + Initialization sanity check failed. %s is shutting down. Wstępna kontrola poprawności nie powiodła się. %s wyłącza się. - Invalid -onion address: '%s' - Nieprawidłowy adres -onion: '%s' + + Invalid amount for -%s=<amount>: '%s' + Nieprawidłowa kwota dla -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Nieprawidłowa kwota dla -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Nieprawidłowa kwota dla -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Nieprawidłowa kwota dla -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Utrzymuj obszar pamięci dla transakcji poniżej <n> MB (default: %u) + + Loading P2P addresses... + + + + Loading banlist... Ładowanie listy zablokowanych... + Location of the auth cookie (default: data dir) Lokalizacja autoryzacyjnego pliku cookie (domyślnie: ścieżka danych) + Not enough file descriptors available. Brak wystarczającej liczby deskryptorów plików. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Łącz z węzłami tylko w sieci <net> (ipv4, piv6 lub onion) + Print this help message and exit Wyświetl ten tekst pomocy i wyjdź + Print version and exit Wyświetl wersję i wyjdź + Prune cannot be configured with a negative value. Przycinanie nie może być skonfigurowane z negatywną wartością. + Prune mode is incompatible with -txindex. Tryb ograniczony jest niekompatybilny z -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Odbuduj stan lańcucha i indeks bloków z obecnych na dysku plików blk*.dat + Rebuild chain state from the currently indexed blocks Odbuduj stan łańcucha z aktualnie zindeksowanych bloków - Set database cache size in megabytes (%d to %d, default: %d) - Ustaw wielkość pamięci podręcznej w megabajtach (%d do %d, domyślnie: %d) + + Replaying blocks... + - Set maximum block size in bytes (default: %d) - Ustaw maksymalną wielkość bloku w bajtach (domyślnie: %d) + + Rewinding blocks... + + + Set database cache size in megabytes (%d to %d, default: %d) + Ustaw wielkość pamięci podręcznej w megabajtach (%d do %d, domyślnie: %d) + + + Specify wallet file (within data directory) Określ plik portfela (w obrębie folderu danych) + The source code is available from %s. Kod źródłowy dostępny jest z %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Nie można przywiązać do %s na tym komputerze. %s prawdopodobnie jest już uruchomiony. + Unsupported argument -benchmark ignored, use -debug=bench. Niewspierany argument -benchmark zignorowany, użyj -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Niewspierany argument -debugnet zignorowany, użyj -debug=net. + Unsupported argument -tor found, use -onion. Znaleziono nieprawidłowy argument -tor, użyj -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Użyj UPnP do przekazania portu nasłuchu (domyślnie : %u) + + Use the test chain + + + + User Agent comment (%s) contains unsafe characters. Komentarz User Agent (%s) zawiera niebezpieczne znaki. + Verifying blocks... Weryfikacja bloków... - Verifying wallet... - Weryfikacja portfela... - - + Wallet %s resides outside data directory %s Portfel %s znajduje się poza folderem danych %s + Wallet debugging/testing options: Opcje debugowania/testowania portfela: + Wallet needed to be rewritten: restart %s to complete Portfel wymaga przepisania: zrestartuj %s aby ukończyć + Wallet options: Opcje portfela: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Pozwól na połączenia JSON-RPC z podanego źródła. Jako <ip> prawidłowe jest pojedyncze IP (np. 1.2.3.4), podsieć/maska (np. 1.2.3.4/255.255.255.0) lub sieć/CIDR (np. 1.2.3.4/24). Opcja ta może być użyta wiele razy. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Podepnij się do podanego adresu i dodawaj do białej listy węzły łączące się z nim. Użyj notacji [host]:port dla IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Powiąż się z podanym adresem, aby nasłuchiwać połączenia JSON-RPC. Użyj notacji [host]:port dla IPv6. Ta opcja może być określona kilka razy (domyślnie: powiąż ze wszystkimi interfejsami) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Twórz nowe pliki z domyślnymi dla systemu uprawnieniami, zamiast umask 077 (skuteczne tylko przy wyłączonej funkcjonalności portfela) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Odkryj własny adres IP (domyślnie: 1 kiedy w trybie nasłuchu i brak -externalip lub -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Błąd: Nasłuchiwanie połączeń przychodzących nie powiodło się (nasłuch zwrócił błąd %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Uruchom polecenie przy otrzymaniu odpowiedniego powiadomienia lub gdy zobaczymy naprawdę długie rozgałęzienie (%s w poleceniu jest podstawiane za komunikat) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Opłaty (w %s/Kb) mniejsze niż ta, będą traktowane jako zerowe przy tworzeniu, przesyłaniu i zatwierdzaniu transakcji (domyślnie: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Jeżeli nie ustawiono paytxfee, dołącz wystarczająca opłatę, aby transakcja mogła zostać zatwierdzona w ciągu średniej ilości n bloków (domyślnie: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Niewłaściwa ilość dla -maxtxfee=<ilość>: '%s' (musi wynosić przynajmniej minimalną wielkość %s aby zapobiec utknięciu transakcji) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Niewłaściwa ilość dla -maxtxfee=<ilość>: '%s' (musi wynosić przynajmniej minimalną wielkość %s aby zapobiec utknięciu transakcji) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maksymalny rozmiar danych w transakcji przekazującej dane które przekazujemy i wydobywamy (domyślnie: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Ustaw maksymalny rozmiar transakcji o wysokim priorytecie/niskiej prowizji w bajtach (domyślnie: %d) + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + The transaction amount is too small to send after the fee has been deducted Zbyt niska kwota transakcji do wysłania po odjęciu opłaty - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Użyj hierarchicznej deterministycznej metody generowania kluczy (HD) zgodnie z BIP32. Ma znaczenie tylko podczas tworzenia portfela/pierwszego startu. - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Węzły z białej listy nie mogą zostać zbanowane za ataki DoS, a ich transakcje będą zawsze przekazywane, nawet jeżeli będą znajdywać się już w pamięci, przydatne np. dla bramek płatniczych + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + (default: %u) (domyślnie: %u) + Accept public REST requests (default: %u) Akceptuj publiczne żądania REST (domyślnie: %u) + Automatically create Tor hidden service (default: %d) Stwórz automatycznie ukrytą usługę Tora (domyślnie: %d) + Connect through SOCKS5 proxy Połącz przez SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Błąd odczytu z bazy danych, wyłączam się. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importuj bloki z zewnętrznego pliku blk000??.dat podczas uruchamiania programu + Information Informacja - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' (musi być co najmniej %s) + + Invalid -onion address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Nieprawidłowa maska sieci określona w -whitelist: '%s' + + Invalid -proxy address or hostname: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Nieprawidłowa kwota dla -paytxfee=<amount>: '%s' (musi być co najmniej %s) + + + + Invalid netmask specified in -whitelist: '%s' + Nieprawidłowa maska sieci określona w -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Przechowuj w pamięci maksymalnie <n> transakcji nie możliwych do połączenia (domyślnie: %u) - Need to specify a port with -whitebind: '%s' - Musisz określić port z -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Musisz określić port z -whitebind: '%s' + Node relay options: Opcje przekaźnikowe węzła: + RPC server options: Opcje serwera RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Zmniejszanie -maxconnections z %d do %d z powodu ograniczeń systemu. + Rescan the block chain for missing wallet transactions on startup Przeskanuj podczas ładowania programu łańcuch bloków w poszukiwaniu zaginionych transakcji portfela + Send trace/debug info to console instead of debug.log file Wyślij informację/raport do konsoli zamiast do pliku debug.log. - Send transactions as zero-fee transactions if possible (default: %u) - Wyślij bez opłaty jeżeli to możliwe (domyślnie: %u) - - + Show all debugging options (usage: --help -help-debug) Pokaż wszystkie opcje odpluskwiania (użycie: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Zmniejsz plik debug.log przy starcie programu (domyślnie: 1 jeśli nie użyto -debug) + Signing transaction failed Podpisywanie transakcji nie powiodło się + The transaction amount is too small to pay the fee Zbyt niska kwota transakcji by zapłacić opłatę + This is experimental software. To oprogramowanie eksperymentalne. + Tor control port password (default: empty) Hasło zabezpieczające portu kontrolnego Tora (domyślnie: puste) + Tor control port to use if onion listening enabled (default: %s) Port kontrolny sieci Tor jeśli onion listening jest włączone (domyślnie: %s) + Transaction amount too small Zbyt niska kwota transakcji + Transaction too large for fee policy Transakcja jest zbyt duża dla tej opłaty + Transaction too large Transakcja zbyt duża + Unable to bind to %s on this computer (bind returned error %s) Nie można przywiązać do %s na tym komputerze (bind zwrócił błąd %s) + Upgrade wallet to latest format on startup Zaktualizuj portfel do najnowszego formatu podczas ładowania programu + Username for JSON-RPC connections Nazwa użytkownika dla połączeń JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Ostrzeżenie + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Usuwam wszystkie transakcje z portfela... + ZeroMQ notification options: Opcje powiadomień ZeroMQ: + Password for JSON-RPC connections Hasło do połączeń JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Wykonaj polecenie kiedy najlepszy blok ulegnie zmianie (%s w komendzie zastanie zastąpione przez hash bloku) + Allow DNS lookups for -addnode, -seednode and -connect Zezwól -addnode, -seednode i -connect na łączenie się z serwerem DNS - Loading addresses... - Wczytywanie adresów... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = zachowaj wysłane metadane np. właściciel konta i informacje o żądaniach płatności, 2 = porzuć wysłane metadane) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee ma ustawioną badzo dużą wartość! Tak wysokie opłaty mogą być zapłacone w jednej transakcji. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Nie trzymaj w pamięci transakcji starszych niż <n> godz. (domyślnie: %u) + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Opłaty (w %s/Kb) mniejsze niż ta będą traktowane jako bez opłaty przy tworzeniu transakcji (domyślnie: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) Jak dokładna jest weryfikacja bloków przy -checkblocks (0-4, domyślnie: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Utrzymuj pełny indeks transakcji, używany przy wywołaniu RPC getrawtransaction (domyślnie: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Czas w sekundach, przez jaki nietrzymające się zasad węzły nie będą mogły ponownie się podłączyć (domyślnie: %u) + Output debugging information (default: %u, supplying <category> is optional) Wypuść informacje debugowania (domyślnie: %u, podanie <category> jest opcjonalne) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Wspieraj filtrowanie bloków i transakcji używając Filtrów Blooma (domyślnie: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Całkowita długość łańcucha wersji (%i) przekracza maksymalną dopuszczalną długość (%i). Zmniejsz ilość lub rozmiar parametru uacomment. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Próbuje utrzymać ruch wychodzący poniżej zadanego (w MiB na 24h), 0 = bez limitu (domyślnie: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Znaleziono niewspierany argument -socks. Wybieranie wersji SOCKS nie jest już możliwe, wsparcie programu obejmuje tylko proxy SOCKS5 + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Niewspierany argument -whitelistalwaysrelay zignorowany, użyj -whitelistrelay i/lub -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Użyj oddzielnego prozy SOCKS5 aby osiągnąć węzły w ukrytych usługach Tor (domyślnie: %s) + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Ostrzeżenie: Odtworzono dane z uszkodzonego pliku portfela! Oryginalny %s został zapisany jako %s w %s; jeśli twoje saldo lub transakcje są niepoprawne powinieneś odtworzyć kopię zapasową. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s jest ustawione bardzo wysoko! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (domyślnie: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Zawsze wypytuj o adresy węzłów poprzez podejrzenie DNS (domyślnie: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Ile bloków sprawdzić przy starcie (domyślnie: %u, 0 = wszystkie) + Include IP addresses in debug output (default: %u) Dołącz adresy IP do logowania (domyślnie: %u) - Invalid -proxy address: '%s' - Nieprawidłowy adres -proxy: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Nasłuchuj połączeń JSON-RPC na <port> (domyślnie: %u lub testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Nasłuchuj połączeń na <port> (domyślnie: %u lub testnet: %u) + Maintain at most <n> connections to peers (default: %u) Utrzymuj maksymalnie <n> połączeń z węzłami (domyślnie: %u) + Make the wallet broadcast transactions Spraw by portfel dokonał transmisji transakcji + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maksymalny bufor odbioru na połączenie, <n>*1000 bajtów (domyślnie: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maksymalny bufor wysyłania na połączenie, <n>*1000 bajtów (domyślnie: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Dołączaj znacznik czasu do logowania (domyślnie: %u) + Relay and mine data carrier transactions (default: %u) Przekazuj i wydobywaj transakcje zawierające dane (domyślnie: %u) + Relay non-P2SH multisig (default: %u) Przekazuj transakcje multisig inne niż P2SH (domyślnie: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Ustaw rozmiar puli kluczy na <n> (domyślnie: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Ustaw liczbę wątków do obsługi RPC (domyślnie: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Wskaż plik konfiguracyjny (domyślnie: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Wskaż czas oczekiwania na połączenie w milisekundach (minimum: 1, domyślnie: %d) + Specify pid file (default: %s) Wskaż plik pid (domyślnie: %s) + Spend unconfirmed change when sending transactions (default: %u) Wydawaj niepotwierdzoną resztę podczas wysyłania transakcji (domyślnie: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Próg, po którym nastąpi rozłączenie węzłów nietrzymających się zasad (domyślnie: %u) + Transaction amounts must not be negative Kwota transakcji musi być dodatnia + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient Transakcja wymaga co najmniej jednego odbiorcy - Unknown network specified in -onlynet: '%s' - Nieznana sieć w -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Nieznana sieć w -onlynet: '%s' + + + Insufficient funds Niewystarczające środki + Loading block index... Ładowanie indeksu bloku... - Add a node to connect to and attempt to keep the connection open - Dodaj węzeł do podłączenia się i próbuj utrzymać to połączenie - - + Loading wallet... Wczytywanie portfela... + Cannot downgrade wallet Nie można dezaktualizować portfela - Cannot write default address - Nie można zapisać domyślnego adresu - - + Rescanning... Ponowne skanowanie... - Done loading - Wczytywanie zakończone - - + Error Błąd diff --git a/src/qt/locale/raven_pt_BR.ts b/src/qt/locale/raven_pt_BR.ts index 0dd8c97bd2..520676713d 100644 --- a/src/qt/locale/raven_pt_BR.ts +++ b/src/qt/locale/raven_pt_BR.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Clique com o botão direito para editar o endereço ou rótulo + Create a new address Criar novo endereço + &New &Novo + Copy the currently selected address to the system clipboard Copie o endereço selecionado para a área de transferência do sistema + &Copy &Copiar + C&lose &Fechar + Delete the currently selected address from the list Excluir os endereços selecionados da lista + Export the data in the current tab to a file Exportar os dados na aba atual para um arquivo + &Export &Exportar + &Delete E&xcluir + Choose the address to send coins to Escoha o endereço para enviar moedas + Choose the address to receive coins with Escolha o enereço para receber moedas + C&hoose E&scolha + Sending addresses Endereços de envio + Receiving addresses Endereços de recebimento + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Estes são os seus endereços para enviar pagamentos. Sempre cheque a quantia e o endereço do destinatário antes de enviar moedas. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estes são os seus endereços para receber pagamentos. É recomendado usar um novo para cada transação. + &Copy Address &Copiar endereço + Copy &Label Copiar &rótulo + &Edit &Editar + Export Address List Exportar lista de endereços + Comma separated file (*.csv) Arquivo separado por virgula (*.csv) + Exporting Failed Falha na exportação + There was an error trying to save the address list to %1. Please try again. Erro ao salvar a lista de endereço para %1. Tente novamente. @@ -103,14 +125,17 @@ AddressTableModel + Label Rótulo + Address Endereço + (no label) (sem rótulo) @@ -118,2103 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Janela da Frase de Segurança + Enter passphrase Digite a frase de segurança + New passphrase Nova frase de segurança + Repeat new passphrase Repita a nova frase de segurança + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Insira a nova senha para a carteira.<br/>Favor usar uma senha com <b>dez ou mais caracteres aleatórios</b>, ou <b>oito ou mais palavras</b>. + Encrypt wallet Criptografar carteira + This operation needs your wallet passphrase to unlock the wallet. Esta operação precisa da sua senha para desbloquear a carteira. + Unlock wallet Desbloquear carteira + This operation needs your wallet passphrase to decrypt the wallet. Esta operação precisa da sua senha para descriptografar a carteira + Decrypt wallet Descriptografar carteira + Change passphrase Alterar senha + Enter the old passphrase and new passphrase to the wallet. Insira a senha antiga e a nova para a carteira. + Confirm wallet encryption Confirmar criptografia da carteira + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Aviso: Se você criptografar sua carteira e perder sua senha, você vai <b>PERDER TODOS OS SEUS RAVENS</b>! + Are you sure you wish to encrypt your wallet? Tem certeza que deseja criptografar a carteira? + + Wallet encrypted Carteira criptografada + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + % 1 será fechado agora para concluir o processo de criptografia. Lembre-se de que criptografar sua carteira não pode proteger totalmente suas Ravens de serem roubadas por um virus ou malware que infecte seu computador. + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Qualquer backup prévio que você tenha feito da sua carteira deve ser substituído pelo novo e encriptado arquivo gerado. Por razões de segurança, qualquer backup do arquivo não criptografado se tornará inútil assim que você começar a usar uma nova carteira criptografada. + + + + Wallet encryption failed Falha ao criptografar carteira + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Falha na criptografia devido a um erro inerno. Sua carteira não foi criptografada. + + The supplied passphrases do not match. As senhas não conferem. + Wallet unlock failed Falha ao desbloquear carteira + + + The passphrase entered for the wallet decryption was incorrect. A senha inserida para descriptografar a carteira está incorreta. + Wallet decryption failed Falha ao descriptografar a carteira + Wallet passphrase was successfully changed. A senha da carteira foi alterada com êxito. + + Warning: The Caps Lock key is on! Aviso: Tecla Caps Lock ativa! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Máscara + + Asset Selection + Seleção de ativos - Banned Until - Banido até + + Quantity: + Quantidade - - - RavenGUI - Sign &message... - Assinar &mensagem... + + Bytes: + Bytes - Synchronizing with network... - Sincronizando com a rede... + + Amount: + Quantia: - &Overview - &Visão geral + + Dust: + - Node - + + Fee: + Taxa: - Show general overview of wallet - Mostrar visão geral da carteira + + After Fee: + Após a taxa: - &Transactions - &Transações + + Change: + Mudar: - Browse transaction history - Navegar pelo histórico de transações + + (un)select all + (de)selecionar tudo - E&xit - S&air + + Tree mode + - Quit application - Sair da aplicação + + List mode + Modo lista - &About %1 - &About %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mostrar informações sobre %1 + + View Administrator Assets + - About &Qt - Sobre &Qt + + Asset + Ativo - Show information about Qt - Mostrar informações sobre o Qt + + Amount + Quantia - &Options... - &Opções... + + Received with label + - Modify configuration options for %1 - Modificar opções de configuração para o %1 + + Received with address + Recebido com endereço - &Encrypt Wallet... - &Criptografar Carteira... + + Date + Data - &Backup Wallet... - &Backup da carteira... + + Confirmations + Confirmações - &Change Passphrase... - &Mudar frase de segurança... + + Confirmed + Confirmado - &Sending addresses... - Endereço&s de envio... + + Copy address + Copiar endereço - &Receiving addresses... - Endereços de &recebimento... + + Copy label + Copiar rótulo - Open &URI... - Abrir &URI... + + + Copy amount + Copiar quantidade - Click to disable network activity. - Clique para desativar a atividade de rede. + + Copy transaction ID + Copiar ID de transação - Network activity disabled. - Atividade de rede desativada. + + Lock unspent + - Click to enable network activity again. - Clique para ativar a atividade de rede. + + Unlock unspent + - Syncing Headers (%1%)... - Sincronizando cabeçahos (%1%)... + + Copy quantity + Copiar quantidade - Reindexing blocks on disk... - Reindexando blocos no disco... + + Copy fee + Copiar taxa - Send coins to a Raven address - Enviar moedas para um endereço raven + + Copy after fee + Copiar após a taxa - Backup wallet to another location - Fazer cópia de segurança da carteira para uma outra localização + + Copy bytes + Copiar bytes - Change the passphrase used for wallet encryption - Mudar a frase de segurança utilizada na criptografia da carteira + + Copy dust + - &Debug window - Janela de &depuração + + Copy change + Copiar o troco - Open debugging and diagnostic console - Abrir console de depuração e diagnóstico + + (%1 locked) + - &Verify message... - &Verificar mensagem... + + yes + sim - Raven - Raven + + no + não - Wallet - Carteira + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Enviar + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Receber + + + (no label) + (sem rótulo) - &Show / Hide - &Exibir / Ocultar + + change from %1 (%2) + - Show or hide the main Window - Mostrar ou esconder a Janela Principal. + + (change) + (troco) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Criptografar as chaves privadas que pertencem à sua carteira + + Name + Nome - Sign messages with your Raven addresses to prove you own them - Assine mensagens com seus endereços Raven para provar que você é dono delas + + Quantity + Quantidade + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Raven específicos + + + Send Coins + Enviar moedas - &File - &Arquivo + + Asset Control Features + Recurso de controle de ativos - &Settings - &Definições + + Inputs... + Entradas... - &Help - A&juda + + automatically selected + selecionado automaticamente - Tabs toolbar - Barra de ferramentas + + Insufficient funds! + Saldo insuficiente! - Request payments (generates QR codes and raven: URIs) - Solicitações de pagamentos (gera códigos QR e raven: URIs) + + Quantity: + Quantidade: - Show the list of used sending addresses and labels - Mostrar a lista de endereços de envio e rótulos usados + + Bytes: + Bytes: - Show the list of used receiving addresses and labels - Mostrar a lista de endereços de recebimento usados ​​e rótulos + + Amount: + Quantidade: - Open a raven: URI or payment request - Abrir um raven: URI ou cobrança + + Dust: + - &Command-line options - Opções de linha de &comando + + Fee: + Taxa: - - %n active connection(s) to Raven network - %n conexão ativa na rede Raven%n conexões ativas na rede Raven + + + After Fee: + Depois da taxa: - Indexing blocks on disk... - Indexando blocos no disco... + + Change: + Troco: - Processing blocks on disk... - Processando blocos no disco... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Se isso estiver ativado, mas o endereço de alteração estiver vazio ou inválido, a alteração será enviada para um endereço recém-gerado. - - Processed %n block(s) of transaction history. - %n bloco processado do histórico de transações.%n blocos processados do histórico de transações. + + + Custom change address + Endereço de troco personalizado - %1 behind - %1 atrás + + Transaction Fee: + Taxa de transação: - Last received block was generated %1 ago. - Último bloco recebido foi gerado %1 atrás. + + Choose... + Escolha... - Transactions after this will not yet be visible. - Transações após isso ainda não estão visíveis. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + O uso da taxa de fallback pode resultar no envio de uma transação que levará várias horas ou dias (ou nunca) para ser confirmada. Considere escolher sua taxa manualmente ou espere até ter validado a cadeia completa. - Error - Erro + + Warning: Fee estimation is currently not possible. + Aviso: a estimativa de taxas não está disponível no momento. - Warning - Atenção + + collapse fee-settings + recolher configurações de taxa - Information - Informação + + Hide + Esconder - Up to date - Atualizado + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa personalizada for definida para 1000 satoshis e a transação for de apenas 250 bytes, então "por kilobyte" se paga apenas 250 satoshis de taxa, enquanto "total pelo menos" paga-se 1000 satoshis. Para transações maiores do que um kilobyte, ambas pagam por kilobyte. - Show the %1 help message to get a list with possible Raven command-line options - Mostrar a mensagem de ajuda do %1 para obter uma lista com possíveis opções de linha de comando Raven + + per kilobyte + por kilobyte - %1 client - %1 cliente + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Pagar apenas a taxa mínima é aceitável, desde que haja menos volume de transações do que espaço nos blocos. Mas esteja ciente de que isso pode resultar em uma transação nunca confirmada, uma vez que há mais demanda por transações Raven do que a rede pode processar. - Connecting to peers... - Conectando... + + (read the tooltip) + (leia a dica) - Catching up... - Recuperando o atraso ... + + Recommended: + Recomendado: - Date: %1 - - Data: %1 - + + Custom: + Personalizado: - Amount: %1 - - Quantidade: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Taxa inteligente ainda não inicializada. Isso geralmente leva alguns blocos ...) - Type: %1 - - Tipo: %1 - + + Confirmation time target: + Tempo de confirmação esperado: - Label: %1 - - Rótulo: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indica que o remetente pode desejar substituir esta transação por uma nova pagando taxas mais altas (antes de ser confirmada). - Address: %1 - - Endereço: %1 - + + Request Replace-By-Fee + Solicitar substituição por taxa - Sent transaction - Transação enviada + + Confirm the send action + Confirme a ação de envio - Incoming transaction - Transação recebida + + S&end + - HD key generation is <b>enabled</b> - Geração de chave HD está <b>ativada</b> + + Clear all fields of the form. + Limpe todos os campos do formulário. - HD key generation is <b>disabled</b> - Geração de chave HD está <b>desativada</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Carteira está <b>criptografada</b> e atualmente <b>desbloqueada</b> + + Transfer to multiple recipients at once + Transfira para vários destinatários de uma vez - Wallet is <b>encrypted</b> and currently <b>locked</b> - Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Um erro fatal ocorreu. Raven não pode continuar em segurança e irá fechar. + + Balance: + Saldo: + + + + Copy quantity + Copiar quantidade + + + + Copy amount + Copiar quantidade + + + + Copy fee + Copiar taxa + + + + Copy after fee + Copiar pós taxa + + + + Copy bytes + Copiar bytes + + + + Copy dust + + + + + Copy change + Copiar troco + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + Tem certeza que deseja enviar? + + + + added as transaction fee + adicionado como taxa da transação + + + + Confirm send assets + Confirme o envio de ativos + + + + The recipient address is not valid. Please recheck. + O endereço do destinatário não é válido. Por favor, cheque novamente. + + + + The amount to pay must be larger than 0. + O montante a pagar deve ser maior que 0. + + + + The amount exceeds your balance. + A quantia excede o seu saldo + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + Falha na criação da transação! + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Máscara + + + + Banned Until + Banido até CoinControlDialog + Coin Selection Selecionar Moeda + Quantity: Quantidade: + Bytes: Bytes: + Amount: Quantia: + Fee: Taxa: + Dust: Poeira: + After Fee: Depois da taxa: + Change: trocar + (un)select all (de)selecionar tudo + Tree mode Modo árvore + List mode Modo lista + Amount Quantidade + Received with label Rótulo + Received with address Endereço + Date Data + Confirmations Confirmações + Confirmed Confirmado + Copy address Copiar endereço + Copy label Copiar rótulo + + Copy amount Copiar quantia + Copy transaction ID Copiar ID da transação + Lock unspent Boquear saída + Unlock unspent Desboquear saída + Copy quantity Copiar quantia + Copy fee Copiar taxa + Copy after fee Copiar pós taxa + Copy bytes Copiar bytes + Copy dust Copiar poeira + Copy change Copiar troco + (%1 locked) (%1 bloqueada) + yes sim + no não + This label turns red if any recipient receives an amount smaller than the current dust threshold. Este texto fica vermelho se qualquer destinatário receber uma quantidade menor que que o dust. + Can vary +/- %1 satoshi(s) per input. Pode variar +/- %1 satoshi(s) por entrada + + (no label) (sem rótulo) + change from %1 (%2) troco de %1 (%2) + (change) (troco) - EditAddressDialog + CreateAssetDialog - Edit Address - Editar Endereço + + Coin Control Features + - &Label - &Rótulo + + Inputs... + - The label associated with this address list entry - O rótulo associado a esta entrada na lista de endereços + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - O endereço associado a esta lista de endereços de entrada. Isso só pode ser modificado para o envio de endereços. + + Insufficient funds! + Saldo insuficiente! - &Address - &Endereço + + + Quantity: + Quantidade: - New receiving address - Novo endereço de recebimento + + Bytes: + - New sending address - Novo endereço de envio + + Amount: + - Edit receiving address - Editar endereço de recebimento + + Dust: + - Edit sending address - Editar endereço de envio + + Fee: + - The entered address "%1" is not a valid Raven address. - O endereço digitado "%1" não é um endereço válido. + + After Fee: + - The entered address "%1" is already in the address book. - O endereço digitado "%1" já se encontra no catálogo de endereços. + + Change: + - Could not unlock wallet. - Não foi possível desbloquear a carteira + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Falha ao gerar chave + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Um novo diretório de dados será criado. + + Name: + - name - nome + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - O diretório já existe. Adicione %1 se você pretende criar um novo diretório aqui. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Esta pasta já existe, e não é um diretório. + + Check Availabilty + - Cannot create data directory here. - Não é possível criar um diretório de dados aqui. + + Address: + - - - HelpMessageDialog - version - versão + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Sobre %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opções da linha de comando + + Warning: + - Usage: - Uso: + + The number of assets that will be created + - command-line options - opções da linha de comando + + Units: + - UI Options: - Opções de Interface: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Escolher diretório de dados na inicialização (padrão: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Definir idioma, por exemplo "de_DE" (padrão: idioma do sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Iniciar minimizado + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Definir certificados de root SSL para requisições de pagamento (padrão: -sistema-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Exibir tela de abertura na inicialização (padrão: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Resetar todas as configuraçãoes do GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Bem-vindo + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Bem vindo ao %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Como essa é a primeira vez que o programa é executado, você pode escolher onde %1 armazenará seus dados. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - O %1 irá baixar e armazenar uma cópia do block chain do Raven. Pelo menos %2GB de dados serão armazenados neste diretório, e ele crescerá ao longo do tempo. A carteira também será armazenada neste diretório. + + Choose... + - Use the default data directory - Use o diretório de dados padrão + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Use um diretório de dados personalizado: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Erro: Diretório de dados "%1" não pode ser criado. + + collapse fee-settings + - Error - Erro - - - %n GB of free space available - %n GB de espaço livre disponível%n GB de espaço livre disponível + + Hide + - - (of %n GB needed) - (de %n GB necessário)(de %n GB necessário) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Formulário - - - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Transações recentes podem não estar visíveis ainda, portanto o seu saldo pode estar incorreto. Esta informação será corrigida assim que sua carteira for sincronizada com a rede, como detalhado abaixo. + + per kilobyte + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Gastar moedas de transações desconhecidas podem não ser aceitas pela rede. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Number of blocks left - Número de blocos restantes + + (read the tooltip) + - Unknown... - Desconhecido... + + Recommended: + - Last block time - Horário do último bloco + + C&ustom: + - Progress - Progresso + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress increase per hour - Aumento do progresso por hora + + Confirmation time target: + - calculating... - calculando... + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Estimated time left until synced - Tempo estimado para sincronizar + + Request Replace-By-Fee + - Hide - Ocultar + + Create Asset + - Unknown. Syncing Headers (%1)... - Desconhecido. Sincroniando cabeçahos (%1)... + + Clear + - - - OpenURIDialog - Open URI - Abrir URI + + Balance: + - Open payment request from URI or file - Cobrança aberta de URI ou arquivo + + 123.456 RVN + - URI: - URI: + + Copy quantity + - Select payment request file - Selecione o arquivo de cobrança + + Copy amount + - Select payment request file to open - Selecione o arquivo de cobrança para ser aberto + + Copy fee + - - - OptionsDialog - Options - Opções + + Copy after fee + - &Main - Principal + + Copy bytes + - Automatically start %1 after logging in to the system. - Executar o %1 automaticamente ao iniciar o sistema. + + Copy dust + - &Start %1 on system login - &Iniciar %1 ao fazer login no sistema + + Copy change + - Size of &database cache - Tamanho do banco de &dados do cache + + %1 (%2 blocks) + - MB - MB + + Main Asset + - Number of script &verification threads - Número de threads do script de &verificação + + Sub Asset + - Accept connections from outside - Aceitar conexões externas + + Unique Asset + - Allow incoming connections - Permitir conexões de entrada + + Messaging Channel Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Endereço de IP do proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizar em vez de fechar o programa quando a janela for fechada. Quando essa opção estiver ativa, o programa só será fechado somente pela opção Sair no menu Arquivo. + + Sub Qualifier Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URLs de terceiros (exemplo: explorador de blocos) que aparecem na aba de transações como itens do menu de contexto. %s na URL é substituido pela hash da transação. Múltiplas URLs são separadas pela barra vertical |. + + Restricted Asset + - Third party transaction URLs - URLs de transação de terceiros: + + Asset Type + - Active command-line options that override above options: - Opções de linha de comando ativas que sobrescreve as opções acima: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Reset all client options to default. - Redefinir todas as opções do cliente para opções padrão. + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Reset Options - &Redefinir opções + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Network - Rede + + + + Warning: Invalid Raven address + - (0 = auto, <0 = leave that many cores free) - (0 = automático, <0 = número de cores deixados livres) + + Warning: Restricted Assets Reissuance requires an address + - W&allet - C&arteira + + Valid Asset + - Expert - Avançado + + Invalid: Asset name already in use + - Enable coin &control features - Habilitar opções de &controle de moedas + + Error: Asset Database not in sync + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Se você desabilitar o gasto de um troco não confirmado, o troco da transação não poderá ser utilizado até a transação ter pelo menos uma confirmação. Isso também afeta seu saldo computado. + + + %1 to %2 + - &Spend unconfirmed change - Ga&star mudança não confirmada + + Are you sure you want to send? + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir as portas do cliente Raven automaticamente no roteador. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada. + + added as transaction fee + - Map port using &UPnP - Mapear porta usando &UPnP + + Total Amount %1 + - Connect to the Raven network through a SOCKS5 proxy. - Conectar na rede Raven através de um proxy SOCKS5. + + or + - &Connect through SOCKS5 proxy (default proxy): - &Conectar usando proxy SOCKS5 (proxy pradrão): + + Confirm send assets + - Proxy &IP: - &IP do proxy: + + Invalid: + - &Port: - &Porta: + + Copy + - Port of the proxy (e.g. 9050) - Porta do serviço de proxy (ex. 9050) + + Transaction ID Copied + - Used for reaching peers via: - Usado para alcançar participantes via: + + Asset transaction sent to network: + - - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Exibe, caso o proxy padrão SOCKS5 fornecido seja usado para se conectar a peers através deste tipo de rede. + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Unknown change address + - IPv6 - IPv6 + + Confirm custom change address + - Tor - Tor + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Conecte-se à rede Raven através de um proxy SOCKS5 separado para utilizar serviços ocultos Tor. + + (no label) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Use um proxy SOCKS5 separado para alcançar participantes da rede via serviços ocultos Tor: + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - &Janela + + Edit Address + Editar Endereço - &Hide the icon from the system tray. - &Ocultar o ícone da bandeja do sistema. + + &Label + &Rótulo - Hide tray icon - Ocultar ícone de bandeja + + The label associated with this address list entry + O rótulo associado a esta entrada na lista de endereços - Show only a tray icon after minimizing the window. - Mostrar apenas um ícone na bandeja ao minimizar a janela. + + The address associated with this address list entry. This can only be modified for sending addresses. + O endereço associado a esta lista de endereços de entrada. Isso só pode ser modificado para o envio de endereços. - &Minimize to the tray instead of the taskbar - &Minimizar para a bandeja em vez da barra de tarefas. + + &Address + &Endereço - M&inimize on close - M&inimizar ao sair + + New receiving address + Novo endereço de recebimento - &Display - &Mostrar + + New sending address + Novo endereço de envio - User Interface &language: - &Linguagem da interface: + + Edit receiving address + Editar endereço de recebimento - The user interface language can be set here. This setting will take effect after restarting %1. - O idioma de interface do usuário pode ser definido aqui. Essa configuração terá efeito após reiniciar o %1 + + Edit sending address + Editar endereço de envio - &Unit to show amounts in: - &Unidade usada para mostrar quantidades: + + The entered address "%1" is not a valid Raven address. + O endereço digitado "%1" não é um endereço válido. - Choose the default subdivision unit to show in the interface and when sending coins. - Escolha a unidade padrão de subdivisão para interface mostrar quando enviar ravens. + + The entered address "%1" is already in the address book. + O endereço digitado "%1" já se encontra no catálogo de endereços. - Whether to show coin control features or not. - Mostrar ou não opções de controle da moeda. + + Could not unlock wallet. + Não foi possível desbloquear a carteira - &OK - &OK + + New key generation failed. + Falha ao gerar chave + + + FreespaceChecker - &Cancel - &Cancelar + + A new data directory will be created. + Um novo diretório de dados será criado. - default - padrão + + name + nome - none - Nenhum + + Directory already exists. Add %1 if you intend to create a new directory here. + O diretório já existe. Adicione %1 se você pretende criar um novo diretório aqui. - Confirm options reset - Confirmar redefinição de opções + + Path already exists, and is not a directory. + Esta pasta já existe, e não é um diretório. - Client restart required to activate changes. - Reinicialização do aplicativo necessária para efetivar alterações. + + Cannot create data directory here. + Não é possível criar um diretório de dados aqui. + + + FreezeAddress - Client will be shut down. Do you want to proceed? - O programa será encerrado. Deseja continuar? + + Frame + - This change would require a client restart. - Essa mudança requer uma reinicialização do aplicativo. + + Restricted Asset: + - The supplied proxy address is invalid. - O endereço proxy fornecido é inválido. + + Address: + - - - OverviewPage - Form - Formulário + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Raven depois que a conexão é estabelecida, mas este processo pode não estar completo ainda. + + IPFS / Hash: + - Watch-only: - Monitorados: + + Single Address Options + - Available: - Disponível: + + Global Options + - Your current spendable balance - Seu saldo atual spendable + + Free&ze trading on this address + - Pending: - Pendente: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transações que ainda têm de ser confirmados, e ainda não contam para o equilíbrio spendable + + Freeze all &trading for the selected restricted asset + - Immature: - Imaturo: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - Saldo minerado que ainda não maturou + + Check + - Balances - Saldos + + Clear + - Total: - Total: + + Submit + - Your current total balance - Seu saldo total atual + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - Sua balança atual em endereços apenas visualizados + + Must have a restricted asset selected + - Spendable: - Disponível: + + Address is already frozen + - Recent transactions - Transações recentes + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - Transações não confirmadas de um endereço monitorado + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - Saldo minerado de endereço monitorado ainda não foi implementado + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - Balanço total em endereços monitorados + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - Erro no pedido de pagamento + + Warning: transaction while syncing wallet! + - Cannot start raven: click-to-pay handler - Não foi possível iniciar raven: manipulador click-to-pay + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versão + + + + + (%1-bit) + (%1-bit) + + + + About %1 + Sobre %1 + + + + Command-line options + Opções da linha de comando + + + + Usage: + Uso: + + + + command-line options + opções da linha de comando + + + + UI Options: + Opções de Interface: + + + + Choose data directory on startup (default: %u) + Escolher diretório de dados na inicialização (padrão: %u) + + + + Set language, for example "de_DE" (default: system locale) + Definir idioma, por exemplo "de_DE" (padrão: idioma do sistema) + + + + Start minimized + Iniciar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Definir certificados de root SSL para requisições de pagamento (padrão: -sistema-) + + + + Show splash screen on startup (default: %u) + Exibir tela de abertura na inicialização (padrão: %u) + + + + Reset all settings changed in the GUI + Resetar todas as configuraçãoes do GUI + + + + Intro + + + Welcome + Bem-vindo + + + + Welcome to %1. + Bem vindo ao %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Como essa é a primeira vez que o programa é executado, você pode escolher onde %1 armazenará seus dados. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Use o diretório de dados padrão + + + + Use a custom data directory: + Use um diretório de dados personalizado: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Erro: Diretório de dados "%1" não pode ser criado. + + + + Error + Erro + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulário + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Transações recentes podem não estar visíveis ainda, portanto o seu saldo pode estar incorreto. Esta informação será corrigida assim que sua carteira for sincronizada com a rede, como detalhado abaixo. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Gastar moedas de transações desconhecidas podem não ser aceitas pela rede. + + + + Number of blocks left + Número de blocos restantes + + + + + + Unknown... + Desconhecido... + + + + Last block time + Horário do último bloco + + + + Progress + Progresso + + + + Progress increase per hour + Aumento do progresso por hora + + + + + calculating... + calculando... + + + + Estimated time left until synced + Tempo estimado para sincronizar + + + + Hide + Ocultar + + + + Unknown. Syncing Headers (%1)... + Desconhecido. Sincroniando cabeçahos (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abrir URI + + + + Open payment request from URI or file + Cobrança aberta de URI ou arquivo + + + + URI: + URI: + + + + Select payment request file + Selecione o arquivo de cobrança + + + + Select payment request file to open + Selecione o arquivo de cobrança para ser aberto + + + + OptionsDialog + + + Options + Opções + + + + &Main + Principal + + + + Automatically start %1 after logging in to the system. + Executar o %1 automaticamente ao iniciar o sistema. + + + + &Start %1 on system login + &Iniciar %1 ao fazer login no sistema + + + + Size of &database cache + Tamanho do banco de &dados do cache + + + + MB + MB + + + + Number of script &verification threads + Número de threads do script de &verificação + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Endereço de IP do proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizar em vez de fechar o programa quando a janela for fechada. Quando essa opção estiver ativa, o programa só será fechado somente pela opção Sair no menu Arquivo. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URLs de terceiros (exemplo: explorador de blocos) que aparecem na aba de transações como itens do menu de contexto. %s na URL é substituido pela hash da transação. Múltiplas URLs são separadas pela barra vertical |. + + + + Active command-line options that override above options: + Opções de linha de comando ativas que sobrescreve as opções acima: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Redefinir todas as opções do cliente para opções padrão. + + + + &Reset Options + &Redefinir opções + + + + &Network + Rede + + + + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = número de cores deixados livres) + + + + W&allet + C&arteira + + + + Expert + Avançado + + + + Enable coin &control features + Habilitar opções de &controle de moedas + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Se você desabilitar o gasto de um troco não confirmado, o troco da transação não poderá ser utilizado até a transação ter pelo menos uma confirmação. Isso também afeta seu saldo computado. + + + + &Spend unconfirmed change + Ga&star mudança não confirmada + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir as portas do cliente Raven automaticamente no roteador. Isto só funcionará se seu roteador suportar UPnP e esta função estiver habilitada. + + + + Map port using &UPnP + Mapear porta usando &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Conectar na rede Raven através de um proxy SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Conectar usando proxy SOCKS5 (proxy pradrão): + + + + + Proxy &IP: + &IP do proxy: + + + + + &Port: + &Porta: + + + + + Port of the proxy (e.g. 9050) + Porta do serviço de proxy (ex. 9050) + + + + Used for reaching peers via: + Usado para alcançar participantes via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Conecte-se à rede Raven através de um proxy SOCKS5 separado para utilizar serviços ocultos Tor. + + + + &Window + &Janela + + + + Show only a tray icon after minimizing the window. + Mostrar apenas um ícone na bandeja ao minimizar a janela. + + + + &Minimize to the tray instead of the taskbar + &Minimizar para a bandeja em vez da barra de tarefas. + + + + M&inimize on close + M&inimizar ao sair + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Mostrar + + + + User Interface &language: + &Linguagem da interface: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + O idioma de interface do usuário pode ser definido aqui. Essa configuração terá efeito após reiniciar o %1 + + + + &Unit to show amounts in: + &Unidade usada para mostrar quantidades: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Escolha a unidade padrão de subdivisão para interface mostrar quando enviar ravens. + + + + Whether to show coin control features or not. + Mostrar ou não opções de controle da moeda. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancelar + + + + default + padrão + + + + none + Nenhum + + + + Confirm options reset + Confirmar redefinição de opções + + + + + Client restart required to activate changes. + Reinicialização do aplicativo necessária para efetivar alterações. + + + + Client will be shut down. Do you want to proceed? + O programa será encerrado. Deseja continuar? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Essa mudança requer uma reinicialização do aplicativo. + + + + The supplied proxy address is invalid. + O endereço proxy fornecido é inválido. + + + + OverviewPage + + + Form + Formulário + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + A informação mostrada pode estar desatualizada. Sua carteira sincroniza automaticamente com a rede Raven depois que a conexão é estabelecida, mas este processo pode não estar completo ainda. + + + + Watch-only: + Monitorados: + + + + Available: + Disponível: + + + + Your current spendable balance + Seu saldo atual spendable + + + + Pending: + Pendente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transações que ainda têm de ser confirmados, e ainda não contam para o equilíbrio spendable + + + + Immature: + Imaturo: + + + + Mined balance that has not yet matured + Saldo minerado que ainda não maturou + + + + Total: + Total: + + + + Your current total balance + Seu saldo total atual + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Sua balança atual em endereços apenas visualizados + + + + Spendable: + Disponível: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Transações recentes + + + + Unconfirmed transactions to watch-only addresses + Transações não confirmadas de um endereço monitorado + + + + Mined balance in watch-only addresses that has not yet matured + Saldo minerado de endereço monitorado ainda não foi implementado + + + + Current total balance in watch-only addresses + Balanço total em endereços monitorados + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Erro no pedido de pagamento + + + + Cannot start raven: click-to-pay handler + Não foi possível iniciar raven: manipulador click-to-pay + + + + + + URI handling + Manipulação de URI + + + + Payment request fetch URL is invalid: %1 + URL de cobrança é inválida: %1 + + + + Invalid payment address %1 + Endereço de pagamento %1 inválido + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI não pode ser analisado! Isto pode ser causado por um endereço inválido ou parâmetros URI informados incorretamente. + + + + Payment request file handling + Manipulação de arquivo de cobrança + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Arquivo de pedido de pagamento não pode ser lido! Isto pode ser causado por uma requisição de pagamento inválida. + + + + + + + + + Payment request rejected + Pedido de pagamento rejeitado + + + + Payment request network doesn't match client network. + Rede do pedido de pagamento não corresponde rede do cliente. + + + + Payment request expired. + Pedido de pagamento expirado + + + + Payment request is not initialized. + Pedido de pagamento não inicializado + + + + Unverified payment requests to custom payment scripts are unsupported. + Pedidos de pagamento não verificados para scripts de pagamento personalizados não são suportados. + + + + + Invalid payment request. + Pedido de pagamento inválido + + + + Requested payment amount of %1 is too small (considered dust). + Valor do pagamento solicitado de %1 é muito pequeno (Considerado poeira). + + + + Refund from %1 + Reembolso de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Pedido de pagamento %1 é muito grande (%2 bytes, permitido %3 bytes). + + + + Error communicating with %1: %2 + Erro na comunicação com %1: %2 + + + + Payment request cannot be parsed! + Pedido de pagamento não pode ser analisado! + + + + Bad response from server %1 + Erro na resposta do servidor: %1 + + + + Network request error + Erro de solicitação de rede + + + + Payment acknowledged + Pagamento reconhecido + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + Nó/Serviço + + + + NodeId + ID do nó + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Quantidade + + + + Enter a Raven address (e.g. %1) + Informe um endereço Raven (ex: %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Nenhum + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 e %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ainda não terminou com segurança... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Erro: diretório de dados especificado "%1" não existe. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erro: Não foi possível interpretar arquivo de configuração: %1. Utilize apenas a sintaxe chave=valor. + + + + Error: %1 + Erro: %1 + + + + QRImageWidget + + + &Save Image... + &Savar imagem + + + + &Copy Image + &Copiar imagem + + + + Save QR Code + Salvar código QR + + + + PNG Image (*.png) + Imagem PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + Versão do cliente + + + + &Information + &Informação + + + + Debug window + Janela de depuração + + + + General + Geral + + + + Using BerkeleyDB version + Versão do BerkeleyDB + + + + Datadir + Datadir + + + + Startup time + Horário de inicialização + + + + Network + Rede + + + + Name + Nome + + + + Number of connections + Número de conexões + + + + Block chain + Corrente de blocos + + + + Current number of blocks + Quantidade atual de blocos + + + + Memory Pool + Pool de Memória + + + + Current number of transactions + Número atual de transações + + + + Memory usage + Uso de memória + + + + &Reset + + + + + + Received + Recebido + + + + + Sent + Enviado + + + + &Peers + &Pares + + + + Banned peers + Nós banidos + + + + + + Select a peer to view detailed information. + Selecione um cliente para ver informações detalhadas. + + + + Whitelisted + Lista branca + + + + Direction + Direção + + + + Version + Versão + + + + Starting Block + Bloco inicial + + + + Synced Headers + Cabeçalhos Sincronizados + + + + Synced Blocks + Blocos Sincronizados + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Abrir o arquivo de log de depuração do %1 localizado no diretório atual de dados. Isso pode levar alguns segundos para arquivos de log grandes. + + + + Decrease font size + Diminuir o tamanho da fonte + + + + Increase font size + Aumentar o tamanho da fonte + + + + Services + Serviços + + + + Ban Score + Banir pontuação + + + + Connection Time + Tempo de conexão + + + + Last Send + Ultimo Envio + + + + Last Receive + Ultimo Recebido + + + + Ping Time + Ping + + + + The duration of a currently outstanding ping. + A duração de um ping excepcional no momento. + + + + Ping Wait + Espera de ping + + + + Min Ping + Ping min + + + + Time Offset + Offset de tempo + + + + Last block time + Horário do último bloco + + + + &Open + &Abrir + + + + &Console + &Console + + + + &Network Traffic + Tráfico de Rede + + + + Totals + Totais + + + + In: + Entrada: + + + + Out: + Saída: + + + + Debug log file + Arquivo de log de depuração + + + + Clear console + Limpar console + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &dia + + + + 1 &week + 1 &semana + + + + 1 &year + 1 &ano + + + + &Disconnect + &Desconectar + + + + + + + Ban for + Banir por + + + + &Unban + &Desbanir + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Bem-vindo ao console RPC do %1 + + + + Type <b>help</b> for an overview of available commands. + Digite <b>help</b> para uma visão geral dos comandos disponíveis. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Atividade da rede disativada + + + + (node id: %1) + (id do nó: %1) + + + + via %1 + por %1 + + + + + never + nunca + + + + Inbound + Entrada + + + + Outbound + Saída + + + + Yes + Sim + + + + No + Não + + + + + Unknown + Desconhecido + + + + RavenGUI + + + Sign &message... + Assinar &mensagem... + + + + Synchronizing with network... + Sincronizando com a rede... + + + + &Overview + &Visão geral + + + + Node + + + + + Show general overview of wallet + Mostrar visão geral da carteira + + + + &Transactions + &Transações + + + + Browse transaction history + Navegar pelo histórico de transações + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + S&air + + + + Quit application + Sair da aplicação + + + + &About %1 + &About %1 + + + + Show information about %1 + Mostrar informações sobre %1 + + + + About &Qt + Sobre &Qt + + + + Show information about Qt + Mostrar informações sobre o Qt + + + + &Options... + &Opções... + + + + Modify configuration options for %1 + Modificar opções de configuração para o %1 + + + + &Encrypt Wallet... + &Criptografar Carteira... + + + + &Backup Wallet... + &Backup da carteira... + + + + &Change Passphrase... + &Mudar frase de segurança... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Endereço&s de envio... + + + + &Receiving addresses... + Endereços de &recebimento... + + + + Open &URI... + Abrir &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Clique para desativar a atividade de rede. + + + + Network activity disabled. + Atividade de rede desativada. + + + + Click to enable network activity again. + Clique para ativar a atividade de rede. + + + + Syncing Headers (%1%)... + Sincronizando cabeçahos (%1%)... + + + + Reindexing blocks on disk... + Reindexando blocos no disco... + + + + Send coins to a Raven address + Enviar moedas para um endereço raven + + + + Backup wallet to another location + Fazer cópia de segurança da carteira para uma outra localização + + + + Change the passphrase used for wallet encryption + Mudar a frase de segurança utilizada na criptografia da carteira + + + + Open debugging and diagnostic console + Abrir console de depuração e diagnóstico + + + + &Verify message... + &Verificar mensagem... + + + + Raven + Raven + + + + Wallet + Carteira + + + + &Send + &Enviar + + + + &Receive + &Receber + + + + &Show / Hide + &Exibir / Ocultar + + + + Show or hide the main Window + Mostrar ou esconder a Janela Principal. + + + + Encrypt the private keys that belong to your wallet + Criptografar as chaves privadas que pertencem à sua carteira + + + + Sign messages with your Raven addresses to prove you own them + Assine mensagens com seus endereços Raven para provar que você é dono delas + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificar mensagens para se assegurar que elas foram assinadas pelo dono de Endereços Raven específicos + + + + &File + &Arquivo + + + + &Help + A&juda + + + + Request payments (generates QR codes and raven: URIs) + Solicitações de pagamentos (gera códigos QR e raven: URIs) + + + + Show the list of used sending addresses and labels + Mostrar a lista de endereços de envio e rótulos usados + + + + Show the list of used receiving addresses and labels + Mostrar a lista de endereços de recebimento usados ​​e rótulos + + + + Open a raven: URI or payment request + Abrir um raven: URI ou cobrança + + + + &Command-line options + Opções de linha de &comando + + + + %n active connection(s) to Raven network + - URI handling - Manipulação de URI + + Indexing blocks on disk... + Indexando blocos no disco... - Payment request fetch URL is invalid: %1 - URL de cobrança é inválida: %1 + + Processing blocks on disk... + Processando blocos no disco... + + + + Processed %n block(s) of transaction history. + - Invalid payment address %1 - Endereço de pagamento %1 inválido + + %1 behind + %1 atrás + + + + Last received block was generated %1 ago. + Último bloco recebido foi gerado %1 atrás. + + + + Transactions after this will not yet be visible. + Transações após isso ainda não estão visíveis. + + + + Error + Erro + + + + Warning + Atenção + + + + Information + Informação + + + + Up to date + Atualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostrar a mensagem de ajuda do %1 para obter uma lista com possíveis opções de linha de comando Raven + + + + %1 client + %1 cliente + + + + Connecting to peers... + Conectando... + + + + Catching up... + Recuperando o atraso ... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Quantidade: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Rótulo: %1 + + + + + Address: %1 + + Endereço: %1 + + + + + Sent transaction + Transação enviada + + + + Incoming transaction + Transação recebida + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Geração de chave HD está <b>ativada</b> + + + + HD key generation is <b>disabled</b> + Geração de chave HD está <b>desativada</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Carteira está <b>criptografada</b> e atualmente <b>desbloqueada</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Carteira está <b>criptografada</b> e atualmente <b>bloqueada</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Um erro fatal ocorreu. Raven não pode continuar em segurança e irá fechar. + + + + ReceiveCoinsDialog + + + &Amount: + Qu&antia: + + + + &Label: + &Rótulo: + + + + &Message: + &Mensagem + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilize um dos endereços de recebimento anteriormente utilizados. Reutilizar um endereço implica em problemas com segurança e privacidade. Não reutilize a menos que esteja refazendo uma cobrança já feita anteriormente. + + + + R&euse an existing receiving address (not recommended) + R&eutilize um endereço de recebimento (não recomendado) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Raven. + + + + + An optional label to associate with the new receiving address. + Um marcador opcional para associar ao novo endereço de recebimento. + + + + Use this form to request payments. All fields are <b>optional</b>. + Use esse formulário para fazer cobranças. Todos os campos são <b>opcionais</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Uma quantia opcional para cobrar. Deixe vazio ou em branco se o pagador puder especificar a quantia. + + + + Clear all fields of the form. + Limpa todos os campos do formulário. + + + + Clear + Limpar + + + + Requested payments history + Histórico de cobranças + + + + &Request payment + &Requisitar Pagamento + + + + Show the selected request (does the same as double clicking an entry) + Mostra a cobrança selecionada (o mesmo que clicar duas vezes em um registro) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Remove o registro selecionado da lista + + + + Remove + Remover + + + + Copy URI + Copiar URI + + + + Copy label + Copiar rótulo + + + + Copy message + Copiar mensagem + + + + Copy amount + Copiar quantia + + + + ReceiveRequestDialog + + + QR Code + Código QR + + + + Copy &URI + Copiar &URI + + + + Copy &Address + &Copiar Endereço + + + + &Save Image... + &Salvar Imagem... + + + + Request payment to %1 + Pedido de pagamento para %1 + + + + Payment information + Informação do pagamento + + + + URI + URI + + + + Address + Endereço + + + + Amount + Quantia + + + + Label + Rótulo + + + + Message + Mensagem + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultante muito longa. Tente reduzir o texto do rótulo ou da mensagem. - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI não pode ser analisado! Isto pode ser causado por um endereço inválido ou parâmetros URI informados incorretamente. + + Error encoding URI into QR Code. + Erro ao codigicar o URI em código QR + + + RecentRequestsTableModel - Payment request file handling - Manipulação de arquivo de cobrança + + Date + Data - Payment request file cannot be read! This can be caused by an invalid payment request file. - Arquivo de pedido de pagamento não pode ser lido! Isto pode ser causado por uma requisição de pagamento inválida. + + Label + Rótulo - Payment request rejected - Pedido de pagamento rejeitado + + Message + Mensagem - Payment request network doesn't match client network. - Rede do pedido de pagamento não corresponde rede do cliente. + + (no label) + (sem rótulo) - Payment request expired. - Pedido de pagamento expirado + + (no message) + (sem mensagem) - Payment request is not initialized. - Pedido de pagamento não inicializado + + (no amount requested) + (nenhuma quantia solicitada) - Unverified payment requests to custom payment scripts are unsupported. - Pedidos de pagamento não verificados para scripts de pagamento personalizados não são suportados. + + Requested + Solicitado + + + ReissueAssetDialog - Invalid payment request. - Pedido de pagamento inválido + + Coin Control Features + - Requested payment amount of %1 is too small (considered dust). - Valor do pagamento solicitado de %1 é muito pequeno (Considerado poeira). + + Inputs... + - Refund from %1 - Reembolso de %1 + + automatically selected + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Pedido de pagamento %1 é muito grande (%2 bytes, permitido %3 bytes). + + Insufficient funds! + - Error communicating with %1: %2 - Erro na comunicação com %1: %2 + + + Quantity: + - Payment request cannot be parsed! - Pedido de pagamento não pode ser analisado! + + Bytes: + - Bad response from server %1 - Erro na resposta do servidor: %1 + + Amount: + - Network request error - Erro de solicitação de rede + + Dust: + - Payment acknowledged - Pagamento reconhecido + + Fee: + - - - PeerTableModel - User Agent - User Agent + + After Fee: + - Node/Service - Nó/Serviço + + Change: + - NodeId - ID do nó + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Ping - Ping + + Custom change address + - - - QObject - Amount - Quantidade + + + Reissue Asset + - Enter a Raven address (e.g. %1) - Informe um endereço Raven (ex: %1) + + Select an asset to reissue: + - %1 d - %1 d + + Address: + - %1 h - %1 h + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 m - %1 m + + Verifier String: + - %1 s - %1 s + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - None - Nenhum + + Warning: + - N/A - N/A + + The number of assets that will be created + - %1 ms - %1 ms + + Unit: + - - %n second(s) - %n segundo%n segundos + + + e.g. 1.00000000 + - - %n minute(s) - %n minuto%n minutos + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n hora%n horas + + + Reissuable + - - %n day(s) - %n dia%n dias + + + Change IPFS/Txid Hash + - - %n week(s) - %n semana%n semanas + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 e %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n ano%n anos + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ainda não terminou com segurança... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Erro: diretório de dados especificado "%1" não existe. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Erro: Não foi possível interpretar arquivo de configuração: %1. Utilize apenas a sintaxe chave=valor. + + Transaction Fee: + - Error: %1 - Erro: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Savar imagem + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Copiar imagem + + Warning: Fee estimation is currently not possible. + - Save QR Code - Salvar código QR + + collapse fee-settings + - PNG Image (*.png) - Imagem PNG (*.png) + + Hide + - - - RPCConsole - N/A - N/A + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Versão do cliente + + per kilobyte + - &Information - &Informação + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Janela de depuração + + (read the tooltip) + - General - Geral + + Recommended: + - Using BerkeleyDB version - Versão do BerkeleyDB + + Cus&tom: + - Datadir - Datadir + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Horário de inicialização + + Confirmation time target: + - Network - Rede + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Nome + + Request Replace-By-Fee + - Number of connections - Número de conexões + + Clear + - Block chain - Corrente de blocos + + Balance: + - Current number of blocks - Quantidade atual de blocos + + 123.456 RVN + - Memory Pool - Pool de Memória + + Copy quantity + - Current number of transactions - Número atual de transações + + Copy amount + - Memory usage - Uso de memória + + Copy fee + - Received - Recebido + + Copy after fee + - Sent - Enviado + + Copy bytes + - &Peers - &Pares + + Copy dust + - Banned peers - Nós banidos + + Copy change + - Select a peer to view detailed information. - Selecione um cliente para ver informações detalhadas. + + Select an asset to reissue.. + - Whitelisted - Lista branca + + Select the asset you want to reissue. + - Direction - Direção + + %1 (%2 blocks) + - Version - Versão + + Cost + - Starting Block - Bloco inicial + + Asset data couldn't be found + - Synced Headers - Cabeçalhos Sincronizados + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Blocos Sincronizados + + Invalid Raven Destination Address + - User Agent - User Agent + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Abrir o arquivo de log de depuração do %1 localizado no diretório atual de dados. Isso pode levar alguns segundos para arquivos de log grandes. + + + Warning: Invalid Raven address + - Decrease font size - Diminuir o tamanho da fonte + + + Yes + - Increase font size - Aumentar o tamanho da fonte + + No + - Services - Serviços + + + Name + - Ban Score - Banir pontuação + + + Total Quantity + - Connection Time - Tempo de conexão + + + Units + - Last Send - Ultimo Envio + + + Can Reisssue + - Last Receive - Ultimo Recebido + + + + IPFS Hash + - Ping Time - Ping + + + + Txid Hash + - The duration of a currently outstanding ping. - A duração de um ping excepcional no momento. + + Verifier String + - Ping Wait - Espera de ping + + + Current Verifier String + - Min Ping - Ping min + + Please select a asset from the menu to display the assets current settings + - Time Offset - Offset de tempo + + Please select a asset from the menu to display the assets updated settings + - Last block time - Horário do último bloco + + Current Quantity + - &Open - &Abrir + + Current Units + - &Console - &Console + + Can Reissue + - &Network Traffic - Tráfico de Rede + + Unknown data hash type + - &Clear - &Limpar + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totais + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Entrada: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Saída: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Arquivo de log de depuração + + + %1 to %2 + - Clear console - Limpar console + + Are you sure you want to send? + - 1 &hour - 1 &hora + + added as transaction fee + - 1 &day - 1 &dia + + Total Amount %1 + - 1 &week - 1 &semana + + or + - 1 &year - 1 &ano + + Confirm reissue assets + - &Disconnect - &Desconectar + + Copy + - Ban for - Banir por + + Transaction ID Copied + - &Unban - &Desbanir + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Bem-vindo ao console RPC do %1 + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use as setas para cima e para baixo para navegar pelo histórico, e <b>Ctrl-L</b> para limpar a tela. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Digite <b>help</b> para uma visão geral dos comandos disponíveis. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - AVISO: Scammers atacam essa área, dizendo aos usuários que comandos digitar aqui, roubando informações da carteira. Não use este console sem entender completamente as ramificações do comando. + + (no label) + - Network activity disabled - Atividade da rede disativada + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (id do nó: %1) + + Balance: + - via %1 - por %1 + + + Failed to create a change address + - never - nunca + + Failed to generate the correct transaction. Please try again + - Inbound - Entrada + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Saída + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Sim + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Não + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Desconhecido + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - Qu&antia: + + + Total Amount %1 + - &Label: - &Rótulo: + + + or + - &Message: - &Mensagem + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilize um dos endereços de recebimento anteriormente utilizados. Reutilizar um endereço implica em problemas com segurança e privacidade. Não reutilize a menos que esteja refazendo uma cobrança já feita anteriormente. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - R&eutilize um endereço de recebimento (não recomendado) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Uma mensagem opcional que será anexada na cobrança e será mostrada quando ela for aberta. Nota: A mensagem não será enviada com o pagamento pela rede Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Um marcador opcional para associar ao novo endereço de recebimento. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Use esse formulário para fazer cobranças. Todos os campos são <b>opcionais</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Uma quantia opcional para cobrar. Deixe vazio ou em branco se o pagador puder especificar a quantia. + + This is an asset payment + - Clear all fields of the form. - Limpa todos os campos do formulário. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Limpar + + + + Memo: + - Requested payments history - Histórico de cobranças + + Amount: + - &Request payment - &Requisitar Pagamento + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Mostra a cobrança selecionada (o mesmo que clicar duas vezes em um registro) + + &Label: + - Show - Mostrar + + Asset: + - Remove the selected entries from the list - Remove o registro selecionado da lista + + The Raven address to send the payment to + - Remove - Remover + + Choose previously used address + - Copy URI - Copiar URI + + Alt+A + - Copy label - Copiar rótulo + + Paste address from clipboard + - Copy message - Copiar mensagem + + Alt+P + - Copy amount - Copiar quantia + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Código QR + + Message: + - Copy &URI - Copiar &URI + + Transfer &To: + - Copy &Address - &Copiar Endereço + + Transfer Administrator Asset + - &Save Image... - &Salvar Imagem... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Pedido de pagamento para %1 + + This is an unauthenticated payment request. + - Payment information - Informação do pagamento + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Endereço + + This is an authenticated payment request. + - Amount - Quantia + + Enter a label for this address to add it to your address book + - Label - Rótulo + + Select to view administrator assets to transfer + - Message - Mensagem + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI resultante muito longa. Tente reduzir o texto do rótulo ou da mensagem. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Erro ao codigicar o URI em código QR + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Data + + Failed to get asset metadata for: + - Label - Rótulo + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Mensagem + + Failed to get asset outpoints from database + - (no label) - (sem rótulo) + + Selected Balance + - (no message) - (sem mensagem) + + Wallet Balance + - (no amount requested) - (nenhuma quantia solicitada) + + Select an administrator asset to transfer + - Requested - Solicitado + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Enviar moedas + Coin Control Features Opções de controle de moeda + Inputs... Entradas... + automatically selected automaticamente selecionado + Insufficient funds! Saldo insuficiente! + Quantity: Quantidade: + Bytes: Bytes: + Amount: Quantia: + Fee: Taxa: + After Fee: Depois da taxa: + Change: troco + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Se essa opção for ativada e o endereço de troco estiver vazio ou inválido, o troco será enviado a um novo endereço gerado na hora. + Custom change address Endereço específico de troco + Transaction Fee: Taxa de transação: + Choose... Escolher + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Ocultar painel + per kilobyte por kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Se a taxa personalizada for definida em 1000 satoshis e a transação tiver somente 250 bytes, então "por kilobyte" somente paga 250 satoshis de taxa, enquanto "pelo menos" paga 1000 satoshis. Se a transação for maior que 1 kilobyte, ambos pagam por kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa personalizada for definida em 1000 satoshis e a transação tiver somente 250 bytes, então "por kilobyte" somente paga 250 satoshis de taxa, enquanto "pelo menos" paga 1000 satoshis. Se a transação for maior que 1 kilobyte, ambos pagam por kilobyte. + Hide Ocultar - total at least - pelo menos - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Pagando apenas a taxa mínima é bom, desde que haja pouco volume de transações. Mas esteja ciente de que isso pode acabar em uma transação nunca confirmanda uma vez que há mais demanda por transações do que a rede pode processar. + (read the tooltip) (Leia o popup) + Recommended: Recomendado: + Custom: Personalizado: + (Smart fee not initialized yet. This usually takes a few blocks...) (Smart fee não iniciado. Isso requer alguns blocos...) - normal - normal + + Request Replace-By-Fee + - fast - rápido + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Enviar para vários destinatários de uma só vez + Add &Recipient Adicionar destinatário + Clear all fields of the form. Limpar todos os campos do formulário. + Dust: Poeira: + Confirmation time target: Confirmando tempo alvo: + Clear &All Limpar Tudo + Balance: Saldo: + Confirm the send action Confirmar o envio + S&end Enviar + Copy quantity Copiar quantia + Copy amount Copiar quantia + Copy fee Copiar taxa + Copy after fee Copiar pós taxa + Copy bytes Copiar bytes + Copy dust Copiar poeira + Copy change Copiar troco + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 a %2 + Are you sure you want to send? Tem certeza que deseja enviar? + added as transaction fee adicionado como taxa da transação + Total Amount %1 Quantia tota %1 + or ou + Confirm send coins Confirme o envio de moedas + The recipient address is not valid. Please recheck. Endereço de envio inváido. Favor checar. + The amount to pay must be larger than 0. A quantia à pagar deve ser maior que 0 + The amount exceeds your balance. A quantia excede o seu saldo + The total exceeds your balance when the %1 transaction fee is included. O total excede o seu saldo quando a taxa da transação %1 é incluída + Duplicate address found: addresses should only be used once each. Endereço duplicado encontrado: Endereços devem ser usados somente uma vez cada. + Transaction creation failed! Falha na criação da transação + The transaction was rejected with the following reason: %1 A transação foi negada pela seguinte razão: %1 + A fee higher than %1 is considered an absurdly high fee. Uma taxa maior que %1 é considerada uma taxa absurdamente alta. + Payment request expired. Pedido de pagamento expirado - - %n block(s) - %n bloco%n blocos - + Pay only the required fee of %1 Pagar somente a taxa requerida de %1 + Estimated to begin confirmation within %n block(s). - Confirmação em %n bloco.Confirmação em %n blocos. + + Warning: Invalid Raven address Aviso: Endereço inválido + Warning: Unknown change address Aviso: Endereço de troco inválido + Confirm custom change address Confirmar endereço de troco personalizado + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? O endereço selecionado para o troco não pertence a esta carteira. Alguns ou todos os fundos da sua carteira modem ser mandados para esse endereço. Tem certeza? + (no label) (sem rótulo) @@ -2222,82 +5498,108 @@ SendCoinsEntry + + + A&mount: Q&uantidade: - Pay &To: - Pagar &Para: - - + &Label: &Rótulo: + Choose previously used address Escolher endereço usado anteriormente + This is a normal payment. Este é um pagamento normal. + The Raven address to send the payment to Endereço que enviará o pagamento + Alt+A Alt+A + Paste address from clipboard Colar o endereço da área de transferência + Alt+P Alt+P + + + Remove this entry Remover esta entrada + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. A taxa será deduzida da quantia que está sendo enviada. O destinatário receberá menos ravens do que você colocou no campo de quantidade. Se vários destinatários estão selecionados, a taxa é dividida igualmente. + S&ubtract fee from amount &Retirar taxa da quantia + Message: Mensagem: + + Send &To: + + + + This is an unauthenticated payment request. Esta é uma cobrança não autenticada. + + + Send to: + + + + This is an authenticated payment request. Esta é uma cobrança autenticada. + Enter a label for this address to add it to the list of used addresses Digite um rótulo para este endereço para adicioná-lo no catálogo + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. A mensagem que foi anexada ao raven: URI na qual será gravada na transação para sua referência. Nota: Essa mensagem não será gravada publicamente na rede Raven. - Pay To: - Pague Para: - - + + Memo: Memorizar: + Enter a label for this address to add it to your address book Digite um rótulo para este endereço para adicioná-lo ao catálogo de endereços @@ -2305,6 +5607,8 @@ SendConfirmationDialog + + Yes Sim @@ -2312,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 está desligando... + Do not shut down the computer until this window disappears. Não desligue o computador até que esta janela desapareça. @@ -2323,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma mensagem + &Sign Message &Assinar mensagem + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Você pode assinar mensagens com seus endereços para provar que você pode receber ravens enviados por alguém. Cuidado para não assinar nada vago ou aleatório, pois ataques phishing podem tentar te enganar para assinar coisas para eles como se fosse você. Somente assine termos bem detalhados que você concorde. + The Raven address to sign the message with O enderesso Raven que assinará a mensagem + + Choose previously used address Escolha um endereço usado anteriormente + + Alt+A Alt+A + Paste address from clipboard Colar o endereço da área de transferência + Alt+P Alt+P + Enter the message you want to sign here Entre a mensagem que você quer assinar aqui + Signature Assinatura + Copy the current signature to the system clipboard Copiar a assinatura para a área de transferência do sistema + Sign the message to prove you own this Raven address Assinar mensagem para provar que você é dono deste endereço Raven + Sign &Message Assinar &mensagem + Reset all sign message fields Limpar todos os campos de assinatura da mensagem + + Clear &All Limpar Tudo + &Verify Message &Verificar mensagem - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Coloque o endereço do autor, a mensagem (certifique-se de copiar toda a mensagem, incluindo quebras de linha, espaços, tabulações, etc.) e a assinatura embaixo para verificar a mensagem. Cuidado para não ler mais da assinatura do que está assinado na mensagem, para evitar ser enganado pelo ataque man-in-the-middle. Note que isso somente prova a propriedade de um endereço, e não o remetende de qualquer transação. + The Raven address the message was signed with O enderesso Raven que assionou a mesnagem + Verify the message to ensure it was signed with the specified Raven address Verificar mensagem para se assegurar que ela foi assinada pelo dono de um endereço Raven específico. + Verify &Message Verificar &mensagem + Reset all verify message fields Limpar todos os campos de assinatura da mensagem - Click "Sign Message" to generate signature - Clique em "Assinar mensagem" para gerar a assinatura + + Click "Sign Message" to generate signature + Clique em "Assinar mensagem" para gerar a assinatura + + The entered address is invalid. O endereço digitado é inválido + + + + Please check the address and try again. Favor checar o endereço e tente novamente + + The entered address does not refer to a key. O endereço fornecido não se refere a uma chave. + Wallet unlock was cancelled. O desbloqueio da carteira foi cancelado + Private key for the entered address is not available. A chave privada do endereço inserido não está disponível + Message signing failed. Falha ao assinar mensagem + Message signed. Mensagem assinada + The signature could not be decoded. A assinatura não pode ser descodificada + + Please check the signature and try again. Favor checar a assinatura e tente novamente + The signature did not match the message digest. A assinatura não corresponde a mensagem + Message verification failed. Falha na verificação da mensagem + Message verified. Mensagem verificada @@ -2462,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2469,6 +5819,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2476,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Abrir para mais %n blocoAbrir para mais %n blocos + + Open until %1 Aberto até %1 + conflicted with a transaction with %1 confirmations conflitado com uma transação com %1 confirmações + %1/offline %1/offline + 0/unconfirmed, %1 0/não confirmado, %1 + in memory pool na memória + not in memory pool não na memóra + abandoned abandonado + %1/unconfirmed %1/não confirmado + %1 confirmations %1 confirmações + + Status Status + + , has not been successfully broadcast yet , ainda não foi propagada na rede com êxito. + + , broadcast through %n node(s) - , transmitido aravés de %n nó, transmitido aravés de %n nós + + + Date Data + Source Fonte + Generated Gerado + + + + + From De + + unknown desconhecido + + + + + To Para + + own address próprio endereço + + + watch-only monitorado + + label rótulo + + + + + + + Credit Crédito + matures in %n more block(s) - maduro em mais %n blocomaduro em mais %n blocos + + not accepted não aceito + + + + + Debit Débito + Total debit Débito total + Total credit Crédito total + Transaction fee Taxa da transação + Net amount Valor líquido + + + + Message Mensagem + + Comment Comentário + + Transaction ID ID da transação + + Transaction total size Tamanho tota da transação + + Output index Index da saída + + Merchant Mercador - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Moedas recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Moedas recém minerados precisam aguardar %1 blocos antes de serem gastos. Quando o bloco foi gerado, ele foi disseminado pela rede para ser adicionado à blockchain. Se ele falhar em ser inserido na cadeia, seu estado será modificado para "não aceito" e ele não poderá ser gasto. Isso pode acontecer eventualmente quando blocos são gerados quase que simultaneamente. + + + + Net RVN amount + + Debug information Depurar informação + Transaction Transação + Inputs Entradas + Amount Quantia + + true verdadeiro + + false falso @@ -2651,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Este painel mostra uma descrição detalhada da transação + Details for %1 Detalhes para %1 @@ -2662,269 +6101,411 @@ TransactionTableModel + Date Data + Type Tipo + Label Rótulo + + + Amount + + + + + Asset + + + Open for %n more block(s) - Aberto por mais %n blocoAberto por mais %n blocos + + Open until %1 Aberto até %1 + Offline Offline + Unconfirmed Não confirmado + Abandoned Abandonado + Confirming (%1 of %2 recommended confirmations) Confirmando (%1 de %2 confirmações recomendadas) + Confirmed (%1 confirmations) Confirmado (%1 confirmações) + Conflicted Conflitado + Immature (%1 confirmations, will be available after %2) Recém-criado (%1 confirmações, disponível somente após %2) + This block was not received by any other nodes and will probably not be accepted! Este bloco não foi recebido por nenhum outro participante da rede e provavelmente não será aceito! + Generated but not accepted Gerado mas não aceito + Received with Recebido + Received from Recebido + Sent to Enviado para + Payment to yourself Pagamento para você mesmo + Mined Minerado + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only monitorado + (n/a) (n/a) + (no label) (sem rótulo) + Transaction status. Hover over this field to show number of confirmations. Status da transação. Passe o mouse sobre este campo para mostrar o número de confirmações. + Date and time that the transaction was received. Data e hora em que a transação foi recebida. + Type of transaction. Tipo de transação + Whether or not a watch-only address is involved in this transaction. Mostrar ou não endereços monitorados na lista de transações. + User-defined intent/purpose of the transaction. Intenção/Propósito definido pelo usuário para a transação + Amount removed from or added to balance. Quantidade debitada ou creditada ao saldo. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Todos + Today Hoje + This week Essa semana + This month Esse mês + Last month Último mês + This year Este ano + Range... Intervalo... + Received with Recebido + Sent to Enviado para + To yourself Para você mesmo + Mined Minerado + Other Outro + Enter address or label to search Procure um endereço ou rótulo + Min amount Quantia mínima + + Asset name + + + + Abandon transaction Transação abandonada + Copy address Copiar endereço + Copy label Copiar rótulo + Copy amount Copiar quantia + Copy transaction ID Copiar ID da transação + Copy raw transaction Copiar o raw da transação + Copy full transaction details Copiar dados completos da transação + Edit label Editar rótulo + Show transaction details Mostrar detalhes da transação + + Browse with: + + + + Export Transaction History Exportar histórico de transações + Comma separated file (*.csv) Comma separated file (*.csv) + Confirmed Confirmado + Watch-only Monitorado + Date Data + Type Tipo + Label Rótulo + Address Endereço + + Asset + + + + ID ID + Exporting Failed Falha na exportação + There was an error trying to save the transaction history to %1. Ocorreu um erro ao tentar salvar o histórico de transações em %1. + Exporting Successful Exportação feita com êxito + The transaction history was successfully saved to %1. O histórico de transação foi gravado com êxito em %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Intervalo: + to para @@ -2932,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Unidade para mostrar. Clique para selecionar outra unidade. @@ -2939,6 +6521,7 @@ WalletFrame + No wallet has been loaded. Nenhuma carteira carregada @@ -2946,964 +6529,1763 @@ WalletModel + Send Coins Enviar moedas + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportar + Export the data in the current tab to a file Exportar os dados da guia atual para um arquivo + Backup Wallet Backup da carteira + Wallet Data (*.dat) Dados da carteira (*.dat) + Backup Failed Falha no backup + There was an error trying to save the wallet data to %1. Ocorreu um erro ao tentar salvar os dados da carteira em %1. + Backup Successful Êxito no backup + The wallet data was successfully saved to %1. Os dados da carteira foram salvos com êxito em %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Opções: + Specify data directory Especificar o diretório de dados + Connect to a node to retrieve peer addresses, and disconnect Conectar a um nó para receber endereços de participantes, e desconectar. + Specify your own public address Especificar seu próprio endereço público + Accept command line and JSON-RPC commands Aceitar linha de comando e comandos JSON-RPC - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Aceitar conecções de entrada (padrão: 1 sem -proxy ou -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Conectar somente a nós específicos; -noconnect ou -connect=0 sozinhos para desativar conecções automáticas - - + Distributed under the MIT software license, see the accompanying file %s or %s Distribuído sob a MIT software license, veja o arquivo %s ou %s + If <category> is not supplied or if <category> = 1, output all debugging information. Se <category> não for suprida ou se <category> = 1, mostrar toda informação de depuração. + Prune configured below the minimum of %d MiB. Please use a higher number. Prune configurado abaixo do mínimo de %d MiB. Por favor use um número mais alto. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Prune: A ultima sincronização da carteira foi além do dado comprimido. Você precisa reindexar (fazer o download de toda a blockchain novamente) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Rescans não são possíveis no modo prune. Você precisa usar -reindex, que irá fazer o download de toda a blockchain novamente. + Error: A fatal internal error occurred, see debug.log for details Erro: Um erro interno fatal ocorreu, veja debug.log para detalhes + Fee (in %s/kB) to add to transactions you send (default: %s) Taxa (em %s/kB) a ser adicionada às transações que você mandar (padrão: %s) + Pruning blockstore... Prunando os blocos existentes... + Run in the background as a daemon and accept commands Rodar em segundo plano como serviço e aceitar comandos + Unable to start HTTP server. See debug log for details. Não foi possível iniciar o servidor HTTP. Veja o log para detaihes. + Raven Core Raven Core + The %s developers Desenvolvedores do %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) A variação da taxa (em %s/kB) que será usada quando não houver dados suficientes para se estimar a taxa (default: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Aceita transações retransmitidas advindas de pares em lista branca, mesmo quando não estiver retransmitindo transações (padrão: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Vincular ao endereço fornecido e sempre escutar nele. Use a notação [host]:port para IPv6 - Cannot obtain a lock on data directory %s. %s is probably already running. - Não foi possível obter exclusividade de escrita no endereço %s. O %s provavelmente já está sendo executado. + + Cannot obtain a lock on data directory %s. %s is probably already running. + Não foi possível obter exclusividade de escrita no endereço %s. O %s provavelmente já está sendo executado. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Apaga todas as transações da carteira e somente recupera essas partes da blockchain usando o comando -rescan na inicialização - Error loading %s: You can't enable HD on a already existing non-HD wallet - Erro ao carregar %s. Não é permitido habilitar HD em carteiras não-HD pre existentes. - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Erro ao ler arquivo %s! Todas as chaves foram lidas corretamente, mas os dados de transação ou o livro de endereos podem estar faltando ou incorretos. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executa um comando quando uma transação da carteira mudar (%s no comando será substituído por TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Transações extras para manter na memória para reconstruções de blocos compactos (padrão: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Se este bloco está no blockchain, assume-se que ele e seus ancestrais são válidos e podem ignorar a verificação de scripts (0 para verificar todos, padrão: %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) A media máxima permitida de peer time compensa o ajuste. Perspectiva local de horário pode ser influenciada por pares à frente ou atrás neste montante. (padrão: %u segundos) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Preço máximo total (in %s) aplicado a uma única transação de carteira ou transação crua; aplicar isto tão baixo pode abortar grandes transações (padrão: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Por favor verifique que a data e o horário de seu computador estão corretos. Se o relógio de seu computador estiver incorreto, %s não funcionarão corretamente. + Please contribute if you find %s useful. Visit %s for further information about the software. Por favor contribua se você entender que %s é útil. Visite %s para mais informações sobre o software. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Reduz o requerimente de espaço habiitando o pruning (apagando) blocos antigos. Isso permite o chamar o comando pruneblockchain via RPC para apagar blocos específicos, e habiita o pruning automático de blocos antigos se o tamanho em MiB for atingido. Esse modo é incompatíve com -txindex e -rescan. Aviso: Reverter essa configuração requer re-baixar o blockchain inteiro. (padrão: 0 = disabilitado, 1 = permite o pruning manua via RPC, >%u = pruna os blocos para ficar abaixo do expecificado, em MiB) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Taxa (em %s/KiB) a ser adicionada às transações que você mandar (padrão: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Define o número de threads de verificação de script (%u a %d, 0 = automático, <0 = número de cores deixados livres, padrão: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct O banco de dados de blocos contém um bloco que parece ser do futuro. Isso pode ser devido à data e hora do seu computador estarem configuradas incorretamente. Apenas reconstrua o banco de dados de blocos se você estiver certo de que a data e hora de seu computador estão corretas. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Este é um build de teste pré-lançamento - use por sua conta e risco - não use para mineração ou comércio. + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Não foi possível reanalisar o banco de dados para o estado pre-fork. Você precisa rebaixar o blockchain + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Use UPnP para mapear a porta escutada (padrão: 1 quando escutando e sem -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Nome de usuário e hash da senha para conexões JSON-RPC. O campo <userpw> vem com o formato: <USERNAME>:<SALT>$<HASH>. Um script python canônico é incluído em share/rpcuser. O cliente pode conectar normalmente usando o rpcuser=<USERNAME>/rpcpassword=<PASSWORD>. Esta opção pode ser especificado multiplas vezes + Wallet will not create transactions that violate mempool chain limits (default: %u) A carteira não irá criar transações que vioem o imite de memória (padrão: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Atenção: A rede não parecem concordar plenamente! Alguns mineiros parecem estar enfrentando problemas. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Atenção: Nós não parecemos concordar plenamente com nossos nós! Você pode precisar atualizar ou outros nós podem precisar atualizar. - You need to rebuild the database using -reindex-chainstate to change -txindex - Você precisa reconstruir o banco de dados utilizando -reindex-chainstate para mudar -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s corrompido, recuperação falhou + -maxmempool must be at least %d MB -maxmempool deve ser pelo menos %d MB + <category> can be: <category> pode ser: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Adiciona comentário ao user-agent do navegador + Attempt to recover private keys from a corrupt wallet on startup Tentando recuperar a chape privada da carteira corrompida ao inicializar + Block creation options: Opções de criação de blocos: - Cannot resolve -%s address: '%s' - Impossível resolver -%s endereço: '%s' + + Cannot resolve -%s address: '%s' + Impossível resolver -%s endereço: '%s' + Chain selection options: Opções da rede: + Change index out of range Índice de mudança fora da faixa. + Connection options: Opções de conexão: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Detectado Banco de dados de blocos corrompido + Debugging/Testing options: Opções de depuração/teste: + Do not load the wallet and disable wallet RPC calls Não carrega a carteira e desabilita as chamadas RPC para a carteira + Do you want to rebuild the block database now? Você quer reconstruir o banco de dados de blocos agora? + Enable publish hash block in <address> Abilitar a publicação da hash do block em <endereço> + Enable publish hash transaction in <address> Abilitar a publicação da hash da transação em <endereço> + Enable publish raw block in <address> Abilitar a publicação dos dados brutos do block em <endereço> + Enable publish raw transaction in <address> Abilitar a publicação dos dados brutos da transação em <endereço> + Enable transaction replacement in the memory pool (default: %u) Habilita substituição de transação em memória (padrão: %u) + Error initializing block database Erro ao inicializar banco de dados de blocos + Error initializing wallet database environment %s! Erro ao inicializar ambiente de banco de dados de carteira %s! + Error loading %s Erro ao carregar %s + Error loading %s: Wallet corrupted Erro ao carregar %s Carteira corrompida + Error loading %s: Wallet requires newer version of %s Erro ao carregar %s A carteira requer a versão mais nova do %s - Error loading %s: You can't disable HD on a already existing HD wallet - Erro ao carregar %s: Você não pode desabilitar HD numa já existente carteira HD. - - + Error loading block database Erro ao carregar banco de dados de blocos + Error opening block database Erro ao abrir banco de dados de blocos + Error: Disk space is low! Erro: Espaço em disco insuficiente! + Failed to listen on any port. Use -listen=0 if you want this. Falha ao escutar em qualquer porta. Use -listen=0 se você quiser isso. + Importing... Importando... + Incorrect or no genesis block found. Wrong datadir for network? Bloco gênese incorreto ou não encontrado. Datadir errado para a rede? + Initialization sanity check failed. %s is shutting down. O teste de integridade de inicialização falhou. O %s está sendo desligado. - Invalid -onion address: '%s' - Endereço -onion inválido: '%s' + + Invalid amount for -%s=<amount>: '%s' + Valor inválido para -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Valor inválido para -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Valor inválido para -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Valor inválido para -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Mantenha a mempool de transações abaixo de <n> megabytes (padrão: %u) + + Loading P2P addresses... + + + + Loading banlist... Carregando lista de banidos... + Location of the auth cookie (default: data dir) Localização do cookie de autenticação (padrão: diretório de dados) + Not enough file descriptors available. Decriptadores de arquivos disponíveis insuficientes. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Somente conectar a clientes na rede <net> (ipv4, ipv6 ou onion) + Print this help message and exit Mostra essa mensagem de ajuda e sai + Print version and exit Mostra a versão e fecha + Prune cannot be configured with a negative value. O modo prune não pode ser configurado com um valor negativo. + Prune mode is incompatible with -txindex. O modo prune é incompatível com -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Reconstruir índice de cadeia de bloco a partir dos arquivos blk*.dat no disco + Rebuild chain state from the currently indexed blocks Reconstruir estado a partir dos blocos indexados + + Replaying blocks... + + + + Rewinding blocks... Reanalizando blocos... + Set database cache size in megabytes (%d to %d, default: %d) Define o tamanho do cache do banco de dados em megabytes (%d para %d, padrão: %d) - Set maximum block size in bytes (default: %d) - Define o tamanho máximo de cada bloco em bytes (padrão: %d) - - + Specify wallet file (within data directory) Especifique o arquivo da carteira (dentro do diretório de dados) + The source code is available from %s. O código fonte está disponível pelo %s + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + Unsupported argument -benchmark ignored, use -debug=bench. Argumento não suportado -benchmark ignorado, use -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argumento não suportado -debugnet ignorado, use -debug=net + Unsupported argument -tor found, use -onion. Argumento não suportador encontrado: -tor. Use -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Use UPnP para mapear a porta de entrada (padrão: %u) + Use the test chain Usar a rede de testes + User Agent comment (%s) contains unsafe characters. Comentário do Agente de Usuário (%s) contém caracteres inseguros. + Verifying blocks... Verificando blocos... - Verifying wallet... - Verificando carteira... - - + Wallet %s resides outside data directory %s Carteira %s reside fora do diretório de dados %s + Wallet debugging/testing options: Opções de depuração/teste da Carteira + Wallet needed to be rewritten: restart %s to complete A Carteira precisou ser reescrita: reinicie o %s para completar + Wallet options: Opções da carteira: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Permitir conexões JSON-RPC de uma fonte específica. Válido para um único ip (ex. 1.2.3.4), até uma rede/máscara (ex. 1.2.3.4/255.255.255.0) ou uma rede/CIDR (ex. 1.2.3.4/24). Esta opção pode ser usada múltiplas vezes + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Vincular ao endereço fornecido e sempre escutar nele. Use a notação [host]:port para IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Conecte ao endereço dado para receber conecções JSON-RPC. Use a notação [destino]:porta para IPv6. Essa opção pode ser especificada várias vezes (padrão: conecte a todas as interfaces) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Criar novos arquivos com permissões padrão do sistema, em vez de umask 077 (apenas efetivo com funcionalidade de carteira desabilitada) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Descobrir o próprio IP (padrão: 1 enquanto aguardando conexões e sem -externalip ou -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Erro: Aceitar conexões de entrada falhou (retornou erro %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executa um comando quando um alerta relevante é recebido ou vemos uma longa segregação (%s é substituída pela mensagem) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Comissões (em %s/kB) menores serão consideradas como zero para relaying, mineração e criação de transação (padrão %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Se paytxfee não estiver definida, incluir comissão suficiente para que as transações comecem a ter confirmações em média dentro de N blocos (padrão %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Valor inválido para -maxtxfee=<valor>: '%s' (precisa ser pelo menos a taxa mínima de %s para prevenir que a transação nunca seja confirmada) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Valor inválido para -maxtxfee=<valor>: '%s' (precisa ser pelo menos a taxa mínima de %s para prevenir que a transação nunca seja confirmada) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Tamanho máximo de dados em transações de dados de operadora (padrão %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Gerar credenciais aleatórias para cada conexão por proxy. Isto habilita o isolamento de stream do Tor (padrão: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Define o tamanho máximo de alta-prioridade por taxa baixa nas transações em bytes (padrão: %d) - - + The transaction amount is too small to send after the fee has been deducted A quantia da transação é muito pequena para mandar - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Usar carteira HD. Somente tem efeito na criação de uma nova carteira - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Peers permitidos não podem ser banidos do DoS e suas transações sempre são transmitidas, até mesmo se eles já estão no pool de memória, útil, por exemplo, para um gateway + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Você precisa reconstruir o banco de dados usando -reindex para sair do modo prune. Isso irá rebaixar todo o blockchain. + (default: %u) (padrão: %u) + Accept public REST requests (default: %u) Aceitar pedidos restantes públicas (padrão: %u) + Automatically create Tor hidden service (default: %d) Criar automaticamente serviços ocultos do Tor (padrão: %d) + Connect through SOCKS5 proxy Connecte-se através de um proxy SOCKS5 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Erro ao ler o banco de dados. Finalizando. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importar blocos a partir de arquivo externo blk000??.dat durante a inicialização + Information Informação - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Valor inválido para -paytxfee=<amount>: '%s' (precisa ser no mínimo %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Valor inválido para -paytxfee=<amount>: '%s' (precisa ser no mínimo %s) - Invalid netmask specified in -whitelist: '%s' - Máscara de rede especificada em -whitelist: '%s' é inválida + + Invalid netmask specified in -whitelist: '%s' + Máscara de rede especificada em -whitelist: '%s' é inválida + Keep at most <n> unconnectable transactions in memory (default: %u) Manter ao máximo <n> transações inconectáveis na memória (padrão: %u) - Need to specify a port with -whitebind: '%s' - Necessário informar uma porta com -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Necessário informar uma porta com -whitebind: '%s' + Node relay options: Opções de relé nó : + RPC server options: Opções do servidor RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Reduzindo -maxconnections de %d para %d, devido a limitações do sistema + Rescan the block chain for missing wallet transactions on startup Re-escanear a block-chain por transações faltantes na carteira durante a inicialização + Send trace/debug info to console instead of debug.log file Mandar informação de trace/debug para o console em vez de para o arquivo debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Enviar transação sem taxa, se possível (padrão: %u) - - + Show all debugging options (usage: --help -help-debug) Exibir todas opções de depuração (uso: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Encolher arquivo debug.log ao iniciar o cliente (padrão 1 se opção -debug não estiver presente) + Signing transaction failed Assinatura de transação falhou + The transaction amount is too small to pay the fee A quantidade da transação é pequena demais para pagar a taxa + This is experimental software. Este é um software experimental. + Tor control port password (default: empty) Senha da porta de controle do Tor (padrão: vazio) + Tor control port to use if onion listening enabled (default: %s) Porta de controle a ser usada se o monitoramento onion estiver habilitado (padrão: %s) + Transaction amount too small Quantidade da transação muito pequena. + Transaction too large for fee policy Transação muito grande para enviar sem taxa + Transaction too large Transação muito larga + Unable to bind to %s on this computer (bind returned error %s) Impossível se ligar a %s neste computador (bind retornou erro %s) + Upgrade wallet to latest format on startup Atualizar a carteira para o último formato na inicialização + Username for JSON-RPC connections Nome de usuário para conexões JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Atenção + Warning: unknown new rules activated (versionbit %i) Aviso: Novas regras estranhas foram ativadas (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Quando operar em modo de blocos somente (padrãp: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Aniquilando todas as transações da carteira... + ZeroMQ notification options: Opções de notificação ZeroMQ: + Password for JSON-RPC connections Senha para conexões JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Executa um comando quando o melhor bloco mudar (%s no comando será substituído pelo hash do bloco) + Allow DNS lookups for -addnode, -seednode and -connect Permitir consultas DNS para -addnode, -seednode e -connect - Loading addresses... - Carregando endereços... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = manter metadados tx e.g. informação do dono da conta e requisição de pagamente, 2 = descartar metadados tx) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee é muito alto! Essa quantia poderia ser paga em uma única transação. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Não manter transações na mempool por mais que <n> horas (padrão: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Número mínimo de bytes por assinatura em transações que transmitimos e mineramos (default: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Comissões (em %s/kB) menores serão consideradas como zero para criação de transação (padrão %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Força a retransmissão de transações de pares da lista branca, mesmo quando violam a política local de retransmissão (default: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Quão completa a verificação de blocos do -checkblocks é (0-4, padrão: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Mantém um índice completo de transações, usado pela chamada rpc getrawtransaction (padrão: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Número de segundos para impedir que peers mal comportados reconectem (padrão %u) + Output debugging information (default: %u, supplying <category> is optional) Informação de saída de debug (padrão: %u, definir <category> é opcional) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Buscar por endereços de peers via DNS, se estiver baixo em endereços (padrão: 1 a não ser que -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Define a criação do raw da transação ou bloco em modo não verbal, não segwit (0) ou segwit (1) (padrão: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Suportar filtragem de blocos e transações com filtros bloom (padrão: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Esta é a taxa que você deve pagar quando a taxa estimada não está disponível. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Esse produto inclui um software desenvolvido pelo OpenSSL Project para uso na OpenSSL Toolkit %s e software criptográfico escrito por Eric Young e software UPnP escrito por Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. O tamanho total da string de versão da rede (%i) excede o tamanho máximo (%i). Reduza o numero ou tamanho de uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Tenta manter tráfego fora dos limites dentro do alvo especificado (em MiB por 24h), 0 = sem limite (padrão: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Argumento inválido -socks encontrado. Definir a versão do SOCKS não é mais possível, somente proxys SOCK5 são suportados. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argumento não suportado -whitelistalwaysrelay foi ignorado, utilize -whitelistrelay e/ou -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Use um proxy SOCKS5 separado para alcançar participantes da rede via serviços ocultos Tor (padrão: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Aviso: Versões de bloco desconhecidas sendo mineradas! É possível que regras estranhas estejam ativas + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Atenção: Arquivo da carteira corrompido, dados recuperados! Original %s salvo como %s em %s; se seu saldo ou transações estiverem incorretos, você deve restaurar o backup. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Lista Branca de conecções do endereço IP informado (ex: 1.2.3.4) ou com máscara de rede (ex: 1.2.3.0/24). Pode ser especificado várias vezes. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s está muito alto! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (padrão: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Sempre pergunte pelo endereço de peer via pesquisa DNS (padrão: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Quantos blocos devem ser checados ao iniciar (padrão: %u, 0 = todos) + Include IP addresses in debug output (default: %u) Incluir endereço IP na saída de depuração (padrão: %u) - Invalid -proxy address: '%s' - Endereço -proxy inválido: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Erro na Keypool, favor executar keypoolrefill primeiro + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escutar por conexões JSON-RPC na porta <port> (padrão: %u ou testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Aguardar por conexões na porta <port> (padrão: %u ou testnet: %u) + Maintain at most <n> connections to peers (default: %u) Manter, no máximo, <n> conexões com peers (padrão: %u) + Make the wallet broadcast transactions Fazer a carteira transmitir transações + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Buffer máximo de recebimento por conexão, <n>*1000 bytes (padrão: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Buffer máximo de envio por conexão, <n>*1000 bytes (padrão: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Adiciona timestamp como prefixo no debug (padrão: %u) + Relay and mine data carrier transactions (default: %u) Transações de dados de operadora (padrão: %u) + Relay non-P2SH multisig (default: %u) Retransmitir P2SH não multisig (padrão: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Ativar opção full-RBF nas transações enviadas (padrão: %u) + Set key pool size to <n> (default: %u) Defina o tamanho da chave para piscina<n> (padrão: %u) + Set maximum BIP141 block weight (default: %d) Define a altura máxima BIP141 do bloco (padrão: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Defina o número de threads para chamadas do serviço RPC (padrão: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especificar arquivo de configuração (padrão: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Especificar tempo para desistência de conexões, em mili segundos (mínimo: 1, padrão: %d) + Specify pid file (default: %s) Especificar arquivo pid (padrão: %s) + Spend unconfirmed change when sending transactions (default: %u) Gastar troco não confirmado quando enviar transações (padrão: %u) + Starting network threads... Iniciando análise da rede... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. A carteira irá evitar pagar menos que a taxa mínima. + This is the minimum transaction fee you pay on every transaction. Esta é a taxa mínima que você deve pagar em cada transação. + This is the transaction fee you will pay if you send a transaction. Esta é a taxa que você irá pagar se enviar a transação. + Threshold for disconnecting misbehaving peers (default: %u) Limite para desconectar peers mal comportados (padrão: %u) + Transaction amounts must not be negative As quantidades das transações devem ser positivas. + Transaction has too long of a mempool chain A transação demorou muito na memória + Transaction must have at least one recipient A transação deve ter ao menos um destinatário - Unknown network specified in -onlynet: '%s' - Rede desconhecida especificada em -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' + + + Insufficient funds Saldo insuficiente + Loading block index... Carregando índice de blocos... - Add a node to connect to and attempt to keep the connection open - Adicionar um cliente para se conectar e tentar manter a conexão ativa - - + Loading wallet... Carregando carteira... + Cannot downgrade wallet Não é possível fazer downgrade da carteira - Cannot write default address - Não foi possível escrever no endereço padrão - - + Rescanning... Re-escaneando... - Done loading - Carregamento terminado! - - + Error Erro diff --git a/src/qt/locale/raven_pt_PT.ts b/src/qt/locale/raven_pt_PT.ts index f4bb5c5fa8..12e9373e1d 100644 --- a/src/qt/locale/raven_pt_PT.ts +++ b/src/qt/locale/raven_pt_PT.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Clique com o botão direito para editar o endereço ou rótulo + Create a new address Criar um novo endereço + &New &Novo + Copy the currently selected address to the system clipboard Copiar o endereço selecionado para a área de transferência + &Copy &Copiar + C&lose F&echar + Delete the currently selected address from the list Eliminar o endereço selecionado da lista + Export the data in the current tab to a file Exportar os dados no separador atual para um ficheiro + &Export &Exportar + &Delete &Eliminar + Choose the address to send coins to Escolha o endereço para enviar as moedas + Choose the address to receive coins with Escolha o endereço para receber as moedas + C&hoose Escol&her + Sending addresses A enviar endereços + Receiving addresses A receber endereços + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Estes são os seus endereços Raven para enviar pagamentos. Verifique sempre o valor e o endereço de envio antes de enviar moedas. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Estes são os seus endereços Raven para receber pagamentos. É recomendado que utilize um endereço novo para cada transacção. + &Copy Address &Copiar Endereço + Copy &Label Copiar &Etiqueta + &Edit &Editar + Export Address List Exportar Lista de Endereços + Comma separated file (*.csv) Ficheiro separado por vírgulas (*.csv) + Exporting Failed Exportação Falhou + There was an error trying to save the address list to %1. Please try again. Ocorreu um erro ao tentar guardar a lista de endereços para %1. Por favor, tente novamente. @@ -103,14 +125,17 @@ AddressTableModel + Label Etiqueta + Address Endereço + (no label) (sem etiqueta) @@ -118,2080 +143,5355 @@ AskPassphraseDialog + Passphrase Dialog Janela da Frase de Segurança + Enter passphrase Insira a frase de segurança + New passphrase Nova frase de frase de segurança + Repeat new passphrase Repita a nova frase de frase de segurança + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Insira a nova frase de segurança para a carteira. <br/> Por favor, utilize uma frase de segurança de <b>10 ou mais carateres aleatórios,</b> ou <b>oito ou mais palavras</b>. + Encrypt wallet Encriptar carteira + This operation needs your wallet passphrase to unlock the wallet. Esta operação precisa da sua frase de segurança da carteira para desbloquear a mesma. + Unlock wallet Desbloquear carteira + This operation needs your wallet passphrase to decrypt the wallet. Esta operação precisa da sua frase de segurança da carteira para desencriptar a mesma. + Decrypt wallet Desencriptar carteira + Change passphrase Alterar frase de segurança + Enter the old passphrase and new passphrase to the wallet. Insira a frase de segurança antiga e a nova frase de segurança para a carteira. + Confirm wallet encryption Confirmar encriptação da carteira + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Aviso: se encriptar a sua carteira e perder a sua frase de segurnça, <b>PERDERÁ TODOS OS SEUS RAVENS</b>! + Are you sure you wish to encrypt your wallet? Tem a certeza que deseja encriptar a sua carteira? + + Wallet encrypted Carteira encriptada + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 irá agora ser fechado para terminar o processo de encriptação. Recorde que a encriptação da sua carteira não protegerá totalmente os seus ravens de serem roubados por programas maliciosos que infectem o seu computador. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. IMPORTANTE: Qualquer cópia de segurança da carteira anterior deverá ser substituída com o novo ficheiro de carteira, agora encriptado. Por razões de segurança, cópias de segurança não encriptadas tornar-se-ão inúteis assim que começar a usar a nova carteira encriptada. + + + + Wallet encryption failed Encriptação da carteira falhou + Wallet encryption failed due to an internal error. Your wallet was not encrypted. A encriptação da carteira falhou devido a um erro interno. A carteira não foi encriptada. + + The supplied passphrases do not match. As frases de segurança fornecidas não coincidem. + Wallet unlock failed Desbloqueio da carteira falhou + + + The passphrase entered for the wallet decryption was incorrect. A frase de segurança introduzida para a desencriptação da carteira estava incorreta. + Wallet decryption failed Desencriptação da carteira falhou + Wallet passphrase was successfully changed. A frase de segurança da carteira foi alterada com sucesso. + + Warning: The Caps Lock key is on! Aviso: a tecla Caps Lock está ligada! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Máscara de Rede + + Asset Selection + - Banned Until - Banido Até + + Quantity: + - - - RavenGUI - Sign &message... - Assinar &mensagem... + + Bytes: + - Synchronizing with network... - A sincronizar com a rede... + + Amount: + - &Overview - &Resumo + + Dust: + - Node - + + Fee: + - Show general overview of wallet - Mostrar resumo geral da carteira + + After Fee: + - &Transactions - &Transações + + Change: + - Browse transaction history - Explorar histórico das transações + + (un)select all + - E&xit - Fec&har + + Tree mode + - Quit application - Sair da aplicação + + List mode + - &About %1 - &Sobre o %1 + + View assets that you have the ownership asset for + - Show information about %1 - Mostrar informação sobre o %1 + + View Administrator Assets + - About &Qt - Sobre o &Qt + + Asset + - Show information about Qt - Mostrar informação sobre o Qt + + Amount + - &Options... - &Opções... + + Received with label + - Modify configuration options for %1 - Modificar opções de configuração para %1 + + Received with address + - &Encrypt Wallet... - E&ncriptar Carteira... + + Date + - &Backup Wallet... - Efetuar &Cópia de Segurança da Carteira... + + Confirmations + - &Change Passphrase... - Alterar &Frase de Segurança... + + Confirmed + - &Sending addresses... - A &enviar os endereços... + + Copy address + - &Receiving addresses... - A &receber os endereços... + + Copy label + - Open &URI... - Abrir &URI... + + + Copy amount + - Click to disable network activity. - Clique para desativar a atividade de rede. + + Copy transaction ID + - Network activity disabled. - Atividade de rede desativada. + + Lock unspent + - Click to enable network activity again. - Clique para ativar novamente a atividade de rede. + + Unlock unspent + - Syncing Headers (%1%)... - A sincronizar cabeçalhos (%1%)... + + Copy quantity + - Reindexing blocks on disk... - A reindexar os blocos no disco... + + Copy fee + - Send coins to a Raven address - Enviar moedas para um endereço Raven + + Copy after fee + - Backup wallet to another location - Efetue uma cópia de segurança da carteira para outra localização + + Copy bytes + - Change the passphrase used for wallet encryption - Alterar a frase de segurança utilizada na encriptação da carteira + + Copy dust + - &Debug window - Janela de &Depuração + + Copy change + - Open debugging and diagnostic console - Abrir consola de diagnóstico e depuração + + (%1 locked) + - &Verify message... - &Verificar mensagem... + + yes + - Raven - Raven + + no + - Wallet - Carteira + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Enviar + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Receber + + + (no label) + - &Show / Hide - Mo&strar / Ocultar + + change from %1 (%2) + - Show or hide the main Window - Mostrar ou ocultar a janela principal + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Encriptar as chaves privadas que pertencem à sua carteira + + Name + - Sign messages with your Raven addresses to prove you own them - Assine as mensagens com os seus endereços Raven para provar que é o proprietário dos mesmos + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verifique mensagens para assegurar que foram assinadas com o endereço Raven especificado + + + Send Coins + - &File - &Ficheiro + + Asset Control Features + - &Settings - &Configurações + + Inputs... + - &Help - &Ajuda + + automatically selected + - Tabs toolbar - Barra de ferramentas dos separadores + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Solicitar pagamentos (gera códigos QR e raven: URIs) + + Quantity: + - Show the list of used sending addresses and labels - Mostrar a lista de rótulos e endereços de envio usados + + Bytes: + - Show the list of used receiving addresses and labels - Mostrar a lista de rótulos e endereços de receção usados + + Amount: + - Open a raven: URI or payment request - Abrir URI raven: ou pedido de pagamento + + Dust: + - &Command-line options - &Opções da linha de &comando - - - %n active connection(s) to Raven network - %n ligação ativa à rede Raven%n ligações ativas à rede Raven + + Fee: + - Indexing blocks on disk... - A indexar blocos no disco... + + After Fee: + - Processing blocks on disk... - A processar blocos no disco... + + Change: + - - Processed %n block(s) of transaction history. - Processado %n bloco do histórico de transações.Processados %n blocos do histórico de transações. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 em atraso + + Custom change address + - Last received block was generated %1 ago. - O último bloco recebido foi gerado há %1. + + Transaction Fee: + - Transactions after this will not yet be visible. - As transações depois de isto ainda não serão visíveis. + + Choose... + - Error - Erro + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Aviso + + Warning: Fee estimation is currently not possible. + - Information - Informação + + collapse fee-settings + - Up to date - Atualizado + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - Mostrar a mensagem de ajuda %1 para obter uma lista com possíveis opções a usar na linha de comandos. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - Cliente %1 + + per kilobyte + - Connecting to peers... - Conectando-se a pares... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Recuperando o atraso... + + (read the tooltip) + - Date: %1 - - Data: %1 - + + Recommended: + - Amount: %1 - - Valor: %1 - + + Custom: + - Type: %1 - - Tipo: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Etiqueta: %1 - + + Confirmation time target: + - Address: %1 - - Endereço: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Transação enviada + + Request Replace-By-Fee + - Incoming transaction - Transação recebida + + Confirm the send action + - HD key generation is <b>enabled</b> - Criação de chave HD está <b>ativada</b> + + S&end + - HD key generation is <b>disabled</b> - Criação de chave HD está <b>desativada</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - A carteira está <b>encriptada</b> e atualmente <b>desbloqueada</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - A carteira está <b>encriptada</b> e atualmente <b>bloqueada</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Ocorreu um erro fatal. O Raven não pode continuar com segurança e irá fechar. + + Add &Recipient + - - - CoinControlDialog - Coin Selection - Seleção de Moeda + + Balance: + - Quantity: - Quantidade: + + Copy quantity + - Bytes: - Bytes: + + Copy amount + - Amount: - Valor: + + Copy fee + - Fee: - Taxa: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Máscara de Rede + + + + Banned Until + Banido Até + + + + CoinControlDialog + + + Coin Selection + Seleção de Moeda + + + + Quantity: + Quantidade: + + + + Bytes: + Bytes: + + + + Amount: + Valor: + + + + Fee: + Taxa: + + + Dust: Lixo: + After Fee: Depois da taxa: + Change: Troco: + (un)select all (des)selecionar todos + Tree mode Modo de árvore + List mode Modo de lista + Amount Valor + Received with label Recebido com etiqueta + Received with address Recebido com endereço + Date Data + Confirmations Confirmações + Confirmed Confirmada + Copy address Copiar endereço + Copy label Copiar etiqueta + + Copy amount Copiar valor + Copy transaction ID Copiar Id. da transação + Lock unspent Bloquear não gasto + Unlock unspent Desbloquear não gasto + Copy quantity Copiar quantidade + Copy fee Copiar taxa + Copy after fee Copiar depois da taxa + Copy bytes Copiar bytes + Copy dust Copiar poeira + Copy change Copiar troco + (%1 locked) (%1 bloqueado) + yes sim + no não + This label turns red if any recipient receives an amount smaller than the current dust threshold. Esta etiqueta fica vermelha se qualquer recipiente receber uma quantia menor que o limite da poeira. + Can vary +/- %1 satoshi(s) per input. Pode variar +/- %1 satoshi(s) por input. + + (no label) (sem etiqueta) + change from %1 (%2) troco de %1 (%2) + (change) (troco) - EditAddressDialog + CreateAssetDialog - Edit Address - Editar Endereço + + Coin Control Features + - &Label - &Etiqueta + + Inputs... + - The label associated with this address list entry - A etiqueta associada com esta entrada da lista de endereços + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - O endereço associado com o esta entrada da lista de endereços. Isto só pode ser modificado para os endereços de envio. + + Insufficient funds! + - &Address - E&ndereço + + + Quantity: + - New receiving address - Novo endereço de depósito + + Bytes: + - New sending address - Novo endereço de envio + + Amount: + - Edit receiving address - Editar o endereço de depósito + + Dust: + - Edit sending address - Editar o endereço de envio + + Fee: + - The entered address "%1" is not a valid Raven address. - O endereço introduzido "%1" não é um endereço raven válido. + + After Fee: + - The entered address "%1" is already in the address book. - O endereço introduzido "%1" já se encontra no livro de endereços. + + Change: + - Could not unlock wallet. - Não foi possível desbloquear a carteira. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - A criação da nova chave falhou. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Será criada uma nova diretoria de dados. + + Name: + - name - nome + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - A pasta já existe. Adicione %1 se pretender criar aqui uma nova pasta. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - O caminho já existe, e este não é uma pasta. + + Check Availabilty + - Cannot create data directory here. - Não é possível criar aqui uma diretoria de dados. + + Address: + - - - HelpMessageDialog - version - versão + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Sobre o %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Opções da linha de comando + + Warning: + - Usage: - Utilização: + + The number of assets that will be created + - command-line options - opções da linha de comando + + Units: + - UI Options: - Opções da IU: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Escolher a pasta de dados no arranque (predefinição: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Definir idioma, por exemplo "pt_PT" (predefinição: idioma do sistema) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Iniciar minimizado + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Definir certificados de raiz SSL para pedidos de pagamento (predefinição: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Mostrar o ecrã de abertura no arranque (predefinição: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Redefinir todas as definições alteradas na GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Bem-vindo + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Bem-vindo ao %1. + + ERROR TEXT + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - O %1 irá transferir e armazenar uma cópia da blockchain. Pelo menos %2GB serão armazenados neste diretório, sendo que o valor irá crescer ao longo do tempo. A carteira também será armazenada neste mesmo diretório. + + Transaction Fee: + - Use the default data directory - Utilizar a pasta de dados predefinida + + Choose... + - Use a custom data directory: - Utilizar uma pasta de dados personalizada: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error: Specified data directory "%1" cannot be created. - Erro: não pode ser criada a pasta de dados especificada como "%1. + + Warning: Fee estimation is currently not possible. + - Error - Erro + + collapse fee-settings + - - %n GB of free space available - %n GB de espaço livre disponível%n GB de espaço livre disponível + + + Hide + - - (of %n GB needed) - (de %n GB necessários)(de %n GB necessário) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Formulário + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Transações recentes podem não ser visíveis por agora, portanto o saldo da sua carteira pode estar incorreto. Esta informação será corrigida quando a sua carteira acabar de sincronizar com a rede, como está explicado em baixo. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Tentar enviar ravens que estão afetadas por transações ainda não exibidas não será aceite pela rede. + + (read the tooltip) + - Number of blocks left - Número de blocos restantes + + Recommended: + - Unknown... - Desconhecido... + + C&ustom: + - Last block time - Data do último bloco + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - Progresso + + Confirmation time target: + - Progress increase per hour - Aumento horário do progresso + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - a calcular... + + Request Replace-By-Fee + - Estimated time left until synced - tempo restante estimado até à sincronização + + Create Asset + - Hide - Ocultar + + Clear + - Unknown. Syncing Headers (%1)... - Desconhecido. Sincronização de Cabeçalhos (%1)... + + Balance: + - - - OpenURIDialog - Open URI - Abir URI + + 123.456 RVN + - Open payment request from URI or file - Abrir pedido de pagamento de um URI ou ficheiro + + Copy quantity + - URI: - URI: + + Copy amount + - Select payment request file - Selecione o ficheiro de pedido de pagamento + + Copy fee + - Select payment request file to open - Selecione o ficheiro de pedido de pagamento para abrir + + Copy after fee + - - - OptionsDialog - Options - Opções + + Copy bytes + - &Main - &Principal + + Copy dust + - Automatically start %1 after logging in to the system. - Iniciar automaticamente o %1 depois de iniciar a sessão no sistema. + + Copy change + - &Start %1 on system login - &Iniciar o %1 no início de sessão do sistema + + %1 (%2 blocks) + - Size of &database cache - Tamanho da cache da base de &dados + + Main Asset + - MB - MB + + Sub Asset + - Number of script &verification threads - Número de processos de &verificação de scripts + + Unique Asset + - Accept connections from outside - Aceitar ligações externas + + Messaging Channel Asset + - Allow incoming connections - Permitir ligação a receber + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Endereço de IP do proxy (exemplo, IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimize ao invés de sair da aplicação quando a janela é fechada. Com esta opção selecionada, a aplicação apenas será encerrada quando escolher Sair da aplicação no menú. + + Restricted Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URLs de outrem (ex. um explorador de blocos) que aparece no separador de transações como itens do menu de contexto. -%s do URL é substituído por hash de transação. Vários URLs são separados por barra vertical |. + + Asset Type + - Third party transaction URLs - URLs de transação de terceiros + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Active command-line options that override above options: - Ativar as opções da linha de comando que se sobrepõem às opções acima: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Reset all client options to default. - Repor todas as opções de cliente para a predefinição. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Reset Options - &Repor Opções + + + + Warning: Invalid Raven address + - &Network - &Rede + + Warning: Restricted Assets Reissuance requires an address + - (0 = auto, <0 = leave that many cores free) - (0 = automático, <0 = deixar essa quantidade de núcleos livre) + + Valid Asset + - W&allet - C&arteira + + Invalid: Asset name already in use + - Expert - Técnicos + + Error: Asset Database not in sync + - Enable coin &control features - Ativar as funcionalidades de &controlo de moedas + + + %1 to %2 + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Se desativar o gasto de troco não confirmado, o troco de uma transação não pode ser utilizado até que essa transação tenha pelo menos uma confirmação. Isto também afeta o cálculo do seu saldo. + + Are you sure you want to send? + - &Spend unconfirmed change - &Gastar troco não confirmado + + added as transaction fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Abrir a porta do cliente raven automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado. + + Total Amount %1 + - Map port using &UPnP - Mapear porta, utilizando &UPnP + + or + - Connect to the Raven network through a SOCKS5 proxy. - Conectar à rede da Raven através dum proxy SOCLS5. + + Confirm send assets + - &Connect through SOCKS5 proxy (default proxy): - &Ligar através dum proxy SOCKS5 (proxy por defeito): + + Invalid: + - Proxy &IP: - &IP do proxy: + + Copy + - &Port: - &Porto: + + Transaction ID Copied + - Port of the proxy (e.g. 9050) - Porto do proxy (p.ex. 9050) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Usado para alcançar nós via: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Mostra, caso o proxy SOCKS5 predefinido submetido seja usado para alcançar nós através deste tipo de rede. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Ligar à rede Raven através de um proxy SOCKS5 separado para utilizar os serviços ocultos do Tor. + + Edit Address + Editar Endereço - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Utilizar um proxy SOCKS5 separado para alcançar nós via serviços ocultos do Tor: + + &Label + &Etiqueta - &Window - &Janela + + The label associated with this address list entry + A etiqueta associada com esta entrada da lista de endereços - &Hide the icon from the system tray. - &Ocultar o ícone da bandeja do sistema. + + The address associated with this address list entry. This can only be modified for sending addresses. + O endereço associado com o esta entrada da lista de endereços. Isto só pode ser modificado para os endereços de envio. - Hide tray icon - Ocultar ícone da bandeja + + &Address + E&ndereço - Show only a tray icon after minimizing the window. - Apenas mostrar o ícone da bandeja de sistema após minimizar a janela. + + New receiving address + Novo endereço de depósito - &Minimize to the tray instead of the taskbar - &Minimizar para a bandeja de sistema e não para a barra de ferramentas + + New sending address + Novo endereço de envio - M&inimize on close - M&inimizar ao fechar + + Edit receiving address + Editar o endereço de depósito - &Display - &Visualização + + Edit sending address + Editar o endereço de envio - User Interface &language: - &Linguagem da interface de utilizador: + + The entered address "%1" is not a valid Raven address. + O endereço introduzido "%1" não é um endereço raven válido. - The user interface language can be set here. This setting will take effect after restarting %1. - A linguagem da interface do utilizador pode ser definida aqui. Esta definição entrará em efeito após reiniciar %1. + + The entered address "%1" is already in the address book. + O endereço introduzido "%1" já se encontra no livro de endereços. - &Unit to show amounts in: - &Unidade para mostrar quantias: + + Could not unlock wallet. + Não foi possível desbloquear a carteira. - Choose the default subdivision unit to show in the interface and when sending coins. - Escolha a unidade da subdivisão predefinida para ser mostrada na interface e quando enviar as moedas. + + New key generation failed. + A criação da nova chave falhou. + + + FreespaceChecker - Whether to show coin control features or not. - Escolha se deve mostrar as funcionalidades de controlo de moedas ou não. + + A new data directory will be created. + Será criada uma nova diretoria de dados. - &OK - &OK + + name + nome - &Cancel - &Cancelar + + Directory already exists. Add %1 if you intend to create a new directory here. + A pasta já existe. Adicione %1 se pretender criar aqui uma nova pasta. - default - predefinição + + Path already exists, and is not a directory. + O caminho já existe, e este não é uma pasta. - none - nenhum + + Cannot create data directory here. + Não é possível criar aqui uma diretoria de dados. + + + FreezeAddress - Confirm options reset - Confirme a reposição das opções + + Frame + - Client restart required to activate changes. - É necessário reiniciar o cliente para ativar as alterações. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - O cliente será desligado. Deseja continuar? + + Address: + - This change would require a client restart. - Esta alteração obrigará a um reinício do cliente. + + Custom Change Address + - The supplied proxy address is invalid. - O endereço de proxy introduzido é inválido. + + IPFS / Hash: + - - - OverviewPage - Form - Formulário + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Raven depois de estabelecer ligação, mas este processo ainda não está completo. + + Global Options + - Watch-only: - Modo-verificação: + + Free&ze trading on this address + - Available: - Disponível: + + Unfreeze tradin&g on this address + - Your current spendable balance - O seu saldo (gastável) disponível + + Freeze all &trading for the selected restricted asset + - Pending: - Pendente: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Total de transações por confirmar, que ainda não estão contabilizadas no seu saldo gastável + + Check + - Immature: - Imaturo: + + Clear + - Mined balance that has not yet matured - O saldo minado ainda não amadureceu + + Submit + - Balances - Balanços + + Data has been validated, You can now submit the restriction transaction + - Total: - Total: + + Must have a restricted asset selected + - Your current total balance - O seu saldo total actual + + Address is already frozen + - Your current balance in watch-only addresses - O seu balanço atual em endereços de apenas observação + + Address is not frozen + - Spendable: - Dispensável: + + Restricted asset is already frozen globally + - Recent transactions - transações recentes + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Transações não confirmadas para endereços modo-verificação + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Saldo minado ainda não disponivél de endereços modo-verificação + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Saldo disponivél em enderços modo-verificação + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Erro do pedido de pagamento + + version + versão - Cannot start raven: click-to-pay handler - Impossível iniciar o controlador de raven: click-to-pay + + + (%1-bit) + (%1-bit) - URI handling - Manuseamento de URI + + About %1 + Sobre o %1 - Payment request fetch URL is invalid: %1 - O URL do pedido de pagamento é inválido: %1 + + Command-line options + Opções da linha de comando - Invalid payment address %1 - Endereço de pagamento inválido %1 + + Usage: + Utilização: - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI não foi lido correctamente! Isto pode ser causado por um endereço Raven inválido ou por parâmetros URI malformados. - + + command-line options + opções da linha de comando + + + + UI Options: + Opções da IU: + + + + Choose data directory on startup (default: %u) + Escolher a pasta de dados no arranque (predefinição: %u) + + + + Set language, for example "de_DE" (default: system locale) + Definir idioma, por exemplo "pt_PT" (predefinição: idioma do sistema) + + + + Start minimized + Iniciar minimizado + + + + Set SSL root certificates for payment request (default: -system-) + Definir certificados de raiz SSL para pedidos de pagamento (predefinição: -system-) + + + + Show splash screen on startup (default: %u) + Mostrar o ecrã de abertura no arranque (predefinição: %u) + + + + Reset all settings changed in the GUI + Redefinir todas as definições alteradas na GUI + + + + Intro + + + Welcome + Bem-vindo + + + + Welcome to %1. + Bem-vindo ao %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Utilizar a pasta de dados predefinida + + + + Use a custom data directory: + Utilizar uma pasta de dados personalizada: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Erro: não pode ser criada a pasta de dados especificada como "%1. + + + + Error + Erro + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulário + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Transações recentes podem não ser visíveis por agora, portanto o saldo da sua carteira pode estar incorreto. Esta informação será corrigida quando a sua carteira acabar de sincronizar com a rede, como está explicado em baixo. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Tentar enviar ravens que estão afetadas por transações ainda não exibidas não será aceite pela rede. + + + + Number of blocks left + Número de blocos restantes + + + + + + Unknown... + Desconhecido... + + + + Last block time + Data do último bloco + + + + Progress + Progresso + + + + Progress increase per hour + Aumento horário do progresso + + + + + calculating... + a calcular... + + + + Estimated time left until synced + tempo restante estimado até à sincronização + + + + Hide + Ocultar + + + + Unknown. Syncing Headers (%1)... + Desconhecido. Sincronização de Cabeçalhos (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Abir URI + + + + Open payment request from URI or file + Abrir pedido de pagamento de um URI ou ficheiro + + + + URI: + URI: + + + + Select payment request file + Selecione o ficheiro de pedido de pagamento + + + + Select payment request file to open + Selecione o ficheiro de pedido de pagamento para abrir + + + + OptionsDialog + + + Options + Opções + + + + &Main + &Principal + + + + Automatically start %1 after logging in to the system. + Iniciar automaticamente o %1 depois de iniciar a sessão no sistema. + + + + &Start %1 on system login + &Iniciar o %1 no início de sessão do sistema + + + + Size of &database cache + Tamanho da cache da base de &dados + + + + MB + MB + + + + Number of script &verification threads + Número de processos de &verificação de scripts + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Endereço de IP do proxy (exemplo, IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimize ao invés de sair da aplicação quando a janela é fechada. Com esta opção selecionada, a aplicação apenas será encerrada quando escolher Sair da aplicação no menú. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URLs de outrem (ex. um explorador de blocos) que aparece no separador de transações como itens do menu de contexto. +%s do URL é substituído por hash de transação. Vários URLs são separados por barra vertical |. + + + + Active command-line options that override above options: + Ativar as opções da linha de comando que se sobrepõem às opções acima: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Repor todas as opções de cliente para a predefinição. + + + + &Reset Options + &Repor Opções + + + + &Network + &Rede + + + + (0 = auto, <0 = leave that many cores free) + (0 = automático, <0 = deixar essa quantidade de núcleos livre) + + + + W&allet + C&arteira + + + + Expert + Técnicos + + + + Enable coin &control features + Ativar as funcionalidades de &controlo de moedas + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Se desativar o gasto de troco não confirmado, o troco de uma transação não pode ser utilizado até que essa transação tenha pelo menos uma confirmação. Isto também afeta o cálculo do seu saldo. + + + + &Spend unconfirmed change + &Gastar troco não confirmado + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Abrir a porta do cliente raven automaticamente no seu router. Isto apenas funciona se o seu router suportar UPnP e este se encontrar ligado. + + + + Map port using &UPnP + Mapear porta, utilizando &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Conectar à rede da Raven através dum proxy SOCLS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Ligar através dum proxy SOCKS5 (proxy por defeito): + + + + + Proxy &IP: + &IP do proxy: + + + + + &Port: + &Porto: + + + + + Port of the proxy (e.g. 9050) + Porto do proxy (p.ex. 9050) + + + + Used for reaching peers via: + Usado para alcançar nós via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Ligar à rede Raven através de um proxy SOCKS5 separado para utilizar os serviços ocultos do Tor. + + + + &Window + &Janela + + + + Show only a tray icon after minimizing the window. + Apenas mostrar o ícone da bandeja de sistema após minimizar a janela. + + + + &Minimize to the tray instead of the taskbar + &Minimizar para a bandeja de sistema e não para a barra de ferramentas + + + + M&inimize on close + M&inimizar ao fechar + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Visualização + + + + User Interface &language: + &Linguagem da interface de utilizador: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + A linguagem da interface do utilizador pode ser definida aqui. Esta definição entrará em efeito após reiniciar %1. + + + + &Unit to show amounts in: + &Unidade para mostrar quantias: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Escolha a unidade da subdivisão predefinida para ser mostrada na interface e quando enviar as moedas. + + + + Whether to show coin control features or not. + Escolha se deve mostrar as funcionalidades de controlo de moedas ou não. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Cancelar + + + + default + predefinição + + + + none + nenhum + + + + Confirm options reset + Confirme a reposição das opções + + + + + Client restart required to activate changes. + É necessário reiniciar o cliente para ativar as alterações. + + + + Client will be shut down. Do you want to proceed? + O cliente será desligado. Deseja continuar? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Esta alteração obrigará a um reinício do cliente. + + + + The supplied proxy address is invalid. + O endereço de proxy introduzido é inválido. + + + + OverviewPage + + + Form + Formulário + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + A informação mostrada poderá estar desatualizada. A sua carteira sincroniza automaticamente com a rede Raven depois de estabelecer ligação, mas este processo ainda não está completo. + + + + Watch-only: + Modo-verificação: + + + + Available: + Disponível: + + + + Your current spendable balance + O seu saldo (gastável) disponível + + + + Pending: + Pendente: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Total de transações por confirmar, que ainda não estão contabilizadas no seu saldo gastável + + + + Immature: + Imaturo: + + + + Mined balance that has not yet matured + O saldo minado ainda não amadureceu + + + + Total: + Total: + + + + Your current total balance + O seu saldo total actual + + + + RVN Balances + + + + + Your current balance in watch-only addresses + O seu balanço atual em endereços de apenas observação + + + + Spendable: + Dispensável: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + transações recentes + + + + Unconfirmed transactions to watch-only addresses + Transações não confirmadas para endereços modo-verificação + + + + Mined balance in watch-only addresses that has not yet matured + Saldo minado ainda não disponivél de endereços modo-verificação + + + + Current total balance in watch-only addresses + Saldo disponivél em enderços modo-verificação + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Erro do pedido de pagamento + + + + Cannot start raven: click-to-pay handler + Impossível iniciar o controlador de raven: click-to-pay + + + + + + URI handling + Manuseamento de URI + + + + Payment request fetch URL is invalid: %1 + O URL do pedido de pagamento é inválido: %1 + + + + Invalid payment address %1 + Endereço de pagamento inválido %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI não foi lido correctamente! Isto pode ser causado por um endereço Raven inválido ou por parâmetros URI malformados. + + + + Payment request file handling + Controlo de pedidos de pagamento. + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + O ficheiro de pedido de pagamento não pôde ser lido! Isto pode ter sido causado por um ficheiro de pedido de pagamento inválido. + + + + + + + + + Payment request rejected + Pedido de pagamento rejeitado + + + + Payment request network doesn't match client network. + Rede de requisição de pagamento não corresponde com a rede do cliente. + + + + Payment request expired. + Pedido de pagamento expirado. + + + + Payment request is not initialized. + O pedido de pagamento não foi inicializado. + + + + Unverified payment requests to custom payment scripts are unsupported. + Pedidos de pagamento não-verificados para scripts de pagamento personalizados não são suportados. + + + + + Invalid payment request. + Pedido de pagamento inválido. + + + + Requested payment amount of %1 is too small (considered dust). + Quantia solicitada para pagamento de %1 é muito pequena (considerada "pó"). + + + + Refund from %1 + Reembolso de %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Pedido de pagamento %1 é demasiado grande (%2 bytes, permitido %3 bytes). + + + + Error communicating with %1: %2 + Erro ao comunicar com %1: %2 + + + + Payment request cannot be parsed! + O pedido de pagamento não pode ser lido ou processado! + + + + Bad response from server %1 + Má resposta do servidor %1 + + + + Network request error + Erro de pedido de rede + + + + Payment acknowledged + Pagamento confirmado + + + + PeerTableModel + + + User Agent + Agente Usuário + + + + Node/Service + Nó/Serviço + + + + NodeId + NodeId + + + + Ping + Latência + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Quantia + + + + Enter a Raven address (e.g. %1) + Entre um endereço Raven (ex. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Nenhum + + + + N/A + N/D + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 e %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ainda não foi fechado em segurança... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Erro: Pasta de dados especificada "%1" não existe. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Erro: não é possível analisar o ficheiro de configuração: %1. Utilize apenas a sintaxe key=value. + + + + Error: %1 + Erro: %1 + + + + QRImageWidget + + + &Save Image... + &Guardar Imagem... + + + + &Copy Image + &Copiar Imagem + + + + Save QR Code + Guardar o código QR + + + + PNG Image (*.png) + Imagem PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/D + + + + Client version + Versão do Cliente + + + + &Information + &Informação + + + + Debug window + Janela de depuração + + + + General + Geral + + + + Using BerkeleyDB version + Versão BerkeleyDB em uso + + + + Datadir + Datadir + + + + Startup time + Hora de Arranque + + + + Network + Rede + + + + Name + Nome + + + + Number of connections + Número de ligações + + + + Block chain + Cadeia de blocos + + + + Current number of blocks + Número actual de blocos + + + + Memory Pool + Banco de Memória + + + + Current number of transactions + Número actual de transacções + + + + Memory usage + Utilização de memória + + + + &Reset + + + + + + Received + Recebido + + + + + Sent + Enviado + + + + &Peers + &Conexão + + + + Banned peers + Nós banidos + + + + + + Select a peer to view detailed information. + Selecione uma conexação para ver informação em detalhe. + + + + Whitelisted + Permitido por si + + + + Direction + Direcção + + + + Version + Versão + + + + Starting Block + Bloco Inicial + + + + Synced Headers + Cabeçalhos Sincronizados + + + + Synced Blocks + Blocos Sincronizados + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agente Usuário + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Abrir o ficheiro de registo de depuração %1 da pasta de dados actual. Isto pode demorar alguns segundos para ficheiros de registo maiores. + + + + Decrease font size + Diminuir tamanho da letra + + + + Increase font size + Aumentar tamanho da letra + + + + Services + Serviços + + + + Ban Score + Resultado da Suspensão + + + + Connection Time + Tempo de Ligação + + + + Last Send + Ultimo Envio + + + + Last Receive + Ultimo Recebimento + + + + Ping Time + Tempo de Latência + + + + The duration of a currently outstanding ping. + A duração de um ping atualmente pendente. + + + + Ping Wait + Espera do Ping + + + + Min Ping + Latência mínima + + + + Time Offset + Fuso Horário + + + + Last block time + Data do último bloco + + + + &Open + &Abrir + + + + &Console + &Consola + + + + &Network Traffic + &Tráfego de Rede + + + + Totals + Totais + + + + In: + Entrada: + + + + Out: + Saída: + + + + Debug log file + Ficheiro de registo de depuração + + + + Clear console + Limpar consola + + + + 1 &hour + 1 &hora + + + + 1 &day + 1 &dia + + + + 1 &week + 1 &semana + + + + 1 &year + 1 &ano + + + + &Disconnect + + + + + + + + Ban for + Banir para + + + + &Unban + &Desbanir + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Bem-vindo à consola RPC da %1. + + + + Type <b>help</b> for an overview of available commands. + Insira <b>help</b> para visualizar os comandos disponíveis. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Atividade de rede desativada + + + + (node id: %1) + (id nó: %1) + + + + via %1 + via %1 + + + + + never + nunca + + + + Inbound + Entrada + + + + Outbound + Saída + + + + Yes + Sim + + + + No + Não + + + + + Unknown + Desconhecido + + + + RavenGUI + + + Sign &message... + Assinar &mensagem... + + + + Synchronizing with network... + A sincronizar com a rede... + + + + &Overview + &Resumo + + + + Node + + + + + Show general overview of wallet + Mostrar resumo geral da carteira + + + + &Transactions + &Transações + + + + Browse transaction history + Explorar histórico das transações + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Fec&har + + + + Quit application + Sair da aplicação + + + + &About %1 + &Sobre o %1 + + + + Show information about %1 + Mostrar informação sobre o %1 + + + + About &Qt + Sobre o &Qt + + + + Show information about Qt + Mostrar informação sobre o Qt + + + + &Options... + &Opções... + + + + Modify configuration options for %1 + Modificar opções de configuração para %1 + + + + &Encrypt Wallet... + E&ncriptar Carteira... + + + + &Backup Wallet... + Efetuar &Cópia de Segurança da Carteira... + + + + &Change Passphrase... + Alterar &Frase de Segurança... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + A &enviar os endereços... + + + + &Receiving addresses... + A &receber os endereços... + + + + Open &URI... + Abrir &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Clique para desativar a atividade de rede. + + + + Network activity disabled. + Atividade de rede desativada. + + + + Click to enable network activity again. + Clique para ativar novamente a atividade de rede. + + + + Syncing Headers (%1%)... + A sincronizar cabeçalhos (%1%)... + + + + Reindexing blocks on disk... + A reindexar os blocos no disco... + + + + Send coins to a Raven address + Enviar moedas para um endereço Raven + + + + Backup wallet to another location + Efetue uma cópia de segurança da carteira para outra localização + + + + Change the passphrase used for wallet encryption + Alterar a frase de segurança utilizada na encriptação da carteira + + + + Open debugging and diagnostic console + Abrir consola de diagnóstico e depuração + + + + &Verify message... + &Verificar mensagem... + + + + Raven + Raven + + + + Wallet + Carteira + + + + &Send + &Enviar + + + + &Receive + &Receber + + + + &Show / Hide + Mo&strar / Ocultar + + + + Show or hide the main Window + Mostrar ou ocultar a janela principal + + + + Encrypt the private keys that belong to your wallet + Encriptar as chaves privadas que pertencem à sua carteira + + + + Sign messages with your Raven addresses to prove you own them + Assine as mensagens com os seus endereços Raven para provar que é o proprietário dos mesmos + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifique mensagens para assegurar que foram assinadas com o endereço Raven especificado + + + + &File + &Ficheiro + + + + &Help + &Ajuda + + + + Request payments (generates QR codes and raven: URIs) + Solicitar pagamentos (gera códigos QR e raven: URIs) + + + + Show the list of used sending addresses and labels + Mostrar a lista de rótulos e endereços de envio usados + + + + Show the list of used receiving addresses and labels + Mostrar a lista de rótulos e endereços de receção usados + + + + Open a raven: URI or payment request + Abrir URI raven: ou pedido de pagamento + + + + &Command-line options + &Opções da linha de &comando + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + A indexar blocos no disco... + + + + Processing blocks on disk... + A processar blocos no disco... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 em atraso + + + + Last received block was generated %1 ago. + O último bloco recebido foi gerado há %1. + + + + Transactions after this will not yet be visible. + As transações depois de isto ainda não serão visíveis. + + + + Error + Erro + + + + Warning + Aviso + + + + Information + Informação + + + + Up to date + Atualizado + + + + Show the %1 help message to get a list with possible Raven command-line options + Mostrar a mensagem de ajuda %1 para obter uma lista com possíveis opções a usar na linha de comandos. + + + + %1 client + Cliente %1 + + + + Connecting to peers... + Conectando-se a pares... + + + + Catching up... + Recuperando o atraso... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Valor: %1 + + + + + Type: %1 + + Tipo: %1 + + + + + Label: %1 + + Etiqueta: %1 + + + + + Address: %1 + + Endereço: %1 + + + + + Sent transaction + Transação enviada + + + + Incoming transaction + Transação recebida + + + + + Assets not yet active + + - Payment request file handling - Controlo de pedidos de pagamento. + + Restricted Assets not yet active + - Payment request file cannot be read! This can be caused by an invalid payment request file. - O ficheiro de pedido de pagamento não pôde ser lido! Isto pode ter sido causado por um ficheiro de pedido de pagamento inválido. + + HD key generation is <b>enabled</b> + Criação de chave HD está <b>ativada</b> - Payment request rejected - Pedido de pagamento rejeitado + + HD key generation is <b>disabled</b> + Criação de chave HD está <b>desativada</b> - Payment request network doesn't match client network. - Rede de requisição de pagamento não corresponde com a rede do cliente. + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + A carteira está <b>encriptada</b> e atualmente <b>desbloqueada</b> - Payment request expired. - Pedido de pagamento expirado. + + Wallet is <b>encrypted</b> and currently <b>locked</b> + A carteira está <b>encriptada</b> e atualmente <b>bloqueada</b> - Payment request is not initialized. - O pedido de pagamento não foi inicializado. + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ocorreu um erro fatal. O Raven não pode continuar com segurança e irá fechar. + + + ReceiveCoinsDialog - Unverified payment requests to custom payment scripts are unsupported. - Pedidos de pagamento não-verificados para scripts de pagamento personalizados não são suportados. + + &Amount: + &Quantia: - Invalid payment request. - Pedido de pagamento inválido. + + &Label: + &Rótulo: - Requested payment amount of %1 is too small (considered dust). - Quantia solicitada para pagamento de %1 é muito pequena (considerada "pó"). + + &Message: + &Mensagem: - Refund from %1 - Reembolso de %1 + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Reutilize um dos endereços de entrada usados anteriormente. Reutilizar endereços pode levar a riscos de segurança e de privacidade. Não use esta função a não ser que esteja a gerar novamente uma requisição de pagamento feita anteriormente. - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Pedido de pagamento %1 é demasiado grande (%2 bytes, permitido %3 bytes). + + R&euse an existing receiving address (not recommended) + Reutilizar um endereço de receção existente (não recomendado) - Error communicating with %1: %2 - Erro ao comunicar com %1: %2 + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Raven. - Payment request cannot be parsed! - O pedido de pagamento não pode ser lido ou processado! + + + An optional label to associate with the new receiving address. + Um rótulo opcional a associar ao novo endereço de receção. - Bad response from server %1 - Má resposta do servidor %1 + + Use this form to request payments. All fields are <b>optional</b>. + Utilize este formulário para solicitar pagamentos. Todos os campos são <b>opcionais</b>. - Network request error - Erro de pedido de rede + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Uma quantia opcional a solicitar. Deixe em branco ou zero para não solicitar uma quantidade específica. - Payment acknowledged - Pagamento confirmado + + Clear all fields of the form. + Limpar todos os campos do formulário. + + + + Clear + Limpar + + + + Requested payments history + Histórico de pagamentos solicitados + + + + &Request payment + &Requisitar Pagamento + + + + Show the selected request (does the same as double clicking an entry) + Mostrar o pedido seleccionado (faz o mesmo que clicar 2 vezes numa entrada) + + + + Show + Mostrar + + + + Remove the selected entries from the list + Remover as entradas seleccionadas da lista + + + + Remove + Remover + + + + Copy URI + Copiar URI + + + + Copy label + Copiar etiqueta + + + + Copy message + Copiar mensagem + + + + Copy amount + Copiar valor - PeerTableModel + ReceiveRequestDialog - User Agent - Agente Usuário + + QR Code + Código QR - Node/Service - Nó/Serviço + + Copy &URI + Copiar &URI - NodeId - NodeId + + Copy &Address + Copi&ar Endereço - Ping - Latência + + &Save Image... + &Salvar Imagem... + + + + Request payment to %1 + Requisitar Pagamento para %1 + + + + Payment information + Informação de Pagamento + + + + URI + URI + + + + Address + Endereço + + + + Amount + Valor + + + + Label + Etiqueta + + + + Message + Mensagem + + + + Resulting URI too long, try to reduce the text for label / message. + URI resultante muito longo. Tente reduzir o texto do rótulo / mensagem. + + + + Error encoding URI into QR Code. + Erro ao codificar URI em Código QR. - QObject + RecentRequestsTableModel - Amount - Quantia + + Date + Data - Enter a Raven address (e.g. %1) - Entre um endereço Raven (ex. %1) + + Label + Etiqueta - %1 d - %1 d + + Message + Mensagem - %1 h - %1 h + + (no label) + (sem etiqueta) - %1 m - %1 m + + (no message) + (sem mensagem) - %1 s - %1 s + + (no amount requested) + (sem quantia pedida) - None - Nenhum + + Requested + Solicitado + + + + ReissueAssetDialog + + + Coin Control Features + - N/A - N/D + + Inputs... + - %1 ms - %1 ms + + automatically selected + - - %n second(s) - %n segundo%n segundos + + + Insufficient funds! + - - %n minute(s) - %n minuto%n minutos + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n hora%n horas + + + Reissuable + - - %n day(s) - %n dia%n dias + + + Change IPFS/Txid Hash + - - %n week(s) - %n semana%n semanas + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 e %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n anos%n anos + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ainda não foi fechado em segurança... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Erro: Pasta de dados especificada "%1" não existe. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Erro: não é possível analisar o ficheiro de configuração: %1. Utilize apenas a sintaxe key=value. + + Transaction Fee: + - Error: %1 - Erro: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Guardar Imagem... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - &Copiar Imagem + + Warning: Fee estimation is currently not possible. + - Save QR Code - Guardar o código QR + + collapse fee-settings + - PNG Image (*.png) - Imagem PNG (*.png) + + Hide + - - - RPCConsole - N/A - N/D + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Versão do Cliente + + per kilobyte + - &Information - &Informação + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Janela de depuração + + (read the tooltip) + - General - Geral + + Recommended: + - Using BerkeleyDB version - Versão BerkeleyDB em uso + + Cus&tom: + - Datadir - Datadir + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Hora de Arranque + + Confirmation time target: + - Network - Rede + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Nome + + Request Replace-By-Fee + - Number of connections - Número de ligações + + Clear + - Block chain - Cadeia de blocos + + Balance: + - Current number of blocks - Número actual de blocos + + 123.456 RVN + - Memory Pool - Banco de Memória + + Copy quantity + - Current number of transactions - Número actual de transacções + + Copy amount + - Memory usage - Utilização de memória + + Copy fee + - Received - Recebido + + Copy after fee + - Sent - Enviado + + Copy bytes + - &Peers - &Conexão + + Copy dust + - Banned peers - Nós banidos + + Copy change + - Select a peer to view detailed information. - Selecione uma conexação para ver informação em detalhe. + + Select an asset to reissue.. + - Whitelisted - Permitido por si + + Select the asset you want to reissue. + - Direction - Direcção + + %1 (%2 blocks) + - Version - Versão + + Cost + - Starting Block - Bloco Inicial + + Asset data couldn't be found + - Synced Headers - Cabeçalhos Sincronizados + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Blocos Sincronizados + + Invalid Raven Destination Address + - User Agent - Agente Usuário + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Abrir o ficheiro de registo de depuração %1 da pasta de dados actual. Isto pode demorar alguns segundos para ficheiros de registo maiores. + + + Warning: Invalid Raven address + - Decrease font size - Diminuir tamanho da letra + + + Yes + - Increase font size - Aumentar tamanho da letra + + No + - Services - Serviços + + + Name + - Ban Score - Resultado da Suspensão + + + Total Quantity + - Connection Time - Tempo de Ligação + + + Units + - Last Send - Ultimo Envio + + + Can Reisssue + - Last Receive - Ultimo Recebimento + + + + IPFS Hash + - Ping Time - Tempo de Latência + + + + Txid Hash + - The duration of a currently outstanding ping. - A duração de um ping atualmente pendente. + + Verifier String + - Ping Wait - Espera do Ping + + + Current Verifier String + - Min Ping - Latência mínima + + Please select a asset from the menu to display the assets current settings + - Time Offset - Fuso Horário + + Please select a asset from the menu to display the assets updated settings + - Last block time - Data do último bloco + + Current Quantity + - &Open - &Abrir + + Current Units + - &Console - &Consola + + Can Reissue + - &Network Traffic - &Tráfego de Rede + + Unknown data hash type + - &Clear - &Limpar + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Totais + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Entrada: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Saída: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Ficheiro de registo de depuração + + + %1 to %2 + - Clear console - Limpar consola + + Are you sure you want to send? + - 1 &hour - 1 &hora + + added as transaction fee + - 1 &day - 1 &dia + + Total Amount %1 + - 1 &week - 1 &semana + + or + - 1 &year - 1 &ano + + Confirm reissue assets + - Ban for - Banir para + + Copy + - &Unban - &Desbanir + + Transaction ID Copied + - Welcome to the %1 RPC console. - Bem-vindo à consola RPC da %1. + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Use as setas para cima e para baixo para navegar no histórico e <b>Ctrl-L</b> para limpar o ecrã. + + Warning: Unknown change address + - Type <b>help</b> for an overview of available commands. - Insira <b>help</b> para visualizar os comandos disponíveis. + + Confirm custom change address + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - AVISO: Burlões têm estado ativos, tentando que utilizadores escrevam comandos aqui para lhes roubar as carteiras. Não utilize esta consola sem perceber perfeitamente as ramificações de um comando. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Network activity disabled - Atividade de rede desativada + + (no label) + - %1 B - %1 B + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 KB - %1 KB + + Send Coins + - %1 MB - %1 MB + + Asset Balances + - %1 GB - %1 GB + + + Search + - (node id: %1) - (id nó: %1) + + Address List + - via %1 - via %1 + + Balance: + - never - nunca + + + Failed to create a change address + - Inbound - Entrada + + Failed to generate the correct transaction. Please try again + - Outbound - Saída + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Sim + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - No - Não + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Desconhecido + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - - - ReceiveCoinsDialog - &Amount: - &Quantia: + + + added as transaction fee + - &Label: - &Rótulo: + + + Total Amount %1 + - &Message: - &Mensagem: + + + or + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Reutilize um dos endereços de entrada usados anteriormente. Reutilizar endereços pode levar a riscos de segurança e de privacidade. Não use esta função a não ser que esteja a gerar novamente uma requisição de pagamento feita anteriormente. + + Confirm adding restriction + - R&euse an existing receiving address (not recommended) - Reutilizar um endereço de receção existente (não recomendado) + + Confirm removing resetricton + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Uma mensagem opcional para anexar ao pedido de pagamento, que será exibida quando o pedido for aberto. Nota: A mensagem não será enviada com o pagamento através da rede Raven. + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Um rótulo opcional a associar ao novo endereço de receção. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - Use this form to request payments. All fields are <b>optional</b>. - Utilize este formulário para solicitar pagamentos. Todos os campos são <b>opcionais</b>. + + Confirm adding qualifier + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Uma quantia opcional a solicitar. Deixe em branco ou zero para não solicitar uma quantidade específica. + + Confirm removing qualifier + + + + SendAssetsEntry - Clear all fields of the form. - Limpar todos os campos do formulário. + + This is an asset payment + - Clear - Limpar + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Requested payments history - Histórico de pagamentos solicitados + + + + Memo: + - &Request payment - &Requisitar Pagamento + + Amount: + - Show the selected request (does the same as double clicking an entry) - Mostrar o pedido seleccionado (faz o mesmo que clicar 2 vezes numa entrada) + + Enter a label for this address to add it to the list of used addresses + - Show - Mostrar + + &Label: + + + + + Asset: + - Remove the selected entries from the list - Remover as entradas seleccionadas da lista + + The Raven address to send the payment to + - Remove - Remover + + Choose previously used address + - Copy URI - Copiar URI + + Alt+A + - Copy label - Copiar etiqueta + + Paste address from clipboard + - Copy message - Copiar mensagem + + Alt+P + - Copy amount - Copiar valor + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - Código QR + + Message: + - Copy &URI - Copiar &URI + + Transfer &To: + - Copy &Address - Copi&ar Endereço + + Transfer Administrator Asset + - &Save Image... - &Salvar Imagem... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Requisitar Pagamento para %1 + + This is an unauthenticated payment request. + - Payment information - Informação de Pagamento + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Endereço + + This is an authenticated payment request. + - Amount - Valor + + Enter a label for this address to add it to your address book + - Label - Etiqueta + + Select to view administrator assets to transfer + - Message - Mensagem + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI resultante muito longo. Tente reduzir o texto do rótulo / mensagem. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Erro ao codificar URI em Código QR. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Data + + Failed to get asset metadata for: + - Label - Etiqueta + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Mensagem + + Failed to get asset outpoints from database + - (no label) - (sem etiqueta) + + Selected Balance + - (no message) - (sem mensagem) + + Wallet Balance + - (no amount requested) - (sem quantia pedida) + + Select an administrator asset to transfer + - Requested - Solicitado + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Enviar Moedas + Coin Control Features Funcionalidades do Controlo de Moedas: + Inputs... Entradas... + automatically selected selecionadas automáticamente + Insufficient funds! Fundos insuficientes! + Quantity: Quantidade: + Bytes: Bytes: + Amount: Quantia: + Fee: Taxa: + After Fee: Depois da taxa: + Change: Troco: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Se isto estiver ativo, mas o endereço de troco estiver vazio ou for inválido, o troco será enviado para um novo endereço gerado. + Custom change address Endereço de troco personalizado + Transaction Fee: Taxa da transação: + Choose... Escolher... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings ocultar definições de taxa + per kilobyte por kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Se a taxa personalizada estiver definida para 1.000 satoshis e a transação é de apenas 250 bytes, então paga apenas 250 satoshis "por kilobyte" na taxa, enquanto em "total pelo menos" paga 1.000 satoshis. Para transações superiores a um kilobyte ambos pagam por kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Se a taxa personalizada estiver definida para 1.000 satoshis e a transação é de apenas 250 bytes, então paga apenas 250 satoshis "por kilobyte" na taxa, enquanto em "total pelo menos" paga 1.000 satoshis. Para transações superiores a um kilobyte ambos pagam por kilobyte. + Hide Esconder - total at least - total minimo - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Pode pagar somente a taxa minima desde que haja um volume de transações inferior ao espaço nos blocos. No entanto tenha em atenção que esta opção poderá acabar em uma transação nunca confirmada assim que os pedidos de transações excedam a capacidade de processamento da rede. + (read the tooltip) (leia a dica) + Recommended: Recomendado: + Custom: Uso: + (Smart fee not initialized yet. This usually takes a few blocks...) (A taxa inteligente ainda não foi inicializada. Isto normalmente demora alguns blocos...) - normal - normal + + Request Replace-By-Fee + - fast - rapido + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Enviar para múltiplos destinatários de uma vez + Add &Recipient Adicionar &Destinatário + Clear all fields of the form. Limpar todos os campos do formulário. + Dust: Lixo: + Confirmation time target: Tempo de confirmação: + Clear &All Limpar &Tudo + Balance: Saldo: + Confirm the send action Confirme ação de envio + S&end E&nviar + Copy quantity Copiar quantidade + Copy amount Copiar valor + Copy fee Copiar taxa + Copy after fee Copiar depois da taxa + Copy bytes Copiar bytes + Copy dust Copiar pó + Copy change Copiar troco + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 para %2 + Are you sure you want to send? Tem a certeza que deseja enviar? + added as transaction fee adicionado como taxa de transação + Total Amount %1 Quantia Total %1 + or ou + Confirm send coins Confirme envio de moedas + The recipient address is not valid. Please recheck. O endereço do destinatário é inválido. Por favor, reverifique. + The amount to pay must be larger than 0. O valor a pagar dever maior que 0. + The amount exceeds your balance. O valor excede o seu saldo. + The total exceeds your balance when the %1 transaction fee is included. O total excede o seu saldo quando a taxa de transação %1 está incluída. + + Duplicate address found: addresses should only be used once each. + + + + Transaction creation failed! A criação da transação falhou! + + The transaction was rejected with the following reason: %1 + + + + A fee higher than %1 is considered an absurdly high fee. Uma taxa superior a %1 é considerada uma taxa altamente absurda. + Payment request expired. Pedido de pagamento expirado. + Pay only the required fee of %1 Pague apenas a taxa obrigatória de %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address Aviso: endereço Raven inválido + Warning: Unknown change address Aviso: endereço de troco desconhecido + Confirm custom change address Confirmar endereço de troco personalizado + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) (sem etiqueta) @@ -2199,85 +5499,117 @@ SendCoinsEntry + + + A&mount: Qu&antia: - Pay &To: - &Pagar A: - - + &Label: Rótu&lo: + Choose previously used address Escolha o endereço utilizado anteriormente + This is a normal payment. Este é um pagamento normal. + The Raven address to send the payment to O endereço Raven para enviar o pagamento + Alt+A Alt+A + Paste address from clipboard Cole endereço da área de transferência + Alt+P Alt+P + + + Remove this entry Remover esta entrada + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. A taxa será deduzida ao montante enviado. O destinatário irá receber menos ravens do que as que introduziu no campo montante. Caso sejam seleccionados múltiplos destinatários, a taxa será repartida equitativamente. + S&ubtract fee from amount S&ubtrair a taxa ao montante + Message: Mensagem: + + Send &To: + + + + This is an unauthenticated payment request. Pedido de pagamento não autenticado. + + + Send to: + + + + This is an authenticated payment request. Pedido de pagamento autenticado. + Enter a label for this address to add it to the list of used addresses Introduza um rótulo para este endereço para o adicionar à sua lista de endereços usados + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Uma mensagem que estava anexada ao URI raven: que será armazenada com a transação para sua referência. Nota: Esta mensagem não será enviada através da rede Raven. - Pay To: - Pagar a: - - + + Memo: Memorando: - + + + Enter a label for this address to add it to your address book + + + SendConfirmationDialog + + Yes Sim @@ -2285,10 +5617,12 @@ ShutdownWindow + %1 is shutting down... %1 está a encerrar... + Do not shut down the computer until this window disappears. Não desligue o computador enquanto esta janela não desaparecer. @@ -2296,138 +5630,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Assinaturas - Assinar / Verificar uma Mensagem + &Sign Message &Assinar Mensagem + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Pode assinar mensagens com os seus endereços para provar que são seus. Tenha atenção ao assinar mensagens ambíguas, pois ataques de phishing podem tentar enganá-lo de modo a assinar a sua identidade para os atacantes. Apenas assine declarações detalhadas com as quais concorde. + The Raven address to sign the message with O endereço Raven para designar a mensagem + + Choose previously used address Escolha o endereço utilizado anteriormente + + Alt+A Alt+A + Paste address from clipboard Colar endereço da área de transferência + Alt+P Alt+P + Enter the message you want to sign here Escreva aqui a mensagem que deseja assinar + Signature Assinatura + Copy the current signature to the system clipboard Copiar a assinatura actual para a área de transferência + Sign the message to prove you own this Raven address Assine uma mensagem para provar que é dono deste endereço Raven + Sign &Message Assinar &Mensagem + Reset all sign message fields Repor todos os campos de assinatura de mensagem + + Clear &All Limpar &Tudo + &Verify Message &Verificar Mensagem - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Introduza o endereço de assinatura, mensagem (assegure-se que copia quebras de linha, espaços, tabulações, etc. exactamente) e assinatura abaixo para verificar a mensagem. Tenha atenção para não ler mais na assinatura do que o que estiver na mensagem assinada, para evitar ser enganado por um atacante que se encontre entre si e quem assinou a mensagem. + The Raven address the message was signed with O endereço Raven com que a mensagem foi designada + Verify the message to ensure it was signed with the specified Raven address Verifique a mensagem para assegurar que foi assinada com o endereço Raven especificado + Verify &Message Verificar &Mensagem + Reset all verify message fields Repor todos os campos de verificação de mensagem - Click "Sign Message" to generate signature - Clique "Assinar Mensagem" para gerar a assinatura + + Click "Sign Message" to generate signature + Clique "Assinar Mensagem" para gerar a assinatura + + The entered address is invalid. O endereço introduzido é inválido. + + + + Please check the address and try again. Por favor, verifique o endereço e tente novamente. + + The entered address does not refer to a key. O endereço introduzido não refere-se a nenhuma chave. + Wallet unlock was cancelled. O desbloqueio da carteira foi cancelado. + Private key for the entered address is not available. A chave privada para o endereço introduzido não está disponível. + Message signing failed. Assinatura da mensagem falhou. + Message signed. Mensagem assinada. + The signature could not be decoded. Não foi possível descodificar a assinatura. + + Please check the signature and try again. Por favor, verifique a assinatura e tente novamente. + The signature did not match the message digest. A assinatura não corresponde com o conteúdo da mensagem. + Message verification failed. Verificação da mensagem falhou. + Message verified. Mensagem verificada. @@ -2435,6 +5812,7 @@ SplashScreen + [testnet] [rede de testes] @@ -2442,161 +5820,268 @@ TrafficGraphWidget + KB/s KB/s TransactionDesc + + + Open for %n more block(s) + + + Open until %1 Aberto até %1 + + conflicted with a transaction with %1 confirmations + + + + %1/offline %1/off-line + 0/unconfirmed, %1 0/não confirmada, %1 + in memory pool no banco de memória + not in memory pool não está no banco de memória + abandoned abandonada + %1/unconfirmed %1/não confirmada + %1 confirmations %1 confirmações + + Status Estado + + , has not been successfully broadcast yet , ainda não foi transmitido com sucesso + + + + , broadcast through %n node(s) + + + + Date Data + Source Origem + Generated Gerado + + + + + From De + + unknown desconhecido + + + + + To Para + + own address endereço próprio + + + watch-only vigiar apenas + + label etiqueta + + + + + + + Credit Crédito + + + matures in %n more block(s) + + + not accepted não aceite + + + + + Debit Débito + Total debit Débito total + Total credit Crédito total + Transaction fee Taxa de transação + Net amount Valor líquido + + + + Message Mensagem + + Comment Comentário + + Transaction ID Id. da Transação + + Transaction total size Tamanho total da transição + + Output index Índex de saída + + Merchant Comerciante + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + Debug information Informação de depuração + Transaction Transação + Inputs Entradas + Amount Valor + + true verdadeiro + + false falso @@ -2604,10 +6089,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Esta janela mostra uma descrição detalhada da transação + Details for %1 Detalhes para %1 @@ -2615,225 +6102,411 @@ TransactionTableModel + Date Data + Type Tipo + Label Etiqueta + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + Open until %1 Aberto até %1 + Offline Off-line + Unconfirmed Não confirmado + Abandoned Anbandonada + + Confirming (%1 of %2 recommended confirmations) + + + + Confirmed (%1 confirmations) Confirmada (%1 confirmações) + Conflicted Incompatível + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + Generated but not accepted Gerada mas não aceite + Received with Recebido com + Received from Recebido de + Sent to Enviado para + Payment to yourself Pagamento para si mesmo + Mined Minada + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only vigiar apenas + (n/a) (n/d) + (no label) (sem etiqueta) + Transaction status. Hover over this field to show number of confirmations. Estado da transação. Passar o cursor por cima deste campo para mostrar o número de confirmações. + + Date and time that the transaction was received. + + + + Type of transaction. Tipo de transação. - + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + TransactionView + + All Todas + Today Hoje + This week Esta semana + This month Este mês + Last month Mês passado + This year Este ano + Range... Período... + Received with Recebido com + Sent to Enviado para + To yourself Para si mesmo + Mined Minada + Other Outras + + Enter address or label to search + + + + Min amount Valor mín. + + Asset name + + + + Abandon transaction Abandonar transação + Copy address Copiar endereço + Copy label Copiar etiqueta + Copy amount Copiar valor + Copy transaction ID Copiar Id. da transação + Copy raw transaction Copiar transação em bruto + Copy full transaction details Copiar detalhes completos da transação + Edit label Editar etiqueta + Show transaction details Mostrar detalhes da transação + + Browse with: + + + + Export Transaction History Exportar Histórico de Transacções + Comma separated file (*.csv) Ficheiro separado por vírgulas (*.csv) + Confirmed Confirmada + Watch-only Vigiar apenas + Date Data + Type Tipo + Label Etiqueta + Address Endereço + + Asset + + + + ID Id. + Exporting Failed Exportação Falhou + + There was an error trying to save the transaction history to %1. + + + + Exporting Successful Exportação Bem Sucedida + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Período: + to até @@ -2841,802 +6514,1779 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Unidade de valores recebidos. Clique para selecionar outra unidade. WalletFrame - + + + No wallet has been loaded. + + + WalletModel + Send Coins Enviar Moedas + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportar + Export the data in the current tab to a file Exportar os dados no separador atual para um ficheiro + Backup Wallet Cópia de Segurança da Carteira + Wallet Data (*.dat) Dados da Carteira (*.dat) + Backup Failed Cópia de Segurança Falhou + There was an error trying to save the wallet data to %1. Ocorreu um erro ao tentar guardar os dados da carteira em %1. + Backup Successful Cópia de Segurança Bem Sucedida - + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + raven-core + Options: Opções: + Specify data directory Especificar pasta de dados + Connect to a node to retrieve peer addresses, and disconnect Ligar a um nó para recuperar endereços de pares, e desligar + Specify your own public address Especifique o seu endereço público + Accept command line and JSON-RPC commands Aceitar comandos de linha de comandos e JSON-RPC + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. Se <category> não é fornecida ou <category> = 1, imprimir toda a informação de depuração. + Prune configured below the minimum of %d MiB. Please use a higher number. Poda configurada abaixo do mínimo de %d MiB. Por favor, utilize um valor mais elevado. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Suprimir: a última sincronização da carteira vai além dos dados suprimidos. O que precisa para -reindex (transferir novamente toda a cadeia de blocos, no caso de nó suprimido) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Reanálises não são possíveis no modo de suprimir. Para isso terá de utilizar -reindex que irá transferir novamente toda a cadeia de blocos. + Error: A fatal internal error occurred, see debug.log for details Erro: Um erro fatal interno ocorreu, verificar debug.log para mais informação + Fee (in %s/kB) to add to transactions you send (default: %s) Taxa (em %s/kB) para adicionar às transações que envia (predefinição: %s) + Pruning blockstore... A podar a blockstore... + Run in the background as a daemon and accept commands Correr o processo em segundo plano e aceitar comandos + Unable to start HTTP server. See debug log for details. Não é possível iniciar o servidor HTTP. Verifique o debug.log para detalhes. + Raven Core Raven Core + The %s developers Os programadores de %s + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Uma percentagem da taxa (em %s/kB) que será utilizada quando a estimativa da taxa tiver dados insuficientes (predefinição: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Aceitar as transações retransmitidas recebidas dos pares na lista branca, mesmo quando não retransmitir as transações (predefinição: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Associar a endereço específico e escutar sempre nele. Use a notação [anfitrião]:porta para IPv6 + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Apague todas as transações da carteira e somente restore aquelas que façam parte do blockchain através de re-scan ao reiniciar o programa + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Executar o comando quando uma transação da carteira muda (no comando, %s é substituído pela Id. da Transação) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Defina o número de processos de verificação (%u até %d, 0 = automático, <0 = ldisponibiliza esse número de núcleos livres, por defeito: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct A base de dados de blocos contém um bloco que aparenta ser do futuro. Isto pode ser causado por uma data incorrecta definida no seu computador. Reconstrua apenas a base de dados de blocos caso tenha a certeza de que a data e hora do seu computador estão correctos. + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Utilizar UPnP para mapear a porta de escuta (predefinição: 1 quando escutar e sem -proxy) + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Aviso: A rede não parece estar completamente de acordo! Parece que alguns mineiros estão com dificuldades técnicas. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Aviso: Parecemos não estar de acordo com os nossos pares! Poderá ter que atualizar o seu cliente, ou outros nós poderão ter que atualizar os seus clientes. + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + -maxmempool must be at least %d MB - máximo do banco de memória deverá ser pelo menos %d MB + <category> can be: <categoria> pode ser: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Anexar um comentário para a entrada de agente do utilizador + Attempt to recover private keys from a corrupt wallet on startup - Tentar reuperar as chaves privadas de um "wallet" ao iniciar + Tentar reuperar as chaves privadas de um "wallet" ao iniciar + Block creation options: Opções da criação de bloco: - Cannot resolve -%s address: '%s' - Não é possível resolver -%s endereço '%s' + + Cannot resolve -%s address: '%s' + Não é possível resolver -%s endereço '%s' + Chain selection options: Opções de seleção da cadeia: + + Change index out of range + + + + Connection options: Opções de ligação: + Copyright (C) %i-%i Direitos de Autor (C) %i-%i + Corrupted block database detected Cadeia de blocos corrompida detectada + Debugging/Testing options: Opções de Depuração/Teste: + Do not load the wallet and disable wallet RPC calls Não carregar a carteira e desativar as chamadas de RPC da carteira. + Do you want to rebuild the block database now? Deseja reconstruir agora a base de dados de blocos. + Enable publish hash block in <address> Activar publicação do hash do bloco em <address> + Enable publish hash transaction in <address> Activar publicação do hash da transacção em <address> + Enable publish raw block in <address> Activar publicação de dados brutos do bloco em <address> + Enable publish raw transaction in <address> Activar publicação de dados brutos da transacção em <address> + Enable transaction replacement in the memory pool (default: %u) Ativar substituição da transação no banco de memória (predefinição: %u) + Error initializing block database Erro ao inicializar a cadeia de blocos + Error initializing wallet database environment %s! Erro ao inicializar o ambiente %s da base de dados da carteira + Error loading %s Erro ao carregar %s + Error loading %s: Wallet corrupted Erro ao carregar %s: carteira corrompida + Error loading %s: Wallet requires newer version of %s Erro ao carregar %s: a carteira requer a nova versão de %s + Error loading block database Erro ao carregar base de dados de blocos + Error opening block database Erro ao abrir a base de dados de blocos + Error: Disk space is low! Erro: Pouco espaço em disco! + Failed to listen on any port. Use -listen=0 if you want this. Falhou a escutar em qualquer porta. Use -listen=0 se quiser isto. + Importing... A importar... + Incorrect or no genesis block found. Wrong datadir for network? Bloco génese incorreto ou nenhum bloco génese encontrado. Pasta de dados errada para a rede? - Invalid -onion address: '%s' - Endereço -onion inválido: '%s' + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + Valor inválido para -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Valor inválido para -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Valor inválido para -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Valor inválido para -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Manter o banco de memória da transação abaixo de <n> megabytes (predefinição: %u) + + Loading P2P addresses... + + + + Loading banlist... A carregar a lista de banir... + Location of the auth cookie (default: data dir) Localização de cookie de autorização (predefinição: diretoria de dados) + Not enough file descriptors available. Os descritores de ficheiros disponíveis são insuficientes. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Somente conectar aos nodes na rede <net> (ipv4, ipv6 ou onion) + Print this help message and exit Imprimir esta mensagem de ajuda e sair + Print version and exit Imprimir versão e sair + Prune cannot be configured with a negative value. Poda não pode ser configurada com um valor negativo. + Prune mode is incompatible with -txindex. Modo poda é incompatível com -txindex. + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + Set database cache size in megabytes (%d to %d, default: %d) Definir o tamanho da cache de base de dados em megabytes (%d a %d, padrão: %d) - Set maximum block size in bytes (default: %d) - Definir tamanho máximo por bloco em bytes (por defeito: %d) + + Specify wallet file (within data directory) + Especifique ficheiro de carteira (dentro da pasta de dados) + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + - Specify wallet file (within data directory) - Especifique ficheiro de carteira (dentro da pasta de dados) + + Unable to bind to %s on this computer. %s is probably already running. + + Unsupported argument -benchmark ignored, use -debug=bench. Argumento não suportado -benchmark ignorado, use -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argumento não suportado -debugnet ignorado, use -debug=net. + Unsupported argument -tor found, use -onion. Argumento não suportado -tor encontrado, use -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Utilizar UPnP para mapear a porta de escuta (predefinição: %u) + Use the test chain Utilize a cadeia de testes + User Agent comment (%s) contains unsafe characters. Comentário no User Agent (%s) contém caracteres inseguros. + Verifying blocks... A verificar blocos... - Verifying wallet... - A verificar carteira... - - + Wallet %s resides outside data directory %s A carteira %s reside fora da pasta de dados %s + Wallet debugging/testing options: Opções de depuração/testes da carteira: + + Wallet needed to be rewritten: restart %s to complete + + + + Wallet options: Opções da carteira: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Permitir conexções JSON-RPC de fontes especificas. Valido para <ip> um unico IP (ex. 1.2.3.4), uma rede/netmask (ex. 1.2.3.4/255.255.255.0) ou uma rede/CIDR (ex. 1.2.3.4/24). Esta opção pode ser especificada varias vezes + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Vincualar o endereço dado e listar as ligações conectadas ao mesmo na lista branca. Use a notação [anfitrião]:porta para IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Vinculado para dar o endereço para atender as ligações JSON-RPC. Use [host]: Notação de porta para IPv6. Esta opção pode ser especificada várias vezes (padrão: ligam-se a todas as interfaces) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Crie ficheiros novos com as permisões predefinidas do sistema, em vez de umask 077 (apenas eficaz caso a funcionalidade carteira esteja desactivada) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Descobrir o próprio endereço IP (padrão: 1 ao escutar e sem -externalip ou -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Erro: A escuta de ligações de entrada falhou (escuta devolveu erro %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Executar comando quando um alerta relevante for recebido ou em caso de uma divisão longa da cadeia de blocos (no comando, %s é substituído pela mensagem) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Taxas (em %s/kB) inferiores a este valor são consideradas nulas para propagação, mineração e criação de transações (predefinição: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Caso o paytxfee não seja definido, inclua uma taxa suficiente para que as transacções comecem a ser confirmadas, em média, dentro de n blocos (padrão: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Montante inválido para -maxtxfee=<amount>: '%s' (deverá ser, no mínimo , a taxa mínima de propagação de %s, de modo a evitar transações bloqueadas) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Montante inválido para -maxtxfee=<amount>: '%s' (deverá ser, no mínimo , a taxa mínima de propagação de %s, de modo a evitar transações bloqueadas) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Tamanho máximo dos dados em transacções que incluem dados que propagamos e mineramos (padrão: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Usar credenciais aleatórias por cada ligação proxy. Permite que o Tor use stream isolation (padrão: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Definir tamanho máximo de transações com alta-prioridade/baixa-taxa em bytes (por defeito: %d) - - + The transaction amount is too small to send after the fee has been deducted O montante da transacção é demasiado baixo após a dedução da taxa + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Os pares enviados para a lista branca não podem ser DoS banidos e as suas transações são sempre retransmitidas, mesmo que já estejam no banco de memória, útil, por exemplo, para um acesso + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain É necessário reconstruir a base de dados, utilizando -reindex para voltar ao modo de suprimir. Isto irá transferir novamente a cadeia de blocos completa + (default: %u) (predefinição: %u) + Accept public REST requests (default: %u) Aceitar pedidos REST públicos (predefinição: %u) + Automatically create Tor hidden service (default: %d) Criar automaticamente o serviço Tor oculto (predefinição: %d) + Connect through SOCKS5 proxy Ligar através de um proxy SOCKS5 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Erro ao ler da base de dados, encerrando. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importar blocos de um ficheiro blk000??.dat externo ao iniciar + Information Informação - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Montante inválido para -paytxfee=<amount>: '%s' (deverá ser no mínimo %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Máscara de rede inválida especificada em -whitelist: '%s' + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Montante inválido para -paytxfee=<amount>: '%s' (deverá ser no mínimo %s) + + Invalid netmask specified in -whitelist: '%s' + Máscara de rede inválida especificada em -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) Manter no máximo <n> transacções órfãs em memória (padrão: %u) - Need to specify a port with -whitebind: '%s' - Necessário especificar uma porta com -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Necessário especificar uma porta com -whitebind: '%s' + Node relay options: Opções da transmissão de nós: + RPC server options: Opções do servidor RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Reduzindo -maxconnections de %d para %d, devido a limitações no sistema. + Rescan the block chain for missing wallet transactions on startup Procurar transacções em falta na cadeia de blocos ao iniciar + Send trace/debug info to console instead of debug.log file Enviar informação de rastreio/depuração para a consola e não para o ficheiro debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Enviar como uma transacção a custo zero se possível (padrão: %u) - - + Show all debugging options (usage: --help -help-debug) Mostrar todas as opções de depuração (utilização: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Encolher ficheiro debug.log ao iniciar o cliente (por defeito: 1 sem -debug definido) + Signing transaction failed Falhou assinatura da transação + The transaction amount is too small to pay the fee O montante da transacção é demasiado baixo para pagar a taxa + This is experimental software. Isto é software experimental. + Tor control port password (default: empty) Palavra-passe da porta de controlo Tor (predefinição: vazio) + Tor control port to use if onion listening enabled (default: %s) Porta de controlo Tor a utilizar se a escuta cebola estiver ativada (predefinição: %s) + Transaction amount too small Quantia da transação é muito baixa + Transaction too large for fee policy Transacção demasiado grande para a política de taxas + Transaction too large Transação grande demais + Unable to bind to %s on this computer (bind returned error %s) Incapaz de vincular à porta %s neste computador (vínculo retornou erro %s) + Upgrade wallet to latest format on startup Actualizar carteira para o formato mais recente ao iniciar + Username for JSON-RPC connections Nome de utilizador para ligações JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Aviso + Warning: unknown new rules activated (versionbit %i) Aviso: ativadas novas regras desconhecidas (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Se operar apenas num modo de blocos (predefinição: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... A limpar todas as transações da carteira... + ZeroMQ notification options: Opções de notificação ZeroMQ: + Password for JSON-RPC connections Palavra-passe para ligações JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Executar o comando quando o melhor bloco muda (no comando, %s é substituído pela hash do bloco) + Allow DNS lookups for -addnode, -seednode and -connect Permitir procuras DNS para -addnode, -seednode e -connect - Loading addresses... - A carregar os endereços... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = guardar metadados da transacção ex: proprietário da conta e informação do pedido de pagamento, 2 = descartar metadados da transacção) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee está definido com um valor muito alto! Taxas desta magnitude podem ser pagas numa única transacção. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Não guardar transações no banco de memória por mais de <n> horas (predefinição: %u) + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Taxas (em %s/kB) abaixo deste valor são consideradas nulas para a criação de transacções (padrão: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) Minuciosidade da verificação de blocos para -checkblocks é (0-4, padrão: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Manter um índice de transacções completo, usado pela chamada RPC getrawtransaction (padrão: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Número de segundos a impedir que pares com comportamento indesejado se liguem de novo (padrão: %u) + Output debugging information (default: %u, supplying <category> is optional) Informação de depuração (padrão: %u, fornecer uma <category> é opcional) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Suportar filtragem de blocos e transacções com fitros bloom (padrão: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Esta é a taxa de transação que poderá pagar quando as estimativas da taxa não estão disponíveis. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Este produto inclui software desenvolvido pelo Projeto de OpenSSL para utilização no OpenSSL Toolkit %s e software criptográfico escrito por Eric Young e software UPnP escrito por Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Comprimento total da entrada da versão de rede (%i) excede o comprimento máximo (%i). Reduzir o número ou o tamanho de uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Tenta manter o tráfego externo abaixo do limite especificado (em MiB por 24h), 0 = sem limite (padrão: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Encontrado um argumento não suportado -socks. Definir a versão do SOCKS já não é possível, apenas proxies SOCKS5 são suportados. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argumento não suportado -whitelistalwaysrelay ignorado, utilize -whitelistrelay e/ou -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Use um proxy SOCKS5 separado para alcançar pares via serviços ocultos do Tor (padrão: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Atenção: Versões desconhecidas de blocos estão a ser mineradas! É possível que regras desconhecias estão a ser efetuadas + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (predefinição: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Utilizar sempre a consulta de DNS para endereços de pares (predefinição: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Quantos blocos para verificar no arranque (predefinição: %u, 0 = todos) + Include IP addresses in debug output (default: %u) Incluir endereços de IP na informação de depuração (predefinição: %u) - Invalid -proxy address: '%s' - Endereço -proxy inválido: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Escutar por ligações JSON-RPC na porta <port> (predefinição: %u ou rede de testes: %u) + Listen for connections on <port> (default: %u or testnet: %u) Escute ligações na porta <port> (por defeito: %u ou testnet: %u) + Maintain at most <n> connections to peers (default: %u) Manter no máximo <n> ligações a outros nós da rede (por defeito: %u) + Make the wallet broadcast transactions Colocar a carteira a transmitir transacções + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximo armazenamento intermédio de recepção por ligação, <n>*1000 bytes (por defeito: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximo armazenamento intermédio de envio por ligação, <n>*1000 bytes (por defeito: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Adicionar data e hora à informação de depuração (por defeito: %u) + Relay and mine data carrier transactions (default: %u) Propagar e minerar transacções que incluem dados (padrão: %u) + Relay non-P2SH multisig (default: %u) Propagar não P2SH multisig (predefinição: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Definir tamanho do banco de memória da chave para <n> (predefinição: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Defina o número de processos para servir as chamadas RPC (por defeito: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Especificar ficheiro de configuração (por defeito: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Especificar tempo de espera da ligação em milissegundos (mínimo 1, por defeito: %d) + Specify pid file (default: %s) Especificar ficheiro pid (padrão: %s) + Spend unconfirmed change when sending transactions (default: %u) Gastar o troco não confirmado quando enviar transações (predefinição: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + This is the transaction fee you will pay if you send a transaction. Esta é a taxa de transação que irá pagar se enviar uma transação. + Threshold for disconnecting misbehaving peers (default: %u) Tolerância para desligar nós com comportamento indesejável (padrão: %u) + Transaction amounts must not be negative Os valores da transação não devem ser negativos + Transaction has too long of a mempool chain A transação é muito grande de uma cadeia do banco de memória + Transaction must have at least one recipient A transação dever pelo menos um destinatário - Unknown network specified in -onlynet: '%s' - Rede desconhecida especificada em -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Rede desconhecida especificada em -onlynet: '%s' + + + Insufficient funds Fundos insuficientes + Loading block index... A carregar o índice de blocos... - Add a node to connect to and attempt to keep the connection open - Adicionar um nó para se ligar e tentar manter a ligação aberta - - + Loading wallet... A carregar a carteira... + Cannot downgrade wallet Impossível mudar a carteira para uma versão anterior - Cannot write default address - Impossível escrever endereço por defeito - - + Rescanning... Reexaminando... - Done loading - Carregamento concluído - - + Error Erro diff --git a/src/qt/locale/raven_ro.ts b/src/qt/locale/raven_ro.ts index 1ae375c4bb..3b9107e75b 100644 --- a/src/qt/locale/raven_ro.ts +++ b/src/qt/locale/raven_ro.ts @@ -1,767 +1,8289 @@ - - - + AddressBookPage + Right-click to edit address or label Click dreapta pentru a modifica adresa o eticheta + Create a new address Crează o nouă adresă + &New Nou + Copy the currently selected address to the system clipboard Copiază în notițe adresa selectată în prezent + &Copy Copiază + C&lose Închide + Delete the currently selected address from the list Șterge adresa curentă selectata din listă + Export the data in the current tab to a file Exportă datele din tabul curent in fisier + &Export Exportă + &Delete Șterge - - - AddressTableModel - - - AskPassphraseDialog - Passphrase Dialog - Secventa de cuvinte a parolei + + Choose the address to send coins to + Alegeți adresa unde trimiteți monena - Enter passphrase - Introduceti parola + + Choose the address to receive coins with + Alege adresa unde primești moneda - New passphrase - Noua parolă + + C&hoose + Alege - Repeat new passphrase - Repetati noua parolă + + Sending addresses + Trimite adrese - - - BanTableModel - IP/Netmask - IP/Netmask + + Receiving addresses + Primește Adrese - Banned Until - Blocat până + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + Acestea sunt adresele Raven pentru efectuarea plăților . Intotdeauna verifică cantitatea si adresa de primire inainte de a efectua tranzactia - - - RavenGUI - Sign &message... - Semnează &mesajul... + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Acestea sunt adresele Raven pentru a primi plățile.Este recomandat să folosești o noua adresă pentru fiecare tranzacție - Synchronizing with network... - Se sincronizează cu rețeaua + + &Copy Address + Copiază adresa - Node - Nod + + Copy &Label + Copiază & Etichetă - Show general overview of wallet - Arată o prezentare generală a portofelului. + + &Edit + Editează - &Transactions - &Tranzacții + + Export Address List + Exporta lista de adrese - Browse transaction history - Navighează în istoricul tranzacțiilor + + Comma separated file (*.csv) + Fișier separat prin virgula (*.csv) - Quit application - Părăsește aplicația + + Exporting Failed + Eroare de exportare - About &Qt - Despre &Qt + + There was an error trying to save the address list to %1. Please try again. + A fost o eroare în încercarea de a salva lista de adrese la 1%. încercați mai tarziu. + + + AddressTableModel - Show information about Qt - Arată informații despre Qt + + Label + Etichetă - &Options... - &Opțiuni... + + Address + Adresă - &Encrypt Wallet... - &Criptează portofelul... + + (no label) + (fără etichetă) + + + AskPassphraseDialog - &Backup Wallet... - &Backup portofel + + Passphrase Dialog + Secventa de cuvinte a parolei - &Change Passphrase... - &Schimbă parola... + + Enter passphrase + Introduceti parola - &Sending addresses... - &Trimite adresele... + + New passphrase + Noua parolă - &Receiving addresses... - &Primește adresele... + + Repeat new passphrase + Repetati noua parolă - Open &URI... - Deschide &URI... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Introdu noua parolă pentru portofel.<br/>Te rugăm să foloseşti o parolă formată din <b>cel puţin zece caractere aleatorii</b> sau <b>cel puţin opt cuvinte</b>. - Send coins to a Raven address - Trimite monedele către o adresă Raven + + Encrypt wallet + Criptează portofelul - Backup wallet to another location - Fă o copie de rezervă a portofelului într-o altă locație + + This operation needs your wallet passphrase to unlock the wallet. + Această operațiune necesită parola portofelului pentru a-l debloca. - Change the passphrase used for wallet encryption - Schimbă parola folosită pentru criptarea portofelului + + Unlock wallet + Deblocare portofel - &Debug window - &Fereastra pentru depanare + + This operation needs your wallet passphrase to decrypt the wallet. + Această operațiune necesită parola portofelului pentru a-l decripta. - Open debugging and diagnostic console - Pornește consola pentru depanare si diagnoză + + Decrypt wallet + Decriptează portofelul - &Verify message... - &Verifică mesajul... + + Change passphrase + Schimbă parola - Raven - Raven + + Enter the old passphrase and new passphrase to the wallet. + Introdu parola actuală şi noua parolă a portofelului. - Wallet - Portofel + + Confirm wallet encryption + Confirmă criptarea portofelului - &Send - &Trimite + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + Atenţie: dacă criptezi portofelul şi pierzi parola, <b>VEI PIERDE TOATE MONEDELE</b>! - &Receive - &Primește + + Are you sure you wish to encrypt your wallet? + Eşti sigur că doreşti să criptezi portofelul? - &Show / Hide - &Arată/Ascunde + + + Wallet encrypted + Portofelul este criptat - Show or hide the main Window - Arată sau ascunde fereastra principală + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Encrypt the private keys that belong to your wallet - Criptează cheile private care aparțin portofelului tău. + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Sign messages with your Raven addresses to prove you own them - Semnează mesajele cu adresa ta de Raven pentru a face dovada că îți aparțin. + + + + + Wallet encryption failed + Criptarea portofelului a eşuat - Verify messages to ensure they were signed with specified Raven addresses - Verifică mesajele cu scopul de a asigura faptul că au fost semnate cu adresa de Raven specificată. + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Criptarea portofelului a eşuat din cauza unei erori interne. Portofelul a rămas necriptat. - &File - &Fișier + + + The supplied passphrases do not match. + Parolele furnizate nu coincid. - &Settings - &Setări + + Wallet unlock failed + Deblocarea portofelului a eşuat - &Help - &Ajutor + + + + The passphrase entered for the wallet decryption was incorrect. + Parola introdusă pentru decriptarea portofelului este greşită. - Request payments (generates QR codes and raven: URIs) - Cerere plată (generează coduri QR și raven: URIs) + + Wallet decryption failed + Decriptarea portofelului a eşuat - Open a raven: URI or payment request - Deschide un raven: URI sau cerere de plată + + Wallet passphrase was successfully changed. + Parola portofelului a fost schimbată cu succes. - %1 behind - %1 în urmă + + + Warning: The Caps Lock key is on! + Atenţie: este activată tasta pentru litere mari! + + + AssetControlDialog - Last received block was generated %1 ago. - Ultimul bloc primit a fost generat acum %1 + + Asset Selection + - Error - Eroare + + Quantity: + - Warning - Atenționare + + Bytes: + - Information - Informație + + Amount: + - Up to date - Actual + + Dust: + - Date: %1 - - Data: %1 + + Fee: + - Amount: %1 - - Cantitate: %1 + + After Fee: + - Type: %1 - - Tip: %1 - + + Change: + - Label: %1 - - Etichetă: %1 - + + (un)select all + - Address: %1 - - Adresa: %1 - + + Tree mode + - Sent transaction - Trimite tranzacția + + List mode + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portofelul este <b>criptat</b> și în prezent <b>deblocat</b> + + View assets that you have the ownership asset for + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portofelul este <b>criptat</b> și în prezent <b>blocat</b> + + View Administrator Assets + - - - CoinControlDialog - Coin Selection - Selecția monedelor + + Asset + - Quantity: - Cantitatea: + + Amount + - Bytes: - Biți: + + Received with label + - Amount: - Cantitate: + + Received with address + - Fee: - Taxa: + + Date + - After Fee: - După taxă: + + Confirmations + - Change: - Schimbă: + + Confirmed + - Tree mode - Mod arbore + + Copy address + - List mode - Mod listă + + Copy label + - Amount - Cantitate + + + Copy amount + - Received with address - Primit cu adresa + + Copy transaction ID + - Date - Data + + Lock unspent + - Confirmations - Confirmări + + Unlock unspent + - Confirmed - Confirmat + + Copy quantity + - - - EditAddressDialog - Edit Address - Modifică adresa + + Copy fee + - &Address - &Adresa + + Copy after fee + - - - FreespaceChecker - name - Nume + + Copy bytes + - Directory already exists. Add %1 if you intend to create a new directory here. - Directoriul există deja. Adaugă %1 dacă ai intenționat să creezi aici un directoriu nou. + + Copy dust + - - - HelpMessageDialog - version - versiune + + Copy change + - (%1-bit) - (%1-bit) + + (%1 locked) + - Start minimized - Pornește minimalizat + + yes + - - - Intro - Welcome - Bine ai venit! + + no + - Use the default data directory - Folosește directoriul pentru date din modul implicit. + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Error - Eroare + + Can vary +/- %1 satoshi(s) per input. + - - %n GB of free space available - %n GB de spațiu liber disponibil%n GB de spațiu liber disponibil%n GB de spațiu liber disponibil + + + + (no label) + - - - ModalOverlay - - - OpenURIDialog - Open URI - Deschide URI + + change from %1 (%2) + - URI: - URI: + + (change) + - + - OptionsDialog + AssetTableModel - Options - Opțiuni + + Name + - MB - MB + + Quantity + + + + AssetsDialog - Accept connections from outside - Acceptă conexiuni externe + + + Send Coins + - Allow incoming connections - Acceptă conexiunea care sosește + + Asset Control Features + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adresa IP a proxy-ului (ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Inputs... + - &Reset Options - &Resetează opțiunile + + automatically selected + - &Network - &Rețea + + Insufficient funds! + - Expert - Expert + + Quantity: + - Proxy &IP: - Proxy &IP: + + Bytes: + - &Port: - &Port: + + Amount: + - Port of the proxy (e.g. 9050) - Portul pentru proxy (ex.: 9050) + + Dust: + - IPv4 - IPv4 + + Fee: + - IPv6 - IPv6 + + After Fee: + - Tor - Tor + + Change: + - &Window - &Fereastra + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - &OK - &OK + + Custom change address + - &Cancel - &Anulează + + Transaction Fee: + - default - inițial + + Choose... + - none - fără + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Confirm options reset - Confirmă resetarea opțiunilor + + Warning: Fee estimation is currently not possible. + - Client restart required to activate changes. - Repornirea clientului este necesară pentru ca schimbările să fie activate + + collapse fee-settings + - Client will be shut down. Do you want to proceed? - Clientul va fi oprit. Dorești sa continui? + + Hide + - This change would require a client restart. - Această schimbare necesită repornirea clientului. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - OverviewPage - Available: - Disponibil: + + per kilobyte + - Total: - Total: + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions - Tranzacții recente + + (read the tooltip) + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Cantitate + + Recommended: + - %1 and %2 - %1 și %2 + + Custom: + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Client version - Versiunea clientului + + (Smart fee not initialized yet. This usually takes a few blocks...) + - &Information - &Informații + + Confirmation time target: + - Debug window - Fereastra pentru depanare + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - General - General + + Request Replace-By-Fee + - Network - Rețea + + Confirm the send action + - Name - Nume + + S&end + - Number of connections - Numărul de conexiuni + + Clear all fields of the form. + - Received - Primit + + Clear &All + - Sent - Trimis + + Transfer to multiple recipients at once + - Direction - Direcția + + Add &Recipient + - Version - Versiune + + Balance: + - Connection Time - Durata conexiunii + + Copy quantity + - &Open - &Deschide + + Copy amount + - &Console - &Consolă + + Copy fee + - 1 &hour - 1 &ore + + Copy after fee + - 1 &day - 1 &zi + + Copy bytes + - 1 &week - 1 &săptămână + + Copy dust + - 1 &year - 1 &an + + Copy change + - %1 B - %1 B + + %1 (%2 blocks) + - %1 KB - %1 KB + + + + + %1 to %2 + - %1 MB - %1 MB + + Are you sure you want to send? + - %1 GB - %1 GB + + added as transaction fee + - Yes - Da + + Confirm send assets + - No - Nu + + The recipient address is not valid. Please recheck. + - Unknown - Necunoscut + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - ReceiveCoinsDialog + AssignQualifier - &Message: - &Mesaj: + + Frame + - Show - Arată + + Select Type: + - Remove - Elimină + + Select Qualifier: + - - - ReceiveRequestDialog - &Save Image... - &Salvează imaginea... + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + - + - RecentRequestsTableModel - + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Blocat până + + - SendCoinsDialog + CoinControlDialog + + + Coin Selection + Selecția monedelor + + Quantity: Cantitatea: + Bytes: Biți: + Amount: Cantitate: + Fee: Taxa: + + Dust: + + + + After Fee: După taxă: + Change: Schimbă: - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Raven Core - Raven Core + + (un)select all + - Information - Informație + + Tree mode + Mod arbore - Warning - Atenționare + + List mode + Mod listă + + + + Amount + Cantitate + + + + Received with label + + + + + Received with address + Primit cu adresa + + + + Date + Data + + + + Confirmations + Confirmări + + + + Confirmed + Confirmat + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Modifică adresa + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adresa + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + Nume + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Directoriul există deja. Adaugă %1 dacă ai intenționat să creezi aici un directoriu nou. + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versiune + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Pornește minimalizat + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bine ai venit! + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Folosește directoriul pentru date din modul implicit. + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Eroare + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Deschide URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opțiuni + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adresa IP a proxy-ului (ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + &Resetează opțiunile + + + + &Network + &Rețea + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + Expert + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Portul pentru proxy (ex.: 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Fereastra + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Anulează + + + + default + inițial + + + + none + fără + + + + Confirm options reset + Confirmă resetarea opțiunilor + + + + + Client restart required to activate changes. + Repornirea clientului este necesară pentru ca schimbările să fie activate + + + + Client will be shut down. Do you want to proceed? + Clientul va fi oprit. Dorești sa continui? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Această schimbare necesită repornirea clientului. + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Disponibil: + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Total: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Tranzacții recente + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantitate + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 și %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + Versiunea clientului + + + + &Information + &Informații + + + + Debug window + Fereastra pentru depanare + + + + General + General + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + Rețea + + + + Name + Nume + + + + Number of connections + Numărul de conexiuni + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Primit + + + + + Sent + Trimis + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + Direcția + + + + Version + Versiune + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + Durata conexiunii + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Deschide + + + + &Console + &Consolă + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1 &ore + + + + 1 &day + 1 &zi + + + + 1 &week + 1 &săptămână + + + + 1 &year + 1 &an + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + Da + + + + No + Nu + + + + + Unknown + Necunoscut + + + + RavenGUI + + + Sign &message... + Semnează &mesajul... + + + + Synchronizing with network... + Se sincronizează cu rețeaua + + + + &Overview + + + + + Node + Nod + + + + Show general overview of wallet + Arată o prezentare generală a portofelului. + + + + &Transactions + &Tranzacții + + + + Browse transaction history + Navighează în istoricul tranzacțiilor + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + Părăsește aplicația + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Despre &Qt + + + + Show information about Qt + Arată informații despre Qt + + + + &Options... + &Opțiuni... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Criptează portofelul... + + + + &Backup Wallet... + &Backup portofel + + + + &Change Passphrase... + &Schimbă parola... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Trimite adresele... + + + + &Receiving addresses... + &Primește adresele... + + + + Open &URI... + Deschide &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + Trimite monedele către o adresă Raven + + + + Backup wallet to another location + Fă o copie de rezervă a portofelului într-o altă locație + + + + Change the passphrase used for wallet encryption + Schimbă parola folosită pentru criptarea portofelului + + + + Open debugging and diagnostic console + Pornește consola pentru depanare si diagnoză + + + + &Verify message... + &Verifică mesajul... + + + + Raven + Raven + + + + Wallet + Portofel + + + + &Send + &Trimite + + + + &Receive + &Primește + + + + &Show / Hide + &Arată/Ascunde + + + + Show or hide the main Window + Arată sau ascunde fereastra principală + + + + Encrypt the private keys that belong to your wallet + Criptează cheile private care aparțin portofelului tău. + + + + Sign messages with your Raven addresses to prove you own them + Semnează mesajele cu adresa ta de Raven pentru a face dovada că îți aparțin. + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifică mesajele cu scopul de a asigura faptul că au fost semnate cu adresa de Raven specificată. + + + + &File + &Fișier + + + + &Help + &Ajutor + + + + Request payments (generates QR codes and raven: URIs) + Cerere plată (generează coduri QR și raven: URIs) + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + Deschide un raven: URI sau cerere de plată + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 în urmă + + + + Last received block was generated %1 ago. + Ultimul bloc primit a fost generat acum %1 + + + + Transactions after this will not yet be visible. + + + + + Error + Eroare + + + + Warning + Atenționare + + + + Information + Informație + + + + Up to date + Actual + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + Data: %1 + + + + + Amount: %1 + + Cantitate: %1 + + + + Type: %1 + + Tip: %1 + + + + + Label: %1 + + Etichetă: %1 + + + + + Address: %1 + + Adresa: %1 + + + + + Sent transaction + Trimite tranzacția + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portofelul este <b>criptat</b> și în prezent <b>deblocat</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portofelul este <b>criptat</b> și în prezent <b>blocat</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + &Mesaj: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Arată + + + + Remove the selected entries from the list + + + + + Remove + Elimină + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + &Salvează imaginea... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + Cantitatea: + + + + Bytes: + Biți: + + + + Amount: + Cantitate: + + + + Fee: + Taxa: + + + + After Fee: + După taxă: + + + + Change: + Schimbă: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informație + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Atenționare + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Eroare diff --git a/src/qt/locale/raven_ro_RO.ts b/src/qt/locale/raven_ro_RO.ts index 25cfb07240..6a24a2f212 100644 --- a/src/qt/locale/raven_ro_RO.ts +++ b/src/qt/locale/raven_ro_RO.ts @@ -1,1901 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label Click-dreapta pentru a edita adresa sau eticheta + Create a new address Creează o adresă nouă + &New &Nou + Copy the currently selected address to the system clipboard Copiază adresa selectată în clipboard + &Copy &Copiază + C&lose Închide + Delete the currently selected address from the list Şterge adresele curent selectate din listă + Export the data in the current tab to a file Exportă datele din tab-ul curent într-un fişier + &Export &Exportă + &Delete &Şterge - + + + Choose the address to send coins to + Alege adresa la care trimiți monedele + + + + Choose the address to receive coins with + Alege adresa în care primești monedele + + + + C&hoose + &Alege + + + + Sending addresses + Adrese de trimitere + + + + Receiving addresses + Adrese de primire + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + Acestea sunt adresele tale Raven pentru a trimite plăţi.Întotdeauna verificaţi cantitatea şi adresa înainte de a trimite monezi. + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Acestea sunt adresele tale Raven pentru a primi plăţi.Este recomandat să folosiţi o nouă adresă pentru fiecare tranzacţie. + + + + &Copy Address + &Copiază Adresa + + + + Copy &Label + Copiază &Etichetează + + + + &Edit + &Editează + + + + Export Address List + Exportați lista de adrese + + + + Comma separated file (*.csv) + Fişier separat de virgulă (*.cvs) + + + + Exporting Failed + Exportarea a eşuat + + + + There was an error trying to save the address list to %1. Please try again. + A apărut o eroare încercând să salvăm lista de adrese la %1.Vă rugăm încercaţi din nou. + + AddressTableModel - + + + Label + Etichetează + + + + Address + Adresă + + + + (no label) + (nici o etichetă) + + AskPassphraseDialog + Passphrase Dialog Dialogul pentru fraza de acces + Enter passphrase Introduceţi fraza de acces + New passphrase Frază de acces nouă + Repeat new passphrase Repetaţi noua frază de acces - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Introduceţi noua expresie de parolă către portofel <br/>Vă rugăm să utilizaţi o expresie de parola de <b> 10 sau mai multe caractere aleatorii, sau <b> opt sau mai multe cuvinte.</b>. + + + + Encrypt wallet + Criptează portofelul + + + + This operation needs your wallet passphrase to unlock the wallet. + Această operaţie are nevoie de expresia de parolă pentru a debloca portofelul. + + + + Unlock wallet + Deblochează portofel + + + + This operation needs your wallet passphrase to decrypt the wallet. + Această operațiune necesită fraza de acces pentru a decripta portofelul. + + + + Decrypt wallet + Decriptează portofelul + + + + Change passphrase + Schimbă fraza de acces + + + + Enter the old passphrase and new passphrase to the wallet. + Introduceţi expresia de parolă veche şi noua expresie de parolă la portofel. + + + + Confirm wallet encryption + Confirmă criptare portofel + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + Atenţie: Dacă criptezi portofelul şi îţi pierzi expresia de parolă, o să <b>PIERZI TOATE MONEDELE RAVEN</b>! + + + + Are you sure you wish to encrypt your wallet? + Sunteţi sigur că doriţi să vă criptaţi portofelul? + + + + + Wallet encrypted + Portofel criptat + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + %1 o să se inchidă acum pentru a finaliza procesul de criptare.Vă reamintim că criptarea portofelului nu poate să protejeze pe deplin monedele Raven de a fi furate de către malware care vă infectează calculatorul. + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + IMPORTANT: Orice backup anterior pe care l-ai făcut cu fişierul portofelului trebuie să fie înlocuit cu noul fişier generat, criptat de portofel.Pentru motive de securitate, backup-urile anterioare vor deveni nefolositoare în momentul în care veţi începe să folosiţi noul portofel criptat. + + + + + + + Wallet encryption failed + Criptare portofel eșuată + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Criptarea portofelului a eşuat din cauza unei erori interne.Portofelul nu a fost criptat. + + + + + The supplied passphrases do not match. + Expresiile de parolă oferite nu se potrivesc. + + + + Wallet unlock failed + Deblocare portofel eșuată + + + + + + The passphrase entered for the wallet decryption was incorrect. + Expresia de parolă oferită pentru criptarea portofelului este incorectă. + + + + Wallet decryption failed + Decriptare portofel eșuată + + + + Wallet passphrase was successfully changed. + Fraza de acces a portofelului a fost schimbată cu succes. + + + + + Warning: The Caps Lock key is on! + Atenție: Caps Lock este activat! + + - BanTableModel + AssetControlDialog + + + Asset Selection + Selectarea Activelor + + + + Quantity: + Cantitate: + + + + Bytes: + Octeţi: + + + + Amount: + Cantitate: + + + + Dust: + Praf: + + + + Fee: + Taxă: + + + + After Fee: + După taxă: + + + + Change: + Rest: + + + + (un)select all + (de)selectează tot + + + + Tree mode + Mod arbore + + + + List mode + Mod listă + + + + View assets that you have the ownership asset for + Vezi activele pentru care ai titlul de proprietate + + + + View Administrator Assets + Vezi Active Administrator + + + + Asset + Activă + + + + Amount + Sumă + + + + Received with label + Primite cu etichetă + + + + Received with address + Primite cu adresa + + + + Date + Data + + + + Confirmations + Confirmări + + + + Confirmed + Confirmat + + + + Copy address + Copiază adresa + + + + Copy label + Copiază eticheta + + + + + Copy amount + Copiază suma + + + + Copy transaction ID + Copiază ID-ul de tranzacţie + + + + Lock unspent + Blochează suma necheltuită + + + + Unlock unspent + Deblochează suma necheltuită + + + + Copy quantity + Copiază suma + + + + Copy fee + Copiază taxa + + + + Copy after fee + Copiază după taxă + + + + Copy bytes + Copiază octeţi + + + + Copy dust + Copiază praf + + + + Copy change + Copiază rest + + + + (%1 locked) + (%1 blocat) + + + + yes + Da + + + + no + nu + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + Această etichetă va deveni roşie dacă orice recipient va primi o sumă mai mică decât limita curentă de praf + + + + Can vary +/- %1 satoshi(s) per input. + Poate varia +/- %1 satoshi(s) pe intrare. + + + + + (no label) + (nici o etichetă) + + + + change from %1 (%2) + schimbare de la %1 (%2) + + + + (change) + (rest) + + + + AssetTableModel + + + Name + Nume + + + + Quantity + Cantitate + + + + AssetsDialog + + + + Send Coins + Trimite Monezi + + + + Asset Control Features + Caracteristici de control ale activelor + + + + Inputs... + Intrări... + + + + automatically selected + selecţie automată + + + + Insufficient funds! + Fonduri insuficiente! + + + + Quantity: + Cantitate: + + + + Bytes: + Octeţi: + + + + Amount: + Sumă: + + + + Dust: + Praf: + + + + Fee: + Taxă: + + + + After Fee: + După taxă: + + + + Change: + Rest: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Dacă aceasta este activată, dar adresa de rest este goală sau invalidă, restul va fi trimis la o adresă nouă + + + + Custom change address + Adresă personalizată de rest + + + + Transaction Fee: + Taxă tranzacţie: + + + + Choose... + Alegeţi... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + Atenţie: Estimarea taxei nu este posibilă momentan. + + + + collapse fee-settings + închide setări-taxă + + + + Hide + Ascunde + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Dacă taxa personalizată este setată pe 1000 satoshis iar tranzacţia este de doar 250 octeţi, atunci "pe kilooctet" plăteşti doar 250 satoshis ca taxă, în timp ce totalul minim plăteşte 1000 satoshis.Pentru tranzacţii mai mare decât un kilooctet ambii plătesc pe kilooctet. + + + + per kilobyte + per kilooctet + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Este în regulă să plăteşti taxa minimă atât timp cât există mai puţin volum în tranzacţii decât spaţiu în blocks.Trebuie să reţineţi că acest lucru poate duce la o tranzacţie care nu se va ma iconfirma odată ce există mai mare cerere pentru tranzacţii Raven decât poate procesa reţeaua. + + + + (read the tooltip) + (citeşte unealta de sfat) + + + + Recommended: + Recomandat: + + + + Custom: + Personalizat: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Taxa inteligentă nu este iniţializată încă.Aceasta durează în jur de câteva blocks...) + + + + Confirmation time target: + Timp de confirmare: + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indică faptul că expeditorul poate dori să înlocuiască această tranzacţie cu una nouă plătind taxe mai mari (înainte de a fi confirmat) + + + + Request Replace-By-Fee + Cerere înlocuire-cu-taxă + + + + Confirm the send action + Confirmă operaţiunea de trimitere + + + + S&end + Trimit&e + + + + Clear all fields of the form. + Şterge toate câmpurile formularului. + + + + Clear &All + Curăţă &Toate + + + + Transfer to multiple recipients at once + Transferă simultan către mai mulţi recipienţi + + + + Add &Recipient + Adaugă &Destinatar + + + + Balance: + Balanţă: + + + + Copy quantity + Copiază cantitatea + + + + Copy amount + Copiază suma + + + + Copy fee + Copiază taxa + + + + Copy after fee + Copiază după taxă + + + + Copy bytes + Copiază octeţi + + + + Copy dust + Copiază praf + + + + Copy change + Copiază rest + + + + %1 (%2 blocks) + %1 (%2 blocks) + + + + + + + %1 to %2 + %1 la %2 + + + + Are you sure you want to send? + Sunteţi sigur că doriţi să trimiteţi? + + + + added as transaction fee + adăugat ca taxă de tranzacţie + + + + Confirm send assets + Confirmă trimiterea de active + + + + The recipient address is not valid. Please recheck. + Adresa destinatarului nu este validă.Vă rugăm să verificaţi din nou. + + + + The amount to pay must be larger than 0. + Suma de plătit trebuie să fie mai mare de 0. + + + + The amount exceeds your balance. + Suma depăşeşte balanţa dumneavoastră. + + + + The total exceeds your balance when the %1 transaction fee is included. + Totalul depăşeşte balanţa dumneavoastră atunci când 1% taxa de tranzacţie este inclusă. + + + + Duplicate address found: addresses should only be used once each. + Adresă identică găsită: adresele trebuie să fie folosite doar o dată. + + + + Transaction creation failed! + Crearea tranzacţiei a eşuat! + + + + The transaction was rejected with the following reason: %1 + Tranzacţia a fost refuzată din următorul motiv: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + O taxă mai mare de %1 este considerată o taxă absurd de mare. + + + + Payment request expired. + Cererea de plată a expirat. + + + + Pay only the required fee of %1 + Plăteşte doar minima taxă de %1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + Atenţie: Adresă Raven invalidă. + + + + Warning: Unknown change address + Atenţie: Adresă de rest necunoscută. + + + + Confirm custom change address + Confirmă adresa personalizată de rest + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + Adresa pe care ai selectat-o pentru rest nu face parte din acest portofel.Orice sau toate fondurile din portofel pot fi trimise la această adresă.Sunteţi sigur? + + + + (no label) + (nici o etichetă) + + + + AssignQualifier + + + Frame + Cadru + + + + Select Type: + Selectează tipul: + + + + Select Qualifier: + Selectează calificativul: + + + + Address: + Adresă + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + Adresă Personalizată De Rest + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Banat până la + + + + CoinControlDialog + + + Coin Selection + Selectarea monedei + + + + Quantity: + Cantitate: + + + + Bytes: + Octeţi: + + + + Amount: + Sumă: + + + + Fee: + Taxă: + + + + Dust: + Praf: + + + + After Fee: + După taxă: + + + + Change: + Rest: + + + + (un)select all + (de)selectare tot + + + + Tree mode + Mod arbore + + + + List mode + Mod listă + + + + Amount + Sumă + + + + Received with label + Primite cu eticheta + + + + Received with address + Primite cu adresa + + + + Date + Data + + + + Confirmations + Confirmări + + + + Confirmed + Confirmat + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Editează adresa + + + + &Label + &Etichetă + + + + The label associated with this address list entry + Eticheta asociată cu această intrare din listă. + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Adresa asociată cu această adresă din listă. Aceasta poate fi modificată doar pentru adresele de trimitere. + + + + &Address + &Adresă + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Va fi creat un nou dosar de date. + + + + name + nume + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Dosarul deja există. Adaugă %1 dacă intenţionaţi să creaţi un nou dosar aici. + + + + Path already exists, and is not a directory. + Calea deja există şi nu este un dosar. + + + + Cannot create data directory here. + Nu se poate crea un dosar de date aici. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versiunea + + + + + (%1-bit) + (%1-bit) + + + + About %1 + Despre %1 + + + + Command-line options + Opţiuni linie de comandă + + + + Usage: + Uz: + + + + command-line options + Opţiuni linie de comandă + + + + UI Options: + Opţiuni UI: + + + + Choose data directory on startup (default: %u) + Alege dosarul de date la pornire (implicit: %u) + + + + Set language, for example "de_DE" (default: system locale) + Setează limba, de exemplu: "ro_RO" (implicit: sistem local) + + + + Start minimized + Porniţi minimizat + + + + Set SSL root certificates for payment request (default: -system-) + Setare rădăcină certificat SSL pentru cerere de plată (implicit: -sistem- ) + + + + Show splash screen on startup (default: %u) + Afişează ecran splash la pornire (implicit: %u) + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Bun venit + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Foloseşte dosarul de date implicit + + + + Use a custom data directory: + Foloseşte un dosar de date personalizat: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Eroare: Directorul datelor specificate "%1" nu poate fi creat. + + + + Error + Eroare + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Form + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Data ultimului bloc + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Ascunde + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Deschide URI + + + + Open payment request from URI or file + Deschideţi cerere de plată prin intermediul adresei URI sau a fişierului + + + + URI: + URI: + + + + Select payment request file + Selectaţi fişierul cerere de plată + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opţiuni + + + + &Main + Principal + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Mărimea bazei de &date cache + + + + MB + MB + + + + Number of script &verification threads + Numărul de thread-uri de &verificare + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Adresa IP a serverului proxy (de exemplu: IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimizează fereastra în locul părăsirii programului în momentul închiderii ferestrei. Cînd acestă opţiune e activă, aplicaţia se va opri doar în momentul selectării comenzii 'Închide aplicaţia' din menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL-uri terţe părţi (de exemplu, un explorator de bloc), care apar în tab-ul tranzacţiilor ca elemente de meniu contextual. %s în URL este înlocuit cu hash de tranzacţie. URL-urile multiple sînt separate prin bară verticală |. + + + + Active command-line options that override above options: + Opţiuni linie de comandă active care oprimă opţiunile de mai sus: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Resetează toate setările clientului la valorile implicite. + + + + &Reset Options + &Resetează opţiunile + + + + &Network + Reţea + + + + (0 = auto, <0 = leave that many cores free) + (0 = automat, <0 = lasă atîtea nuclee libere) + + + + W&allet + Portofel + + + + Expert + Expert + + + + Enable coin &control features + Activare caracteristici de control ale monedei + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Dacă dezactivaţi cheltuirea restului neconfirmat, restul dintr-o tranzacţie nu poate fi folosit pînă cînd tranzacţia are cel puţin o confirmare. Aceasta afectează de asemenea calcularea soldului. + + + + &Spend unconfirmed change + Cheltuire rest neconfirmat + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Deschide automat în router portul aferent clientului Raven. Funcţionează doar dacă routerul duportă UPnP şi e activat. + + + + Map port using &UPnP + Mapare port folosind &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Conectare la reţeaua Raven printr-un proxy SOCKS. + + + + &Connect through SOCKS5 proxy (default proxy): + &Conectare printr-un proxy SOCKS (implicit proxy): + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Portul proxy (de exemplu: 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Fereastră + + + + Show only a tray icon after minimizing the window. + Arată doar un icon în tray la ascunderea ferestrei + + + + &Minimize to the tray instead of the taskbar + &Minimizare în tray în loc de taskbar + + + + M&inimize on close + M&inimizare fereastră în locul închiderii programului + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Afişare + + + + User Interface &language: + &Limbă interfaţă utilizator + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Unitatea de măsură pentru afişarea sumelor: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Alegeţi subdiviziunea folosită la afişarea interfeţei şi la trimiterea de raven. + + + + Whether to show coin control features or not. + Arată controlul caracteristicilor monedei sau nu. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + Renunţă + + + + default + iniţial + + + + none + nimic + + + + Confirm options reset + Confirmă resetarea opţiunilor + + + + + Client restart required to activate changes. + Este necesară repornirea clientului pentru a activa schimbările. + + + + Client will be shut down. Do you want to proceed? + Clientul va fi închis. Doriţi să continuaţi? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Această schimbare necesită o repornire a clientului. + + + + The supplied proxy address is invalid. + Adresa raven pe care aţi specificat-o nu este validă. + + + + OverviewPage + + + Form + Form + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Informaţiile afişate pot fi neactualizate. Portofelul dvs. se sincronizează automat cu reţeaua Raven după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă. + + + + Watch-only: + Doar-supraveghere: + + + + Available: + Disponibil: + + + + Your current spendable balance + Balanţa dvs. curentă de cheltuieli + + + + Pending: + În aşteptare: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totalul tranzacţiilor care nu sunt confirmate încă şi care nu sunt încă adunate la balanţa de cheltuieli + + + + Immature: + Nematurizat: + + + + Mined balance that has not yet matured + Balanţa minertită care nu s-a maturizat încă + + + + Total: + Total: + + + + Your current total balance + Balanţa totală curentă + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Soldul dvs. curent în adresele doar-supraveghere + + + + Spendable: + Cheltuibil: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Tranzacţii recente + + + + Unconfirmed transactions to watch-only addresses + Tranzacţii neconfirmate la adresele doar-supraveghere + + + + Mined balance in watch-only addresses that has not yet matured + Balanţă minată în adresele doar-supraveghere care nu s-a maturizat încă + + + + Current total balance in watch-only addresses + Soldul dvs. total în adresele doar-supraveghere + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Agent utilizator + + + + Node/Service + Nod/Serviciu + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Cantitate + + + + Enter a Raven address (e.g. %1) + Introduceţi o adresă Raven (de exemplu %1) + + + + %1 d + %1 z + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Niciuna + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 şi %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + &Salvează imaginea... + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + indisponibil + + + + Client version + Versiune client + + + + &Information + &Informaţii + + + + Debug window + Fereastra de depanare + + + + General + General + + + + Using BerkeleyDB version + Foloseşte BerkeleyDB versiunea + + + + Datadir + + + + + Startup time + Durata pornirii + + + + Network + Reţea + + + + Name + Nume + + + + Number of connections + Numărul de conexiuni + + + + Block chain + Lanţ de blocuri + + + + Current number of blocks + Numărul curent de blocuri + + + + Memory Pool + + + + + Current number of transactions + Numărul curent de tranzacţii + + + + Memory usage + Memorie folosită + + + + &Reset + + + + + + Received + Recepţionat + + + + + Sent + Trimis + + + + &Peers + &Parteneri + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Selectaţi un partener pentru a vedea informaţiile detaliate. + + + + Whitelisted + Whitelisted + + + + Direction + Direcţie + + + + Version + Versiune + + + + Starting Block + Bloc de început + + + + Synced Headers + Headere Sincronizate + + + + Synced Blocks + Blocuri Sincronizate + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Agent utilizator + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Servicii + + + + Ban Score + + + + + Connection Time + Timp conexiune + + + + Last Send + Ultima trimitere + + + + Last Receive + Ultima primire + + + + Ping Time + Timp ping + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Data ultimului bloc + + + + &Open + &Deschide + + + + &Console + &Consolă + + + + &Network Traffic + Trafic reţea + + + + Totals + Totaluri + + + + In: + Intrare: + + + + Out: + Ieşire: + + + + Debug log file + Fişier jurnal depanare + + + + Clear console + Curăţă consola + + + + 1 &hour + 1 &oră + + + + 1 &day + 1 &zi + + + + 1 &week + 1 &săptămână + + + + 1 &year + 1 &an + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Scrieţi <b>help</b> pentru a vedea comenzile disponibile. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + via %1 + + + + + never + niciodată + + + + Inbound + Intrare + + + + Outbound + Ieşire + + + + Yes + Da + + + + No + Nu + + + + + Unknown + Necunoscut + + + + RavenGUI + + + Sign &message... + Semnează &mesaj... + + + + Synchronizing with network... + Se sincronizează cu reţeaua... + + + + &Overview + &Imagine de ansamblu + + + + Node + Nod + + + + Show general overview of wallet + Arată o stare generală de ansamblu a portofelului + + + + &Transactions + &Tranzacţii + + + + Browse transaction history + Răsfoire istoric tranzacţii + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Ieşire + + + + Quit application + Închide aplicaţia + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + Despre &Qt + + + + Show information about Qt + Arată informaţii despre Qt + + + + &Options... + &Opţiuni... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Cript&ează portofelul... + + + + &Backup Wallet... + Face o copie de siguranţă a portofelului... + + + + &Change Passphrase... + S&chimbă parola... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Adrese de trimitere... + + + + &Receiving addresses... + Adrese de p&rimire... + + + + Open &URI... + Deschide &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Se reindexează blocurile pe disc... + + + + Send coins to a Raven address + Trimite monede către o adresă Raven + + + + Backup wallet to another location + Creează o copie de rezervă a portofelului într-o locaţie diferită + + + + Change the passphrase used for wallet encryption + Schimbă fraza de acces folosită pentru criptarea portofelului + + + + Open debugging and diagnostic console + Deschide consola de depanare şi diagnosticare + + + + &Verify message... + &Verifică mesaj... + + + + Raven + Raven + + + + Wallet + Portofel + + + + &Send + Trimite + + + + &Receive + P&rimeşte + + + + &Show / Hide + Arată/Ascunde + + + + Show or hide the main Window + Arată sau ascunde fereastra principală + + + + Encrypt the private keys that belong to your wallet + Criptează cheile private ale portofelului dvs. + + + + Sign messages with your Raven addresses to prove you own them + Semnaţi mesaje cu adresa dvs. Raven pentru a dovedi că vă aparţin + + + + Verify messages to ensure they were signed with specified Raven addresses + Verificaţi mesaje pentru a vă asigura că au fost semnate cu adresa Raven specificată + + + + &File + &Fişier + + + + &Help + A&jutor + + + + Request payments (generates QR codes and raven: URIs) + Cereţi plăţi (generează coduri QR şi raven-uri: URls) + + + + Show the list of used sending addresses and labels + Arată lista de adrese trimise şi etichetele folosite. + + + + Show the list of used receiving addresses and labels + Arată lista de adrese pentru primire şi etichetele + + + + Open a raven: URI or payment request + Deschidere raven: o adresa URI sau o cerere de plată + + + + &Command-line options + Opţiuni linie de &comandă + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 în urmă + + + + Last received block was generated %1 ago. + Ultimul bloc recepţionat a fost generat acum %1. + + + + Transactions after this will not yet be visible. + Tranzacţiile după aceasta nu vor fi vizibile încă. + + + + Error + Eroare + + + + Warning + Avertisment + + + + Information + Informaţie + + + + Up to date + Actualizat + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Se actualizează... + + + + Date: %1 + + Data: %1 + + + + + + Amount: %1 + + Sumă: %1 + + + + + Type: %1 + + Tip: %1 + + + + + Label: %1 + + Etichetă: %1 + + + + + Address: %1 + + Adresă: %1 + + + + + Sent transaction + Tranzacţie expediată + + + + Incoming transaction + Tranzacţie recepţionată + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portofelul este <b>criptat</b> iar în momentul de faţă este <b>deblocat</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portofelul este <b>criptat</b> iar în momentul de faţă este <b>blocat</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Sum&a: + + + + &Label: + &Etichetă: + + + + &Message: + &Mesaj: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Refoloseşte una din adresele de primire folosite anterior. Refolosirea adreselor poate crea probleme de securitate şi confidenţialitate. Nu folosiţi această opţiune decît dacă o cerere de regenerare a plăţii a fost făcută anterior. + + + + R&euse an existing receiving address (not recommended) + R&efoloseşte o adresă de primire (nu este recomandat) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Un mesaj opţional de ataşat la cererea de plată, care va fi afişat cînd cererea este deschisă. Notă: Acest mesaj nu va fi trimis cu plata către reţeaua Raven. + + + + + An optional label to associate with the new receiving address. + O etichetă opţională de asociat cu adresa de primire. + + + + Use this form to request payments. All fields are <b>optional</b>. + Foloseşte acest formular pentru a solicita plăţi. Toate cîmpurile sînt <b>opţionale</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + O sumă opţională de cerut. Lăsaţi gol sau zero pentru a nu cere o sumă anume. + + + + Clear all fields of the form. + Curăţă toate cîmpurile formularului. + + + + Clear + Curăţă + + + + Requested payments history + Istoricul plăţilor cerute + + + + &Request payment + &Cerere plată + + + + Show the selected request (does the same as double clicking an entry) + Arată cererea selectată (acelaşi lucru ca şi dublu-clic pe o înregistrare) + + + + Show + Arată + + + + Remove the selected entries from the list + Înlătură intrările selectate din listă + + + + Remove + Înlătură + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + Cod QR + + + + Copy &URI + Copiază &URl + + + + Copy &Address + Copiază &adresa + + + + &Save Image... + &Salvează imaginea... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + Cantitate + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Trimite monede + + + + Coin Control Features + Caracteristici de control ale monedei + + + + Inputs... + Intrări... + + + + automatically selected + selecţie automată + + + + Insufficient funds! + Fonduri insuficiente! + + + + Quantity: + Cantitate: + + + + Bytes: + Octeţi: + + + + Amount: + Sumă: + + + + Fee: + Taxă: + + + + After Fee: + După taxă: + + + + Change: + Rest: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Dacă este activat, dar adresa de rest este goală sau nevalidă, restul va fi trimis la o adresă nou generată. + + + + Custom change address + Adresă personalizată de rest + + + + Transaction Fee: + Taxă tranzacţie: + + + + Choose... + Alegeţi... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + per kilooctet + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Ascunde + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Recomandat: + + + + Custom: + Personalizat: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Trimite simultan către mai mulţi destinatari + + + + Add &Recipient + Adaugă destinata&r + + + + Clear all fields of the form. + Şterge toate cîmpurile formularului. + + + + Dust: + Praf: + + + + Confirmation time target: + + + + + Clear &All + Curăţă to&ate + + + + Balance: + Balanţă: + + + + Confirm the send action + Confirmă operaţiunea de trimitere + + + + S&end + Trimit&e + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Su&mă: + + + + &Label: + &Etichetă: + + + + Choose previously used address + Alegeţi adrese folosite anterior + + + + This is a normal payment. + Aceasta este o tranzacţie normală. + + + + The Raven address to send the payment to + Adresa raven către care se face plata + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lipeşte adresa din clipboard + + + + Alt+P + Alt+P + + + + + + Remove this entry + Înlătură această intrare + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Mesaj: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + Introduceţi eticheta pentru ca această adresa să fie introdusă în lista de adrese folosite + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + un mesaj a fost ataşat la raven: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua raven. + + + + + Memo: + Memo: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + %1 se închide + + + + Do not shut down the computer until this window disappears. + Nu închide calculatorul pînă ce această fereastră nu dispare. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Semnaturi - Semnează/verifică un mesaj + + + + &Sign Message + &Semnează mesaj + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + Adresa cu care semnaţi mesajul + + + + + Choose previously used address + Alegeţi adrese folosite anterior + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Lipeşte adresa copiată din clipboard + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Introduceţi mesajul pe care vreţi să-l semnaţi, aici + + + + Signature + Semnătură + + + + Copy the current signature to the system clipboard + Copiază semnatura curentă în clipboard-ul sistemului + + + + Sign the message to prove you own this Raven address + Semnează mesajul pentru a dovedi ca deţineţi acestă adresă Raven + + + + Sign &Message + Semnează &mesaj + + + + Reset all sign message fields + Resetează toate cîmpurile mesajelor semnate + + + + + Clear &All + Curăţă to&ate + + + + &Verify Message + &Verifică mesaj + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + Introduceţi o adresă Raven + + + + Verify the message to ensure it was signed with the specified Raven address + Verificaţi mesajul pentru a vă asigura că a fost semnat cu adresa Raven specificată + + + + Verify &Message + Verifică &mesaj + + + + Reset all verify message fields + Resetează toate cîmpurile mesajelor semnate + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Cantitate + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Acest panou arată o descriere detaliată a tranzacţiei + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + - IP/Netmask - IP/Netmask + + Offline + - Banned Until - Banat până la + + Unconfirmed + - - - RavenGUI - Sign &message... - Semnează &mesaj... + + Abandoned + - Synchronizing with network... - Se sincronizează cu reţeaua... + + Confirming (%1 of %2 recommended confirmations) + - &Overview - &Imagine de ansamblu + + Confirmed (%1 confirmations) + - Node - Nod + + Conflicted + - Show general overview of wallet - Arată o stare generală de ansamblu a portofelului + + Immature (%1 confirmations, will be available after %2) + - &Transactions - &Tranzacţii + + This block was not received by any other nodes and will probably not be accepted! + - Browse transaction history - Răsfoire istoric tranzacţii + + Generated but not accepted + - E&xit - Ieşire + + Received with + - Quit application - Închide aplicaţia + + Received from + - About &Qt - Despre &Qt + + Sent to + - Show information about Qt - Arată informaţii despre Qt + + Payment to yourself + - &Options... - &Opţiuni... + + Mined + - &Encrypt Wallet... - Cript&ează portofelul... + + Asset Issued + - &Backup Wallet... - Face o copie de siguranţă a portofelului... + + Asset Reissued + - &Change Passphrase... - S&chimbă parola... + + Assets Received + - &Sending addresses... - Adrese de trimitere... + + Assets Sent + - &Receiving addresses... - Adrese de p&rimire... + + watch-only + - Open &URI... - Deschide &URI... + + (n/a) + - Reindexing blocks on disk... - Se reindexează blocurile pe disc... + + (no label) + - Send coins to a Raven address - Trimite monede către o adresă Raven + + Transaction status. Hover over this field to show number of confirmations. + - Backup wallet to another location - Creează o copie de rezervă a portofelului într-o locaţie diferită + + Date and time that the transaction was received. + - Change the passphrase used for wallet encryption - Schimbă fraza de acces folosită pentru criptarea portofelului + + Type of transaction. + - &Debug window - Fereastra de &depanare + + Whether or not a watch-only address is involved in this transaction. + - Open debugging and diagnostic console - Deschide consola de depanare şi diagnosticare + + User-defined intent/purpose of the transaction. + - &Verify message... - &Verifică mesaj... + + Amount removed from or added to balance. + - Raven - Raven + + The asset (or RVN) removed or added to balance. + + + + TransactionView - Wallet - Portofel + + + All + - &Send - Trimite + + Today + - &Receive - P&rimeşte + + This week + - &Show / Hide - Arată/Ascunde + + This month + - Show or hide the main Window - Arată sau ascunde fereastra principală + + Last month + - Encrypt the private keys that belong to your wallet - Criptează cheile private ale portofelului dvs. + + This year + - Sign messages with your Raven addresses to prove you own them - Semnaţi mesaje cu adresa dvs. Raven pentru a dovedi că vă aparţin + + Range... + - Verify messages to ensure they were signed with specified Raven addresses - Verificaţi mesaje pentru a vă asigura că au fost semnate cu adresa Raven specificată + + Received with + - &File - &Fişier + + Sent to + - &Settings - &Setări + + To yourself + - &Help - A&jutor + + Mined + - Tabs toolbar - Bara de unelte + + Other + - Request payments (generates QR codes and raven: URIs) - Cereţi plăţi (generează coduri QR şi raven-uri: URls) + + Enter address or label to search + - Show the list of used sending addresses and labels - Arată lista de adrese trimise şi etichetele folosite. + + Min amount + - Show the list of used receiving addresses and labels - Arată lista de adrese pentru primire şi etichetele + + Asset name + - Open a raven: URI or payment request - Deschidere raven: o adresa URI sau o cerere de plată + + Abandon transaction + - &Command-line options - Opţiuni linie de &comandă + + Copy address + - - %n active connection(s) to Raven network - %n conexiune activă către reţeaua Raven%n conexiuni active către reţeaua Raven%n de conexiuni active către reţeaua Raven + + + Copy label + - - Processed %n block(s) of transaction history. - S-a procesat %n bloc din istoricul tranzacţiilor.S-au procesat %n blocuri din istoricul tranzacţiilor.S-au procesat %n de blocuri din istoricul tranzacţiilor. + + + Copy amount + - %1 behind - %1 în urmă + + Copy transaction ID + - Last received block was generated %1 ago. - Ultimul bloc recepţionat a fost generat acum %1. + + Copy raw transaction + - Transactions after this will not yet be visible. - Tranzacţiile după aceasta nu vor fi vizibile încă. + + Copy full transaction details + - Error - Eroare + + Edit label + - Warning - Avertisment + + Show transaction details + - Information - Informaţie + + Browse with: + - Up to date - Actualizat + + Export Transaction History + - Catching up... - Se actualizează... + + Comma separated file (*.csv) + - Date: %1 - - Data: %1 - + + Confirmed + - Amount: %1 - - Sumă: %1 - + + Watch-only + - Type: %1 - - Tip: %1 - + + Date + - Label: %1 - - Etichetă: %1 - + + Type + - Address: %1 - - Adresă: %1 - + + Label + - Sent transaction - Tranzacţie expediată + + Address + - Incoming transaction - Tranzacţie recepţionată + + Asset + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portofelul este <b>criptat</b> iar în momentul de faţă este <b>deblocat</b> + + ID + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portofelul este <b>criptat</b> iar în momentul de faţă este <b>blocat</b> + + Exporting Failed + - - - CoinControlDialog - Coin Selection - Selectarea monedei + + There was an error trying to save the transaction history to %1. + - Quantity: - Cantitate: + + Exporting Successful + - Bytes: - Octeţi: + + The transaction history was successfully saved to %1. + - Amount: - Sumă: + + Asset Issued + - Fee: - Taxă: + + Asset Reissued + - Dust: - Praf: + + Asset Received + - After Fee: - După taxă: + + Asset Sent + - Change: - Schimb: + + Copy asset name + - (un)select all - (de)selectare tot + + Range: + - Tree mode - Mod arbore + + to + + + + UnitDisplayStatusBarControl - List mode - Mod listă + + Unit to show amounts in. Click to select another unit. + Unitatea în care sînt arătate sumele. Faceţi clic pentru a selecta o altă unitate. + + + WalletFrame - Amount - Sumă + + No wallet has been loaded. + + + + WalletModel - Received with label - Primite cu eticheta + + Send Coins + - Received with address - Primite cu adresa + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - Date - Data + + Error: Wallet locked + - Confirmations - Confirmări + + Words: + - Confirmed - Confirmat + + Passphrase: + - + - EditAddressDialog + WalletView - Edit Address - Editează adresa + + &Export + - &Label - &Etichetă + + Export the data in the current tab to a file + - The label associated with this address list entry - Eticheta asociată cu această intrare din listă. + + Backup Wallet + - The address associated with this address list entry. This can only be modified for sending addresses. - Adresa asociată cu această adresă din listă. Aceasta poate fi modificată doar pentru adresele de trimitere. + + Wallet Data (*.dat) + - &Address - &Adresă + + Backup Failed + - - - FreespaceChecker - A new data directory will be created. - Va fi creat un nou dosar de date. + + There was an error trying to save the wallet data to %1. + - name - nume + + Backup Successful + - Directory already exists. Add %1 if you intend to create a new directory here. - Dosarul deja există. Adaugă %1 dacă intenţionaţi să creaţi un nou dosar aici. + + The wallet data was successfully saved to %1. + - Path already exists, and is not a directory. - Calea deja există şi nu este un dosar. + + Recovery information + - Cannot create data directory here. - Nu se poate crea un dosar de date aici. + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + - HelpMessageDialog + raven-core - version - versiunea + + Options: + Opţiuni: - (%1-bit) - (%1-bit) + + Specify data directory + Specificaţi dosarul de date - About %1 - Despre %1 + + Connect to a node to retrieve peer addresses, and disconnect + Se conectează la un nod pentru a obţine adresele partenerilor, şi apoi se deconectează - Command-line options - Opţiuni linie de comandă + + Specify your own public address + Specificaţi adresa dvs. publică - Usage: - Uz: + + Accept command line and JSON-RPC commands + Acceptă comenzi din linia de comandă şi comenzi JSON-RPC - command-line options - Opţiuni linie de comandă + + Distributed under the MIT software license, see the accompanying file %s or %s + - UI Options: - Opţiuni UI: + + If <category> is not supplied or if <category> = 1, output all debugging information. + - Choose data directory on startup (default: %u) - Alege dosarul de date la pornire (implicit: %u) + + Prune configured below the minimum of %d MiB. Please use a higher number. + - Set language, for example "de_DE" (default: system locale) - Setează limba, de exemplu: "ro_RO" (implicit: sistem local) + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + - Start minimized - Porniţi minimizat + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + - Set SSL root certificates for payment request (default: -system-) - Setare rădăcină certificat SSL pentru cerere de plată (implicit: -sistem- ) + + Error: A fatal internal error occurred, see debug.log for details + - Show splash screen on startup (default: %u) - Afişează ecran splash la pornire (implicit: %u) - - - - Intro + + Fee (in %s/kB) to add to transactions you send (default: %s) + + - Welcome - Bun venit + + Pruning blockstore... + - Use the default data directory - Foloseşte dosarul de date implicit + + Run in the background as a daemon and accept commands + Rulează în fundal ca un demon şi acceptă comenzi - Use a custom data directory: - Foloseşte un dosar de date personalizat: + + Unable to start HTTP server. See debug log for details. + - Error: Specified data directory "%1" cannot be created. - Eroare: Directorul datelor specificate "%1" nu poate fi creat. + + Raven Core + Nucleul Raven - Error - Eroare + + The %s developers + - - %n GB of free space available - %n GB de spaţiu liber disponibil%n GB de spaţiu liber disponibil%n GB de spaţiu liber disponibil + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - - (of %n GB needed) - (din %n GB necesar)(din %n GB necesari)(din %n GB necesari) + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - - - ModalOverlay - Form - Form + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - Last block time - Data ultimului bloc + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Ataşaţi adresei date şi ascultaţi totdeauna pe ea. Folosiţi notaţia [host]:port pentru IPv6 - Hide - Ascunde + + Cannot obtain a lock on data directory %s. %s is probably already running. + - - - OpenURIDialog - Open URI - Deschide URI + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Open payment request from URI or file - Deschideţi cerere de plată prin intermediul adresei URI sau a fişierului + + Change address can not be sent to because it doesn't have the correct qualifier tags + - URI: - URI: + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Select payment request file - Selectaţi fişierul cerere de plată + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - - - OptionsDialog - Options - Opţiuni + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - &Main - Principal + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - Size of &database cache - Mărimea bazei de &date cache + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Execută comanda când o tranzacţie a portofelului se schimbă (%s în cmd este înlocuit de TxID) - MB - MB + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - Number of script &verification threads - Numărul de thread-uri de &verificare + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - Accept connections from outside - Acceptă conexiuni din exterior + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - Allow incoming connections - Permite conexiuni de intrare + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Adresa IP a serverului proxy (de exemplu: IPv4: 127.0.0.1 / IPv6: ::1) + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimizează fereastra în locul părăsirii programului în momentul închiderii ferestrei. Cînd acestă opţiune e activă, aplicaţia se va opri doar în momentul selectării comenzii 'Închide aplicaţia' din menu. + + Please contribute if you find %s useful. Visit %s for further information about the software. + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL-uri terţe părţi (de exemplu, un explorator de bloc), care apar în tab-ul tranzacţiilor ca elemente de meniu contextual. %s în URL este înlocuit cu hash de tranzacţie. URL-urile multiple sînt separate prin bară verticală |. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - Third party transaction URLs - URL-uri tranzacţii terţe părţi + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - Active command-line options that override above options: - Opţiuni linie de comandă active care oprimă opţiunile de mai sus: + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - Reset all client options to default. - Resetează toate setările clientului la valorile implicite. + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Setează numărul de thread-uri de verificare a script-urilor (%u la %d, 0 = auto, <0 = lasă atîtea nuclee libere, implicit: %d) - &Reset Options - &Resetează opţiunile + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - &Network - Reţea + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - (0 = auto, <0 = leave that many cores free) - (0 = automat, <0 = lasă atîtea nuclee libere) + + This is the transaction fee you may discard if change is smaller than dust at this level + - W&allet - Portofel + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - Expert - Expert + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - Enable coin &control features - Activare caracteristici de control ale monedei + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Dacă dezactivaţi cheltuirea restului neconfirmat, restul dintr-o tranzacţie nu poate fi folosit pînă cînd tranzacţia are cel puţin o confirmare. Aceasta afectează de asemenea calcularea soldului. + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - &Spend unconfirmed change - Cheltuire rest neconfirmat + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Deschide automat în router portul aferent clientului Raven. Funcţionează doar dacă routerul duportă UPnP şi e activat. + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Map port using &UPnP - Mapare port folosind &UPnP + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Connect to the Raven network through a SOCKS5 proxy. - Conectare la reţeaua Raven printr-un proxy SOCKS. + + Whether to save the mempool on shutdown and load on restart (default: %u) + - &Connect through SOCKS5 proxy (default proxy): - &Conectare printr-un proxy SOCKS (implicit proxy): + + %d of last 100 blocks have unexpected version + - Proxy &IP: - Proxy &IP: + + %s corrupt, salvage failed + - &Port: - &Port: + + -maxmempool must be at least %d MB + - Port of the proxy (e.g. 9050) - Portul proxy (de exemplu: 9050) + + <category> can be: + <category> poate fi: - IPv4 - IPv4 + + Accept connections from outside (default: 1 if no -proxy or -connect) + - IPv6 - IPv6 + + Append comment to the user agent string + - Tor - Tor + + Attempt to recover private keys from a corrupt wallet on startup + - &Window - &Fereastră + + Block creation options: + Opţiuni creare bloc: - Show only a tray icon after minimizing the window. - Arată doar un icon în tray la ascunderea ferestrei + + Cannot resolve -%s address: '%s' + - &Minimize to the tray instead of the taskbar - &Minimizare în tray în loc de taskbar + + Chain selection options: + - M&inimize on close - M&inimizare fereastră în locul închiderii programului + + Change index out of range + - &Display - &Afişare + + Connection options: + Opţiuni conexiune: - User Interface &language: - &Limbă interfaţă utilizator + + Copyright (C) %i-%i + - &Unit to show amounts in: - &Unitatea de măsură pentru afişarea sumelor: + + Corrupted block database detected + Bloc defect din baza de date detectat - Choose the default subdivision unit to show in the interface and when sending coins. - Alegeţi subdiviziunea folosită la afişarea interfeţei şi la trimiterea de raven. + + Debugging/Testing options: + Opţiuni Depanare/Test: - Whether to show coin control features or not. - Arată controlul caracteristicilor monedei sau nu. + + Do not load the wallet and disable wallet RPC calls + Nu încarcă portofelul şi dezactivează solicitările portofel RPC - &OK - &OK + + Do you want to rebuild the block database now? + Doriţi să reconstruiţi baza de date blocuri acum? - &Cancel - Renunţă + + Enable publish hash block in <address> + - default - iniţial + + Enable publish hash transaction in <address> + - none - nimic + + Enable publish raw block in <address> + - Confirm options reset - Confirmă resetarea opţiunilor + + Enable publish raw transaction in <address> + - Client restart required to activate changes. - Este necesară repornirea clientului pentru a activa schimbările. + + Enable transaction replacement in the memory pool (default: %u) + - Client will be shut down. Do you want to proceed? - Clientul va fi închis. Doriţi să continuaţi? + + Error initializing block database + Eroare la iniţializarea bazei de date de blocuri - This change would require a client restart. - Această schimbare necesită o repornire a clientului. + + Error initializing wallet database environment %s! + Eroare la iniţializarea mediului de bază de date a portofelului %s! - The supplied proxy address is invalid. - Adresa raven pe care aţi specificat-o nu este validă. + + Error loading %s + - - - OverviewPage - Form - Form + + Error loading %s: Wallet corrupted + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Informaţiile afişate pot fi neactualizate. Portofelul dvs. se sincronizează automat cu reţeaua Raven după ce o conexiune este stabilită, dar acest proces nu a fost finalizat încă. + + Error loading %s: Wallet requires newer version of %s + - Watch-only: - Doar-supraveghere: + + Error loading block database + Eroare la încărcarea bazei de date de blocuri - Available: - Disponibil: + + Error opening block database + Eroare la deschiderea bazei de date de blocuri - Your current spendable balance - Balanţa dvs. curentă de cheltuieli + + Error: Disk space is low! + Eroare: Spaţiu pe disc redus! - Pending: - În aşteptare: + + Failed to listen on any port. Use -listen=0 if you want this. + Nu s-a reuşit ascultarea pe orice port. Folosiţi -listen=0 dacă vreţi asta. - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totalul tranzacţiilor care nu sunt confirmate încă şi care nu sunt încă adunate la balanţa de cheltuieli + + Importing... + Import... - Immature: - Nematurizat: + + Incorrect or no genesis block found. Wrong datadir for network? + Incorect sau nici un bloc de geneza găsit. Directorul de retea greşit? - Mined balance that has not yet matured - Balanţa minertită care nu s-a maturizat încă + + Initialization sanity check failed. %s is shutting down. + - Balances - Balanţă + + Invalid amount for -%s=<amount>: '%s' + - Total: - Total: + + Invalid amount for -discardfee=<amount>: '%s' + - Your current total balance - Balanţa totală curentă + + Invalid amount for -fallbackfee=<amount>: '%s' + - Your current balance in watch-only addresses - Soldul dvs. curent în adresele doar-supraveghere + + Keep the transaction memory pool below <n> megabytes (default: %u) + - Spendable: - Cheltuibil: + + Loading P2P addresses... + - Recent transactions - Tranzacţii recente + + Loading banlist... + - Unconfirmed transactions to watch-only addresses - Tranzacţii neconfirmate la adresele doar-supraveghere + + Location of the auth cookie (default: data dir) + - Mined balance in watch-only addresses that has not yet matured - Balanţă minată în adresele doar-supraveghere care nu s-a maturizat încă + + Not enough file descriptors available. + Nu sînt destule descriptoare disponibile. - Current total balance in watch-only addresses - Soldul dvs. total în adresele doar-supraveghere + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Se conectează doar la noduri în reţeaua <net> (ipv4, ipv6 sau onion) - - - PaymentServer - - - PeerTableModel - User Agent - Agent utilizator + + Print this help message and exit + - Node/Service - Nod/Serviciu + + Print version and exit + - - - QObject - Amount - Cantitate + + Prune cannot be configured with a negative value. + - Enter a Raven address (e.g. %1) - Introduceţi o adresă Raven (de exemplu %1) + + Prune mode is incompatible with -txindex. + - %1 d - %1 z + + Rebuild chain state and block index from the blk*.dat files on disk + - %1 h - %1 h + + Rebuild chain state from the currently indexed blocks + - %1 m - %1 m + + Replaying blocks... + - %1 s - %1 s + + Rewinding blocks... + - None - Niciuna + + Set database cache size in megabytes (%d to %d, default: %d) + Setează mărimea bazei de date cache în megaocteţi (%d la %d, implicit: %d) - N/A - N/A + + Specify wallet file (within data directory) + Specifică fişierul portofel (în dosarul de date) - %1 ms - %1 ms + + The source code is available from %s. + - %1 and %2 - %1 şi %2 + + Transaction fee and change calculation failed + - - - QObject::QObject - - - QRImageWidget - &Save Image... - &Salvează imaginea... + + Unable to bind to %s on this computer. %s is probably already running. + - - - RPCConsole - N/A - indisponibil + + Unsupported argument -benchmark ignored, use -debug=bench. + - Client version - Versiune client + + Unsupported argument -debugnet ignored, use -debug=net. + - &Information - &Informaţii + + Unsupported argument -tor found, use -onion. + - Debug window - Fereastra de depanare + + Unsupported logging category %s=%s. + - General - General + + Upgrading UTXO database + - Using BerkeleyDB version - Foloseşte BerkeleyDB versiunea + + Use UPnP to map the listening port (default: %u) + Foloseşte mapare UPnP pentru asculatere port (implicit: %u) - Startup time - Durata pornirii + + Use the test chain + - Network - Reţea + + User Agent comment (%s) contains unsafe characters. + - Name - Nume + + Verifying blocks... + Se verifică blocurile... - Number of connections - Numărul de conexiuni + + Wallet %s resides outside data directory %s + Portofelul %s se află în afara dosarului de date %s - Block chain - Lanţ de blocuri + + Wallet debugging/testing options: + - Current number of blocks - Numărul curent de blocuri + + Wallet needed to be rewritten: restart %s to complete + - Current number of transactions - Numărul curent de tranzacţii + + Wallet options: + Opţiuni portofel: - Memory usage - Memorie folosită + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Permite conexiunile JSON-RPC din sursa specificată. Valid pentru <ip> sînt IP singulare (ex. 1.2.3.4), o reţea/mască-reţea (ex. 1.2.3.4/255.255.255.0) sau o reţea/CIDR (ex. 1.2.3.4/24). Această opţiune poate fi specificată de mai multe ori - Received - Recepţionat + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Sent - Trimis + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - &Peers - &Parteneri + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Select a peer to view detailed information. - Selectaţi un partener pentru a vedea informaţiile detaliate. + + Error: Listening for incoming connections failed (listen returned error %s) + - Whitelisted - Whitelisted + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Execută comanda cînd o alertă relevantă este primită sau vedem o bifurcaţie foarte lungă (%s în cmd este înlocuit de mesaj) - Direction - Direcţie + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - Version - Versiune + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Starting Block - Bloc de început + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - Synced Headers - Headere Sincronizate + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Synced Blocks - Blocuri Sincronizate + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - User Agent - Agent utilizator + + The transaction amount is too small to send after the fee has been deducted + - Services - Servicii + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Connection Time - Timp conexiune + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Last Send - Ultima trimitere + + (default: %u) + (implicit: %u) - Last Receive - Ultima primire + + Accept public REST requests (default: %u) + Acceptă cererile publice REST (implicit: %u) - Ping Time - Timp ping + + Automatically create Tor hidden service (default: %d) + Crează automat un serviciu Tor ascuns (implicit: %d) - Last block time - Data ultimului bloc + + Connect through SOCKS5 proxy + Conectare prin proxy SOCKS5 - &Open - &Deschide + + Error loading %s: You can't disable HD on an already existing HD wallet + - &Console - &Consolă + + Error reading from database, shutting down. + Eroare la citirea bazei de date. Oprire. - &Network Traffic - Trafic reţea + + Error upgrading chainstate database + - &Clear - &Curăţă + + Imports blocks from external blk000??.dat file on startup + - Totals - Totaluri + + Information + Informaţie - In: - Intrare: + + Invalid -onion address or hostname: '%s' + - Out: - Ieşire: + + Invalid -proxy address or hostname: '%s' + - Debug log file - Fişier jurnal depanare + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Sumă nevalidă pentru -paytxfee=<suma>: '%s' (trebuie să fie cel puţin %s) - Clear console - Curăţă consola + + Invalid netmask specified in -whitelist: '%s' + Mască reţea nevalidă specificată în -whitelist: '%s' - 1 &hour - 1 &oră + + Keep at most <n> unconnectable transactions in memory (default: %u) + - 1 &day - 1 &zi + + Need to specify a port with -whitebind: '%s' + Trebuie să specificaţi un port cu -whitebind: '%s' - 1 &week - 1 &săptămână + + Node relay options: + - 1 &year - 1 &an + + RPC server options: + Opţiuni server RPC: - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Folosiţi săgetile sus şi jos pentru a naviga în istoric şi <b>Ctrl-L</b> pentru a curăţa. + + Reducing -maxconnections from %d to %d, because of system limitations. + - Type <b>help</b> for an overview of available commands. - Scrieţi <b>help</b> pentru a vedea comenzile disponibile. + + Rescan the block chain for missing wallet transactions on startup + - %1 B - %1 B + + Send trace/debug info to console instead of debug.log file + Trimite informaţiile trace/debug la consolă în locul fişierului debug.log - %1 KB - %1 KB + + Show all debugging options (usage: --help -help-debug) + Arată toate opţiunile de depanare (uz: --help -help-debug) - %1 MB - %1 MB + + Shrink debug.log file on client startup (default: 1 when no -debug) + Micşorează fişierul debug.log la pornirea clientului (implicit: 1 cînd nu se foloseşte -debug) - %1 GB - %1 GB + + Signing transaction failed + Nu s-a reuşit semnarea tranzacţiei - via %1 - via %1 + + The transaction amount is too small to pay the fee + - never - niciodată + + This is experimental software. + Acesta este un program experimental. - Inbound - Intrare + + Tor control port password (default: empty) + - Outbound - Ieşire + + Tor control port to use if onion listening enabled (default: %s) + - Yes - Da + + Transaction amount too small + Suma tranzacţionată este prea mică - No - Nu + + Transaction too large for fee policy + Tranzacţie prea mare pentru politică gratis - Unknown - Necunoscut + + Transaction too large + Tranzacţie prea mare - - - ReceiveCoinsDialog - &Amount: - Sum&a: + + Unable to bind to %s on this computer (bind returned error %s) + Nu se poate lega la %s pe acest calculator. (Legarea a întors eroarea %s) - &Label: - &Etichetă: + + Upgrade wallet to latest format on startup + - &Message: - &Mesaj: + + Username for JSON-RPC connections + Utilizator pentru conexiunile JSON-RPC - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Refoloseşte una din adresele de primire folosite anterior. Refolosirea adreselor poate crea probleme de securitate şi confidenţialitate. Nu folosiţi această opţiune decît dacă o cerere de regenerare a plăţii a fost făcută anterior. + + Valid Verifier + - R&euse an existing receiving address (not recommended) - R&efoloseşte o adresă de primire (nu este recomandat) + + Variable is not allow in the expression: ' + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Un mesaj opţional de ataşat la cererea de plată, care va fi afişat cînd cererea este deschisă. Notă: Acest mesaj nu va fi trimis cu plata către reţeaua Raven. + + Verifier String doesn't exist for asset: + - An optional label to associate with the new receiving address. - O etichetă opţională de asociat cu adresa de primire. + + Verifier String for asset trasnfer, not found + - Use this form to request payments. All fields are <b>optional</b>. - Foloseşte acest formular pentru a solicita plăţi. Toate cîmpurile sînt <b>opţionale</b>. + + Verifier not found for asset: + - An optional amount to request. Leave this empty or zero to not request a specific amount. - O sumă opţională de cerut. Lăsaţi gol sau zero pentru a nu cere o sumă anume. + + Verifier string can not be empty. To default to true, use "true" + - Clear all fields of the form. - Curăţă toate cîmpurile formularului. + + Verifier string is empty + - Clear - Curăţă + + Verifier string not found + - Requested payments history - Istoricul plăţilor cerute + + Verifying wallet(s)... + - &Request payment - &Cerere plată + + Warning + Avertisment - Show the selected request (does the same as double clicking an entry) - Arată cererea selectată (acelaşi lucru ca şi dublu-clic pe o înregistrare) + + Warning: unknown new rules activated (versionbit %i) + - Show - Arată + + Whether to operate in a blocks only mode (default: %u) + - Remove the selected entries from the list - Înlătură intrările selectate din listă + + You need to rebuild the database using -reindex to change -txindex + - Remove - Înlătură + + Zapping all transactions from wallet... + Şterge toate tranzacţiile din portofel... - - - ReceiveRequestDialog - QR Code - Cod QR + + ZeroMQ notification options: + - Copy &URI - Copiază &URl + + Password for JSON-RPC connections + Parola pentru conexiunile JSON-RPC - Copy &Address - Copiază &adresa + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Execută comanda când cel mai bun bloc se modifică (%s în cmd este înlocuit cu hash-ul blocului) - &Save Image... - &Salvează imaginea... + + Allow DNS lookups for -addnode, -seednode and -connect + Permite căutări DNS pentru -addnode, -seednode şi -connect - Amount - Cantitate + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Trimite monede + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Coin Control Features - Caracteristici de control ale monedei + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Inputs... - Intrări... + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - automatically selected - selecţie automată + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Insufficient funds! - Fonduri insuficiente! + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Quantity: - Cantitate: + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Bytes: - Octeţi: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Amount: - Sumă: + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Fee: - Taxă: + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - After Fee: - După taxă: + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Change: - Rest: + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Dacă este activat, dar adresa de rest este goală sau nevalidă, restul va fi trimis la o adresă nou generată. + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Custom change address - Adresă personalizată de rest + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Transaction Fee: - Taxă tranzacţie: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Choose... - Alegeţi... + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - per kilobyte - per kilooctet + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Hide - Ascunde + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - total at least - total cel puţin + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Recommended: - Recomandat: + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Custom: - Personalizat: + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - normal - normal + + Output debugging information (default: %u, supplying <category> is optional) + Produce toate informaţiile de depanare (implicit: %u <category> furnizată este opţională) - fast - rapid + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Send to multiple recipients at once - Trimite simultan către mai mulţi destinatari + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - Add &Recipient - Adaugă destinata&r + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Clear all fields of the form. - Şterge toate cîmpurile formularului. + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Dust: - Praf: + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Clear &All - Curăţă to&ate + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Balance: - Balanţă: + + The default height that is required before rewards are allowed to be sent out + - Confirm the send action - Confirmă operaţiunea de trimitere + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - S&end - Trimit&e + + This address doesn't contain the correct tags to pass the verifier string check: + - - - SendCoinsEntry - A&mount: - Su&mă: + + This is the transaction fee you may pay when fee estimates are not available. + - Pay &To: - Plăteşte că&tre: + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - &Label: - &Etichetă: + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Choose previously used address - Alegeţi adrese folosite anterior + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - This is a normal payment. - Aceasta este o tranzacţie normală. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - The Raven address to send the payment to - Adresa raven către care se face plata + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Alt+A - Alt+A + + Unable to reissue asset: unit must be larger than current unit selection + - Paste address from clipboard - Lipeşte adresa din clipboard + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - Alt+P - Alt+P + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Remove this entry - Înlătură această intrare + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Message: - Mesaj: + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Enter a label for this address to add it to the list of used addresses - Introduceţi eticheta pentru ca această adresa să fie introdusă în lista de adrese folosite + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - un mesaj a fost ataşat la raven: URI care va fi stocat cu tranzacţia pentru referinţa dvs. Notă: Acest mesaj nu va fi trimis către reţeaua raven. + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Pay To: - Plăteşte către: + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Memo: - Memo: + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - - - SendConfirmationDialog - - - ShutdownWindow - %1 is shutting down... - %1 se închide + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Do not shut down the computer until this window disappears. - Nu închide calculatorul pînă ce această fereastră nu dispare. + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Semnaturi - Semnează/verifică un mesaj + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - &Sign Message - &Semnează mesaj + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - The Raven address to sign the message with - Adresa cu care semnaţi mesajul + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Choose previously used address - Alegeţi adrese folosite anterior + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Alt+A - Alt+A + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Paste address from clipboard - Lipeşte adresa copiată din clipboard + + %s is set very high! + - Alt+P - Alt+P + + ' doesn't exist in the database + - Enter the message you want to sign here - Introduceţi mesajul pe care vreţi să-l semnaţi, aici + + ' has already been used + - Signature - Semnătură + + ' is not a valid character in the expression: + - Copy the current signature to the system clipboard - Copiază semnatura curentă în clipboard-ul sistemului + + ' the amount trying to reissue is to large + - Sign the message to prove you own this Raven address - Semnează mesajul pentru a dovedi ca deţineţi acestă adresă Raven + + (default: %s) + (implicit: %s) - Sign &Message - Semnează &mesaj + + A space separated list of 12-words used to import a bip44 wallet + - Reset all sign message fields - Resetează toate cîmpurile mesajelor semnate + + Always query for peer addresses via DNS lookup (default: %u) + - Clear &All - Curăţă to&ate + + Asset Transfer amounts must be greater than 0 + - &Verify Message - &Verifică mesaj + + Asset doesn't exist: + - The Raven address the message was signed with - Introduceţi o adresă Raven + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Verify the message to ensure it was signed with the specified Raven address - Verificaţi mesajul pentru a vă asigura că a fost semnat cu adresa Raven specificată + + Asset name is not valid + - Verify &Message - Verifică &mesaj + + Asset with this name is already in the mempool + - Reset all verify message fields - Resetează toate cîmpurile mesajelor semnate + + Done Loading + - - - SplashScreen - [testnet] - [testnet] + + Enable publish raw asset messages in <address> + - - - TrafficGraphWidget - KB/s - KB/s + + Error creating %s: You can't create non-HD wallets with this version. + - - - TransactionDesc - Amount - Cantitate + + Error loading wallet %s. -wallet filename must be a regular file. + - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Acest panou arată o descriere detaliată a tranzacţiei + + Error loading wallet %s. Duplicate -wallet filename specified. + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Unitatea în care sînt arătate sumele. Faceţi clic pentru a selecta o altă unitate. + + Error loading wallet %s. Invalid characters in -wallet filename. + - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opţiuni: + + Error not set + - Specify data directory - Specificaţi dosarul de date + + Error writing bip 39 passphrase to database + - Connect to a node to retrieve peer addresses, and disconnect - Se conectează la un nod pentru a obţine adresele partenerilor, şi apoi se deconectează + + Error writing bip 39 vchseed to database + - Specify your own public address - Specificaţi adresa dvs. publică + + Error writing bip 39 words to database + - Accept command line and JSON-RPC commands - Acceptă comenzi din linia de comandă şi comenzi JSON-RPC + + Every '(' must have a corresponding ')' in the expression: + - Run in the background as a daemon and accept commands - Rulează în fundal ca un demon şi acceptă comenzi + + Failed to extract destination from change script + - Raven Core - Nucleul Raven + + Failed to find restricted asset change address from inputs + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Ataşaţi adresei date şi ascultaţi totdeauna pe ea. Folosiţi notaţia [host]:port pentru IPv6 + + Failed to get asset data from script + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Execută comanda cînd o tranzacţie a portofelului se schimbă (%s în cmd este înlocuit de TxID) + + Failed to get verifier string from output: + - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Setează numărul de thread-uri de verificare a script-urilor (%u la %d, 0 = auto, <0 = lasă atîtea nuclee libere, implicit: %d) + + Failed to load Assets Database + - <category> can be: - <category> poate fi: + + Flag must be 1 or 0 + - Block creation options: - Opţiuni creare bloc: + + How many blocks to check at startup (default: %u, 0 = all) + Cîte blocuri verifică la pornire (implicit: %u, 0 = toate) - Connection options: - Opţiuni conexiune: + + Include IP addresses in debug output (default: %u) + - Corrupted block database detected - Bloc defect din baza de date detectat + + Init Message Channels - Scanning Asset Transactions + - Debugging/Testing options: - Opţiuni Depanare/Test: + + Insufficient asset funds + - Do not load the wallet and disable wallet RPC calls - Nu încarcă portofelul şi dezactivează solicitările portofel RPC + + Invalid Qualifier Name: + - Do you want to rebuild the block database now? - Doriţi să reconstruiţi baza de date blocuri acum? + + Invalid expressions in verifier string: + - Error initializing block database - Eroare la iniţializarea bazei de date de blocuri + + Invalid parameter: amount must be + - Error initializing wallet database environment %s! - Eroare la iniţializarea mediului de bază de date a portofelului %s! + + Invalid parameter: amount must be between + - Error loading block database - Eroare la încărcarea bazei de date de blocuri + + Invalid parameter: asset amount can't be equal to or less than zero. + - Error opening block database - Eroare la deschiderea bazei de date de blocuri + + Invalid parameter: asset amount greater than max money: + - Error: Disk space is low! - Eroare: Spaţiu pe disc redus! + + Invalid parameter: asset_name ' + - Failed to listen on any port. Use -listen=0 if you want this. - Nu s-a reuşit ascultarea pe orice port. Folosiţi -listen=0 dacă vreţi asta. + + Invalid parameter: has_ipfs must be 0 or 1. + - Importing... - Import... + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Incorrect or no genesis block found. Wrong datadir for network? - Incorect sau nici un bloc de geneza găsit. Directorul de retea greşit? + + Invalid parameter: reissuable must be 0 or 1 + - Invalid -onion address: '%s' - Adresa -onion nevalidă: '%s' + + Invalid parameter: reissuable must be 0 + - Not enough file descriptors available. - Nu sînt destule descriptoare disponibile. + + Invalid parameter: units must be + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Se conectează doar la noduri în reţeaua <net> (ipv4, ipv6 sau onion) + + Invalid parameter: units must be between 0-8. + - Set database cache size in megabytes (%d to %d, default: %d) - Setează mărimea bazei de date cache în megaocteţi (%d la %d, implicit: %d) + + Invalid syntax: + - Set maximum block size in bytes (default: %d) - Setaţi dimensiunea maximă a unui bloc în bytes (implicit: %d) + + Keypool ran out, please call keypoolrefill first + - Specify wallet file (within data directory) - Specifică fişierul portofel (în dosarul de date) + + Length is to large. Please use a smaller length + - Use UPnP to map the listening port (default: %u) - Foloseşte mapare UPnP pentru asculatere port (implicit: %u) + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Verifying blocks... - Se verifică blocurile... + + Listen for connections on <port> (default: %u or testnet: %u) + - Verifying wallet... - Se verifică portofelul... + + Maintain at most <n> connections to peers (default: %u) + - Wallet %s resides outside data directory %s - Portofelul %s se află în afara dosarului de date %s + + Make the wallet broadcast transactions + - Wallet options: - Opţiuni portofel: + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Permite conexiunile JSON-RPC din sursa specificată. Valid pentru <ip> sînt IP singulare (ex. 1.2.3.4), o reţea/mască-reţea (ex. 1.2.3.4/255.255.255.0) sau o reţea/CIDR (ex. 1.2.3.4/24). Această opţiune poate fi specificată de mai multe ori + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Execută comanda cînd o alertă relevantă este primită sau vedem o bifurcaţie foarte lungă (%s în cmd este înlocuit de mesaj) + + Mempool cleared + - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Setează mărimea pentru tranzacţiile prioritare/taxe mici în octeţi (implicit: %d) + + Multiple verifier strings found in transaction + - (default: %u) - (implicit: %u) + + Passphrase securing your 12-word mnemonic word-list + - Accept public REST requests (default: %u) - Acceptă cererile publice REST (implicit: %u) + + Prepend debug output with timestamp (default: %u) + - Automatically create Tor hidden service (default: %d) - Crează automat un serviciu Tor ascuns (implicit: %d) + + Relay and mine data carrier transactions (default: %u) + - Connect through SOCKS5 proxy - Conectare prin proxy SOCKS5 + + Relay non-P2SH multisig (default: %u) + - Error reading from database, shutting down. - Eroare la citirea bazei de date. Oprire. + + Restricted asset transfer from address that has been frozen + - Information - Informaţie + + Send transactions with full-RBF opt-in enabled (default: %u) + - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Sumă nevalidă pentru -paytxfee=<suma>: '%s' (trebuie să fie cel puţin %s) + + Set key pool size to <n> (default: %u) + - Invalid netmask specified in -whitelist: '%s' - Mască reţea nevalidă specificată în -whitelist: '%s' + + Set maximum BIP141 block weight (default: %d) + - Need to specify a port with -whitebind: '%s' - Trebuie să specificaţi un port cu -whitebind: '%s' + + Set the Maximum reorg depth (default: %u) + - RPC server options: - Opţiuni server RPC: + + Set the number of threads to service RPC calls (default: %d) + - Send trace/debug info to console instead of debug.log file - Trimite informaţiile trace/debug la consolă în locul fişierului debug.log + + Signing asset transaction failed + - Send transactions as zero-fee transactions if possible (default: %u) - Trimitere tranzacţii ca tranzacţii taxă-zero dacă este posibil (implicit: %u) + + Specify configuration file (default: %s) + Specificaţi fişierul configuraţie (implicit: %s) - Show all debugging options (usage: --help -help-debug) - Arată toate opţiunile de depanare (uz: --help -help-debug) + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Micşorează fişierul debug.log la pornirea clientului (implicit: 1 cînd nu se foloseşte -debug) + + Specify pid file (default: %s) + Specifică fişierul pid (implicit: %s) - Signing transaction failed - Nu s-a reuşit semnarea tranzacţiei + + Spend unconfirmed change when sending transactions (default: %u) + - This is experimental software. - Acesta este un program experimental. + + Starting network threads... + - Transaction amount too small - Suma tranzacţionată este prea mică + + The symbol: ' + - Transaction too large for fee policy - Tranzacţie prea mare pentru politică gratis + + The verifier string has two operators without a tag between them + - Transaction too large - Tranzacţie prea mare + + The wallet will avoid paying less than the minimum relay fee. + - Unable to bind to %s on this computer (bind returned error %s) - Nu se poate lega la %s pe acest calculator. (Legarea a întors eroarea %s) + + This is the minimum transaction fee you pay on every transaction. + - Username for JSON-RPC connections - Utilizator pentru conexiunile JSON-RPC + + This is the transaction fee you will pay if you send a transaction. + - Warning - Avertisment + + Threshold for disconnecting misbehaving peers (default: %u) + - Zapping all transactions from wallet... - Şterge toate tranzacţiile din portofel... + + Transaction amounts must not be negative + - Password for JSON-RPC connections - Parola pentru conexiunile JSON-RPC + + Transaction has too long of a mempool chain + - Execute command when the best block changes (%s in cmd is replaced by block hash) - Execută comanda cînd cel mai bun bloc se modifică (%s în cmd este înlocuit cu hash-ul blocului) + + Transaction must have at least one recipient + - Allow DNS lookups for -addnode, -seednode and -connect - Permite căutări DNS pentru -addnode, -seednode şi -connect + + Turn off the databasing the messages sent with assets (default: %u) + - Loading addresses... - Încărcare adrese... + + Unable to generate initial keys + - Output debugging information (default: %u, supplying <category> is optional) - Produce toate informaţiile de depanare (implicit: %u <category> furnizată este opţională) + + Unable to get coin to verify restricted asset transfer from address + - (default: %s) - (implicit: %s) + + Unable to reissue asset: amount must be 0 or larger + - How many blocks to check at startup (default: %u, 0 = all) - Cîte blocuri verifică la pornire (implicit: %u, 0 = toate) + + Unable to reissue asset: asset_name ' + - Invalid -proxy address: '%s' - Adresa -proxy nevalidă: '%s' + + Unable to reissue asset: reissuable is set to false + - Specify configuration file (default: %s) - Specificaţi fişierul configuraţie (implicit: %s) + + Unable to reissue asset: reissuable must be 0 or 1 + - Specify pid file (default: %s) - Specifică fişierul pid (implicit: %s) + + Unable to reissue asset: unit must be between 8 and -1 + - Unknown network specified in -onlynet: '%s' - Reţeaua specificată în -onlynet este necunoscută: '%s' + + Unknown network specified in -onlynet: '%s' + Reţeaua specificată în -onlynet este necunoscută: '%s' + Insufficient funds Fonduri insuficiente + Loading block index... Încărcare index bloc... - Add a node to connect to and attempt to keep the connection open - Adaugă un nod la care te poţi conecta pentru a menţine conexiunea deschisă - - + Loading wallet... Încărcare portofel... + Cannot downgrade wallet Nu se poate retrograda portofelul - Cannot write default address - Nu se poate scrie adresa implicită - - + Rescanning... Rescanare... - Done loading - Încărcare terminată - - + Error Eroare diff --git a/src/qt/locale/raven_ru.ts b/src/qt/locale/raven_ru.ts index d83cf7465b..b179af51fa 100644 --- a/src/qt/locale/raven_ru.ts +++ b/src/qt/locale/raven_ru.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Клик правой кнопкой для редактирования адреса или метки + Create a new address Создать новый адрес + &New &Новый + Copy the currently selected address to the system clipboard Копировать текущий выделенный адрес в буфер обмена + &Copy &Копировать + C&lose &Закрыть + Delete the currently selected address from the list Удалить выбранный адрес из списка + Export the data in the current tab to a file Экспортировать данные из вкладки в файл + &Export &Экспорт + &Delete &Удалить + Choose the address to send coins to - Выберите адрес для отправки перевода + Выберите адрес для отправки монет + Choose the address to receive coins with - Выберите адрес для получения перевода + Выберите адрес для получения монет + C&hoose &Выбрать + Sending addresses Адреса отправки + Receiving addresses Адреса получения + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Это ваши адреса Raven для отправки платежей. Всегда проверяйте сумму и адрес получателя перед отправкой перевода. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Это ваши адреса Raven для приёма платежей. Рекомендуется использовать новый адрес получения для каждой транзакции. + &Copy Address Копировать &адрес + Copy &Label Копировать &метку + &Edit &Правка + Export Address List Экспортировать список адресов + Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) + Exporting Failed Экспорт не удался + There was an error trying to save the address list to %1. Please try again. Произошла ошибка при сохранении списка адресов в %1. Пожалуйста, попробуйте еще раз. @@ -103,14 +125,17 @@ AddressTableModel + Label Метка + Address Адрес + (no label) (нет метки) @@ -118,2107 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Диалог ввода пароля + Enter passphrase Введите пароль + New passphrase Новый пароль + Repeat new passphrase Повторите новый пароль + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Введите новый пароль бумажника.<br/>Используйте пароль, состоящий из <b>десяти или более случайных символов</b>, или <b>восьми или более слов</b>. + Encrypt wallet Зашифровать бумажник + This operation needs your wallet passphrase to unlock the wallet. Для выполнения операции требуется пароль вашего бумажника. + Unlock wallet Разблокировать бумажник + This operation needs your wallet passphrase to decrypt the wallet. Для выполнения операции требуется пароль вашего бумажника. + Decrypt wallet Расшифровать бумажник + Change passphrase Сменить пароль + Enter the old passphrase and new passphrase to the wallet. Введите старый и новый пароль для бумажника. + Confirm wallet encryption Подтвердите шифрование бумажника + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Предупреждение: если вы зашифруете бумажник и потеряете пароль, вы <b>ПОТЕРЯЕТЕ ВСЕ ВАШИ RAVENS</b>! + Are you sure you wish to encrypt your wallet? Вы уверены, что хотите зашифровать ваш бумажник? + + Wallet encrypted Бумажник зашифрован + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. Сейчас %1 закроется для завершения процесса шифрования. Помните, что шифрование вашего бумажника не может полностью защитить ваши ravens от кражи с помощью инфицирования вашего компьютера вредоносным ПО. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖНО: все предыдущие резервные копии вашего бумажника должны быть заменены новым зашифрованным файлом. В целях безопасности предыдущие резервные копии незашифрованного бумажника станут бесполезны, как только вы начнёте использовать новый зашифрованный бумажник. + + + + Wallet encryption failed Не удалось зашифровать бумажник + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Шифрование бумажника не удалось из-за внутренней ошибки. Ваш бумажник не был зашифрован. + + The supplied passphrases do not match. Введённые пароли не совпадают. + Wallet unlock failed Разблокировка бумажника не удалась + + + The passphrase entered for the wallet decryption was incorrect. Неверный пароль для расшифровки бумажника. + Wallet decryption failed Расшифровка бумажника не удалась + Wallet passphrase was successfully changed. Пароль бумажника успешно изменён. + + Warning: The Caps Lock key is on! Внимание: Caps Lock включен! - BanTableModel + AssetControlDialog - IP/Netmask - IP/префикс + + Asset Selection + - Banned Until - Заблокировано до + + Quantity: + - - - RavenGUI - Sign &message... - &Подписать сообщение... + + Bytes: + - Synchronizing with network... - Синхронизация с сетью... + + Amount: + - &Overview - &Обзор + + Dust: + - Node - Узел + + Fee: + - Show general overview of wallet - Показать общий обзор действий с бумажником + + After Fee: + - &Transactions - &Транзакции + + Change: + - Browse transaction history - Показать историю транзакций + + (un)select all + - E&xit - В&ыход + + Tree mode + - Quit application - Закрыть приложение + + List mode + - &About %1 - &О %1 + + View assets that you have the ownership asset for + - Show information about %1 - Показать информацию о %1 + + View Administrator Assets + - About &Qt - О &Qt + + Asset + - Show information about Qt - Показать информацию о Qt + + Amount + - &Options... - &Параметры + + Received with label + - Modify configuration options for %1 - Изменить конфигурационные настройки для %1 + + Received with address + - &Encrypt Wallet... - &Зашифровать бумажник... + + Date + - &Backup Wallet... - &Сделать резервную копию бумажника... + + Confirmations + - &Change Passphrase... - &Изменить пароль... + + Confirmed + - &Sending addresses... - &Адреса отправки... + + Copy address + - &Receiving addresses... - Адреса &получения... + + Copy label + - Open &URI... - Открыть &URI... + + + Copy amount + - Click to disable network activity. - Кликните, чтобы запретить сетевую активность. + + Copy transaction ID + - Network activity disabled. - Сетевая активность запрещена. + + Lock unspent + - Click to enable network activity again. - Кликните, чтобы снова разрешить сетевую активность. + + Unlock unspent + - Syncing Headers (%1%)... - Синхронизация заголовков (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Идёт переиндексация блоков на диске... + + Copy fee + - Send coins to a Raven address - Отправить монеты на указанный адрес Raven + + Copy after fee + - Backup wallet to another location - Сделать резервную копию бумажника в другом месте + + Copy bytes + - Change the passphrase used for wallet encryption - Изменить пароль шифрования бумажника + + Copy dust + - &Debug window - &Окно отладки + + Copy change + - Open debugging and diagnostic console - Открыть консоль отладки и диагностики + + (%1 locked) + - &Verify message... - &Проверить сообщение... + + yes + - Raven - Raven + + no + - Wallet - Бумажник + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Отправить + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Получить + + + (no label) + - &Show / Hide - &Показать / Скрыть + + change from %1 (%2) + - Show or hide the main Window - Показать или скрыть главное окно + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Зашифровать приватные ключи, принадлежащие вашему бумажнику + + Name + - Sign messages with your Raven addresses to prove you own them - Подписать сообщения вашим адресом Raven, чтобы доказать, что вы им владеете + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Проверить сообщения, чтобы удостовериться, что они были подписаны определённым адресом Raven + + + Send Coins + - &File - &Файл + + Asset Control Features + - &Settings - &Настройки + + Inputs... + - &Help - &Помощь + + automatically selected + - Tabs toolbar - Панель вкладок + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Запросить платежи (создаёт QR-коды и raven: ссылки) + + Quantity: + - Show the list of used sending addresses and labels - Показать список использованных адресов и меток отправки + + Bytes: + - Show the list of used receiving addresses and labels - Показать список использованных адресов и меток получения + + Amount: + - Open a raven: URI or payment request - Открыть raven: URI или запрос платежа + + Dust: + - &Command-line options - &Параметры командной строки - - - %n active connection(s) to Raven network - %n активных соединений с сетью Raven + + Fee: + - Indexing blocks on disk... - Индексация блоков на диске... + + After Fee: + - Processing blocks on disk... - Обработка блоков на диске... + + Change: + - - Processed %n block(s) of transaction history. - Обработан %n блок истории транзакций. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 позади + + Custom change address + - Last received block was generated %1 ago. - Последний полученный блок был сгенерирован %1 назад. + + Transaction Fee: + - Transactions after this will not yet be visible. - Транзакции после него пока не будут видны. + + Choose... + - Error - Ошибка + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Внимание + + Warning: Fee estimation is currently not possible. + - Information - Информация + + collapse fee-settings + - Up to date - Синхронизировано + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - Показать помощь по %1, чтобы получить список доступных параметров командной строки + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1 клиент + + per kilobyte + - Connecting to peers... - Подключение к пирам... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Синхронизируется... + + (read the tooltip) + - Date: %1 - - Дата: %1 - + + Recommended: + - Amount: %1 - - Количество: %1 - + + Custom: + - Type: %1 - - Тип: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Метка: %1 - + + Confirmation time target: + - Address: %1 - - Адрес: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Исходящая транзакция + + Request Replace-By-Fee + - Incoming transaction - Входящая транзакция + + Confirm the send action + - HD key generation is <b>enabled</b> - Генерация HD-ключей <b>разрешена</b> + + S&end + - HD key generation is <b>disabled</b> - Генерация HD-ключей <b>запрещена</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Произошла неисправимая ошибка. Raven не может безопасно продолжать работу и будет закрыт. + + Add &Recipient + - - - CoinControlDialog - Coin Selection - Выбор монет + + Balance: + - Quantity: - Количество: + + Copy quantity + - Bytes: - Байт: + + Copy amount + - Amount: - Сумма: + + Copy fee + - Fee: - Комиссия: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/префикс + + + + Banned Until + Заблокировано до + + + + CoinControlDialog + + + Coin Selection + Выбор монет + + + + Quantity: + Количество: + + + + Bytes: + Байт: + + + + Amount: + Сумма: + + + + Fee: + Комиссия: + + + Dust: Пыль: + After Fee: После комиссии: + Change: Сдача: + (un)select all Отменить выбор всего + Tree mode Режим дерева + List mode Режим списка + Amount Сумма + Received with label Получено с пометкой + Received with address Получено с адреса + Date Дата + Confirmations Подтверждений + Confirmed Подтверждено + Copy address Копировать адрес + Copy label Копировать метку + + Copy amount Копировать сумму + Copy transaction ID Копировать ID транзакции + Lock unspent Заблокировать непотраченное + Unlock unspent Разблокировать непотраченное + Copy quantity Копировать количество + Copy fee Копировать комиссию + Copy after fee Копировать после комиссии + Copy bytes Копировать байты + Copy dust Копировать пыль + Copy change Копировать сдачу + (%1 locked) (%1 заблокировано) + yes да + no нет + This label turns red if any recipient receives an amount smaller than the current dust threshold. Эта метка станет красной, если любой получатель получит сумму меньше, чем текущий порог пыли. + Can vary +/- %1 satoshi(s) per input. Может отличаться на +/- %1 сатоши на вход. + + (no label) (нет метки) + change from %1 (%2) сдача с %1 (%2) + (change) (сдача) - EditAddressDialog + CreateAssetDialog - Edit Address - Изменить адрес + + Coin Control Features + - &Label - &Метка + + Inputs... + - The label associated with this address list entry - Метка, связанная с этой записью списка адресов + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Адрес, связанный с этой записью списка адресов. Он может быть изменён только для адресов отправки. + + Insufficient funds! + - &Address - &Адрес + + + Quantity: + - New receiving address - Новый адрес получения + + Bytes: + - New sending address - Новый адрес отправки + + Amount: + - Edit receiving address - Изменить адрес получения + + Dust: + - Edit sending address - Изменить адрес отправки + + Fee: + - The entered address "%1" is not a valid Raven address. - Введённый адрес "%1" не является правильным Raven-адресом. + + After Fee: + - The entered address "%1" is already in the address book. - Введённый адрес "%1" уже находится в адресной книге. + + Change: + - Could not unlock wallet. - Не удается разблокировать бумажник. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Генерация нового ключа не удалась. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Будет создан новый каталог данных. + + Name: + - name - имя + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Каталог уже существует. Добавьте %1, если вы хотите создать здесь новый каталог. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Путь уже существует и не является каталогом. + + Check Availabilty + - Cannot create data directory here. - Не удаётся создать здесь каталог данных. + + Address: + - - - HelpMessageDialog - version - версия + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-бит) + + Verifier String: + - About %1 - О %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Параметры командной строки + + Warning: + - Usage: - Использование: + + The number of assets that will be created + - command-line options - параметры командной строки + + Units: + - UI Options: - Настройки интерфейса: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Выбрать каталог данных при запуске (по умолчанию: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Выберите язык, например "de_DE" (по умолчанию: как в системе) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Запускать свёрнутым + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Указать корневые SSL-сертификаты для запроса платежа (по умолчанию: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Показывать экран-заставку при запуске (по умолчанию: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Сбросить все настройки, измененные в графическом интерфейсе + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Добро пожаловать + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Добро пожаловать в %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - При первом запуске программы вы можете выбрать где %1 будет хранить свои данные. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 скачает и сохранит копию цепи блоков. Как минимум %2GB будут записаны в этот каталог, и со временем он будет расти. Бумажник также будет сохранен в этом каталоге. + + Choose... + - Use the default data directory - Использовать каталог данных по умолчанию + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Использовать другой каталог данных: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Ошибка: не удалось создать указанный каталог данных "%1". + + collapse fee-settings + - Error - Ошибка - - - %n GB of free space available - %n ГБ свободного места доступно + + Hide + - - (of %n GB needed) - (из необходимых %n ГБ) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Форма + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Недавние транзакции могут быть пока не видны, поэтому ваш баланс может отображаться некорректно. Эта информация станет корректной, как только ваш бумажник будет синхронизирован с сетью, см. подробности ниже. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Попытка потратить ravens из ещё не отображённых транзакций будет отвергнута сетью. + + (read the tooltip) + - Number of blocks left - Число оставшихся блоков + + Recommended: + - Unknown... - Неизвестно... + + C&ustom: + - Last block time - Время последнего блока + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - Прогресс + + Confirmation time target: + - Progress increase per hour - Прогресс за час + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - расчёт... + + Request Replace-By-Fee + - Estimated time left until synced - Примерное время до завершения синхронизации + + Create Asset + - Hide - Скрыть + + Clear + - Unknown. Syncing Headers (%1)... - Неизвестно. Синхронизация заголовков (%1)... + + Balance: + - - - OpenURIDialog - Open URI - Открыть URI + + 123.456 RVN + - Open payment request from URI or file - Открыть запрос платежа из URI или файла + + Copy quantity + - URI: - URI: + + Copy amount + - Select payment request file - Выбрать файл запроса платежа + + Copy fee + - Select payment request file to open - Выберите файл запроса платежа + + Copy after fee + - - - OptionsDialog - Options - Параметры + + Copy bytes + - &Main - &Главная + + Copy dust + - Automatically start %1 after logging in to the system. - Автоматически запускать %1 после входа в систему. + + Copy change + - &Start %1 on system login - &Запускать %1 при входе в систему + + %1 (%2 blocks) + - Size of &database cache - Размер кэша &БД + + Main Asset + - MB - МБ + + Sub Asset + - Number of script &verification threads - Число потоков проверки &сценария + + Unique Asset + - Accept connections from outside - Принимать входящие соединения + + Messaging Channel Asset + - Allow incoming connections - Разрешить входящие подключения + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-адрес прокси (например IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. + + Restricted Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Сторонние URL (например, block explorer), которые отображаются на вкладке транзакций как пункты контекстного меню. %s в URL заменяется хэшем транзакции. URL отделяются друг от друга вертикальной чертой |. + + Asset Type + - Third party transaction URLs - Сторонние URL транзакций. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Active command-line options that override above options: - Активные опции командной строки, которые перекрывают вышеуказанные опции: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Reset all client options to default. - Сбросить все настройки клиента на значения по умолчанию. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Reset Options - &Сбросить параметры + + + + Warning: Invalid Raven address + - &Network - &Сеть + + Warning: Restricted Assets Reissuance requires an address + - (0 = auto, <0 = leave that many cores free) - (0 = автоматически, <0 = оставить столько незагруженных ядер) + + Valid Asset + - W&allet - Б&умажник + + Invalid: Asset name already in use + - Expert - Эксперт + + Error: Asset Database not in sync + - Enable coin &control features - Включить управление входами + + + %1 to %2 + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - При отключении траты неподтверждённой сдачи, сдача от транзакции не может быть использована до тех пор пока у этой транзакции не будет хотя бы одно подтверждение. Это также влияет как ваш баланс рассчитывается. + + Are you sure you want to send? + - &Spend unconfirmed change - &Тратить неподтверждённую сдачу + + added as transaction fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматически открыть порт для Raven-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. + + Total Amount %1 + - Map port using &UPnP - Пробросить порт через &UPnP + + or + - Connect to the Raven network through a SOCKS5 proxy. - Подключаться к сети Raven через прокси SOCKS5 + + Confirm send assets + - &Connect through SOCKS5 proxy (default proxy): - &Подключаться к сети Raven через прокси SOCKS5 (прокси по умолчанию): + + Invalid: + - Proxy &IP: - &IP Прокси: + + Copy + - &Port: - По&рт: + + Transaction ID Copied + - Port of the proxy (e.g. 9050) - Порт прокси-сервера (например, 9050) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Используется для достижения участников через: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Показывается, если включено прокси SOCKS5 по умолчанию, используемое для соединения с участниками по этому типу сети. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Подключаться к сети Raven через прокси SOCKS5 для скрытых сервисов Tor. + + Edit Address + Изменить адрес - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Использовать отдельный прокси SOCKS5 для соединения с участниками через скрытые сервисы Tor: + + &Label + &Метка - &Window - &Окно + + The label associated with this address list entry + Метка, связанная с этой записью списка адресов - &Hide the icon from the system tray. - &Скрыть иконку из системного трея. + + The address associated with this address list entry. This can only be modified for sending addresses. + Адрес, связанный с этой записью списка адресов. Он может быть изменён только для адресов отправки. - Hide tray icon - Скрыть иконку в трее + + &Address + &Адрес - Show only a tray icon after minimizing the window. - Показывать только иконку в системном лотке после сворачивания окна. + + New receiving address + Новый адрес получения - &Minimize to the tray instead of the taskbar - &Cворачивать в системный лоток вместо панели задач + + New sending address + Новый адрес отправки - M&inimize on close - С&ворачивать при закрытии + + Edit receiving address + Изменить адрес получения - &Display - О&тображение + + Edit sending address + Изменить адрес отправки - User Interface &language: - &Язык интерфейса: + + The entered address "%1" is not a valid Raven address. + Введённый адрес "%1" не является правильным Raven-адресом. - The user interface language can be set here. This setting will take effect after restarting %1. - Здесь можно установить язык пользовательского интерфейса. Настройки вступят в силу после перезагрузки %1 + + The entered address "%1" is already in the address book. + Введённый адрес "%1" уже находится в адресной книге. - &Unit to show amounts in: - &Отображать суммы в единицах: + + Could not unlock wallet. + Не удается разблокировать бумажник. - Choose the default subdivision unit to show in the interface and when sending coins. - Выберите единицу измерения монет при отображении и отправке. + + New key generation failed. + Генерация нового ключа не удалась. + + + FreespaceChecker - Whether to show coin control features or not. - Показывать ли функции контроля монет или нет. + + A new data directory will be created. + Будет создан новый каталог данных. - &OK - &OK + + name + имя - &Cancel - &Отмена + + Directory already exists. Add %1 if you intend to create a new directory here. + Каталог уже существует. Добавьте %1, если вы хотите создать здесь новый каталог. - default - по умолчанию + + Path already exists, and is not a directory. + Путь уже существует и не является каталогом. - none - ничего + + Cannot create data directory here. + Не удаётся создать здесь каталог данных. + + + FreezeAddress - Confirm options reset - Подтвердите сброс параметров + + Frame + - Client restart required to activate changes. - Для применения изменений требуется перезапуск клиента. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - Клиент будет выключен. Желаете продолжить? + + Address: + - This change would require a client restart. - Это изменение потребует перезапуска клиента. + + Custom Change Address + - The supplied proxy address is invalid. - Адрес прокси неверен. + + IPFS / Hash: + - - - OverviewPage - Form - Форма + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Raven после подключения, но этот процесс пока не завершён. + + Global Options + - Watch-only: - Только наблюдение: + + Free&ze trading on this address + - Available: - Доступно: + + Unfreeze tradin&g on this address + - Your current spendable balance - Ваш текущий расходный баланс + + Freeze all &trading for the selected restricted asset + - Pending: - В ожидании: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в расходном балансе + + Check + - Immature: - Незрелые: + + Clear + - Mined balance that has not yet matured - Баланс добытых монет, который ещё не созрел + + Submit + - Balances - Балансы + + Data has been validated, You can now submit the restriction transaction + - Total: - Итого: + + Must have a restricted asset selected + - Your current total balance - Ваш текущий общий баланс + + Address is already frozen + - Your current balance in watch-only addresses - Ваш текущий баланс в адресах наблюдения + + Address is not frozen + - Spendable: - Доступно: + + Restricted asset is already frozen globally + - Recent transactions - Последние транзакции + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Неподтверждённые транзакции на адреса наблюдения + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Баланс добытых монет на адресах наблюдения, который ещё не созрел + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Текущий общий баланс на адресах наблюдения + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Ошибка запроса платежа + + version + версия - Cannot start raven: click-to-pay handler - Не удаётся запустить raven: обработчик click-to-pay + + + (%1-bit) + (%1-бит) - URI handling - Обработка URI + + About %1 + О %1 - Payment request fetch URL is invalid: %1 - Неверный URL запроса платежа: %1 + + Command-line options + Параметры командной строки + + + + Usage: + Использование: + + + + command-line options + параметры командной строки + + + + UI Options: + Настройки интерфейса: + + + + Choose data directory on startup (default: %u) + Выбрать каталог данных при запуске (по умолчанию: %u) + + + + Set language, for example "de_DE" (default: system locale) + Выберите язык, например "de_DE" (по умолчанию: как в системе) + + + + Start minimized + Запускать свёрнутым + + + + Set SSL root certificates for payment request (default: -system-) + Указать корневые SSL-сертификаты для запроса платежа (по умолчанию: -system-) + + + + Show splash screen on startup (default: %u) + Показывать экран-заставку при запуске (по умолчанию: %u) + + + + Reset all settings changed in the GUI + Сбросить все настройки, измененные в графическом интерфейсе + + + + Intro + + + Welcome + Добро пожаловать + + + + Welcome to %1. + Добро пожаловать в %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + При первом запуске программы вы можете выбрать где %1 будет хранить свои данные. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Использовать каталог данных по умолчанию + + + + Use a custom data directory: + Использовать другой каталог данных: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Ошибка: не удалось создать указанный каталог данных "%1". + + + + Error + Ошибка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Форма + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Недавние транзакции могут быть пока не видны, поэтому ваш баланс может отображаться некорректно. Эта информация станет корректной, как только ваш бумажник будет синхронизирован с сетью, см. подробности ниже. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Попытка потратить ravens из ещё не отображённых транзакций будет отвергнута сетью. + + + + Number of blocks left + Число оставшихся блоков + + + + + + Unknown... + Неизвестно... + + + + Last block time + Время последнего блока + + + + Progress + Прогресс + + + + Progress increase per hour + Прогресс за час + + + + + calculating... + расчёт... + + + + Estimated time left until synced + Примерное время до завершения синхронизации + + + + Hide + Скрыть + + + + Unknown. Syncing Headers (%1)... + Неизвестно. Синхронизация заголовков (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Открыть URI + + + + Open payment request from URI or file + Открыть запрос платежа из URI или файла + + + + URI: + URI: + + + + Select payment request file + Выбрать файл запроса платежа + + + + Select payment request file to open + Выберите файл запроса платежа + + + + OptionsDialog + + + Options + Параметры + + + + &Main + &Главная + + + + Automatically start %1 after logging in to the system. + Автоматически запускать %1 после входа в систему. + + + + &Start %1 on system login + &Запускать %1 при входе в систему + + + + Size of &database cache + Размер кэша &БД + + + + MB + МБ + + + + Number of script &verification threads + Число потоков проверки &сценария + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-адрес прокси (например IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Сворачивать вместо закрытия. Если данная опция будет выбрана — приложение закроется только после выбора соответствующего пункта в меню. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Сторонние URL (например, block explorer), которые отображаются на вкладке транзакций как пункты контекстного меню. %s в URL заменяется хэшем транзакции. URL отделяются друг от друга вертикальной чертой |. + + + + Active command-line options that override above options: + Активные опции командной строки, которые перекрывают вышеуказанные опции: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Сбросить все настройки клиента на значения по умолчанию. + + + + &Reset Options + &Сбросить параметры + + + + &Network + &Сеть + + + + (0 = auto, <0 = leave that many cores free) + (0 = автоматически, <0 = оставить столько незагруженных ядер) + + + + W&allet + Б&умажник + + + + Expert + Эксперт + + + + Enable coin &control features + Включить управление входами + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + При отключении траты неподтверждённой сдачи, сдача от транзакции не может быть использована до тех пор пока у этой транзакции не будет хотя бы одно подтверждение. Это также влияет как ваш баланс рассчитывается. + + + + &Spend unconfirmed change + &Тратить неподтверждённую сдачу + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматически открыть порт для Raven-клиента на роутере. Работает только если Ваш роутер поддерживает UPnP, и данная функция включена. + + + + Map port using &UPnP + Пробросить порт через &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Подключаться к сети Raven через прокси SOCKS5 + + + + &Connect through SOCKS5 proxy (default proxy): + &Подключаться к сети Raven через прокси SOCKS5 (прокси по умолчанию): + + + + + Proxy &IP: + &IP Прокси: + + + + + &Port: + По&рт: + + + + + Port of the proxy (e.g. 9050) + Порт прокси-сервера (например, 9050) + + + + Used for reaching peers via: + Используется для достижения участников через: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Подключаться к сети Raven через прокси SOCKS5 для скрытых сервисов Tor. + + + + &Window + &Окно + + + + Show only a tray icon after minimizing the window. + Показывать только иконку в системном лотке после сворачивания окна. + + + + &Minimize to the tray instead of the taskbar + &Cворачивать в системный лоток вместо панели задач + + + + M&inimize on close + С&ворачивать при закрытии + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + О&тображение + + + + User Interface &language: + &Язык интерфейса: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Здесь можно установить язык пользовательского интерфейса. Настройки вступят в силу после перезагрузки %1 + + + + &Unit to show amounts in: + &Отображать суммы в единицах: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Выберите единицу измерения монет при отображении и отправке. + + + + Whether to show coin control features or not. + Показывать ли функции контроля монет или нет. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Отмена + + + + default + по умолчанию + + + + none + ничего + + + + Confirm options reset + Подтвердите сброс параметров + + + + + Client restart required to activate changes. + Для применения изменений требуется перезапуск клиента. + + + + Client will be shut down. Do you want to proceed? + Клиент будет выключен. Желаете продолжить? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Это изменение потребует перезапуска клиента. + + + + The supplied proxy address is invalid. + Адрес прокси неверен. + + + + OverviewPage + + + Form + Форма + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Отображаемая информация может быть устаревшей. Ваш бумажник автоматически синхронизируется с сетью Raven после подключения, но этот процесс пока не завершён. + + + + Watch-only: + Только наблюдение: + + + + Available: + Доступно: + + + + Your current spendable balance + Ваш текущий расходный баланс + + + + Pending: + В ожидании: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Общая сумма всех транзакций, которые до сих пор не подтверждены, и до сих пор не учитываются в расходном балансе + + + + Immature: + Незрелые: + + + + Mined balance that has not yet matured + Баланс добытых монет, который ещё не созрел + + + + Total: + Итого: + + + + Your current total balance + Ваш текущий общий баланс + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Ваш текущий баланс в адресах наблюдения + + + + Spendable: + Доступно: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Последние транзакции + + + + Unconfirmed transactions to watch-only addresses + Неподтверждённые транзакции на адреса наблюдения + + + + Mined balance in watch-only addresses that has not yet matured + Баланс добытых монет на адресах наблюдения, который ещё не созрел + + + + Current total balance in watch-only addresses + Текущий общий баланс на адресах наблюдения + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Ошибка запроса платежа + + + + Cannot start raven: click-to-pay handler + Не удаётся запустить raven: обработчик click-to-pay + + + + + + URI handling + Обработка URI + + + + Payment request fetch URL is invalid: %1 + Неверный URL запроса платежа: %1 + + + + Invalid payment address %1 + Неверный адрес платежа %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + Не удалось обработать URI! Это может быть связано с неверным адресом Raven или неправильными параметрами URI. + + + + Payment request file handling + Обработка файла запроса платежа + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Файл запроса платежа не может быть прочитан! Обычно это происходит из-за неверного файла запроса платежа. + + + + + + + + + Payment request rejected + Запрос платежа отклонён + + + + Payment request network doesn't match client network. + Сеть запроса платежа не совпадает с сетью клиента. + + + + Payment request expired. + Запрос платежа просрочен. + + + + Payment request is not initialized. + Запрос платежа не инициализирован. + + + + Unverified payment requests to custom payment scripts are unsupported. + Непроверенные запросы платежей с нестандартными платёжными сценариями не поддерживаются. + + + + + Invalid payment request. + Неверный запрос платежа. + + + + Requested payment amount of %1 is too small (considered dust). + Запрошенная сумма платежа %1 слишком мала (считается пылью). + + + + Refund from %1 + Возврат от %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Запрос платежа %1 слишком большой (%2 байтов, разрешено %3 байтов). + + + + Error communicating with %1: %2 + Ошибка связи с %1: %2 + + + + Payment request cannot be parsed! + Запрос платежа не может быть разобран! + + + + Bad response from server %1 + Плохой ответ сервера %1 + + + + Network request error + Ошибка сетевого запроса + + + + Payment acknowledged + Платёж принят + + + + PeerTableModel + + + User Agent + Юзер-агент + + + + Node/Service + Узел/сервис + + + + NodeId + Id узла + + + + Ping + Пинг + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Сумма + + + + Enter a Raven address (e.g. %1) + Введите адрес Raven (например, %1) + + + + %1 d + %1 д + + + + %1 h + %1 ч + + + + %1 m + %1 мин + + + + + %1 s + %1 с + + + + None + Ничего + + + + N/A + Н/Д + + + + %1 ms + %1 мс + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 и %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ещё не завершился безопасно... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Ошибка: указанный каталог "%1" не существует. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Ошибка: не удалось разобрать конфигурационный файл: %1. Используйте синтаксис вида ключ=значение. + + + + Error: %1 + Ошибка: %1 + + + + QRImageWidget + + + &Save Image... + &Сохранить изображение... + + + + &Copy Image + Копировать &изображение + + + + Save QR Code + Сохранить QR-код + + + + PNG Image (*.png) + Изображение PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Н/Д + + + + Client version + Версия клиента + + + + &Information + &Информация + + + + Debug window + Окно отладки + + + + General + Общие + + + + Using BerkeleyDB version + Используется версия BerkeleyDB + + + + Datadir + Каталог для данных + + + + Startup time + Время запуска + + + + Network + Сеть + + + + Name + Имя + + + + Number of connections + Число подключений + + + + Block chain + Цепь блоков + + + + Current number of blocks + Текущее число блоков + + + + Memory Pool + Пул памяти + + + + Current number of transactions + Текущее число транзакций + + + + Memory usage + Использование памяти + + + + &Reset + + + + + + Received + Получено + + + + + Sent + Отправлено + + + + &Peers + &Участники + + + + Banned peers + Заблокированные участники + + + + + + Select a peer to view detailed information. + Выберите участника для просмотра подробностей. + + + + Whitelisted + Доверенный + + + + Direction + Направление + + + + Version + Версия + + + + Starting Block + Начальный блок + + + + Synced Headers + Синхронизировано заголовков + + + + Synced Blocks + Синхронизировано блоков + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Юзер-агент + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Открыть отладочный лог-файл %1 из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. + + + + Decrease font size + Уменьшить размер текста + + + + Increase font size + Увеличить размер текста + + + + Services + Сервисы + + + + Ban Score + Очков бана + + + + Connection Time + Время соединения + + + + Last Send + Последняя отправка + + + + Last Receive + Последний раз получено + + + + Ping Time + Время задержки + + + + The duration of a currently outstanding ping. + Длительность текущего пинга. + + + + Ping Wait + Время задержки + + + + Min Ping + Мин. пинг + + + + Time Offset + Смещение времени + + + + Last block time + Время последнего блока + + + + &Open + &Открыть + + + + &Console + Консоль + + + + &Network Traffic + Сетевой &трафик + + + + Totals + Всего + + + + In: + Вход: + + + + Out: + Выход: + + + + Debug log file + Отладочный лог-файл + + + + Clear console + Очистить консоль + + + + 1 &hour + 1 &час + + + + 1 &day + 1 &день + + + + 1 &week + 1 &неделю + + + + 1 &year + 1 &год + + + + &Disconnect + &Отключиться + + + + + + + Ban for + Бан на + + + + &Unban + &Разбанить + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Добро пожаловать в консоль RPC %1. + + + + Type <b>help</b> for an overview of available commands. + Напишите <b>help</b> для просмотра доступных команд. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Сетевая активность запрещена + + + + (node id: %1) + (номер узла: %1) + + + + via %1 + через %1 + + + + + never + никогда + + + + Inbound + Входящие + + + + Outbound + Исходящие + + + + Yes + Да + + + + No + Нет + + + + + Unknown + Неизвестно + + + + RavenGUI + + + Sign &message... + &Подписать сообщение... + + + + Synchronizing with network... + Синхронизация с сетью... + + + + &Overview + &Обзор + + + + Node + Узел + + + + Show general overview of wallet + Показать общий обзор действий с бумажником + + + + &Transactions + &Транзакции + + + + Browse transaction history + Показать историю транзакций + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + В&ыход + + + + Quit application + Закрыть приложение + + + + &About %1 + &О %1 + + + + Show information about %1 + Показать информацию о %1 + + + + About &Qt + О &Qt + + + + Show information about Qt + Показать информацию о Qt + + + + &Options... + &Параметры + + + + Modify configuration options for %1 + Изменить конфигурационные настройки для %1 + + + + &Encrypt Wallet... + &Зашифровать бумажник... + + + + &Backup Wallet... + &Сделать резервную копию бумажника... + + + + &Change Passphrase... + &Изменить пароль... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Адреса отправки... + + + + &Receiving addresses... + Адреса &получения... + + + + Open &URI... + Открыть &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Кликните, чтобы запретить сетевую активность. + + + + Network activity disabled. + Сетевая активность запрещена. + + + + Click to enable network activity again. + Кликните, чтобы снова разрешить сетевую активность. + + + + Syncing Headers (%1%)... + Синхронизация заголовков (%1%)... + + + + Reindexing blocks on disk... + Идёт переиндексация блоков на диске... + + + + Send coins to a Raven address + Отправить монеты на указанный адрес Raven + + + + Backup wallet to another location + Сделать резервную копию бумажника в другом месте + + + + Change the passphrase used for wallet encryption + Изменить пароль шифрования бумажника + + + + Open debugging and diagnostic console + Открыть консоль отладки и диагностики + + + + &Verify message... + &Проверить сообщение... + + + + Raven + Raven + + + + Wallet + Бумажник + + + + &Send + &Отправить + + + + &Receive + &Получить + + + + &Show / Hide + &Показать / Скрыть + + + + Show or hide the main Window + Показать или скрыть главное окно + + + + Encrypt the private keys that belong to your wallet + Зашифровать приватные ключи, принадлежащие вашему бумажнику + + + + Sign messages with your Raven addresses to prove you own them + Подписать сообщения вашим адресом Raven, чтобы доказать, что вы им владеете + + + + Verify messages to ensure they were signed with specified Raven addresses + Проверить сообщения, чтобы удостовериться, что они были подписаны определённым адресом Raven + + + + &File + &Файл + + + + &Help + &Помощь + + + + Request payments (generates QR codes and raven: URIs) + Запросить платежи (создаёт QR-коды и raven: ссылки) + + + + Show the list of used sending addresses and labels + Показать список использованных адресов и меток отправки + + + + Show the list of used receiving addresses and labels + Показать список использованных адресов и меток получения + + + + Open a raven: URI or payment request + Открыть raven: URI или запрос платежа + + + + &Command-line options + &Параметры командной строки + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Индексация блоков на диске... + + + + Processing blocks on disk... + Обработка блоков на диске... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 позади + + + + Last received block was generated %1 ago. + Последний полученный блок был сгенерирован %1 назад. + + + + Transactions after this will not yet be visible. + Транзакции после него пока не будут видны. + + + + Error + Ошибка + + + + Warning + Внимание + + + + Information + Информация + + + + Up to date + Синхронизировано + + + + Show the %1 help message to get a list with possible Raven command-line options + Показать помощь по %1, чтобы получить список доступных параметров командной строки + + + + %1 client + %1 клиент + + + + Connecting to peers... + Подключение к пирам... + + + + Catching up... + Синхронизируется... + + + + Date: %1 + + Дата: %1 + + + + + + Amount: %1 + + Количество: %1 + + + + + Type: %1 + + Тип: %1 + + + + + Label: %1 + + Метка: %1 + + + + + Address: %1 + + Адрес: %1 + + + + + Sent transaction + Исходящая транзакция + + + + Incoming transaction + Входящая транзакция + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Генерация HD-ключей <b>разрешена</b> + + + + HD key generation is <b>disabled</b> + Генерация HD-ключей <b>запрещена</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>разблокирован</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Бумажник <b>зашифрован</b> и в настоящее время <b>заблокирован</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Произошла неисправимая ошибка. Raven не может безопасно продолжать работу и будет закрыт. + + + + ReceiveCoinsDialog + + + &Amount: + &Сумма: + + + + &Label: + &Метка: + + + + &Message: + &Сообщение + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Повторно использовать один из ранее использованных адресов. Повторное использование адресов несёт риски безопасности и приватности. Не используйте эту опцию, если вы не создаёте повторно ранее сделанный запрос платежа. + + + + R&euse an existing receiving address (not recommended) + &Повторно использовать существующий адрес получения (не рекомендуется) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть Raven. + + + + + An optional label to associate with the new receiving address. + Необязательная метка для нового адреса получения. + + + + Use this form to request payments. All fields are <b>optional</b>. + Заполните форму для запроса платежей. Все поля <b>необязательны</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Необязательная сумма для запроса. Оставьте пустым или укажите ноль, чтобы запросить неопределённую сумму. + + + + Clear all fields of the form. + Очистить все поля формы. + + + + Clear + Очистить + + + + Requested payments history + История запрошенных платежей + + + + &Request payment + &Запросить платёж + + + + Show the selected request (does the same as double clicking an entry) + Показать выбранный запрос (то же самое, что и двойной клик по записи) + + + + Show + Показать + + + + Remove the selected entries from the list + Удалить выбранные записи из списка + + + + Remove + Удалить + + + + Copy URI + Копировать URI + + + + Copy label + Копировать метку + + + + Copy message + Копировать сообщение + + + + Copy amount + Копировать сумму + + + + ReceiveRequestDialog + + + QR Code + QR код + + + + Copy &URI + Копировать &URI + + + + Copy &Address + Копировать &адрес + + + + &Save Image... + &Сохранить изображение... + + + + Request payment to %1 + Запросить платёж на %1 + + + + Payment information + Информация платежа + + + + URI + URI + + + + Address + Адрес + + + + Amount + Сумма + + + + Label + Метка + + + + Message + Сообщение + + + + Resulting URI too long, try to reduce the text for label / message. + Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. + + + + Error encoding URI into QR Code. + Ошибка кодирования URI в QR-код + + + + RecentRequestsTableModel + + + Date + Дата - Invalid payment address %1 - Неверный адрес платежа %1 + + Label + Метка - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - Не удалось обработать URI! Это может быть связано с неверным адресом Raven или неправильными параметрами URI. + + Message + Сообщение - Payment request file handling - Обработка файла запроса платежа + + (no label) + (нет метки) - Payment request file cannot be read! This can be caused by an invalid payment request file. - Файл запроса платежа не может быть прочитан! Обычно это происходит из-за неверного файла запроса платежа. + + (no message) + (нет сообщения) - Payment request rejected - Запрос платежа отклонён + + (no amount requested) + (нет запрошенной суммы) - Payment request network doesn't match client network. - Сеть запроса платежа не совпадает с сетью клиента. + + Requested + Запрошено + + + ReissueAssetDialog - Payment request expired. - Запрос платежа просрочен. + + Coin Control Features + - Payment request is not initialized. - Запрос платежа не инициализирован. + + Inputs... + - Unverified payment requests to custom payment scripts are unsupported. - Непроверенные запросы платежей с нестандартными платёжными сценариями не поддерживаются. + + automatically selected + - Invalid payment request. - Неверный запрос платежа. + + Insufficient funds! + - Requested payment amount of %1 is too small (considered dust). - Запрошенная сумма платежа %1 слишком мала (считается пылью). + + + Quantity: + - Refund from %1 - Возврат от %1 + + Bytes: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Запрос платежа %1 слишком большой (%2 байтов, разрешено %3 байтов). + + Amount: + - Error communicating with %1: %2 - Ошибка связи с %1: %2 + + Dust: + - Payment request cannot be parsed! - Запрос платежа не может быть разобран! + + Fee: + - Bad response from server %1 - Плохой ответ сервера %1 + + After Fee: + - Network request error - Ошибка сетевого запроса + + Change: + - Payment acknowledged - Платёж принят + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - PeerTableModel - User Agent - Юзер-агент + + Custom change address + - Node/Service - Узел/сервис + + + Reissue Asset + - NodeId - Id узла + + Select an asset to reissue: + - Ping - Пинг + + Address: + - - - QObject - Amount - Сумма + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Enter a Raven address (e.g. %1) - Введите адрес Raven (например, %1) + + Verifier String: + - %1 d - %1 д + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 h - %1 ч + + Warning: + - %1 m - %1 мин + + The number of assets that will be created + - %1 s - %1 с + + Unit: + - None - Ничего + + e.g. 1.00000000 + - N/A - Н/Д + + If the owner of this asset will be able to issue more assets in the future + - %1 ms - %1 мс - - - %n second(s) - %n секунда - - - %n minute(s) - %n минута - - - %n hour(s) - %n час + + Reissuable + - - %n day(s) - %n день + + + Change IPFS/Txid Hash + - - %n week(s) - %n неделя + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 и %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n год + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ещё не завершился безопасно... + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Ошибка: указанный каталог "%1" не существует. + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Ошибка: не удалось разобрать конфигурационный файл: %1. Используйте синтаксис вида ключ=значение. + + Transaction Fee: + - Error: %1 - Ошибка: %1 + + Choose... + - - - QRImageWidget - &Save Image... - &Сохранить изображение... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - Копировать &изображение + + Warning: Fee estimation is currently not possible. + - Save QR Code - Сохранить QR-код + + collapse fee-settings + - PNG Image (*.png) - Изображение PNG (*.png) + + Hide + - - - RPCConsole - N/A - Н/Д + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - Версия клиента + + per kilobyte + - &Information - &Информация + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - Окно отладки + + (read the tooltip) + - General - Общие + + Recommended: + - Using BerkeleyDB version - Используется версия BerkeleyDB + + Cus&tom: + - Datadir - Каталог для данных + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - Время запуска + + Confirmation time target: + - Network - Сеть + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - Имя + + Request Replace-By-Fee + - Number of connections - Число подключений + + Clear + - Block chain - Цепь блоков + + Balance: + - Current number of blocks - Текущее число блоков + + 123.456 RVN + - Memory Pool - Пул памяти + + Copy quantity + - Current number of transactions - Текущее число транзакций + + Copy amount + - Memory usage - Использование памяти + + Copy fee + - Received - Получено + + Copy after fee + - Sent - Отправлено + + Copy bytes + - &Peers - &Участники + + Copy dust + - Banned peers - Заблокированные участники + + Copy change + - Select a peer to view detailed information. - Выберите участника для просмотра подробностей. + + Select an asset to reissue.. + - Whitelisted - Доверенный + + Select the asset you want to reissue. + - Direction - Направление + + %1 (%2 blocks) + - Version - Версия + + Cost + - Starting Block - Начальный блок + + Asset data couldn't be found + - Synced Headers - Синхронизировано заголовков + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - Синхронизировано блоков + + Invalid Raven Destination Address + - User Agent - Юзер-агент + + Warning: Restricted Assets Issuance requires an address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Открыть отладочный лог-файл %1 из текущего каталога данных. Это может занять несколько секунд для больших лог-файлов. + + + Warning: Invalid Raven address + - Decrease font size - Уменьшить размер текста + + + Yes + - Increase font size - Увеличить размер текста + + No + - Services - Сервисы + + + Name + - Ban Score - Очков бана + + + Total Quantity + - Connection Time - Время соединения + + + Units + - Last Send - Последняя отправка + + + Can Reisssue + - Last Receive - Последний раз получено + + + + IPFS Hash + - Ping Time - Время задержки + + + + Txid Hash + - The duration of a currently outstanding ping. - Длительность текущего пинга. + + Verifier String + - Ping Wait - Время задержки + + + Current Verifier String + - Min Ping - Мин. пинг + + Please select a asset from the menu to display the assets current settings + - Time Offset - Смещение времени + + Please select a asset from the menu to display the assets updated settings + - Last block time - Время последнего блока + + Current Quantity + - &Open - &Открыть + + Current Units + - &Console - Консоль + + Can Reissue + - &Network Traffic - Сетевой &трафик + + Unknown data hash type + - &Clear - &Очистить + + Only IPFS Hashes allowed until RIP5 is activated + - Totals - Всего + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - In: - Вход: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Out: - Выход: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - Отладочный лог-файл + + + %1 to %2 + - Clear console - Очистить консоль + + Are you sure you want to send? + - 1 &hour - 1 &час + + added as transaction fee + - 1 &day - 1 &день + + Total Amount %1 + - 1 &week - 1 &неделю + + or + - 1 &year - 1 &год + + Confirm reissue assets + - &Disconnect - &Отключиться + + Copy + - Ban for - Бан на + + Transaction ID Copied + - &Unban - &Разбанить + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - Добро пожаловать в консоль RPC %1. + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Используйте стрелки вверх и вниз для просмотра истории и <b>Ctrl-L</b> для очистки экрана. + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - Напишите <b>help</b> для просмотра доступных команд. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - ВНИМАНИЕ: мошенники предлагали пользователям вводить сюда команды, похищая таким образом содержимое их бумажников. Не используйте эту консоль без полного понимания смысла команд. + + (no label) + - Network activity disabled - Сетевая активность запрещена + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 Б + + Send Coins + - %1 KB - %1 КБ + + Asset Balances + - %1 MB - %1 МБ + + + Search + - %1 GB - %1 ГБ + + Address List + - (node id: %1) - (номер узла: %1) + + Balance: + - via %1 - через %1 + + + Failed to create a change address + - never - никогда + + Failed to generate the correct transaction. Please try again + - Inbound - Входящие + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Исходящие + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Да + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Нет + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Неизвестно + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - &Сумма: + + + Total Amount %1 + - &Label: - &Метка: + + + or + - &Message: - &Сообщение + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Повторно использовать один из ранее использованных адресов. Повторное использование адресов несёт риски безопасности и приватности. Не используйте эту опцию, если вы не создаёте повторно ранее сделанный запрос платежа. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - &Повторно использовать существующий адрес получения (не рекомендуется) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Необязательное сообщение для запроса платежа, которое будет показано при открытии запроса. Заметьте: сообщение не будет отправлено вместе с платежом через сеть Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Необязательная метка для нового адреса получения. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Заполните форму для запроса платежей. Все поля <b>необязательны</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Необязательная сумма для запроса. Оставьте пустым или укажите ноль, чтобы запросить неопределённую сумму. + + This is an asset payment + - Clear all fields of the form. - Очистить все поля формы. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Очистить + + + + Memo: + - Requested payments history - История запрошенных платежей + + Amount: + - &Request payment - &Запросить платёж + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Показать выбранный запрос (то же самое, что и двойной клик по записи) + + &Label: + - Show - Показать + + Asset: + - Remove the selected entries from the list - Удалить выбранные записи из списка + + The Raven address to send the payment to + - Remove - Удалить + + Choose previously used address + - Copy URI - Копировать URI + + Alt+A + - Copy label - Копировать метку + + Paste address from clipboard + - Copy message - Копировать сообщение + + Alt+P + - Copy amount - Копировать сумму + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR код + + Message: + - Copy &URI - Копировать &URI + + Transfer &To: + - Copy &Address - Копировать &адрес + + Transfer Administrator Asset + - &Save Image... - &Сохранить изображение... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Запросить платёж на %1 + + This is an unauthenticated payment request. + - Payment information - Информация платежа + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Адрес + + This is an authenticated payment request. + - Amount - Сумма + + Enter a label for this address to add it to your address book + - Label - Метка + + Select to view administrator assets to transfer + - Message - Сообщение + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Получившийся URI слишком длинный, попробуйте сократить текст метки / сообщения. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Ошибка кодирования URI в QR-код + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Дата + + Failed to get asset metadata for: + - Label - Метка + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Сообщение + + Failed to get asset outpoints from database + - (no label) - (нет метки) + + Selected Balance + - (no message) - (нет сообщения) + + Wallet Balance + - (no amount requested) - (нет запрошенной суммы) + + Select an administrator asset to transfer + - Requested - Запрошено + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Отправка + Coin Control Features Функции Контроля Монет + Inputs... Входы... + automatically selected автоматически выбрано + Insufficient funds! Недостаточно средств! + Quantity: Количество: + Bytes: Байт: + Amount: Сумма: + Fee: Комиссия: + After Fee: После комиссии: + Change: Размен: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Если это выбрано, но адрес сдачи пустой или неверный, сдача будет отправлена на новый сгенерированный адрес. + Custom change address Свой адрес для сдачи + Transaction Fee: Комиссия + Choose... Выберите... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Свернуть настройки комиссии + per kilobyte за килобайт - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Если комиссия установлена в 1000 сатоши, а транзакция составляет лишь 250 байт, тогда комиссия "на килобайт" составит 250 сатоши, а "всего как минимум" — 1000 сатоши. Для транзакций крупнее килобайта в обоих случаях будет использоваться платёж "на килобайт". + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Если комиссия установлена в 1000 сатоши, а транзакция составляет лишь 250 байт, тогда комиссия "на килобайт" составит 250 сатоши, а "всего как минимум" — 1000 сатоши. Для транзакций крупнее килобайта в обоих случаях будет использоваться платёж "на килобайт". + Hide Скрыть - total at least - Итого как минимум - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Уплата минимальной комиссии — не проблема, пока объём транзакций меньше, чем свободное место в блоках. Учтите, однако, что такая транзакция может никогда не подтвердиться, если спрос на транзакции превышает возможности сети по их обработке. + (read the tooltip) (прочтите подсказку) + Recommended: Рекомендовано: + Custom: Выборочно: + (Smart fee not initialized yet. This usually takes a few blocks...) (Умная комиссия пока не инициализирована. Обычно для этого требуется несколько блоков...) - normal - обычный + + Request Replace-By-Fee + - fast - ускоренный + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Отправить нескольким получателям одновременно + Add &Recipient &Добавить получателя + Clear all fields of the form. Очистить все поля формы + Dust: Пыль: + Confirmation time target: Время подтверждения: + Clear &All Очистить &всё + Balance: Баланс: + Confirm the send action Подтвердить отправку + S&end &Отправить + Copy quantity Копировать количество + Copy amount Копировать сумму + Copy fee Копировать комиссию + Copy after fee Копировать после комиссии + Copy bytes Копировать байты + Copy dust Копировать пыль + Copy change Копировать сдачу + + %1 (%2 blocks) + + + + + + + %1 to %2 С %1 на %2 + Are you sure you want to send? Вы уверены, что хотите отправить? + added as transaction fee добавлено как комиссия + Total Amount %1 Общая сумма %1 + or или + Confirm send coins Подтвердите отправку монет + The recipient address is not valid. Please recheck. Адрес получателя неверный. Пожалуйста, перепроверьте. + The amount to pay must be larger than 0. Сумма для отправки должна быть больше 0. + The amount exceeds your balance. Сумма превышает ваш баланс. + The total exceeds your balance when the %1 transaction fee is included. Сумма с учётом комиссии %1 превысит ваш баланс. + Duplicate address found: addresses should only be used once each. Обнаружен дублирующийся адрес: используйте каждый адрес только один раз. + Transaction creation failed! Не удалось создать транзакцию! + The transaction was rejected with the following reason: %1 Транзакция была отвергнута по следующей причине: %1 + A fee higher than %1 is considered an absurdly high fee. Комиссия больше чем %1 считается невероятно большой. + Payment request expired. Запрос платежа просрочен. - - %n block(s) - %n блок - + Pay only the required fee of %1 Заплатить только обязательную комиссию %1 + Estimated to begin confirmation within %n block(s). - Начало подтверждения ожидается через %n блок. + + Warning: Invalid Raven address Внимание: неверный адрес Raven + Warning: Unknown change address Внимание: неизвестный адрес для сдачи + Confirm custom change address Подтвердите свой адрес для сдачи + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Выбранный вами адрес для сдачи не принадлежит этому кошельку. Часть или все средства могут быть отправлены на этот адрес. Вы уверены? + (no label) (нет метки) @@ -2226,82 +5498,108 @@ SendCoinsEntry + + + A&mount: Ко&личество: - Pay &To: - Полу&чатель: - - + &Label: &Метка: + Choose previously used address Выберите ранее использованный адрес + This is a normal payment. Это нормальный платёж. + The Raven address to send the payment to Адрес Raven, на который отправить платёж + Alt+A Alt+A + Paste address from clipboard Вставить адрес из буфера обмена + Alt+P Alt+P + + + Remove this entry Удалить эту запись + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. С отправляемой суммы будет удержана комиссия. Получателю придёт меньше ravens, чем вы вводите в поле количества. Если выбрано несколько получателей, комиссия распределяется поровну. + S&ubtract fee from amount Вычесть комиссию из суммы + Message: Сообщение: + + Send &To: + + + + This is an unauthenticated payment request. Это неавторизованный запрос платежа. + + + Send to: + + + + This is an authenticated payment request. Это авторизованный запрос платежа. + Enter a label for this address to add it to the list of used addresses Введите метку для этого адреса, чтобы добавить его в список использованных + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. К raven: URI было прикреплено сообщение, которое будет сохранено вместе с транзакцией для вашего сведения. Заметьте: сообщение не будет отправлено через сеть Raven. - Pay To: - Получатель: - - + + Memo: Примечание: + Enter a label for this address to add it to your address book Введите метку для данного адреса, чтобы добавить его в адресную книгу @@ -2309,6 +5607,8 @@ SendConfirmationDialog + + Yes Да @@ -2316,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... %1 выключается... + Do not shut down the computer until this window disappears. Не выключайте компьютер, пока это окно не исчезнет. @@ -2327,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Подписи - подписать/проверить сообщение + &Sign Message &Подписать сообщение + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Вы можете подписывать сообщения/соглашения своими адресами, чтобы доказать свою возможность получать ravens на них. Будьте осторожны, не подписывайте что-то неопределённое или случайное, так как фишинговые атаки могут обманным путём заставить вас подписать нежелательные сообщения. Подписывайте только те сообщения, с которыми вы согласны вплоть до мелочей. + The Raven address to sign the message with Адрес Raven, которым подписать сообщение + + Choose previously used address Выберите ранее использованный адрес + + Alt+A Alt+A + Paste address from clipboard Вставить адрес из буфера обмена + Alt+P Alt+P + Enter the message you want to sign here Введите сообщение для подписи + Signature Подпись + Copy the current signature to the system clipboard Скопировать текущую подпись в системный буфер обмена + Sign the message to prove you own this Raven address Подписать сообщение, чтобы доказать владение адресом Raven + Sign &Message Подписать &Сообщение + Reset all sign message fields Сбросить значения всех полей подписывания сообщений + + Clear &All Очистить &всё + &Verify Message &Проверить сообщение - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Введите ниже адрес получателя, сообщение (убедитесь, что переводы строк, пробелы, табы и т.п. в точности скопированы) и подпись, чтобы проверить сообщение. Убедитесь, что не скопировали лишнего в подпись, по сравнению с самим подписываемым сообщением, чтобы не стать жертвой атаки "man-in-the-middle". Заметьте, что эта операция удостоверяет лишь авторство подписавшего, но не может удостоверить отправителя транзакции. + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Введите ниже адрес получателя, сообщение (убедитесь, что переводы строк, пробелы, табы и т.п. в точности скопированы) и подпись, чтобы проверить сообщение. Убедитесь, что не скопировали лишнего в подпись, по сравнению с самим подписываемым сообщением, чтобы не стать жертвой атаки "man-in-the-middle". Заметьте, что эта операция удостоверяет лишь авторство подписавшего, но не может удостоверить отправителя транзакции. + The Raven address the message was signed with Адрес Raven, которым было подписано сообщение + Verify the message to ensure it was signed with the specified Raven address Проверить сообщение, чтобы убедиться, что оно было подписано указанным адресом Raven + Verify &Message Проверить &Сообщение + Reset all verify message fields Сбросить все поля проверки сообщения - Click "Sign Message" to generate signature - Нажмите "Подписать сообщение" для создания подписи + + Click "Sign Message" to generate signature + Нажмите "Подписать сообщение" для создания подписи + + The entered address is invalid. Введённый адрес неверен. + + + + Please check the address and try again. Пожалуйста, проверьте адрес и попробуйте ещё раз. + + The entered address does not refer to a key. Введённый адрес не связан с ключом. + Wallet unlock was cancelled. Разблокировка бумажника была отменена. + Private key for the entered address is not available. Недоступен секретный ключ для введённого адреса. + Message signing failed. Не удалось подписать сообщение. + Message signed. Сообщение подписано. + The signature could not be decoded. Подпись не может быть раскодирована. + + Please check the signature and try again. Пожалуйста, проверьте подпись и попробуйте ещё раз. + The signature did not match the message digest. Подпись не соответствует отпечатку сообщения. + Message verification failed. Сообщение не прошло проверку. + Message verified. Сообщение проверено. @@ -2466,6 +5811,7 @@ SplashScreen + [testnet] [тестовая сеть] @@ -2473,6 +5819,7 @@ TrafficGraphWidget + KB/s КБ/сек @@ -2480,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - Открыто для ещё %n блока + + Open until %1 Открыто до %1 + conflicted with a transaction with %1 confirmations конфликт с транзакцией с %1 подтверждений + %1/offline %1/отключен + 0/unconfirmed, %1 0/не подтверждено, %1 + in memory pool В памяти + not in memory pool Не в памяти + abandoned заброшено + %1/unconfirmed %1/не подтверждено + %1 confirmations %1 подтверждений + + Status Статус + + , has not been successfully broadcast yet , ещё не было успешно разослано + + , broadcast through %n node(s) - , разослано через %n узел + + + Date Дата + Source Источник + Generated Сгенерированно + + + + + From От + + unknown неизвестно + + + + + To Для + + own address свой адрес + + + watch-only только наблюдение + + label метка + + + + + + + Credit Кредит + matures in %n more block(s) - будет доступно через %n блок + + not accepted не принято + + + + + Debit Дебет + Total debit Всего дебет + Total credit Всего кредит + Transaction fee Комиссия + Net amount Чистая сумма + + + + Message Сообщение + + Comment Комментарий + + Transaction ID ID транзакции + + Transaction total size Общий размер транзакции + + Output index Номер выхода + + Merchant Продавец - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Сгенерированные монеты должны подождать %1 блоков, прежде чем они могут быть потрачены. Когда вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если он не попадёт в цепь, его статус изменится на "не принят", и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Сгенерированные монеты должны подождать %1 блоков, прежде чем они могут быть потрачены. Когда вы сгенерировали этот блок, он был отправлен в сеть для добавления в цепочку блоков. Если он не попадёт в цепь, его статус изменится на "не принят", и монеты будут недействительны. Это иногда происходит в случае, если другой узел сгенерирует блок на несколько секунд раньше вас. + + + + Net RVN amount + + Debug information Отладочная информация + Transaction Транзакция + Inputs Входы + Amount Сумма + + true истина + + false ложь @@ -2655,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Эта панель отображает детальное описание транзакции. + Details for %1 Подробности %1 @@ -2666,269 +6101,411 @@ TransactionTableModel + Date Дата + Type Тип + Label Метка + + + Amount + + + + + Asset + + + Open for %n more block(s) - Открыто для ещё %n блока + + Open until %1 Открыто до %1 + Offline Отключен + Unconfirmed Не подтверждено + Abandoned Заброшено + Confirming (%1 of %2 recommended confirmations) Подтверждается (%1 из %2 рекомендуемых подтверждений) + Confirmed (%1 confirmations) Подтверждено (%1 подтверждений) + Conflicted В противоречии + Immature (%1 confirmations, will be available after %2) Незрелый (%1 подтверждений, будет доступно после %2) + This block was not received by any other nodes and will probably not be accepted! Этот блок не был получен другими узлами и, возможно, не будет принят! + Generated but not accepted Сгенерировано, но не принято + Received with Получено на + Received from Получено от + Sent to Отправлено на + Payment to yourself Отправлено себе + Mined Добыто + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only только наблюдение + (n/a) (недоступно) + (no label) (нет метки) + Transaction status. Hover over this field to show number of confirmations. Статус транзакции. Подведите курсор к этому полю, чтобы увидеть количество подтверждений. + Date and time that the transaction was received. Дата и время получения транзакции. + Type of transaction. Тип транзакции. + Whether or not a watch-only address is involved in this transaction. Использовался ли в транзакции адрес для наблюдения. + User-defined intent/purpose of the transaction. Определяемое пользователем намерение/цель транзакции. + Amount removed from or added to balance. Снятая или добавленная к балансу сумма. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Все + Today Сегодня + This week На этой неделе + This month В этом месяце + Last month В прошлом месяце + This year В этом году + Range... Диапазон... + Received with Получено на + Sent to Отправлено на + To yourself Себе + Mined Добыто + Other Другое + Enter address or label to search Введите адрес или метку для поиска + Min amount Мин. сумма + + Asset name + + + + Abandon transaction Отказаться от транзакции + Copy address Копировать адрес + Copy label Копировать метку + Copy amount Копировать сумму + Copy transaction ID Копировать ID транзакции + Copy raw transaction Копировать исходный код транзакции + Copy full transaction details Копировать все подробности транзакции + Edit label Изменить метку + Show transaction details Показать подробности транзакции + + Browse with: + + + + Export Transaction History Экспортировать историю транзакций + Comma separated file (*.csv) Текст, разделённый запятыми (*.csv) + Confirmed Подтверждено + Watch-only Для наблюдения + Date Дата + Type Тип + Label Метка + Address Адрес + + Asset + + + + ID ID + Exporting Failed Экспорт не удался + There was an error trying to save the transaction history to %1. Произошла ошибка при сохранении истории транзакций в %1. + Exporting Successful Экспорт успешно завершён + The transaction history was successfully saved to %1. История транзакций была успешно сохранена в %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Диапазон: + to до @@ -2936,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Единица измерения количества монет. Щёлкните для выбора другой единицы. @@ -2943,6 +6521,7 @@ WalletFrame + No wallet has been loaded. Не был загружен ни один бумажник. @@ -2950,964 +6529,1763 @@ WalletModel + Send Coins Отправка + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Экспорт + Export the data in the current tab to a file Экспортировать данные текущей вкладки в файл + Backup Wallet Резервная копия бумажника + Wallet Data (*.dat) Данные бумажника (*.dat) + Backup Failed Резервное копирование не удалось + There was an error trying to save the wallet data to %1. Произошла ошибка при сохранении данных бумажника в %1. + Backup Successful Резервное копирование успешно завершено + The wallet data was successfully saved to %1. Данные бумажника были успешно сохранены в %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Параметры: + Specify data directory Задать каталог данных + Connect to a node to retrieve peer addresses, and disconnect Подключиться к участнику, чтобы получить список адресов других участников и отключиться + Specify your own public address Укажите ваш собственный публичный адрес + Accept command line and JSON-RPC commands Принимать командную строку и команды JSON-RPC - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Принимать подключения снаружи (по умолчанию: 1, если не -proxy или -connect/-disconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Подключаться только к указанному узлу(ам); -noconnect или -connect=0 для запрета автоматических подключений - - + Distributed under the MIT software license, see the accompanying file %s or %s Распространяется под лицензией MIT, см. приложенный файл %s или %s + If <category> is not supplied or if <category> = 1, output all debugging information. Если <category> не предоставлена или равна 1, выводить всю отладочную информацию. + Prune configured below the minimum of %d MiB. Please use a higher number. Удаление блоков выставлено ниже, чем минимум в %d Мб. Пожалуйста, используйте большее значение. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Удаление: последняя синхронизация кошелька вышла за рамки удаленных данных. Вам нужен -reindex (скачать всю цепь блоков в случае удаленного узла) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Повторное сканирование не возможно в режиме удаления. Вам надо будет использовать -reindex, который загрузит заново всю цепь блоков. + Error: A fatal internal error occurred, see debug.log for details Ошибка: произошла неустранимая ошибка, подробности в debug.log + Fee (in %s/kB) to add to transactions you send (default: %s) Комиссия (в %s/Кб) для добавления к вашим транзакциям (по умолчанию: %s) + Pruning blockstore... Очистка хранилища блоков... + Run in the background as a daemon and accept commands Запускаться в фоне как демон и принимать команды + Unable to start HTTP server. See debug log for details. Невозможно запустить HTTP сервер. Смотри debug лог для подробностей. + Raven Core Raven Core + The %s developers Разработчики %s + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Принимать транзакции пересылаемые от узлов из белого списка даже если они не удовлетворяют требованиям ретрансляции (по умолчанию: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Привязаться к указанному адресу и всегда прослушивать только его. Используйте [хост]:порт для IPv6 + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Привязаться к указанному адресу и всегда прослушивать только его. Используйте [хост]:порт для IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + Невозможно заблокировать каталог данных %s. %s возможно уже работает. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - Невозможно заблокировать каталог данных %s. %s возможно уже работает. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Удалить все транзакции бумажника с возможностью восстановить эти части цепи блоков с помощью -rescan при запуске - Error loading %s: You can't enable HD on a already existing non-HD wallet - Ошибка загрузки %s: Вы не можете включить HD в уже существующем не-HD кошельке - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Ошибка чтения %s! Все ключи прочитаны верно, но данные транзакций или записи адресной книги могут отсутствовать или быть неправильными. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Выполнить команду, когда меняется транзакция в бумажнике (%s в команде заменяется на TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Хранить в памяти дополнительные транзакции для реконструкции компактных блоков (по умолчанию: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Если этот блок в цепи, считать его и последующие блоки верными и потенциально пропускать проверку их скриптов (0 для проверки всех, по умолчанию: %s, тестовая сеть: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Максимально допустимое среднее отклонение времени участников. Локальное представление времени может меняться вперед или назад на это количество. (по умолчанию: %u секунд) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Максимальная сумма комиссий (%s) для одной транзакции в бумажнике или сырой транзакции; слишком низкое значение может вызвать прерывание больших транзакций (по умолчанию: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Пожалуйста убедитесь в корректности установки времени и даты на вашем компьютере! Если время установлено неверно, %s не будет работать правильно. + Please contribute if you find %s useful. Visit %s for further information about the software. Пожалуйста, внести свой вклад, если вы найдете %s полезными. Посетите %s для получения дополнительной информации о программном обеспечении. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Уменьшить размер хранилища за счёт обрезания (удаления) старых блоков. Будет разрешён вызов RPC метода pruneblockchain для удаления определённых блоков и разрешено автоматическое обрезание старых блоков, если указан целевой размер в Мб. Этот режим несовместим с -txindex и -rescan. Внимание: переключение этой опции обратно потребует полной загрузки цепи блоков. (по умолчанию: 0 = отключить обрезание блоков, 1 = разрешить ручное обрезание через RPC, >%u = автоматически обрезать файлы блоков, чтобы они были меньше указанного размера в Мб) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Задать минимальный курс комиссии (в %s/Кб) для транзакцийб включаемых в создаваемый блок. (по умолчанию: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Задать число потоков проверки скрипта (от %u до %d, 0=авто, <0 = оставить столько ядер свободными, по умолчанию: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct База данных блоков содержит блок, который появляется из будущего. Это может из-за некорректно установленных даты и времени на вашем компьютере. Остается только перестроивать базу блоков, если вы уверены, что дата и время корректны. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Это пре-релизная тестовая сборка - используйте на свой страх и риск - не используйте для добычи или торговых приложений + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Невозможно отмотать базу данных до пред-форкового состояния. Вам будет необходимо перекачать цепочку блоков. + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Использовать UPnP для проброса порта (по умолчанию: 1, если используется прослушивание и нет -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Имя пользователя и хэш пароля для JSON-RPC соединений. Поле <userpw> использует формат: <USERNAME>:<SALT>$<HASH>. Каноничный пример скрипта на питоне находится в share/rpcuser. Эта опция может быть указана несколько раз + Wallet will not create transactions that violate mempool chain limits (default: %u) Бумажник не будет создавать транзакции, которые нарушают лимиты цепочки пула в памяти (по умолчанию: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Внимание: похоже, в сети нет полного согласия! Некоторые майнеры, возможно, испытывают проблемы. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Внимание: мы не полностью согласны с подключенными участниками! Вам или другим участникам, возможно, следует обновиться. - You need to rebuild the database using -reindex-chainstate to change -txindex - Вам необходимо пересобрать базы данных с помощью -reindex-chainstate, чтобы изменить -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + %s corrupt, salvage failed %s поврежден, восстановить не удалось + -maxmempool must be at least %d MB -maxmempool должен быть как минимум %d MB + <category> can be: <category> может быть: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Добавить комментарий к строке пользовательского агента + Attempt to recover private keys from a corrupt wallet on startup Попытаться восстановить приватные ключи из повреждённого бумажника при запуске + Block creation options: Параметры создания блоков: - Cannot resolve -%s address: '%s' - Не удаётся разрешить адрес в параметре -%s: '%s' + + Cannot resolve -%s address: '%s' + Не удаётся разрешить адрес в параметре -%s: '%s' + Chain selection options: Параметры выбора цепочки: + Change index out of range Изменение индекса вне диапазона + Connection options: Параметры подключения: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected БД блоков повреждена + Debugging/Testing options: Параметры отладки/тестирования: + Do not load the wallet and disable wallet RPC calls Не загружать бумажник и запретить обращения к нему через RPC + Do you want to rebuild the block database now? Пересобрать БД блоков прямо сейчас? + Enable publish hash block in <address> Включить публичный хеш блока в <address> + Enable publish hash transaction in <address> Включить публичный хеш транзакции в <address> + Enable publish raw block in <address> Включить публичный сырой блок в <address> + Enable publish raw transaction in <address> Включить публичную сырую транзакцию в <address> + Enable transaction replacement in the memory pool (default: %u) Включить замену транзакций в пуле памяти (по умолчанию:%u) + Error initializing block database Ошибка инициализации БД блоков + Error initializing wallet database environment %s! Ошибка инициализации окружения БД бумажника %s! + Error loading %s Ошибка загрузки %s + Error loading %s: Wallet corrupted Ошибка загрузки %s: Бумажник поврежден + Error loading %s: Wallet requires newer version of %s Ошибка загрузки %s: Для бумажника требуется более новая версия %s - Error loading %s: You can't disable HD on a already existing HD wallet - Ошибка загрузки %s: Вы не можете включить HD в уже существующем не-HD кошельке - - + Error loading block database Ошибка чтения базы данных блоков + Error opening block database Не удалось открыть БД блоков + Error: Disk space is low! Ошибка: мало места на диске! + Failed to listen on any port. Use -listen=0 if you want this. Не удалось начать прослушивание на порту. Используйте -listen=0 если вас это устраивает. + Importing... Импорт ... + Incorrect or no genesis block found. Wrong datadir for network? Неверный или отсутствующий начальный блок. Неправильный каталог данных для сети? + Initialization sanity check failed. %s is shutting down. Начальная проверка исправности не удалась. %s завершает работу. - Invalid -onion address: '%s' - Неверный -onion адрес: '%s' + + Invalid amount for -%s=<amount>: '%s' + Неверная сумма для -%s=<amount>: '%s' - Invalid amount for -%s=<amount>: '%s' - Неверная сумма для -%s=<amount>: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Недопустимая сумма для -fallbackfee=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Недопустимая сумма для -fallbackfee=<amount>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Сбрасывать транзакции из памяти на диск каждые <n> мегабайт (по умолчанию: %u) + + Loading P2P addresses... + + + + Loading banlist... Загрузка банлиста... + Location of the auth cookie (default: data dir) Расположение куки входы(по умолчанию: data dir) + Not enough file descriptors available. Недостаточно файловых дескрипторов. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Соединяться только по сети <net> (ipv4, ipv6 или onion) + Print this help message and exit Вывести эту справку и выйти + Print version and exit Написать версию и выйти + Prune cannot be configured with a negative value. Удаление блоков не может использовать отрицательное значение. + Prune mode is incompatible with -txindex. Режим удаления блоков несовместим с -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Перестроить состояние цепи блоков и индекс блоков из blk*.dat файлов с диска + Rebuild chain state from the currently indexed blocks Перестроить индекс цепи из текущих индексированных блоков + + Replaying blocks... + + + + Rewinding blocks... Перемотка блоков... + Set database cache size in megabytes (%d to %d, default: %d) Установить размер кэша БД в мегабайтах(от %d до %d, по умолчанию: %d) - Set maximum block size in bytes (default: %d) - Задать максимальный размер блока в байтах (по умолчанию: %d) - - + Specify wallet file (within data directory) Укажите файл бумажника (внутри каталога данных) + The source code is available from %s. Исходный код доступен в %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Невозможно привязаться к %s на этом компьютере. Возможно, %s уже работает. + Unsupported argument -benchmark ignored, use -debug=bench. Неподдерживаемый аргумент -benchmark проигнорирован, используйте -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Неподдерживаемый аргумент -debugnet проигнорирован, используйте -debug=net. + Unsupported argument -tor found, use -onion. Обнаружен не поддерживаемый параметр -tor, используйте -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Использовать UPnP для проброса порта (по умолчанию: %u) + Use the test chain Использовать тестовую цепочку + User Agent comment (%s) contains unsafe characters. Комментарий пользователя (%s) содержит небезопасные символы. + Verifying blocks... Проверка блоков... - Verifying wallet... - Проверка бумажника... - - + Wallet %s resides outside data directory %s Бумажник %s располагается вне каталога данных %s + Wallet debugging/testing options: Параметры отладки/тестирования бумажника: + Wallet needed to be rewritten: restart %s to complete Необходимо перезаписать бумажник, перезапустите %s для завершения операции. + Wallet options: Настройки бумажника: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Разрешить подключения JSON-RPC с указанного источника. Разрешённые значения для <ip> — отдельный IP (например, 1.2.3.4), сеть/маска сети (например, 1.2.3.4/255.255.255.0) или сеть/CIDR (например, 1.2.3.4/24). Эту опцию можно использовать многократно + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Привязаться к указанному адресу и внести в белый список подключающихся к нему участников. Используйте [хост]:порт для IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Привязаться к указанному адресу для прослушивания JSON-RPC подключений. Используйте запись [хост]:порт для IPv6. Эту опцию можно использовать многократно (по умолчанию: привязываться ко всем интерфейсам) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Создавать новые файлы с системными правами по умолчанию вместо umask 077 (эффективно только при отключенном бумажнике) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Обнаруживать собственный IP адрес (по умолчанию: 1 при прослушивании и без -externalip или -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Ошибка: не удалось начать прослушивание входящих подключений (прослушивание вернуло ошибку %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Выполнить команду, когда приходит соответствующее сообщение о тревоге или наблюдается очень длинное расщепление цепи (%s в команде заменяется на сообщение) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Комиссии (в %s/Кб) меньшие этого значения считаются нулевыми для создания, ретрансляции, получения транзакции (по умолчанию: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Если paytxfee не задан, включить достаточную комиссию для подтверждения транзакции в среднем за n блоков (по умолчанию: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Неверное значение для -maxtxfee=<amount>: '%s' (минимальная комиссия трансляции %s для предотвращения зависания транзакций) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Неверное значение для -maxtxfee=<amount>: '%s' (минимальная комиссия трансляции %s для предотвращения зависания транзакций) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Наибольший размер данных в носителе данных транзакций, которые мы передаем и генерируем (по умолчанию: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Использовать случайные учётные данные для каждого прокси-подключения. Эта функция позволяет изолировать потоки Tor (по умолчанию: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Задать максимальный размер высокоприоритетных/низкокомиссионных транзакций в байтах (по умолчанию: %d) - - + The transaction amount is too small to send after the fee has been deducted Сумма транзакции за вычетом комиссии слишком мала - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Использовать иерархическую детерминированную генерацию ключей (HD) после BIP32. Применяется в процессе создания бумажника / первого запуска - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Участники из белого списка не могуть быть забанены за DoS, и их транзакции всегда транслируются, даже если они уже содержатся в памяти. Полезно, например, для шлюза. + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Вам необходимо пересобрать базу данных с помощью -reindex, чтобы вернуться к полному режиму. Это приведёт к перезагрузке всей цепи блоков + (default: %u) (по умолчанию: %u) + Accept public REST requests (default: %u) Принимать публичные REST-запросы (по умолчанию: %u) + Automatically create Tor hidden service (default: %d) Автоматически создавать скрытый Tor сервис (по умолчанию: %d) + Connect through SOCKS5 proxy Подключаться через SOCKS5 прокси + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Ошибка чтения базы данных, работа завершается. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Импортировать блоки из внешнего файла blk000?.dat при запуске + Information Информация - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Неверное количество в параметре -paytxfee=<кол-во>: '%s' (должно быть как минимум %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Неверное количество в параметре -paytxfee=<кол-во>: '%s' (должно быть как минимум %s) - Invalid netmask specified in -whitelist: '%s' - Указана неверная сетевая маска в -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' + Указана неверная сетевая маска в -whitelist: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) Держать в памяти до <n> несвязных транзакций (по умолчанию: %u) - Need to specify a port with -whitebind: '%s' - Необходимо указать порт с помощью -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Необходимо указать порт с помощью -whitebind: '%s' + Node relay options: Параметры трансляции узла: + RPC server options: Параметры сервера RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Уменьшите -maxconnections с %d до %d, из-за ограничений системы. + Rescan the block chain for missing wallet transactions on startup Перепроверить цепь блоков на предмет отсутствующих в бумажнике транзакций при запуске + Send trace/debug info to console instead of debug.log file Выводить информацию трассировки/отладки на консоль вместо файла debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Осуществить транзакцию бесплатно, если возможно (по умолчанию: %u) - - + Show all debugging options (usage: --help -help-debug) Показать все отладочные параметры (использование: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Сжимать файл debug.log при запуске клиента (по умолчанию: 1, если нет -debug) + Signing transaction failed Не удалось подписать транзакцию + The transaction amount is too small to pay the fee Сумма транзакции слишком мала для уплаты комиссии + This is experimental software. Это экспериментальное ПО. + Tor control port password (default: empty) Пароль контроля порта Tor (по умолчанию: пустой) + Tor control port to use if onion listening enabled (default: %s) Порт контроля Tor используется, если включено прослушивание onion (по умолчанию: %s) + Transaction amount too small Сумма транзакции слишком мала + Transaction too large for fee policy Транзакция слишком большая для правил комиссии. + Transaction too large Транзакция слишком большая + Unable to bind to %s on this computer (bind returned error %s) Невозможно привязаться к %s на этом компьютере (bind вернул ошибку %s) + Upgrade wallet to latest format on startup Обновить бумажник до последнего формата при запуске + Username for JSON-RPC connections Имя для подключений JSON-RPC + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Внимание + Warning: unknown new rules activated (versionbit %i) Внимание: неизвестные правила вступили в силу(versionbit %i) + Whether to operate in a blocks only mode (default: %u) Будет работать в режиме только блоков (по умолчанию: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Стираем все транзакции из кошелька... + ZeroMQ notification options: ZeroMQ параметры оповещения: + Password for JSON-RPC connections Пароль для подключений JSON-RPC + Execute command when the best block changes (%s in cmd is replaced by block hash) Выполнить команду, когда появляется новый блок (%s в команде заменяется на хэш блока) + Allow DNS lookups for -addnode, -seednode and -connect Разрешить поиск в DNS для -addnode, -seednode и -connect - Loading addresses... - Загрузка адресов... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = сохранять метаданные транзакции: например, владельца аккаунта и информацию запроса платежа; 2 = отбросить метаданные) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. Установлено очень большое значение -maxtxfee. Такие большие комиссии могут быть уплачены в отдельной транзакции. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Не хранить транзакции в памяти дольше, чем <n> часов (по умолчанию %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Эквивалентных байт на sigop в транзакциях для ретрансляции или добычи (по умолчанию: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Комиссии (в %s/Кб) меньшие этого значения считаются нулевыми при создании транзакций (по умолчанию: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Всегда ретранслировать транзакции, полученные из белого списка участников, даже если они нарушают локальную политику ретрансляции (по умолчанию: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Насколько тщательна проверка контрольных блоков -checkblocks (0-4, по умолчанию: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Держать полный индекс транзакций, используемый RPC-запросом getrawtransaction (по умолчанию: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Число секунд блокирования неправильно ведущих себя узлов (по умолчанию: %u) + Output debugging information (default: %u, supplying <category> is optional) Выводить отладочную информацию (по умолчанию: %u, указание <category> необязательно) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Запрашивать адреса участников с помощью DNS, если адресов мало (по умолчанию: 1, если не указан -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Задаёт сериализацию сырой транзакции или хекса блока, возвращённого в не подробном режиме, non-segwit(0) или segwit(1) (по умолчанию: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Поддерживать фильтрацию блоков и транзакций с помощью фильтра Блума (по умолчанию: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Это комиссия за транзакцию, которую вы можете заплатить, когда расчёт комиссии недоступен. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Этот продукт включает ПО, разработанное OpenSSL Project для использования в OpenSSL Toolkit %s и криптографическое ПО, написанное Eric Young и ПО для работы с UPnP, написанное Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Текущая длина строки версии сети (%i) превышает максимальную длину (%i). Увеливается количество или размер uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Пытается ограничить исходящий трафик до (в МБ за 24ч), 0 = не ограничивать (по умолчанию: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Обнаружен не поддерживаемый аргумент -socks. Выбор версии SOCKS более невозможен, поддерживаются только прокси SOCKS5. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Не поддерживаемый аргумент -whitelistalwaysrelay игнорируется, используйте -whitelistrelay и/или -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Использовать отдельный прокси SOCKS5 для соединения с участниками через скрытые сервисы Tor (по умолчанию: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Внимание: Получена неизвестная версия блока! Возможно неизвестные правила вступили в силу. + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Внимание: Файл бумажника поврежден, данные восстановлены! Оригинальный %s сохранен как %s в %s; Если баланс или транзакции некорректны, вы должны восстановить файл из резервной копии. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Вносить в белый список участников, подключающихся с указанного IP (напр. 1.2.3.4) или CIDR-адреса сети (напр. 1.2.3.0/24). Можно использовать многократно. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s задан слишком высоким! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (по умолчанию: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Всегда запрашивать адреса участников с помощью DNS (по умолчанию: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Сколько блоков проверять при запуске (по умолчанию: %u, 0 = все) + Include IP addresses in debug output (default: %u) Включить IP-адреса в отладочный вывод (по умолчанию: %u) - Invalid -proxy address: '%s' - Неверный адрес -proxy: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first Пул ключей опустел, пожалуйста, выполните keypoolrefill + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Прослушивать подключения JSON-RPC на <порту> (по умолчанию: %u или %u в тестовой сети) + Listen for connections on <port> (default: %u or testnet: %u) Принимать входящие подключения на <port> (по умолчанию: %u или %u в тестовой сети) + Maintain at most <n> connections to peers (default: %u) Поддерживать не более <n> подключений к узлам (по умолчанию: %u) + Make the wallet broadcast transactions Рассылать транзакции из бумажника + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Максимальный размер буфера приёма на соединение, <n>*1000 байт (по умолчанию: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Максимальный размер буфера отправки на соединение, <n>*1000 байт (по умолчанию: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Дописывать отметки времени к отладочному выводу (по умолчанию: %u) + Relay and mine data carrier transactions (default: %u) Транслировать и генерировать транзакции носителей данных (по умолчанию: %u) + Relay non-P2SH multisig (default: %u) Транслировать не-P2SH мультиподпись (по умолчанию: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Отправлять транзакции с включенным full-RBF (по умолчанию: %u) + Set key pool size to <n> (default: %u) Установить размер пула ключей в <n> (по умолчанию: %u) + Set maximum BIP141 block weight (default: %d) Задать максимальное BIP141 значение блока (по умолчанию: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Задать число потоков выполнения запросов RPC (по умолчанию: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Указать конфигурационный файл (по умолчанию: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Указать тайм-аут соединения в миллисекундах (минимум: 1, по умолчанию: %d) + Specify pid file (default: %s) Указать pid-файл (по умолчанию: %s) + Spend unconfirmed change when sending transactions (default: %u) Тратить неподтвержденную сдачу при отправке транзакций (по умолчанию: %u) + Starting network threads... Запускаем сетевые потоки... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Бумажник постарается не платить меньше, чем минимальная комиссия передачи. + This is the minimum transaction fee you pay on every transaction. Это минимальная комиссия, которую вы платите с каждой транзакцией. + This is the transaction fee you will pay if you send a transaction. Это комиссия, которую вы заплатите за эту транзакцию. + Threshold for disconnecting misbehaving peers (default: %u) Порог для отключения неправильно ведущих себя узлов (по умолчанию: %u) + Transaction amounts must not be negative Сумма транзакции не должна быть негативной + Transaction has too long of a mempool chain У транзакции слишком длинная цепочка в пуле в памяти. + Transaction must have at least one recipient У транзакции должен быть как минимум один получатель - Unknown network specified in -onlynet: '%s' - В параметре -onlynet указана неизвестная сеть: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + В параметре -onlynet указана неизвестная сеть: '%s' + + + Insufficient funds Недостаточно монет + Loading block index... Загрузка индекса блоков... - Add a node to connect to and attempt to keep the connection open - Добавить узел для подключения и пытаться поддерживать соединение открытым - - + Loading wallet... Загрузка бумажника... + Cannot downgrade wallet Не удаётся понизить версию бумажника - Cannot write default address - Не удаётся записать адрес по умолчанию - - + Rescanning... Сканирование... - Done loading - Загрузка завершена - - + Error Ошибка diff --git a/src/qt/locale/raven_ru_RU.ts b/src/qt/locale/raven_ru_RU.ts index e988fab2d4..9a015d8101 100644 --- a/src/qt/locale/raven_ru_RU.ts +++ b/src/qt/locale/raven_ru_RU.ts @@ -1,100 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label Кликните правой кнопкой мыши для редактирования адреса или метки + Create a new address Создать новый адрес + &New Новый + Copy the currently selected address to the system clipboard Скопировать текущий выбранный адрес в буфер обмена системы + &Copy Копировать + C&lose &Закрыть + Delete the currently selected address from the list Удалить выбранный адрес из списка + Export the data in the current tab to a file Экспортировать данные текущей вкладки в файл + &Export Экспортировать + &Delete Удалить + Choose the address to send coins to Выбрать адрес для отправки монет + Choose the address to receive coins with Выбрать адрес для получения монет + C&hoose В&ыбрать + Sending addresses Адреса отправки + Receiving addresses Адреса получения + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address &Копировать адрес + Copy &Label Копировать &метку + &Edit &Редактировать + Export Address List Экспортировать список адресов + + Comma separated file (*.csv) + + + + Exporting Failed Экспорт не удался - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Метка + Address Адрес + (no label) (нет метки) @@ -102,758 +143,8144 @@ AskPassphraseDialog + Passphrase Dialog Ввод пароля + Enter passphrase Введите пароль + New passphrase Новый пароль + Repeat new passphrase Повторите новый пароль + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Зашифровать бумажник + This operation needs your wallet passphrase to unlock the wallet. Эта операция требует вашего пароля для разблокировки бумажника + Unlock wallet Разблокировать бумажник + + This operation needs your wallet passphrase to decrypt the wallet. + + + + Decrypt wallet Расшифровать бумажник + Change passphrase Изменить пароль + + Enter the old passphrase and new passphrase to the wallet. + + + + Confirm wallet encryption Подтвердите шифрование бумажника - Wallet encrypted - Бумажник зашифрован + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Wallet unlock failed - Ошибка разблокировки кошелька + + Are you sure you wish to encrypt your wallet? + - - - BanTableModel - - - RavenGUI - Sign &message... - Подписать &сообщение... + + + Wallet encrypted + Бумажник зашифрован - &Transactions - &Транзакции + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Browse transaction history - Просмотр истории транзакций + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - E&xit - В&ыход + + + + + Wallet encryption failed + - Quit application - Выйти + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &About %1 - &О программе %1 + + + The supplied passphrases do not match. + - Show information about %1 - Показать информацию о %1 + + Wallet unlock failed + Ошибка разблокировки кошелька - About &Qt - О библиотеке &Qt + + + + The passphrase entered for the wallet decryption was incorrect. + - Show information about Qt - Показать информацию о библиотеке Qt + + Wallet decryption failed + - &Options... - &Опции... + + Wallet passphrase was successfully changed. + - &Encrypt Wallet... - &Зашифровать кошелёк + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Backup Wallet... - &Создать резервную копию бумажника + + Asset Selection + - &Change Passphrase... - &Изменить пароль... + + Quantity: + - &Sending addresses... - &Адреса для отправки... + + Bytes: + - &Receiving addresses... - &Адреса для получения... + + Amount: + - Open &URI... - Открыть &URI... + + Dust: + - Syncing Headers (%1%)... - Синхронизация заголовков (%1%)... + + Fee: + - &Debug window - &Окно отладки + + After Fee: + - &Verify message... - &Проверить сообщение... + + Change: + - Raven - Raven Core + + (un)select all + - Wallet - Кошелек + + Tree mode + - &Send - &Отправить + + List mode + - &Receive - &Получить + + View assets that you have the ownership asset for + - &Show / Hide - &Показать / Спрятать + + View Administrator Assets + - &File - &Файл + + Asset + - &Settings - &Настройки + + Amount + - &Help - &Помощь + + Received with label + - &Command-line options - Опции командной строки + + Received with address + - Error - Ошибка + + Date + - Warning - Предупреждение + + Confirmations + - Information - Информация + + Confirmed + - Up to date - Готов + + Copy address + - Connecting to peers... - Подключение к пирам... + + Copy label + - - - CoinControlDialog - Bytes: - Байтов: + + + Copy amount + - Amount: - Количество: + + Copy transaction ID + - Fee: - Комиссия: + + Lock unspent + - Date - Дата + + Unlock unspent + - Confirmations - Подтверждения + + Copy quantity + - Confirmed - Подтвержденные + + Copy fee + - Copy address - Копировать адрес + + Copy after fee + - Copy label - Копировать метку + + Copy bytes + - Copy amount - Копировать сумму + + Copy dust + - Copy transaction ID - Копировать ID транзакции + + Copy change + + + + + (%1 locked) + + yes - да + + no - нет + - (no label) - (нет метки) + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - EditAddressDialog - Edit Address - Изменить адрес + + Can vary +/- %1 satoshi(s) per input. + - - - FreespaceChecker - - - HelpMessageDialog - version - версия + + + (no label) + - Command-line options - Опции командной строки + + change from %1 (%2) + - command-line options - Опции командной строки + + (change) + + + + AssetTableModel - Start minimized - Запускать свернутым + + Name + - + + + Quantity + + + - Intro + AssetsDialog - Welcome - Добро пожаловать + + + Send Coins + - Welcome to %1. - Добро пожаловать в %1. + + Asset Control Features + - Error - Ошибка + + Inputs... + - - - ModalOverlay - Progress - Прогресс + + automatically selected + - Hide - Спрятать + + Insufficient funds! + - - - OpenURIDialog - Open URI - Открыть URI + + Quantity: + - URI: - URI: + + Bytes: + - - - OptionsDialog - Options - Опции + + Amount: + - MB - МБ + + Dust: + - Allow incoming connections - Разрешить входящие соеденения + + Fee: + - &Reset Options - &Сбросить опции + + After Fee: + - &Network - &Сеть + + Change: + - W&allet - К&ошелёк + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Expert - Эксперт + + Custom change address + - Map port using &UPnP - Пробросить порт через &UPnP + + Transaction Fee: + - Connect to the Raven network through a SOCKS5 proxy. - Подключится к сети Raven через SOCKS5 прокси. + + Choose... + - Proxy &IP: - IP прокси: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Port: - &Порт: + + Warning: Fee estimation is currently not possible. + - Port of the proxy (e.g. 9050) - Порт прокси: (напр. 9050) + + collapse fee-settings + - IPv4 - IPv4 + + Hide + - IPv6 - IPv6 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Tor - Tor + + per kilobyte + - &Window - &Окно + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Hide tray icon - Спрятать иконку в трее + + (read the tooltip) + - &OK - &ОК + + Recommended: + - &Cancel - &Отмена + + Custom: + - - - OverviewPage - Immature: - Незрелые: + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Balances - Балансы + + Confirmation time target: + - Total: - Всего: + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Your current total balance - Ваш текущий баланс: + + Request Replace-By-Fee + - Your current balance in watch-only addresses - Ваш текущий баланс на адресах только для чтения: + + Confirm the send action + - Recent transactions - Последние транзакции + + S&end + - - - PaymentServer - - - PeerTableModel - - - QObject - Enter a Raven address (e.g. %1) - Введите Raven-адрес (напр. %1) + + Clear all fields of the form. + - - %n hour(s) - %n часов + + + Clear &All + - - %n day(s) - %n день + + + Transfer to multiple recipients at once + - - %n week(s) - %n неделя + + + Add &Recipient + - %1 and %2 - %1 и %2 + + Balance: + - - %n year(s) - %n год + + + Copy quantity + - - - QObject::QObject - Error: %1 - Ошибка: %1 + + Copy amount + - - - QRImageWidget - Save QR Code - Сохранить QR-код + + Copy fee + - PNG Image (*.png) - PNG Картинка (*.png) + + Copy after fee + - - - RPCConsole - &Information - Информация + + Copy bytes + - Debug window - Окно отладки + + Copy dust + - Received - Получено + + Copy change + - Sent - Отправлено + + %1 (%2 blocks) + - &Peers - &Пиры + + + + + %1 to %2 + - Banned peers - Заблокированные пиры + + Are you sure you want to send? + - Version - Версия + + added as transaction fee + - &Open - &Открыть + + Confirm send assets + - &Console - &Консоль + + The recipient address is not valid. Please recheck. + - 1 &hour - 1 &час + + The amount to pay must be larger than 0. + - 1 &day - 1 &день + + The amount exceeds your balance. + - 1 &week - 1 &неделя + + The total exceeds your balance when the %1 transaction fee is included. + - 1 &year - 1 &год + + Duplicate address found: addresses should only be used once each. + - %1 B - %1 Б + + Transaction creation failed! + - %1 KB - %1 КБ + + The transaction was rejected with the following reason: %1 + - %1 MB - %1 МБ + + A fee higher than %1 is considered an absurdly high fee. + - %1 GB - %1 ГБ + + Payment request expired. + - never - никогда + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - Yes - Да + + Warning: Invalid Raven address + - No - Нет + + Warning: Unknown change address + - Unknown - Неизвестно + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - ReceiveCoinsDialog + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + Clear - Отчистить + - Show - Показать + + Submit + - Remove - Удалить + + Assign Qualifier + - Copy URI - Копировать URI + + Remove Qualifier + - Copy label - Копировать метку + + Data has been validated, You can now submit the qualifier request + - Copy message - Копировать сообщение + + Must have a qualifier asset selected + - Copy amount - Копировать сумму + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + - ReceiveRequestDialog + BanTableModel - Address - Адрес + + IP/Netmask + - Label - Метка + + Banned Until + - + - RecentRequestsTableModel + CoinControlDialog - Label - Метка + + Coin Selection + - (no label) - (нет метки) + + Quantity: + - - - SendCoinsDialog + Bytes: Байтов: + Amount: Количество: + Fee: Комиссия: - Choose... - Выбрать... + + Dust: + - Hide - Спрятать + + After Fee: + - Balance: - Баланс: + + Change: + - Copy amount - Копировать сумму + + (un)select all + - (no label) - (нет метки) + + Tree mode + - - - SendCoinsEntry - - - SendConfirmationDialog - Yes - Да + + List mode + - - - ShutdownWindow - - - SignVerifyMessageDialog - Signature - Подпись + + Amount + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - Label - Метка + + Received with label + - (no label) - (нет метки) + + Received with address + + + + + Date + Дата + + + + Confirmations + Подтверждения + + + + Confirmed + Подтвержденные - - - TransactionView + Copy address Копировать адрес + Copy label Копировать метку + + Copy amount Копировать сумму + Copy transaction ID Копировать ID транзакции - Label - Метка + + Lock unspent + - Address - Адрес + + Unlock unspent + - Exporting Failed - Экспорт не удался + + Copy quantity + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - &Export - Экспортировать + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + да + + + + no + нет + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (нет метки) + + + + change from %1 (%2) + + + + + (change) + - + - raven-core + CreateAssetDialog - Raven Core - Raven Core + + Coin Control Features + - Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - raven-core + + Inputs... + - Information - Информация + + automatically selected + - Warning - Предупреждение + + Insufficient funds! + - Do not keep transactions in the mempool longer than <n> hours (default: %u) - Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Изменить адрес + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + версия + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + Опции командной строки + + + + Usage: + + + + + command-line options + Опции командной строки + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + Запускать свернутым + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Добро пожаловать + + + + Welcome to %1. + Добро пожаловать в %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Ошибка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + Прогресс + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Спрятать + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Открыть URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Опции + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + МБ + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + &Сбросить опции + + + + &Network + &Сеть + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + К&ошелёк + + + + Expert + Эксперт + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + Пробросить порт через &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Подключится к сети Raven через SOCKS5 прокси. + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + IP прокси: + + + + + &Port: + &Порт: + + + + + Port of the proxy (e.g. 9050) + Порт прокси: (напр. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Окно + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &ОК + + + + &Cancel + &Отмена + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + Незрелые: + + + + Mined balance that has not yet matured + + + + + Total: + Всего: + + + + Your current total balance + Ваш текущий баланс: + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Ваш текущий баланс на адресах только для чтения: + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Последние транзакции + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + Введите Raven-адрес (напр. %1) + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 и %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Ошибка: %1 + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + Сохранить QR-код + + + + PNG Image (*.png) + PNG Картинка (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Информация + + + + Debug window + Окно отладки + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Получено + + + + + Sent + Отправлено + + + + &Peers + &Пиры + + + + Banned peers + Заблокированные пиры + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + Версия + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Открыть + + + + &Console + &Консоль + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1 &час + + + + 1 &day + 1 &день + + + + 1 &week + 1 &неделя + + + + 1 &year + 1 &год + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + никогда + + + + Inbound + + + + + Outbound + + + + + Yes + Да + + + + No + Нет + + + + + Unknown + Неизвестно + + + + RavenGUI + + + Sign &message... + Подписать &сообщение... + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + &Транзакции + + + + Browse transaction history + Просмотр истории транзакций + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + В&ыход + + + + Quit application + Выйти + + + + &About %1 + &О программе %1 + + + + Show information about %1 + Показать информацию о %1 + + + + About &Qt + О библиотеке &Qt + + + + Show information about Qt + Показать информацию о библиотеке Qt + + + + &Options... + &Опции... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Зашифровать кошелёк + + + + &Backup Wallet... + &Создать резервную копию бумажника + + + + &Change Passphrase... + &Изменить пароль... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Адреса для отправки... + + + + &Receiving addresses... + &Адреса для получения... + + + + Open &URI... + Открыть &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + Синхронизация заголовков (%1%)... + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + &Проверить сообщение... + + + + Raven + Raven Core + + + + Wallet + Кошелек + + + + &Send + &Отправить + + + + &Receive + &Получить + + + + &Show / Hide + &Показать / Спрятать + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Файл + + + + &Help + &Помощь + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + Опции командной строки + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Ошибка + + + + Warning + Предупреждение + + + + Information + Информация + + + + Up to date + Готов + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + Подключение к пирам... + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + Отчистить + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Показать + + + + Remove the selected entries from the list + + + + + Remove + Удалить + + + + Copy URI + Копировать URI + + + + Copy label + Копировать метку + + + + Copy message + Копировать сообщение + + + + Copy amount + Копировать сумму + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Адрес + + + + Amount + + + + + Label + Метка + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Метка + + + + Message + + + + + (no label) + (нет метки) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + Байтов: + + + + Amount: + Количество: + + + + Fee: + Комиссия: + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + Выбрать... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Спрятать + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Баланс: + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + Копировать сумму + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (нет метки) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Да + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + Подпись + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Метка + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (нет метки) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Копировать адрес + + + + Copy label + Копировать метку + + + + Copy amount + Копировать сумму + + + + Copy transaction ID + Копировать ID транзакции + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Метка + + + + Address + Адрес + + + + Asset + + + + + ID + + + + + Exporting Failed + Экспорт не удался + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + Экспортировать + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + raven-core + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Информация + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Предупреждение + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error Ошибка diff --git a/src/qt/locale/raven_sk.ts b/src/qt/locale/raven_sk.ts index 84d495d36a..198ca9ff47 100644 --- a/src/qt/locale/raven_sk.ts +++ b/src/qt/locale/raven_sk.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Kliknutím pravým tlačidlom upraviť adresu alebo popis + Create a new address Vytvoriť novú adresu + &New &Nový + Copy the currently selected address to the system clipboard Zkopírovať práve zvolenú adresu + &Copy &Kopírovať + C&lose Zatvoriť + Delete the currently selected address from the list Vymaž vybranú adresu zo zoznamu + Export the data in the current tab to a file Exportovať tento náhľad do súboru + &Export &Exportovať... + &Delete &Zmazať + Choose the address to send coins to Zvoľte adresu kam poslať mince + Choose the address to receive coins with Zvoľte adresu na ktorú chcete prijať mince + C&hoose Vybrať + Sending addresses Odosielajúce adresy + Receiving addresses Prijímajúce adresy + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Toto sú Vaše Raven adresy pre posielanie platieb. Vždy skontrolujte sumu a prijímaciu adresu pred poslaním mincí. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Toto sú vaše Raven adresy pre prijímanie platieb. Odporúča sa použiť vždy novú prijímaciu adresu pre každú transakciu. + &Copy Address &Kopírovať adresu + Copy &Label Kopírovať &popis + &Edit &Upraviť + Export Address List Exportovať zoznam adries + Comma separated file (*.csv) Čiarkou oddelovaný súbor (*.csv) + Exporting Failed Export zlyhal + There was an error trying to save the address list to %1. Please try again. Nastala chyba pri pokuse uložiť zoznam adries do %1. Skúste znovu. @@ -103,14 +125,17 @@ AddressTableModel + Label Popis + Address Adresa + (no label) (bez popisu) @@ -118,2096 +143,5355 @@ AskPassphraseDialog + Passphrase Dialog Dialóg hesla + Enter passphrase Zadajte heslo + New passphrase Nové heslo + Repeat new passphrase Zopakujte nové heslo + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Zadajte nové heslo k peňaženke.<br/>Prosím použite heslo s dĺžkou <b>desať alebo viac náhodných znakov</b>, prípadne <b>osem alebo viac slov</b>. + Encrypt wallet Zašifrovať peňaženku + This operation needs your wallet passphrase to unlock the wallet. Táto operácia potrebuje heslo k vašej peňaženke aby ju mohla odomknúť. + Unlock wallet Odomknúť peňaženku + This operation needs your wallet passphrase to decrypt the wallet. Táto operácia potrebuje heslo k vašej peňaženke na dešifrovanie peňaženky. + Decrypt wallet Dešifrovať peňaženku + Change passphrase Zmena hesla + Enter the old passphrase and new passphrase to the wallet. Zadajte staré heslo a nové heslo k peňaženke. + Confirm wallet encryption Potvrďte zašifrovanie peňaženky + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Varovanie: Ak zašifrujete peňaženku a stratíte heslo, <b>STRATÍTE VŠETKY VAŠE RAVENY</b>! + Are you sure you wish to encrypt your wallet? Ste si istí, že si želáte zašifrovať peňaženku? + + Wallet encrypted Peňaženka zašifrovaná + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 sa teraz zavrie, aby sa ukončil proces šifrovania. Zašifrovanie peňaženky neochráni úplne pred krádežou ravenov škodlivými programami, ktoré prenikli do vášho počítača. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. DÔLEŽITÉ: Všetky predchádzajúce zálohy vašej peňaženky, ktoré ste vykonali by mali byť nahradené novo vytvorenou, zašifrovanou peňaženkou. Z bezpečnostných dôvodov bude predchádzajúca záloha nezašifrovanej peňaženky k ničomu, akonáhle začnete používať novú, zašifrovanú peňaženku. + + + + Wallet encryption failed Šifrovanie peňaženky zlyhalo + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Šifrovanie peňaženky zlyhalo kôli internej chybe. Vaša peňaženka nebola zašifrovaná. + + The supplied passphrases do not match. Zadané heslá nesúhlasia. + Wallet unlock failed Odomykanie peňaženky zlyhalo + + + The passphrase entered for the wallet decryption was incorrect. Zadané heslo pre dešifrovanie peňaženky bolo nesprávne. + Wallet decryption failed Zlyhalo šifrovanie peňaženky. + Wallet passphrase was successfully changed. Heslo k peňaženke bolo úspešne zmenené. + + Warning: The Caps Lock key is on! Upozornenie: Máte zapnutý Caps Lock! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Maska stiete + + Asset Selection + - Banned Until - Blokovaný do + + Quantity: + - - - RavenGUI - Sign &message... - Podpísať &správu... + + Bytes: + - Synchronizing with network... - Synchronizácia so sieťou... + + Amount: + - &Overview - &Prehľad + + Dust: + - Node - Uzol + + Fee: + - Show general overview of wallet - Zobraziť celkový prehľad o peňaženke + + After Fee: + - &Transactions - &Transakcie + + Change: + - Browse transaction history - Prechádzať históriu transakcií + + (un)select all + - E&xit - U&končiť + + Tree mode + - Quit application - Ukončiť program + + List mode + - &About %1 - &O %1 + + View assets that you have the ownership asset for + - Show information about %1 - Ukázať informácie o %1 + + View Administrator Assets + - About &Qt - O &Qt + + Asset + - Show information about Qt - Zobrazit informácie o Qt + + Amount + - &Options... - &Možnosti... + + Received with label + - Modify configuration options for %1 - Upraviť nastavenia pre %1 + + Received with address + - &Encrypt Wallet... - &Zašifrovať Peňaženku... + + Date + - &Backup Wallet... - &Zálohovať peňaženku... + + Confirmations + - &Change Passphrase... - &Zmena Hesla... + + Confirmed + - &Sending addresses... - &Odosielajúce adresy ... + + Copy address + - &Receiving addresses... - &Prijímajúce adresy... + + Copy label + - Open &URI... - Otvoriť &URI... + + + Copy amount + - Click to disable network activity. - Kliknite pre zakázanie sieťovej aktivity. + + Copy transaction ID + - Network activity disabled. - Sieťová aktivita zakázaná. + + Lock unspent + - Click to enable network activity again. - Kliknite pre povolenie sieťovej aktivity. + + Unlock unspent + - Syncing Headers (%1%)... - Synchronizujú sa hlavičky (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Preindexúvam bloky na disku... + + Copy fee + - Send coins to a Raven address - Poslať ravens na adresu + + Copy after fee + - Backup wallet to another location - Zálohovať peňaženku na iné miesto + + Copy bytes + - Change the passphrase used for wallet encryption - Zmeniť heslo použité na šifrovanie peňaženky + + Copy dust + - &Debug window - &Okno pre ladenie + + Copy change + - Open debugging and diagnostic console - Otvor konzolu pre ladenie a diagnostiku + + (%1 locked) + - &Verify message... - O&veriť správu... + + yes + - Raven - Raven + + no + - Wallet - Peňaženka + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Odoslať + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Prijať + + + (no label) + - &Show / Hide - Zobraziť / skryť + + change from %1 (%2) + - Show or hide the main Window - Zobraziť alebo skryť hlavné okno + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Zašifruj súkromné kľúče ktoré patria do vašej peňaženky + + Name + - Sign messages with your Raven addresses to prove you own them - Podpísať správu s vašou adresou Raven aby ste preukázali že ju vlastníte + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Overiť či správa bola podpísaná uvedenou Raven adresou + + + Send Coins + - &File - &Súbor + + Asset Control Features + - &Settings - &Nastavenia + + Inputs... + - &Help - &Pomoc + + automatically selected + - Tabs toolbar - Lišta záložiek + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Vyžiadať platby (vygeneruje QR kódy a raven: URI) + + Quantity: + - Show the list of used sending addresses and labels - Zobraziť zoznam použitých adries odosielateľa a ich popisy + + Bytes: + - Show the list of used receiving addresses and labels - Zobraziť zoznam použitých prijímacích adries a ich popisov + + Amount: + - Open a raven: URI or payment request - Otvoriť raven URI alebo výzvu k platbe + + Dust: + - &Command-line options - Možnosti príkazového riadku - - - %n active connection(s) to Raven network - %n aktívne pripojenie do siete Raven%n aktívne pripojenia do siete Raven%n aktívnych pripojení do siete Raven + + Fee: + - Indexing blocks on disk... - Indexujem bloky na disku... + + After Fee: + - Processing blocks on disk... - Spracovávam bloky na disku... + + Change: + - - Processed %n block(s) of transaction history. - Spracovaných %n blok transakčnej histórie.Spracovaných %n bloky transakčnej histórie.Spracovaných %n blokov transakčnej histórie. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 pozadu + + Custom change address + - Last received block was generated %1 ago. - Posledný prijatý blok bol vygenerovaný pred: %1. + + Transaction Fee: + - Transactions after this will not yet be visible. - Transakcie po tomto čase ešte nebudú viditeľné. + + Choose... + - Error - Chyba + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Upozornenie + + Warning: Fee estimation is currently not possible. + - Information - Informácia + + collapse fee-settings + - Up to date - Aktualizovaný + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - Ukáž %1 zoznam možných nastavení Ravenu pomocou príkazového riadku + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1 klient + + per kilobyte + - Connecting to peers... - Pripája sa k partnerom... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Sťahujem... + + (read the tooltip) + - Date: %1 - - Dátum: %1 - + + Recommended: + - Amount: %1 - - Suma: %1 - + + Custom: + - Type: %1 - - Typ: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Popis: %1 - + + Confirmation time target: + - Address: %1 - - Adresa: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Odoslané transakcie + + Request Replace-By-Fee + - Incoming transaction - Prijatá transakcia + + Confirm the send action + - HD key generation is <b>enabled</b> - Generovanie HD kľúčov je <b>zapnuté</b> + + S&end + - HD key generation is <b>disabled</b> - Generovanie HD kľúčov je <b>vypnuté</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Vyskytla sa kritická chyba. Raven nemôže ďalej bezpečne pokračovať a ukončí sa. + + Add &Recipient + - - - CoinControlDialog - Coin Selection - Výber mince + + Balance: + - Quantity: - Množstvo: + + Copy quantity + - Bytes: - Bajtov: + + Copy amount + - Amount: - Suma: + + Copy fee + - Fee: - Poplatok: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Maska stiete + + + + Banned Until + Blokovaný do + + + + CoinControlDialog + + + Coin Selection + Výber mince + + + + Quantity: + Množstvo: + + + + Bytes: + Bajtov: + + + + Amount: + Suma: + + + + Fee: + Poplatok: + + + Dust: Prach: + After Fee: Po poplatku: + Change: Zmena: + (un)select all (ne)vybrať všetko + Tree mode Stromový režim + List mode Zoznamový režim + Amount Suma + Received with label Prijaté s označením + Received with address Prijaté s adresou + Date Dátum + Confirmations Potvrdenia + Confirmed Potvrdené + Copy address Kopírovať adresu + Copy label Kopírovať popis + + Copy amount Kopírovať sumu + Copy transaction ID Kopírovať ID transakcie + Lock unspent Uzamknúť neminuté + Unlock unspent Odomknúť neminuté + Copy quantity Kopírovať množstvo + Copy fee Kopírovať poplatok + Copy after fee Kopírovať po poplatkoch + Copy bytes Kopírovať bajty + Copy dust Kopírovať prach + Copy change Kopírovať zmenu + (%1 locked) (%1 zamknutých) + yes áno + no nie + This label turns red if any recipient receives an amount smaller than the current dust threshold. - Tento popis sčervenie ak ktorýkoľvek príjemca dostane sumu menšiu ako súčasný limit pre "prach". + Tento popis sčervenie ak ktorýkoľvek príjemca dostane sumu menšiu ako súčasný limit pre "prach". + Can vary +/- %1 satoshi(s) per input. Môže sa líšiť o +/- %1 satoshi pre každý vstup. + + (no label) (bez popisu) + change from %1 (%2) zmena od %1 (%2) + (change) (zmena) - EditAddressDialog + CreateAssetDialog - Edit Address - Upraviť adresu + + Coin Control Features + - &Label - &Popis + + Inputs... + - The label associated with this address list entry - Popis tejto položký v zozname adries je prázdny + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. + + Insufficient funds! + - &Address - &Adresa + + + Quantity: + - New receiving address - Nová adresa pre prijímanie + + Bytes: + - New sending address - Nová adresa pre odoslanie + + Amount: + - Edit receiving address - Upraviť prijímajúcu adresu + + Dust: + - Edit sending address - Upraviť odosielaciu adresu + + Fee: + - The entered address "%1" is not a valid Raven address. - Vložená adresa "%1" nieje platnou adresou Raven. + + After Fee: + - The entered address "%1" is already in the address book. - Vložená adresa "%1" sa už nachádza v adresári. + + Change: + - Could not unlock wallet. - Nepodarilo sa odomknúť peňaženku. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Generovanie nového kľúča zlyhalo. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Bude vytvorený nový dátový adresár. + + Name: + - name - názov + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Priečinok už existuje. Pridajte "%1" ak chcete vytvoriť nový priečinok tu. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Cesta už existuje a nie je to adresár. + + Check Availabilty + - Cannot create data directory here. - Tu nemôžem vytvoriť dátový adresár. + + Address: + - - - HelpMessageDialog - version - verzia + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - O %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Voľby príkazového riadku + + Warning: + - Usage: - Použitie: + + The number of assets that will be created + - command-line options - voľby príkazového riadku + + Units: + - UI Options: - Možnosti používateľského rozhrania: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Vyberte dátový priečinok pri štarte (predvolené: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Nastavte jazyk, napríklad "de_DE" (predvolené: podľa systému) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Spustiť minimalizované + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Nastaviť SSL root certifikáty pre vyžiadanie platby (predvolené: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Zobraziť uvítaciu obrazovku pri štarte (predvolené: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Zrušiť všetky zmeny v GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Vitajte + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Vitajte v %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Keďže toto je prvé spustenie programu, môžete si vybrať, kam %1 bude ukladať vaše údaje. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 stiahne a uloží kópiu Raven block chain. Minimálne %2GB dát bude uložených v tejto zložke, a bude sa zväčšovať postupom času. Peňaženka bude taktiež uložená v tejto zložke. + + Choose... + - Use the default data directory - Použiť predvolený dátový adresár + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Použiť vlastný dátový adresár: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Chyba: Zadaný priečinok pre dáta "%1" nemôže byť vytvorený. + + collapse fee-settings + - Error - Chyba + + Hide + - - %n GB of free space available - %n GB voľného miesta%n GB voľného miesta%n GB voľného miesta + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (z %n GB potrebného)(z %n GB potrebných)(z %n GB potrebných) + + + per kilobyte + - - - ModalOverlay - Form - Forma + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Nedávne transakcie nemusia byť ešte viditeľné preto môže byť zostatok vo vašej peňaženke nesprávny. Táto informácia bude správna keď sa dokončí synchronizovanie peňaženky so sieťou raven, ako je rozpísané nižšie. + + (read the tooltip) + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Pokus o minutie ravenov, ktoré sú ovplyvnené ešte nezobrazenými transakciami, nebude sieťou akceptovaný. + + Recommended: + - Number of blocks left - Počet zostávajúcich blokov + + C&ustom: + - Unknown... - Neznáme... + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Last block time - Čas posledného bloku + + Confirmation time target: + - Progress - Postup synchronizácie + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Progress increase per hour - Prírastok postupu za hodinu + + Request Replace-By-Fee + - calculating... - počíta sa... + + Create Asset + - Estimated time left until synced - Odhadovaný čas do ukončenia synchronizácie + + Clear + - Hide - Skryť + + Balance: + - Unknown. Syncing Headers (%1)... - Neznámy. Synchronizujú sa hlavičky (%1)... + + 123.456 RVN + - - - OpenURIDialog - Open URI - Otvoriť URI + + Copy quantity + - Open payment request from URI or file - Otvoriť požiadavku na zaplatenie z URI alebo súboru + + Copy amount + - URI: - URI: + + Copy fee + - Select payment request file - Vyberte súbor s výzvou k platbe + + Copy after fee + - Select payment request file to open - Vyberte ktorý súbor s výzvou na platbu otvoriť + + Copy bytes + - - - OptionsDialog - Options - Možnosti + + Copy dust + - &Main - &Hlavné + + Copy change + - Automatically start %1 after logging in to the system. - Automaticky spustiť %1 pri spustení systému. + + %1 (%2 blocks) + - &Start %1 on system login - &Spustiť %1 pri prihlásení + + Main Asset + - Size of &database cache - Veľkosť vyrovnávacej pamäti &databázy + + Sub Asset + - MB - MB + + Unique Asset + - Number of script &verification threads - Počet &vlákien overujúcich skript + + Messaging Channel Asset + - Accept connections from outside - Prijať spojenia zvonku + + Qualifier Asset + - Allow incoming connections - Povoliť prichádzajúce spojenia + + Sub Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP adresy proxy (napr. IPv4: 127.0.0.1 / IPv6: ::1) + + Restricted Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimalizovať namiesto ukončenia aplikácie keď sa okno zavrie. Keď je zvolená táto možnosť, aplikácia sa zavrie len po zvolení Ukončiť v menu. + + Asset Type + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL tretích strán (napr. prehliadač blockchain) ktoré sa zobrazujú v záložke transakcií ako položky kontextového menu. %s v URL je nahradené hash-om transakcie. Viaceré URL sú oddelené zvislou čiarou |. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Third party transaction URLs - URL transakcií s tretími stranami + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Active command-line options that override above options: - Aktívne možnosti príkazového riadku ktoré prepíšu možnosti vyššie: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Reset all client options to default. - Vynulovať všetky voľby klienta na predvolené. + + + + Warning: Invalid Raven address + - &Reset Options - Vynulovať voľby + + Warning: Restricted Assets Reissuance requires an address + - &Network - &Sieť + + Valid Asset + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = nechať toľko jadier voľných) + + Invalid: Asset name already in use + - W&allet - &Peňaženka + + Error: Asset Database not in sync + - Expert - Expert + + + %1 to %2 + - Enable coin &control features - Povoliť možnosti "&coin control" + + Are you sure you want to send? + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Ak vypnete míňanie nepotvrdeného výdavku tak výdavok z transakcie bude možné použiť až keď daná transakcia bude mať aspoň jedno potvrdenie. Toto má vplyv aj na výpočet vášho zostatku. + + added as transaction fee + - &Spend unconfirmed change - Minúť nepotvrdený výdavok + + Total Amount %1 + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Automaticky otvorit port pre Raven na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. + + or + - Map port using &UPnP - Mapovať port pomocou &UPnP + + Confirm send assets + - Connect to the Raven network through a SOCKS5 proxy. - Pripojiť do siete Raven cez proxy server SOCKS5. + + Invalid: + - &Connect through SOCKS5 proxy (default proxy): - &Pripojiť cez proxy server SOCKS5 (predvolený proxy). + + Copy + - Proxy &IP: - Proxy &IP: + + Transaction ID Copied + - &Port: - &Port: + + Asset transaction sent to network: + - - Port of the proxy (e.g. 9050) - Port proxy (napr. 9050) + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Použité pre získavanie peerov cez: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Zobrazuje, či je poskytované predvolené SOCKS5 proxy používané pre získavanie peerov cez tento typ siete. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Pripojiť k Ravenovej sieti cez separované SOCKS5 proxy pre skrytú službu Tor. + + Edit Address + Upraviť adresu - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Použiť samostatný SOCKS5 proxy server na dosiahnutie počítačov cez skryté služby Tor: + + &Label + &Popis - &Window - &Okno + + The label associated with this address list entry + Popis tejto položký v zozname adries je prázdny - &Hide the icon from the system tray. - &Skryť ikonu zo systémovej lišty. + + The address associated with this address list entry. This can only be modified for sending addresses. + Adresa spojená s týmto záznamom v adresári. Možno upravovať len pre odosielajúce adresy. - Hide tray icon - Skryť ikonu v oblasti oznámení + + &Address + &Adresa - Show only a tray icon after minimizing the window. - Zobraziť len ikonu na lište po minimalizovaní okna. + + New receiving address + Nová adresa pre prijímanie - &Minimize to the tray instead of the taskbar - Zobraziť len ikonu na lište po minimalizovaní okna. + + New sending address + Nová adresa pre odoslanie - M&inimize on close - M&inimalizovať pri zavretí + + Edit receiving address + Upraviť prijímajúcu adresu - &Display - &Zobrazenie + + Edit sending address + Upraviť odosielaciu adresu - User Interface &language: - Jazyk užívateľského rozhrania: + + The entered address "%1" is not a valid Raven address. + Vložená adresa "%1" nieje platnou adresou Raven. - The user interface language can be set here. This setting will take effect after restarting %1. - Jazyk uživateľského rozhrania sa dá nastaviť tu. Toto nastavenie sa uplatní až po reštarte %1. + + The entered address "%1" is already in the address book. + Vložená adresa "%1" sa už nachádza v adresári. - &Unit to show amounts in: - &Zobrazovať hodnoty v jednotkách: + + Could not unlock wallet. + Nepodarilo sa odomknúť peňaženku. - Choose the default subdivision unit to show in the interface and when sending coins. - Zvoľte ako deliť raven pri zobrazovaní pri platbách a užívateľskom rozhraní. + + New key generation failed. + Generovanie nového kľúča zlyhalo. + + + FreespaceChecker - Whether to show coin control features or not. - Či zobrazovať možnosti "Coin control" alebo nie. + + A new data directory will be created. + Bude vytvorený nový dátový adresár. - &OK - &OK + + name + názov - &Cancel - Zrušiť + + Directory already exists. Add %1 if you intend to create a new directory here. + Priečinok už existuje. Pridajte "%1" ak chcete vytvoriť nový priečinok tu. - default - predvolené + + Path already exists, and is not a directory. + Cesta už existuje a nie je to adresár. - none - žiadne + + Cannot create data directory here. + Tu nemôžem vytvoriť dátový adresár. + + + FreezeAddress - Confirm options reset - Potvrdiť obnovenie možností + + Frame + - Client restart required to activate changes. - Reštart klienta potrebný pre aktivovanie zmien. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - Klient bude vypnutý, chcete pokračovať? + + Address: + - This change would require a client restart. - Táto zmena by vyžadovala reštart klienta. + + Custom Change Address + - The supplied proxy address is invalid. - Zadaná proxy adresa je neplatná. + + IPFS / Hash: + - - - OverviewPage - Form - Forma + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Zobrazené informácie môžu byť neaktuálne. Vaša peňaženka sa automaticky synchronizuje so sieťou Raven po nadviazaní spojenia, ale tento proces ešte nie je ukončený. + + Global Options + - Watch-only: - Iba sledované: + + Free&ze trading on this address + - Available: - Disponibilné: + + Unfreeze tradin&g on this address + - Your current spendable balance - Váš aktuálny disponibilný zostatok + + Freeze all &trading for the selected restricted asset + - Pending: - Čakajúce potvrdenie: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Suma transakcií ktoré ešte neboli potvrdené a ešte sa nepočítajú do disponibilného zostatku + + Check + - Immature: - Nezrelé: + + Clear + - Mined balance that has not yet matured - Vytvorený zostatok ktorý ešte nedosiahol zrelosť + + Submit + - Balances - Stav účtu + + Data has been validated, You can now submit the restriction transaction + - Total: - Celkovo: + + Must have a restricted asset selected + - Your current total balance - Váš súčasný celkový zostatok + + Address is already frozen + - Your current balance in watch-only addresses - Váš celkový zostatok pre adresy ktoré sa iba sledujú + + Address is not frozen + - Spendable: - Použiteľné: + + Restricted asset is already frozen globally + - Recent transactions - Nedávne transakcie + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Nepotvrdené transakcie pre adresy ktoré sa iba sledujú + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Vyťažená suma pre adresy ktoré sa iba sledujú ale ešte nie je dozretá + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Aktuálny celkový zostatok pre adries ktoré sa iba sledujú + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Chyba pri vyžiadaní platby + + version + verzia - URI handling - URI manipulácia + + + (%1-bit) + (%1-bit) - Payment request fetch URL is invalid: %1 - URL pre stiahnutie výzvy na zaplatenie je neplatné: %1 + + About %1 + O %1 - Invalid payment address %1 - Neplatná adresa platby %1 + + Command-line options + Voľby príkazového riadku - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI sa nedá analyzovať! To môže byť spôsobené neplatnou Raven adresou alebo zle nastavenými vlastnosťami URI. + + Usage: + Použitie: + + command-line options + voľby príkazového riadku + + + + UI Options: + Možnosti používateľského rozhrania: + + + + Choose data directory on startup (default: %u) + Vyberte dátový priečinok pri štarte (predvolené: %u) + + + + Set language, for example "de_DE" (default: system locale) + Nastavte jazyk, napríklad "de_DE" (predvolené: podľa systému) + + + + Start minimized + Spustiť minimalizované + + + + Set SSL root certificates for payment request (default: -system-) + Nastaviť SSL root certifikáty pre vyžiadanie platby (predvolené: -system-) + + + + Show splash screen on startup (default: %u) + Zobraziť uvítaciu obrazovku pri štarte (predvolené: %u) + + + + Reset all settings changed in the GUI + Zrušiť všetky zmeny v GUI + + + + Intro + + + Welcome + Vitajte + + + + Welcome to %1. + Vitajte v %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Keďže toto je prvé spustenie programu, môžete si vybrať, kam %1 bude ukladať vaše údaje. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Použiť predvolený dátový adresár + + + + Use a custom data directory: + Použiť vlastný dátový adresár: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Chyba: Zadaný priečinok pre dáta "%1" nemôže byť vytvorený. + + + + Error + Chyba + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Forma + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Nedávne transakcie nemusia byť ešte viditeľné preto môže byť zostatok vo vašej peňaženke nesprávny. Táto informácia bude správna keď sa dokončí synchronizovanie peňaženky so sieťou raven, ako je rozpísané nižšie. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Pokus o minutie ravenov, ktoré sú ovplyvnené ešte nezobrazenými transakciami, nebude sieťou akceptovaný. + + + + Number of blocks left + Počet zostávajúcich blokov + + + + + + Unknown... + Neznáme... + + + + Last block time + Čas posledného bloku + + + + Progress + Postup synchronizácie + + + + Progress increase per hour + Prírastok postupu za hodinu + + + + + calculating... + počíta sa... + + + + Estimated time left until synced + Odhadovaný čas do ukončenia synchronizácie + + + + Hide + Skryť + + + + Unknown. Syncing Headers (%1)... + Neznámy. Synchronizujú sa hlavičky (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Otvoriť URI + + + + Open payment request from URI or file + Otvoriť požiadavku na zaplatenie z URI alebo súboru + + + + URI: + URI: + + + + Select payment request file + Vyberte súbor s výzvou k platbe + + + + Select payment request file to open + Vyberte ktorý súbor s výzvou na platbu otvoriť + + + + OptionsDialog + + + Options + Možnosti + + + + &Main + &Hlavné + + + + Automatically start %1 after logging in to the system. + Automaticky spustiť %1 pri spustení systému. + + + + &Start %1 on system login + &Spustiť %1 pri prihlásení + + + + Size of &database cache + Veľkosť vyrovnávacej pamäti &databázy + + + + MB + MB + + + + Number of script &verification threads + Počet &vlákien overujúcich skript + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP adresy proxy (napr. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimalizovať namiesto ukončenia aplikácie keď sa okno zavrie. Keď je zvolená táto možnosť, aplikácia sa zavrie len po zvolení Ukončiť v menu. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL tretích strán (napr. prehliadač blockchain) ktoré sa zobrazujú v záložke transakcií ako položky kontextového menu. %s v URL je nahradené hash-om transakcie. Viaceré URL sú oddelené zvislou čiarou |. + + + + Active command-line options that override above options: + Aktívne možnosti príkazového riadku ktoré prepíšu možnosti vyššie: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Vynulovať všetky voľby klienta na predvolené. + + + + &Reset Options + Vynulovať voľby + + + + &Network + &Sieť + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = nechať toľko jadier voľných) + + + + W&allet + &Peňaženka + + + + Expert + Expert + + + + Enable coin &control features + Povoliť možnosti "&coin control" + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Ak vypnete míňanie nepotvrdeného výdavku tak výdavok z transakcie bude možné použiť až keď daná transakcia bude mať aspoň jedno potvrdenie. Toto má vplyv aj na výpočet vášho zostatku. + + + + &Spend unconfirmed change + Minúť nepotvrdený výdavok + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Automaticky otvorit port pre Raven na routeri. Toto funguje len ak router podporuje UPnP a je táto podpora aktivovaná. + + + + Map port using &UPnP + Mapovať port pomocou &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Pripojiť do siete Raven cez proxy server SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Pripojiť cez proxy server SOCKS5 (predvolený proxy). + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Port proxy (napr. 9050) + + + + Used for reaching peers via: + Použité pre získavanie peerov cez: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Pripojiť k Ravenovej sieti cez separované SOCKS5 proxy pre skrytú službu Tor. + + + + &Window + &Okno + + + + Show only a tray icon after minimizing the window. + Zobraziť len ikonu na lište po minimalizovaní okna. + + + + &Minimize to the tray instead of the taskbar + Zobraziť len ikonu na lište po minimalizovaní okna. + + + + M&inimize on close + M&inimalizovať pri zavretí + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Zobrazenie + + + + User Interface &language: + Jazyk užívateľského rozhrania: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Jazyk uživateľského rozhrania sa dá nastaviť tu. Toto nastavenie sa uplatní až po reštarte %1. + + + + &Unit to show amounts in: + &Zobrazovať hodnoty v jednotkách: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Zvoľte ako deliť raven pri zobrazovaní pri platbách a užívateľskom rozhraní. + + + + Whether to show coin control features or not. + Či zobrazovať možnosti "Coin control" alebo nie. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + Zrušiť + + + + default + predvolené + + + + none + žiadne + + + + Confirm options reset + Potvrdiť obnovenie možností + + + + + Client restart required to activate changes. + Reštart klienta potrebný pre aktivovanie zmien. + + + + Client will be shut down. Do you want to proceed? + Klient bude vypnutý, chcete pokračovať? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Táto zmena by vyžadovala reštart klienta. + + + + The supplied proxy address is invalid. + Zadaná proxy adresa je neplatná. + + + + OverviewPage + + + Form + Forma + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Zobrazené informácie môžu byť neaktuálne. Vaša peňaženka sa automaticky synchronizuje so sieťou Raven po nadviazaní spojenia, ale tento proces ešte nie je ukončený. + + + + Watch-only: + Iba sledované: + + + + Available: + Disponibilné: + + + + Your current spendable balance + Váš aktuálny disponibilný zostatok + + + + Pending: + Čakajúce potvrdenie: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Suma transakcií ktoré ešte neboli potvrdené a ešte sa nepočítajú do disponibilného zostatku + + + + Immature: + Nezrelé: + + + + Mined balance that has not yet matured + Vytvorený zostatok ktorý ešte nedosiahol zrelosť + + + + Total: + Celkovo: + + + + Your current total balance + Váš súčasný celkový zostatok + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Váš celkový zostatok pre adresy ktoré sa iba sledujú + + + + Spendable: + Použiteľné: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Nedávne transakcie + + + + Unconfirmed transactions to watch-only addresses + Nepotvrdené transakcie pre adresy ktoré sa iba sledujú + + + + Mined balance in watch-only addresses that has not yet matured + Vyťažená suma pre adresy ktoré sa iba sledujú ale ešte nie je dozretá + + + + Current total balance in watch-only addresses + Aktuálny celkový zostatok pre adries ktoré sa iba sledujú + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Chyba pri vyžiadaní platby + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + URI manipulácia + + + + Payment request fetch URL is invalid: %1 + URL pre stiahnutie výzvy na zaplatenie je neplatné: %1 + + + + Invalid payment address %1 + Neplatná adresa platby %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI sa nedá analyzovať! To môže byť spôsobené neplatnou Raven adresou alebo zle nastavenými vlastnosťami URI. + + + Payment request file handling Obsluha súboru s požiadavkou na platbu - Payment request file cannot be read! This can be caused by an invalid payment request file. - Súbor s výzvou na zaplatenie sa nedá čítať! To môže byť spôsobené aj neplatným súborom s výzvou. + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Súbor s výzvou na zaplatenie sa nedá čítať! To môže byť spôsobené aj neplatným súborom s výzvou. + + + + + + + + + Payment request rejected + Požiadavka na platbu zamietnutá + + + + Payment request network doesn't match client network. + Sieť požiadavky na platbu nie je zhodná so sieťou klienta. + + + + Payment request expired. + Vypršala platnosť požiadavky na platbu. + + + + Payment request is not initialized. + Požiadavka na platbu nie je inicializovaná + + + + Unverified payment requests to custom payment scripts are unsupported. + Program nepodporuje neoverené platobné požiadavky na vlastné skripty. + + + + + Invalid payment request. + Chybná požiadavka na platbu. + + + + Requested payment amount of %1 is too small (considered dust). + Požadovaná suma platby %1 je príliš nízka (považovaná za prach). + + + + Refund from %1 + Vrátenie z %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Požiadavka na platbu %1 je príliš veľká (%2 bajtov, povolené je %3 bajtov). + + + + Error communicating with %1: %2 + Chyba komunikácie s %1: %2 + + + + Payment request cannot be parsed! + Požiadavka na platbu nemôže byť analyzovaná! + + + + Bad response from server %1 + Zlá odpoveď zo servera %1 + + + + Network request error + Chyba požiadavky siete + + + + Payment acknowledged + Platba potvrdená + + + + PeerTableModel + + + User Agent + Aplikácia + + + + Node/Service + Uzol/Služba + + + + NodeId + ID uzlu + + + + Ping + Odozva + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Suma + + + + Enter a Raven address (e.g. %1) + Zadajte raven adresu (napr. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Žiadne + + + + N/A + nie je k dispozícii + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 a %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 ešte nebol bezpečne ukončený... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Chyba: %1 + + + + QRImageWidget + + + &Save Image... + Uložiť obrázok... + + + + &Copy Image + Kopírovať obrázok + + + + Save QR Code + Uložiť QR Code + + + + PNG Image (*.png) + PNG obrázok (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + nie je k dispozícii + + + + Client version + Verzia klienta + + + + &Information + &Informácia + + + + Debug window + Okno pre ladenie + + + + General + Všeobecné + + + + Using BerkeleyDB version + Používa verziu BerkeleyDB + + + + Datadir + Priečinok s dátami + + + + Startup time + Čas spustenia + + + + Network + Sieť + + + + Name + Názov + + + + Number of connections + Počet pripojení + + + + Block chain + Reťazec blokov + + + + Current number of blocks + Aktuálny počet blokov + + + + Memory Pool + Pamäť Poolu + + + + Current number of transactions + Aktuálny počet transakcií + + + + Memory usage + Využitie pamäte + + + + &Reset + + + + + + Received + Prijaté + + + + + Sent + Odoslané + + + + &Peers + &Partneri + + + + Banned peers + Zablokované spojenia + + + + + + Select a peer to view detailed information. + Vyberte počítač pre zobrazenie podrobností. + + + + Whitelisted + Povolené + + + + Direction + Smer + + + + Version + Verzia + + + + Starting Block + Počiatočný blok + + + + Synced Headers + Synchronizované hlavičky + + + + + Synced Blocks + Synchronizované bloky + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Aplikácia + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Otvoriť %1 ladiaci výpis z aktuálnej zložky. Pre veľké súbory to môže chvíľu trvať. + + + + Decrease font size + Zmenšiť písmo + + + + Increase font size + Zväčšiť písmo + + + + Services + Služby + + + + Ban Score + Skóre zákazu + + + + Connection Time + Dĺžka spojenia + + + + Last Send + Posledné odoslanie + + + + Last Receive + Posledné prijatie + + + + Ping Time + Čas odozvy + + + + The duration of a currently outstanding ping. + Trvanie aktuálnej požiadavky na odozvu. + + + + Ping Wait + Čakanie na odozvu + + + + Min Ping + Minimálna odozva + + + + Time Offset + Časový posun + + + + Last block time + Čas posledného bloku + + + + &Open + &Otvoriť + + + + &Console + &Konzola + + + + &Network Traffic + &Sieťová prevádzka + + + + Totals + Celkovo: + + + + In: + Dnu: + + + + Out: + Von: + + + + Debug log file + Súbor záznamu ladenia + + + + Clear console + Vymazať konzolu + + + + 1 &hour + 1 &hodinu + + + + 1 &day + 1 &deň + + + + 1 &week + 1 &týždeň + + + + 1 &year + 1 &rok + + + + &Disconnect + &Odpojiť + + + + + + + Ban for + Zakázať na + + + + &Unban + &Zrušiť zákaz + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Vitajte v %1 RPC konzole + + + + Type <b>help</b> for an overview of available commands. + Napíš <b>help</b> pre prehľad dostupných príkazov. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Sieťová aktivita zakázaná + + + + (node id: %1) + (ID uzlu: %1) + + + + via %1 + cez %1 + + + + + never + nikdy + + + + Inbound + Prichádzajúce + + + + Outbound + Odchádzajúce + + + + Yes + Áno + + + + No + Nie + + + + + Unknown + neznámy + + + + RavenGUI + + + Sign &message... + Podpísať &správu... + + + + Synchronizing with network... + Synchronizácia so sieťou... + + + + &Overview + &Prehľad + + + + Node + Uzol + + + + Show general overview of wallet + Zobraziť celkový prehľad o peňaženke + + + + &Transactions + &Transakcie + + + + Browse transaction history + Prechádzať históriu transakcií + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + U&končiť + + + + Quit application + Ukončiť program + + + + &About %1 + &O %1 + + + + Show information about %1 + Ukázať informácie o %1 + + + + About &Qt + O &Qt + + + + Show information about Qt + Zobrazit informácie o Qt + + + + &Options... + &Možnosti... + + + + Modify configuration options for %1 + Upraviť nastavenia pre %1 + + + + &Encrypt Wallet... + &Zašifrovať Peňaženku... + + + + &Backup Wallet... + &Zálohovať peňaženku... + + + + &Change Passphrase... + &Zmena Hesla... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Odosielajúce adresy ... + + + + &Receiving addresses... + &Prijímajúce adresy... + + + + Open &URI... + Otvoriť &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Kliknite pre zakázanie sieťovej aktivity. + + + + Network activity disabled. + Sieťová aktivita zakázaná. + + + + Click to enable network activity again. + Kliknite pre povolenie sieťovej aktivity. + + + + Syncing Headers (%1%)... + Synchronizujú sa hlavičky (%1%)... + + + + Reindexing blocks on disk... + Preindexúvam bloky na disku... + + + + Send coins to a Raven address + Poslať ravens na adresu + + + + Backup wallet to another location + Zálohovať peňaženku na iné miesto + + + + Change the passphrase used for wallet encryption + Zmeniť heslo použité na šifrovanie peňaženky + + + + Open debugging and diagnostic console + Otvor konzolu pre ladenie a diagnostiku + + + + &Verify message... + O&veriť správu... + + + + Raven + Raven + + + + Wallet + Peňaženka + + + + &Send + &Odoslať + + + + &Receive + &Prijať + + + + &Show / Hide + Zobraziť / skryť + + + + Show or hide the main Window + Zobraziť alebo skryť hlavné okno + + + + Encrypt the private keys that belong to your wallet + Zašifruj súkromné kľúče ktoré patria do vašej peňaženky + + + + Sign messages with your Raven addresses to prove you own them + Podpísať správu s vašou adresou Raven aby ste preukázali že ju vlastníte + + + + Verify messages to ensure they were signed with specified Raven addresses + Overiť či správa bola podpísaná uvedenou Raven adresou + + + + &File + &Súbor + + + + &Help + &Pomoc + + + + Request payments (generates QR codes and raven: URIs) + Vyžiadať platby (vygeneruje QR kódy a raven: URI) + + + + Show the list of used sending addresses and labels + Zobraziť zoznam použitých adries odosielateľa a ich popisy + + + + Show the list of used receiving addresses and labels + Zobraziť zoznam použitých prijímacích adries a ich popisov + + + + Open a raven: URI or payment request + Otvoriť raven URI alebo výzvu k platbe + + + + &Command-line options + Možnosti príkazového riadku + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexujem bloky na disku... + + + + Processing blocks on disk... + Spracovávam bloky na disku... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 pozadu + + + + Last received block was generated %1 ago. + Posledný prijatý blok bol vygenerovaný pred: %1. + + + + Transactions after this will not yet be visible. + Transakcie po tomto čase ešte nebudú viditeľné. + + + + Error + Chyba + + + + Warning + Upozornenie + + + + Information + Informácia + + + + Up to date + Aktualizovaný + + + + Show the %1 help message to get a list with possible Raven command-line options + Ukáž %1 zoznam možných nastavení Ravenu pomocou príkazového riadku + + + + %1 client + %1 klient + + + + Connecting to peers... + Pripája sa k partnerom... + + + + Catching up... + Sťahujem... + + + + Date: %1 + + Dátum: %1 + + + + + + Amount: %1 + + Suma: %1 + + + + + Type: %1 + + Typ: %1 + + + + + Label: %1 + + Popis: %1 + - Payment request rejected - Požiadavka na platbu zamietnutá + + Address: %1 + + Adresa: %1 + - Payment request network doesn't match client network. - Sieť požiadavky na platbu nie je zhodná so sieťou klienta. + + Sent transaction + Odoslané transakcie - Payment request expired. - Vypršala platnosť požiadavky na platbu. + + Incoming transaction + Prijatá transakcia - Payment request is not initialized. - Požiadavka na platbu nie je inicializovaná + + + Assets not yet active + - Unverified payment requests to custom payment scripts are unsupported. - Program nepodporuje neoverené platobné požiadavky na vlastné skripty. + + Restricted Assets not yet active + - Invalid payment request. - Chybná požiadavka na platbu. + + HD key generation is <b>enabled</b> + Generovanie HD kľúčov je <b>zapnuté</b> - Requested payment amount of %1 is too small (considered dust). - Požadovaná suma platby %1 je príliš nízka (považovaná za prach). + + HD key generation is <b>disabled</b> + Generovanie HD kľúčov je <b>vypnuté</b> - Refund from %1 - Vrátenie z %1 + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Peňaženka je <b>zašifrovaná</b> a momentálne <b>odomknutá</b> - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Požiadavka na platbu %1 je príliš veľká (%2 bajtov, povolené je %3 bajtov). + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Peňaženka je <b>zašifrovaná</b> a momentálne <b>zamknutá</b> - Error communicating with %1: %2 - Chyba komunikácie s %1: %2 + + A fatal error occurred. Raven can no longer continue safely and will quit. + Vyskytla sa kritická chyba. Raven nemôže ďalej bezpečne pokračovať a ukončí sa. + + + ReceiveCoinsDialog - Payment request cannot be parsed! - Požiadavka na platbu nemôže byť analyzovaná! + + &Amount: + &Suma: - Bad response from server %1 - Zlá odpoveď zo servera %1 + + &Label: + &Popis: - Network request error - Chyba požiadavky siete + + &Message: + &Správa: - Payment acknowledged - Platba potvrdená + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Znovu použiť jednu z už použitých adries pre prijímanie. Znovu používanie adries je sporná otázka bezpečnosti aj súkromia. Používajte to len v prípade ak znovu generujete výzvu na zaplatenie ktorú ste už vyrobili v minulosti. + + + + R&euse an existing receiving address (not recommended) + Znovu použiť jestvujúcu prijímaciu adresu (neodporúča sa) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť Raven. + + + + + An optional label to associate with the new receiving address. + Voliteľný popis ktorý sa pridá k tejto novej prijímajúcej adrese. + + + + Use this form to request payments. All fields are <b>optional</b>. + Použite tento formulár pre vyžiadanie platby. Všetky polia sú <b>voliteľné</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Voliteľná požadovaná suma. Nechajte prázdne alebo nulu ak nepožadujete určitú sumu. + + + + Clear all fields of the form. + Vyčistiť všetky polia formulára. + + + + Clear + Vyčistiť + + + + Requested payments history + História vyžiadaných platieb + + + + &Request payment + Vyžiadať platbu + + + + Show the selected request (does the same as double clicking an entry) + Zobraz zvolenú požiadavku (urobí to isté ako dvoj-klik na záznam) + + + + Show + Zobraziť + + + + Remove the selected entries from the list + Odstrániť zvolené záznamy zo zoznamu + + + + Remove + Odstrániť + + + + Copy URI + Kopírovať URI + + + + Copy label + Kopírovať popis + + + + Copy message + Kopírovať správu + + + + Copy amount + Kopírovať sumu - PeerTableModel + ReceiveRequestDialog - User Agent - Aplikácia + + QR Code + QR kód - Node/Service - Uzol/Služba + + Copy &URI + Kopírovať &URI - NodeId - ID uzlu + + Copy &Address + Kopírovať adresu - Ping - Odozva + + &Save Image... + Uložiť obrázok... + + + + Request payment to %1 + Vyžiadať platbu pre %1 + + + + Payment information + Informácia o platbe + + + + URI + URI + + + + Address + Adresa + + + + Amount + Suma + + + + Label + Popis + + + + Message + Správa + + + + Resulting URI too long, try to reduce the text for label / message. + Výsledné URI je príliš dlhé, skúste skrátiť text pre popis alebo správu. + + + + Error encoding URI into QR Code. + Chyba kódovania URI do QR Code. - QObject + RecentRequestsTableModel + + + Date + Dátum + + + + Label + Popis + + + + Message + Správa + + + + (no label) + (bez popisu) + + + + (no message) + (žiadna správa) + + + + (no amount requested) + (nepožadovaná žiadna suma) + + + + Requested + Požadované + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + - Amount - Suma + + + Reissue Asset + - Enter a Raven address (e.g. %1) - Zadajte raven adresu (napr. %1) + + Select an asset to reissue: + - %1 d - %1 d + + Address: + - %1 h - %1 h + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 m - %1 m + + Verifier String: + - %1 s - %1 s + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - None - Žiadne + + Warning: + - N/A - nie je k dispozícii + + The number of assets that will be created + - %1 ms - %1 ms + + Unit: + - - %n second(s) - %n sekunda%n sekundy%n sekúnd + + + e.g. 1.00000000 + - - %n minute(s) - %n minúta%n minúty%n minút + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n hodina%n hodiny%n hodín + + + Reissuable + - - %n day(s) - %n deň%n dni%n dní + + + Change IPFS/Txid Hash + - - %n week(s) - %n týždeň%n týždne%n týždňov + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 a %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n rok%n roky%n rokov + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 ešte nebol bezpečne ukončený... + + Current Asset Settings + - - - QObject::QObject - Error: %1 - Chyba: %1 + + Updated Asset Settings + - - - QRImageWidget - &Save Image... - Uložiť obrázok... + + Transaction Fee: + - &Copy Image - Kopírovať obrázok + + Choose... + - Save QR Code - Uložiť QR Code + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - PNG Image (*.png) - PNG obrázok (*.png) + + Warning: Fee estimation is currently not possible. + - - - RPCConsole - N/A - nie je k dispozícii + + collapse fee-settings + - Client version - Verzia klienta + + Hide + - &Information - &Informácia + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Debug window - Okno pre ladenie + + per kilobyte + - General - Všeobecné + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Using BerkeleyDB version - Používa verziu BerkeleyDB + + (read the tooltip) + - Datadir - Priečinok s dátami + + Recommended: + - Startup time - Čas spustenia + + Cus&tom: + - Network - Sieť + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Name - Názov + + Confirmation time target: + - Number of connections - Počet pripojení + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Block chain - Reťazec blokov + + Request Replace-By-Fee + - Current number of blocks - Aktuálny počet blokov + + Clear + - Memory Pool - Pamäť Poolu + + Balance: + - Current number of transactions - Aktuálny počet transakcií + + 123.456 RVN + - Memory usage - Využitie pamäte + + Copy quantity + - Received - Prijaté + + Copy amount + - Sent - Odoslané + + Copy fee + - &Peers - &Partneri + + Copy after fee + - Banned peers - Zablokované spojenia + + Copy bytes + - Select a peer to view detailed information. - Vyberte počítač pre zobrazenie podrobností. + + Copy dust + - Whitelisted - Povolené + + Copy change + - Direction - Smer + + Select an asset to reissue.. + - Version - Verzia + + Select the asset you want to reissue. + - Starting Block - Počiatočný blok + + %1 (%2 blocks) + - Synced Headers - Synchronizované hlavičky - + + Cost + - Synced Blocks - Synchronizované bloky + + Asset data couldn't be found + - User Agent - Aplikácia + + Quantity is to large. Max is 21,000,000,000 + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Otvoriť %1 ladiaci výpis z aktuálnej zložky. Pre veľké súbory to môže chvíľu trvať. + + Invalid Raven Destination Address + - Decrease font size - Zmenšiť písmo + + Warning: Restricted Assets Issuance requires an address + - Increase font size - Zväčšiť písmo + + + Warning: Invalid Raven address + - Services - Služby + + + Yes + - Ban Score - Skóre zákazu + + No + - Connection Time - Dĺžka spojenia + + + Name + - Last Send - Posledné odoslanie + + + Total Quantity + - Last Receive - Posledné prijatie + + + Units + - Ping Time - Čas odozvy + + + Can Reisssue + - The duration of a currently outstanding ping. - Trvanie aktuálnej požiadavky na odozvu. + + + + IPFS Hash + - Ping Wait - Čakanie na odozvu + + + + Txid Hash + - Min Ping - Minimálna odozva + + Verifier String + - Time Offset - Časový posun + + + Current Verifier String + - Last block time - Čas posledného bloku + + Please select a asset from the menu to display the assets current settings + - &Open - &Otvoriť + + Please select a asset from the menu to display the assets updated settings + - &Console - &Konzola + + Current Quantity + - &Network Traffic - &Sieťová prevádzka + + Current Units + - &Clear - &Vyčistiť + + Can Reissue + - Totals - Celkovo: + + Unknown data hash type + - In: - Dnu: + + Only IPFS Hashes allowed until RIP5 is activated + - Out: - Von: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Debug log file - Súbor záznamu ladenia + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Clear console - Vymazať konzolu + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - 1 &hour - 1 &hodinu + + + %1 to %2 + - 1 &day - 1 &deň + + Are you sure you want to send? + - 1 &week - 1 &týždeň + + added as transaction fee + - 1 &year - 1 &rok + + Total Amount %1 + - &Disconnect - &Odpojiť + + or + - Ban for - Zakázať na + + Confirm reissue assets + - &Unban - &Zrušiť zákaz + + Copy + - Welcome to the %1 RPC console. - Vitajte v %1 RPC konzole + + Transaction ID Copied + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Použi šípky hore a dolu pre navigáciu históriou a <b>Ctrl-L</b> pre vyčistenie obrazovky. + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Type <b>help</b> for an overview of available commands. - Napíš <b>help</b> pre prehľad dostupných príkazov. + + Warning: Unknown change address + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - VAROVANIE: Podvodníci sú aktívni a môžu nabádať používateľov napísať sem príkazy, pomocou ktorých ukradnú ich obsah peňaženky. Nepoužívajte túto konzolu ak nerozumiete presne účinkom príkazov. + + Confirm custom change address + - Network activity disabled - Sieťová aktivita zakázaná + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - %1 B - %1 B + + (no label) + - %1 KB - %1 KB + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 MB - %1 MB + + Send Coins + - %1 GB - %1 GB + + Asset Balances + - (node id: %1) - (ID uzlu: %1) + + + Search + - via %1 - cez %1 + + Address List + - never - nikdy + + Balance: + - Inbound - Prichádzajúce + + + Failed to create a change address + - Outbound - Odchádzajúce + + Failed to generate the correct transaction. Please try again + - Yes - Áno + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - No - Nie + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Unknown - neznámy + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - - - ReceiveCoinsDialog - &Amount: - &Suma: + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - &Label: - &Popis: + + + added as transaction fee + - &Message: - &Správa: + + + Total Amount %1 + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Znovu použiť jednu z už použitých adries pre prijímanie. Znovu používanie adries je sporná otázka bezpečnosti aj súkromia. Používajte to len v prípade ak znovu generujete výzvu na zaplatenie ktorú ste už vyrobili v minulosti. + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - Znovu použiť jestvujúcu prijímaciu adresu (neodporúča sa) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Pridať voliteľnú správu k výzve na zaplatenie, ktorá sa zobrazí keď bude výzva otvorená. Poznámka: Správa nebude poslaná s platbou cez sieť Raven. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - Voliteľný popis ktorý sa pridá k tejto novej prijímajúcej adrese. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Použite tento formulár pre vyžiadanie platby. Všetky polia sú <b>voliteľné</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Voliteľná požadovaná suma. Nechajte prázdne alebo nulu ak nepožadujete určitú sumu. + + This is an asset payment + - Clear all fields of the form. - Vyčistiť všetky polia formulára. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Vyčistiť + + + + Memo: + - Requested payments history - História vyžiadaných platieb + + Amount: + - &Request payment - Vyžiadať platbu + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Zobraz zvolenú požiadavku (urobí to isté ako dvoj-klik na záznam) + + &Label: + - Show - Zobraziť + + Asset: + - Remove the selected entries from the list - Odstrániť zvolené záznamy zo zoznamu + + The Raven address to send the payment to + - Remove - Odstrániť + + Choose previously used address + - Copy URI - Kopírovať URI + + Alt+A + - Copy label - Kopírovať popis + + Paste address from clipboard + - Copy message - Kopírovať správu + + Alt+P + - Copy amount - Kopírovať sumu + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR kód + + Message: + - Copy &URI - Kopírovať &URI + + Transfer &To: + - Copy &Address - Kopírovať adresu + + Transfer Administrator Asset + - &Save Image... - Uložiť obrázok... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Vyžiadať platbu pre %1 + + This is an unauthenticated payment request. + - Payment information - Informácia o platbe + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adresa + + This is an authenticated payment request. + - Amount - Suma + + Enter a label for this address to add it to your address book + - Label - Popis + + Select to view administrator assets to transfer + - Message - Správa + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - Výsledné URI je príliš dlhé, skúste skrátiť text pre popis alebo správu. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Chyba kódovania URI do QR Code. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Dátum + + Failed to get asset metadata for: + - Label - Popis + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Správa + + Failed to get asset outpoints from database + - (no label) - (bez popisu) + + Selected Balance + - (no message) - (žiadna správa) + + Wallet Balance + - (no amount requested) - (nepožadovaná žiadna suma) + + Select an administrator asset to transfer + - Requested - Požadované + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Poslať Ravens + Coin Control Features - Možnosti "Coin Control" + Možnosti "Coin Control" + Inputs... Vstupy... + automatically selected automaticky vybrané + Insufficient funds! Nedostatok prostriedkov! + Quantity: Množstvo: + Bytes: Bajtov: + Amount: Suma: + Fee: Poplatok: + After Fee: Po poplatku: + Change: Zmena: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Ak aktivované ale adresa pre výdavok je prázdna alebo neplatná, výdavok bude poslaný na novovytvorenú adresu. + Custom change address Vlastná adresa zmeny + Transaction Fee: Poplatok za transakciu: + Choose... Zvoliť... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings zbaliť nastavenia poplatkov + per kilobyte za kilobajt - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Ak je poplatok nastavený na 1000 satoshi a transakcia je veľká len 250 bajtov, potom "za kilobajt" zaplatí poplatok 250 satoshi, ale "spolu aspoň" zaplatí 1000 satoshi. Pre transakcie väčšie ako kilobajt platia oba spôsoby za každý kilobajt. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Ak je poplatok nastavený na 1000 satoshi a transakcia je veľká len 250 bajtov, potom "za kilobajt" zaplatí poplatok 250 satoshi, ale "spolu aspoň" zaplatí 1000 satoshi. Pre transakcie väčšie ako kilobajt platia oba spôsoby za každý kilobajt. + Hide Skryť - total at least - spolu aspoň - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Zaplatenie len minimálneho poplatku je v poriadku, pokiaľ existuje menej transakcií ako miesta v blokoch. Uvedomte si však, že ak bude vyšší dopyt po transakciách ako dokáže sieť spracovať, môže byť vaša transakcia odsúvaná a nepotvrdená donekonečna. + (read the tooltip) (prečítajte si nápovedu pod kurzorom) + Recommended: Odporúčaný: + Custom: Vlastný: + (Smart fee not initialized yet. This usually takes a few blocks...) (Automatický poplatok ešte nebol vypočítaný. Toto zvyčajne trvá niekoľko blokov...) - normal - normálne + + Request Replace-By-Fee + - fast - rýchle + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Poslať viacerým príjemcom naraz + Add &Recipient &Pridať príjemcu + Clear all fields of the form. Vyčistiť všetky polia formulára. + Dust: Prach: + Confirmation time target: Cieľový čas potvrdenia: + Clear &All &Zmazať všetko + Balance: Zostatok: + Confirm the send action Potvrďte odoslanie + S&end &Odoslať + Copy quantity Kopírovať množstvo + Copy amount Kopírovať sumu + Copy fee Kopírovať poplatok + Copy after fee Kopírovať po poplatkoch + Copy bytes Kopírovať bajty + Copy dust Kopírovať prach + Copy change Kopírovať zmenu + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 do %2 + Are you sure you want to send? Určite chcete odoslať transakciu? + added as transaction fee pridané ako poplatok za transakciu + Total Amount %1 Celková suma %1 + or alebo + Confirm send coins Potvrďte odoslanie mincí + The recipient address is not valid. Please recheck. Adresa príjemcu je neplatná. Prosím, overte ju. + The amount to pay must be larger than 0. Suma na úhradu musí byť väčšia ako 0. + The amount exceeds your balance. Suma je vyššia ako Váš zostatok. + The total exceeds your balance when the %1 transaction fee is included. Celková suma prevyšuje Váš zostatok ak sú započítané aj transakčné poplatky %1. + Duplicate address found: addresses should only be used once each. Našla sa duplicitná adresa: každá adresa by sa mala použiť len raz. + Transaction creation failed! Vytvorenie transakcie zlyhalo! + The transaction was rejected with the following reason: %1 Transakcia bola odmietnutá z nasledujúceho dôvodu: %1 + A fee higher than %1 is considered an absurdly high fee. Poplatok vyšší ako %1 sa považuje za neprimerane vysoký. + Payment request expired. Vypršala platnosť požiadavky na platbu. - - %n block(s) - %n blok%n bloky%n blokov - + Pay only the required fee of %1 Zaplatiť iba požadovaný poplatok %1 + Estimated to begin confirmation within %n block(s). - Odhadovaný začiatok potvrdzovania po %n bloku.Odhadovaný začiatok potvrdzovania po %n blokoch.Odhadovaný začiatok potvrdzovania po %n blokoch. + + Warning: Invalid Raven address Varovanie: Neplatná Raven adresa + Warning: Unknown change address UPOZORNENIE: Neznáma zmena adresy + Confirm custom change address Potvrďte zmenu adresy + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Zadaná adresa nie je súčasťou tejto peňaženky. Časť alebo všetky peniaze z peňaženky môžu byť odoslané na túto adresu. Ste si istý? + (no label) (bez popisu) @@ -2215,82 +5499,108 @@ SendCoinsEntry + + + A&mount: Su&ma: - Pay &To: - Zapla&tiť: - - + &Label: &Popis: + Choose previously used address Vybrať predtým použitú adresu + This is a normal payment. Toto je normálna platba. + The Raven address to send the payment to Zvoľte adresu kam poslať platbu + Alt+A Alt+A + Paste address from clipboard Vložiť adresu zo schránky + Alt+P Alt+P + + + Remove this entry Odstrániť túto položku + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Poplatok sa odpočíta od čiastky, ktorú odosielate. Príjemca dostane menej ravenov ako zadáte. Ak je vybraných viacero príjemcov, poplatok je rozdelený rovným dielom. + S&ubtract fee from amount Odpočítať poplatok od s&umy + Message: Správa: + + Send &To: + + + + This is an unauthenticated payment request. Toto je neoverená výzva k platbe. + + + Send to: + + + + This is an authenticated payment request. Toto je overená výzva k platbe. + Enter a label for this address to add it to the list of used addresses Vložte popis pre túto adresu aby sa uložila do zoznamu použitých adries + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Správa ktorá bola pripojená k raven: URI a ktorá bude uložená s transakcou pre Vaše potreby. Poznámka: Táto správa nebude poslaná cez sieť Raven. - Pay To: - Platba pre: - - + + Memo: Poznámka: + Enter a label for this address to add it to your address book Zadajte popis pre túto adresu pre pridanie do adresára @@ -2298,6 +5608,8 @@ SendConfirmationDialog + + Yes áno @@ -2305,10 +5617,12 @@ ShutdownWindow + %1 is shutting down... %1 sa vypína... + Do not shut down the computer until this window disappears. Nevypínajte počítač kým toto okno nezmizne. @@ -2316,138 +5630,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Podpisy - Podpísať / Overiť správu + &Sign Message &Podpísať Správu + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - Môžete podpísať správy svojou adresou a dokázať, že viete prijímať mince zaslané na túto adresu. Buďte však opatrní a podpíšte len podrobné prehlásenia, s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k podpísaniu nejasných alebo príliš všeobecných tvrdení čím prevezmú vašu identitu. + Môžete podpísať správy svojou adresou a dokázať, že viete prijímať mince zaslané na túto adresu. Buďte však opatrní a podpíšte len podrobné prehlásenia, s ktorými plne súhlasíte, nakoľko útoky typu "phishing" Vás môžu lákať k podpísaniu nejasných alebo príliš všeobecných tvrdení čím prevezmú vašu identitu. + The Raven address to sign the message with Raven adresa pre podpísanie správy s + + Choose previously used address Vybrať predtým použitú adresu + + Alt+A Alt+A + Paste address from clipboard Vložiť adresu zo schránky + Alt+P Alt+P + Enter the message you want to sign here Sem vložte správu ktorú chcete podpísať + Signature Podpis + Copy the current signature to the system clipboard Kopírovať tento podpis do systémovej schránky + Sign the message to prove you own this Raven address Podpíšte správu aby ste dokázali že vlastníte túto adresu + Sign &Message Podpísať &správu + Reset all sign message fields Vynulovať všetky polia podpisu správy + + Clear &All &Zmazať všetko + &Verify Message O&veriť správu... - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Vložte adresu príjemcu, správu (uistite sa, že presne kopírujete ukončenia riadkov, medzery, odrážky, atď.) a podpis pre potvrdenie správy. Buďte opatrní a nedomýšľajte si viac než je uvedené v samotnej podpísanej správe a môžete sa tak vyhnúť podvodu MITM útokom. Toto len potvrdzuje, že podpisujúca strana môže prijímať na tejto adrese, nepotvrdzuje to vlastníctvo žiadnej transakcie! + The Raven address the message was signed with Adresa Raven, ktorou bola podpísaná správa + Verify the message to ensure it was signed with the specified Raven address Overím správy sa uistiť že bola podpísaná označenou Raven adresou + Verify &Message &Overiť správu + Reset all verify message fields Obnoviť všetky polia v overiť správu - Click "Sign Message" to generate signature - Kliknite "Podpísať správu" pre vytvorenie podpisu + + Click "Sign Message" to generate signature + Kliknite "Podpísať správu" pre vytvorenie podpisu + + The entered address is invalid. Zadaná adresa je neplatná. + + + + Please check the address and try again. Prosím skontrolujte adresu a skúste znova. + + The entered address does not refer to a key. Vložená adresa nezodpovedá žiadnemu kľúču. + Wallet unlock was cancelled. Odomknutie peňaženky bolo zrušené. + Private key for the entered address is not available. Súkromný kľúč pre zadanú adresu nieje k dispozícii. + Message signing failed. Podpísanie správy zlyhalo. + Message signed. Správa podpísaná. + The signature could not be decoded. Podpis nie je možné dekódovať. + + Please check the signature and try again. Prosím skontrolujte podpis a skúste znova. + The signature did not match the message digest. Podpis sa nezhoduje so zhrnutím správy. + Message verification failed. Overenie správy zlyhalo. + Message verified. Správa overená. @@ -2455,6 +5812,7 @@ SplashScreen + [testnet] [testovacia sieť] @@ -2462,153 +5820,268 @@ TrafficGraphWidget + KB/s KB/s TransactionDesc + + + Open for %n more block(s) + + + Open until %1 Otvorené do %1 + conflicted with a transaction with %1 confirmations koliduje s transakciou s %1 potvrdeniami + %1/offline %1/offline + 0/unconfirmed, %1 0/nepotvrdené, %1 + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + %1/unconfirmed %1/nepotvrdené + %1 confirmations %1 potvrdení + + Status Stav + + , has not been successfully broadcast yet , ešte nebola úspešne odoslaná + + + + , broadcast through %n node(s) + + + + Date Dátum + Source Zdroj + Generated Vygenerované + + + + + From Od + + unknown neznámy + + + + + To do + + own address vlastná adresa + + + watch-only Iba sledovanie + + label popis + + + + + + + Credit Kredit + + + matures in %n more block(s) + + + not accepted neprijaté + + + + + Debit Debet + Total debit Celkový debet + Total credit Celkový kredit + Transaction fee Transakčný poplatok + Net amount Suma netto + + + + Message Správa + + Comment Komentár + + Transaction ID ID transakcie + + Transaction total size Celková veľkosť transakcie + + + Output index + + + + + Merchant Kupec - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Vytvorené coins musia dospieť %1 blokov kým môžu byť minuté. Keď vytvoríte tento blok, bude rozoslaný do siete aby bol akceptovaný do reťaze blokov. Ak sa nedostane reťaze, jeho stav sa zmení na "zamietnutý" a nebude sa dať minúť. Toto sa môže občas stať ak iná nóda vytvorí blok približne v tom istom čase. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Vytvorené coins musia dospieť %1 blokov kým môžu byť minuté. Keď vytvoríte tento blok, bude rozoslaný do siete aby bol akceptovaný do reťaze blokov. Ak sa nedostane reťaze, jeho stav sa zmení na "zamietnutý" a nebude sa dať minúť. Toto sa môže občas stať ak iná nóda vytvorí blok približne v tom istom čase. + + + + Net RVN amount + + Debug information Ladiace informácie + Transaction Transakcie + Inputs Vstupy + Amount Suma + + true pravda + + false nepravda @@ -2616,10 +6089,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Táto časť obrazovky zobrazuje detailný popis transakcie + Details for %1 Podrobnosti pre %1 @@ -2627,253 +6102,411 @@ TransactionTableModel + Date Dátum + Type Typ + Label Popis + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + Open until %1 Otvorené do %1 + Offline Offline + Unconfirmed Nepotvrdené + + Abandoned + + + + Confirming (%1 of %2 recommended confirmations) Potvrdzujem (%1 z %2 odporúčaných potvrdení) + Confirmed (%1 confirmations) Potvrdené (%1 potvrdení) + Conflicted V rozpore + Immature (%1 confirmations, will be available after %2) Nezrelé (%1 potvrdení, bude dostupné po %2) + This block was not received by any other nodes and will probably not be accepted! Ten blok nebol prijatý žiadnym iným uzlom a pravdepodobne nebude akceptovaný! + Generated but not accepted Vypočítané ale neakceptované + Received with Prijaté s + Received from Prijaté od + Sent to Odoslané na + Payment to yourself Platba sebe samému + Mined Vyťažené + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only Iba sledovanie + (n/a) (n/a) + (no label) (bez popisu) + Transaction status. Hover over this field to show number of confirmations. Stav transakcie. Prejdite ponad toto pole pre zobrazenie počtu potvrdení. + Date and time that the transaction was received. Dátum a čas prijatia transakcie. + Type of transaction. Typ transakcie. + Whether or not a watch-only address is involved in this transaction. Či je v tejto transakcii adresy iba na sledovanie. + + User-defined intent/purpose of the transaction. + + + + Amount removed from or added to balance. Suma pridaná alebo odobraná k zostatku. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Všetky + Today Dnes + This week Tento týždeň + This month Tento mesiac + Last month Minulý mesiac + This year Tento rok + Range... Rozsah... + Received with Prijaté s + Sent to Odoslané na + To yourself Ku mne + Mined Vyťažené + Other Iné + Enter address or label to search Zadajte adresu alebo popis pre hľadanie + Min amount Minimálna suma + + Asset name + + + + + Abandon transaction + + + + Copy address Kopírovať adresu + Copy label Kopírovať popis + Copy amount Kopírovať sumu + Copy transaction ID Kopírovať ID transakcie + Copy raw transaction Skopírovať neupravenú transakciu + Copy full transaction details Kopírovať všetky podrobnosti o transakcii + Edit label Upraviť popis + Show transaction details Zobraziť podrobnosti transakcie + + Browse with: + + + + Export Transaction History Exportovať históriu transakcií + Comma separated file (*.csv) Čiarkou oddelovaný súbor (*.csv) + Confirmed Potvrdené + Watch-only Iba sledovanie + Date Dátum + Type Typ + Label Popis + Address Adresa + + Asset + + + + ID ID + Exporting Failed Export zlyhal + There was an error trying to save the transaction history to %1. Vyskytla sa chyba pri pokuse o uloženie histórie transakcií do %1. + Exporting Successful Export úspešný + The transaction history was successfully saved to %1. História transakciá bola úspešne uložená do %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: Rozsah: + to do @@ -2881,6 +6514,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Jednotka pre zobrazovanie súm. Kliknite pre zvolenie inej jednotky. @@ -2888,6 +6522,7 @@ WalletFrame + No wallet has been loaded. Nie je načítaná peňaženka. @@ -2895,796 +6530,1763 @@ WalletModel + Send Coins Poslať mince + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportovať... + Export the data in the current tab to a file Exportovať dáta v aktuálnej karte do súboru + Backup Wallet Zálohovanie peňaženky + Wallet Data (*.dat) Dáta peňaženky (*.dat) + Backup Failed Zálohovanie zlyhalo + There was an error trying to save the wallet data to %1. Vyskytla sa chyba pri pokuse o uloženie dát peňaženky do %1. + Backup Successful Záloha úspešná + The wallet data was successfully saved to %1. Dáta peňaženky boli úspešne uložené do %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Možnosti: + Specify data directory Určiť priečinok s dátami + Connect to a node to retrieve peer addresses, and disconnect Pripojiť sa k uzlu, získať adresy ďalších počítačov v sieti a odpojiť sa + Specify your own public address Určite vašu vlastnú verejnú adresu + Accept command line and JSON-RPC commands Prijímať príkazy z príkazového riadku a JSON-RPC + Distributed under the MIT software license, see the accompanying file %s or %s Distribuované pod softvérovou licenciou MIT, viď sprievodný súbor %s alebo %s + If <category> is not supplied or if <category> = 1, output all debugging information. Pokiaľ <category> nie je nastavená, alebo <category> = 1, vypíš všetky informácie pre ladenie. + Prune configured below the minimum of %d MiB. Please use a higher number. Redukcia nastavená pod minimálnu hodnotu %d MiB. Prosím použite vyššiu hodnotu. + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + Error: A fatal internal error occurred, see debug.log for details Chyba: Vyskytla sa interná chyba, pre viac informácií zobrazte debug.log + Fee (in %s/kB) to add to transactions you send (default: %s) Poplatok (za %s/kB) pridaný do transakcie, ktorú posielate (predvolené: %s) + Pruning blockstore... Redukovanie blockstore... + Run in the background as a daemon and accept commands Bežať na pozadí ako démon a prijímať príkazy + Unable to start HTTP server. See debug log for details. Nepodarilo sa spustiť HTTP server. Pre viac detailov zobrazte debug log. + Raven Core Raven Core + The %s developers Vývojári %s + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Akceptovať postúpené transakcie od povolených partnerov aj keď normálne nepostupujete transakcie (predvolené: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Spojiť s danou adresou a vždy na nej počúvať. Použite zápis [host]:port pre IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. Nemožné uzamknúť zložku %s. %s pravdepodobne už beží. + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Vymazať všetky transakcie z peňaženky a pri spustení znova získať z reťazca blokov iba tie získané pomocou -rescan - Error loading %s: You can't enable HD on a already existing non-HD wallet - Chyba počas načítavania %s: Nemôžete povoliť HD na už existujúcej non-HD peaženke + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Vykonaj príkaz keď sa zmení transakcia peňaženky (%s v príkaze je nahradená TxID) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Prosím skontrolujte systémový čas a dátum. Keď je váš čas nesprávny, %s nebude fungovať správne. + Please contribute if you find %s useful. Visit %s for further information about the software. Keď si myslíte, že %s je užitočný, podporte nás. Pre viac informácií o software navštívte %s. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Nastaviť počeť vlákien overujúcich skripty (%u až %d, 0 = auto, <0 = nechať toľkoto jadier voľných, prednastavené: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Databáza blokov obsahuje blok, ktorý vyzerá byť z budúcnosti. Toto môže byť spôsobené nesprávnym systémovým časom vášho počítača. Obnovujte databázu blokov len keď ste si istý, že systémový čas je nastavený správne. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Toto je predbežná testovacia zostava - používate na vlastné riziko - nepoužívajte na ťaženie alebo obchodné aplikácie + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Skúsiť použiť UPnP pre mapovanie počúvajúceho portu (predvolené: 1 počas počúvania a bez -proxy) + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Varovanie: Javí sa že sieť sieť úplne nesúhlasí! Niektorí mineri zjavne majú ťažkosti. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Varovanie: Zjavne sa úplne nezhodujeme s našimi peer-mi! Možno potrebujete prejsť na novšiu verziu alebo ostatné uzly potrebujú vyššiu verziu. - You need to rebuild the database using -reindex-chainstate to change -txindex - Potrebujete prebudovať databázu použitím -reindex-chainstate pre zmenu -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + %s corrupt, salvage failed %s je poškodený, záchrana zlyhala + -maxmempool must be at least %d MB -maxmempool musí byť najmenej %d MB + <category> can be: <category> môže byť: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + Attempt to recover private keys from a corrupt wallet on startup Pokúsiť sa o obnovenie privátnych kľúčov z poškodenej peňaženky pri spustení + Block creation options: Voľby vytvorenia bloku: + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + Change index out of range Menný index mimo rozsah + Connection options: Možnosti pripojenia: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Zistená poškodená databáza blokov + Debugging/Testing options: Možnosti ladenia/testovania: + Do not load the wallet and disable wallet RPC calls Nenahrat peňaženku a zablokovať volania RPC. + Do you want to rebuild the block database now? Chcete znovu zostaviť databázu blokov? + Enable publish hash block in <address> Povoliť zverejneneie hash blokov pre <address> + Enable publish hash transaction in <address> Povoliť zverejnenie hash transakcií pre <address> + Enable publish raw block in <address> Povoliť zverejnenie raw bloku pre <address> + Enable publish raw transaction in <address> Povoliť publikovať hrubý prevod v <address> + + Enable transaction replacement in the memory pool (default: %u) + + + + Error initializing block database Chyba inicializácie databázy blokov + Error initializing wallet database environment %s! Chyba spustenia databázového prostredia peňaženky %s! + Error loading %s Chyba načítania %s + Error loading %s: Wallet corrupted Chyba načítania %s: Peňaženka je poškodená + Error loading %s: Wallet requires newer version of %s Chyba načítania %s: Peňaženka vyžaduje novšiu verziu %s + Error loading block database Chyba načítania databázy blokov + Error opening block database Chyba otvárania databázy blokov + Error: Disk space is low! Chyba: Málo miesta na disku! + Failed to listen on any port. Use -listen=0 if you want this. Chyba počúvania na ktoromkoľvek porte. Použi -listen=0 ak toto chcete. + Importing... Prebieha import ... + Incorrect or no genesis block found. Wrong datadir for network? Nesprávny alebo žiadny genesis blok nájdený. Nesprávny dátový priečinok alebo sieť? + Initialization sanity check failed. %s is shutting down. Kontrola čistoty pri inicializácií zlyhala. %s sa vypína. - Invalid -onion address: '%s' - Neplatná -onion adresa: '%s' + + Invalid amount for -%s=<amount>: '%s' + Neplatná suma pre -%s=<amount>: '%s' + + + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -%s=<amount>: '%s' - Neplatná suma pre -%s=<amount>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Neplatná suma pre -fallbackfee=<amount>: '%s' - Invalid amount for -fallbackfee=<amount>: '%s' - Neplatná suma pre -fallbackfee=<amount>: '%s' + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + Loading P2P addresses... + + + + Loading banlist... Načítavam banlist... + Location of the auth cookie (default: data dir) Umiestnenie overovacieho cookie súboru (predvolená: Priečinok s dátami) + Not enough file descriptors available. Nedostatok kľúčových slov súboru. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Pripojiť iba k uzlom v sieti <net> (ipv4, ipv6, alebo onion) + Print this help message and exit Vytlačiť túto pomocnú správu a ukončiť + Print version and exit Vytlačiť verziu a ukončiť + Prune cannot be configured with a negative value. Redukovanie nemôže byť nastavené na zápornú hodnotu. + Prune mode is incompatible with -txindex. Redukovanie je nekompatibilné s -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Obnoviť stav reťazca a index blokov zo súborov blk*.dat na disku. + Rebuild chain state from the currently indexed blocks Obnoviť stav reťazca z aktuálne indexovaných blokov. - Set database cache size in megabytes (%d to %d, default: %d) - Nastaviť veľkosť pomocnej pamäti databázy v megabajtoch (%d do %d, prednastavené: %d) + + Replaying blocks... + - Set maximum block size in bytes (default: %d) - Nastaviť najväčšiu veľkosť bloku v bytoch (predvolené: %d) + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + Nastaviť veľkosť pomocnej pamäti databázy v megabajtoch (%d do %d, prednastavené: %d) + Specify wallet file (within data directory) Označ súbor peňaženky (v priečinku s dátami) + The source code is available from %s. Zdrojový kód je dostupný z %s + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Nemožné pripojiť k %s na tomto počíťači. %s už pravdepodobne beží. + Unsupported argument -benchmark ignored, use -debug=bench. Nepodporovaný parameter -benchmark bol ignorovaný, použite -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Nepodporovaný argument -debugnet bol ignorovaný, použite -debug=net. + Unsupported argument -tor found, use -onion. Nepodporovaný argument -tor, použite -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Použiť UPnP pre mapovanie počúvajúceho portu (predvolené: %u) + Use the test chain Použiť testovaciu sieť + + User Agent comment (%s) contains unsafe characters. + + + + Verifying blocks... Overujem bloky... - Verifying wallet... - Overujem peňaženku... - - + Wallet %s resides outside data directory %s Peňaženka %s sa nachádza mimo dátového priečinka %s + Wallet debugging/testing options: Ladiace / testovacie možnosti peňaženky. + Wallet needed to be rewritten: restart %s to complete Peňaženka musí byť prepísaná: pre dokončenie reštartujte %s + Wallet options: Voľby peňaženky: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Povoliť JSON-RPC pripojenia zo zadaného zdroja. Pre <ip> sú platné jednoduché IP (napr. 1.2.3.4), sieť/netmask (napr. 1.2.3.4/255.255.255.0) alebo sieť/CIDR (napr. 1.2.3.4/24). Táto možnosť môže byť zadaná niekoľko krát + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Spojiť s danou adresou a povolenými partnerskými zariadeniami ktoré sa tam pripájajú. Použite zápis [host]:port pre IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Spojiť s danou adresou pre počúvanie JSON-RPC spojení. Použite zápis [host]:port pre IPv6. Táto možnosť môže byt zadaná niekoľko krát (predvolené: spojiť so všetkými rozhraniami) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Vytvoriť nové súbory z predvolenými systémovými právami, namiesto umask 077 (funguje iba z vypnutou funkcionalitou peňaženky) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Zisti vlastnú IP adresu (predvolené: 1 pre listen a -externalip alebo -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Chyba: Počúvanie prichádzajúcich spojení zlyhalo (vrátená chyba je %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Vykonať príkaz po prijatí patričného varovania alebo uvidíme veľmi dlhé rozdvojenie siete (%s v cmd je nahradené správou) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Poplatky (v %s/kB) menšie ako toto, sú považované za nulový transakčný poplatok (predvolené: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Ak nie je nastavené paytxfee, pridať dostatočný poplatok aby sa transakcia začala potvrdzovať priemerne v rámci bloku (predvolené: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Neplatná suma pre -maxtxfee=<amount>: '%s' (aby sa transakcia nezasekla, minimálny prenosový poplatok musí byť aspoň %s) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Neplatná suma pre -maxtxfee=<amount>: '%s' (aby sa transakcia nezasekla, minimálny prenosový poplatok musí byť aspoň %s) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximálna veľkosť dát v transakciách nosných dát, ktoré prenášame a ťažíme (predvolené: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Nastaviť najväčšiu veľkosť vysoká-dôležitosť/nízke-poplatky transakcií v bajtoch (prednastavené: %d) + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + The transaction amount is too small to send after the fee has been deducted Suma je príliš malá pre odoslanie transakcie + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Uzle na zoznam povolených nemôžu byť DoS zakázané a ich transakcie vždy postúpené ďalej, aj v prípade, ak sú už pamäťovej fronte. Užitočné napr. pre brány + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + (default: %u) (predvolené: %u) + Accept public REST requests (default: %u) Akceptovať verejné REST žiadosti (predvolené: %u) + Automatically create Tor hidden service (default: %d) Automaticky vytvoriť skrytú službu Tor (predvolené: %d) + Connect through SOCKS5 proxy Pripojiť cez proxy server SOCKS5 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Chyba pri načítaní z databázy, ukončuje sa. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importovať bloky z externého súboru blk000??.dat pri štarte + Information Informácia - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Neplatná suma pre -paytxfee=<amount>: '%s' (musí byť aspoň %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - Nadaná neplatná netmask vo -whitelist: '%s' + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Neplatná suma pre -paytxfee=<amount>: '%s' (musí byť aspoň %s) + + Invalid netmask specified in -whitelist: '%s' + Nadaná neplatná netmask vo -whitelist: '%s' + + + Keep at most <n> unconnectable transactions in memory (default: %u) V pamäti udržiavať najviac <n> nepotvrdených transakcií (predvolené: %u) - Need to specify a port with -whitebind: '%s' - Je potrebné zadať port s -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' + Je potrebné zadať port s -whitebind: '%s' + Node relay options: Prenosové možnosti uzla: + RPC server options: Možnosti servra RPC: + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + Rescan the block chain for missing wallet transactions on startup Pri spustení skontrolovať reťaz blokov pre chýbajúce transakcie peňaženky + Send trace/debug info to console instead of debug.log file Odoslať trace/debug informácie na konzolu namiesto debug.info žurnálu - Send transactions as zero-fee transactions if possible (default: %u) - Poslať ako transakcie bez poplatku, ak je to možné (predvolené: %u) - - + Show all debugging options (usage: --help -help-debug) Zobraziť všetky možnosti ladenia (použitie: --help --help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Zmenšiť debug.log pri spustení klienta (predvolené: 1 ak bez -debug) + Signing transaction failed Podpísanie správy zlyhalo + The transaction amount is too small to pay the fee Suma transakcie je príliš malá na zaplatenie poplatku + This is experimental software. Toto je experimentálny softvér. + Tor control port password (default: empty) Heslo na kontrolu portu pre Tor (predvolené: žiadne) + + Tor control port to use if onion listening enabled (default: %s) + + + + Transaction amount too small Suma transakcie príliš malá + Transaction too large for fee policy Transakcia je príliš veľká pre aktuálne podmienky poplatkov + Transaction too large Transakcia príliš veľká + Unable to bind to %s on this computer (bind returned error %s) Na tomto počítači sa nedá vytvoriť väzba %s (vytvorenie väzby vrátilo chybu %s) + Upgrade wallet to latest format on startup Aktualizovať peňaženku na posledný formát pri štarte + Username for JSON-RPC connections Užívateľské meno pre JSON-RPC spojenia + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Upozornenie + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Zmazať všetky transakcie z peňaženky... + ZeroMQ notification options: Možnosti pripojenia ZeroMQ: + Password for JSON-RPC connections Heslo pre JSON-rPC spojenia + Execute command when the best block changes (%s in cmd is replaced by block hash) Vykonaj príkaz, ak zmeny v najlepšom bloku (%s v príkaze nahradí blok hash) + Allow DNS lookups for -addnode, -seednode and -connect Povoliť vyhľadávanie DNS pre pridanie nódy a spojenie - Loading addresses... - Načítavanie adries... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = zachovať metaúdaje tx napr. vlastníka účtu a informácie o platobných príkazoch, 2 = zahodiť metaúdaje tx) + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Poplatky (v %s/kB) menšie ako toto, sú považované za nulový transakčný poplatok (predvolené: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) Ako dôkladné je -checkblocks overenie blokov (0-4, predvolené: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Udržiavať kompletný transakčný index, využíva getrawtransaction rpc volanie (predvolené: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Počet sekúnd, počas ktorých nepripájať zle správajúce sa uzle (predvolené: %u) + Output debugging information (default: %u, supplying <category> is optional) Výstupné ladiace informácie (predvolené: %u, dodanie <category> je voliteľné) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Toto je poplatok za transakciu keď odhad poplatkov ešte nie je k dispozícii. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Celková dĺžka verzie sieťového reťazca (%i) prekračuje maximálnu dĺžku (%i). Znížte počet a veľkosť komentárov. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Sa snaží držať odchádzajúce prevádzku v rámci daného cieľa (v MB za 24h), 0 = žiadny limit (predvolený: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Nepodporovaný argument -socks nájdený. Nastavenie SOCKS verzie už nie je viac moźné, iba SOCKS5 proxies sú podporované. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Nepodporovaný argument -whitelistalwaysrelay ignorovaný, použite -whitelistrelay a/alebo -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Použiť samostatný SOCKS5 proxy server na dosiahnutie počítačov cez skryté služby Tor (predvolené: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Varovanie: Neznáma verzia blokov sa doluje! Je možné, že neznáme pravidlá majú efekt + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Varovanie: Peňaženka poškodená, dáta boli zachránené! Originálna %s ako %s v %s; ak váš zostatok alebo transakcie sú nesprávne, mali by ste obnoviť zálohu. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Povoliť partnerov pripájajúcich sa z danej IP adresy (napr. 1.2.3.4) alebo zo siete vo formáte CIDR (napr. 1.2.3.0/24). Môže byť zadané viackrát. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! Hodnota %s je nastavená veľmi vysoko! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (predvolené: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Vždy sa dotazovať adresy partnerských uzlov cez vyhľadávanie DNS (predvolené: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Koľko blokov overiť pri spustení (predvolené: %u, 0 = všetky) + Include IP addresses in debug output (default: %u) Zahrnúť IP adresy v ladiacom výstupe (predvolené: %u) - Invalid -proxy address: '%s' - Neplatná adresa proxy: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Počúvať JSON-RPC pripojenia na <port> (predvolené: %u alebo testovacia sieť: %u) + Listen for connections on <port> (default: %u or testnet: %u) Počúvať pripojenia na <port> (predvolené: %u alebo testovacia sieť: %u) + Maintain at most <n> connections to peers (default: %u) Udržiavať najviac <n> spojení s inými počítačmi (predvolené: %u) + + Make the wallet broadcast transactions + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximálna prijímajúca medzipamäť pre pripojenie, <n>*1000 bajtov (predvolené: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximálna odosielajúca medzipamäť pre pripojenie, <n>*1000 bajtov (predvolené: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Na začiatok pripojiť časovú známku k ladiacemu výstupu (predvolené: %u) + Relay and mine data carrier transactions (default: %u) Prenášať a ťažiť transakcie nosných dát (predvolené: %u) + Relay non-P2SH multisig (default: %u) Prenášať non-P2SH multi-podpis (predvolené: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Nastaviť veľkosť kľúča fronty na <n> (predvolené: %u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Nastaviť počet vlákien na obsluhu RPC volaní (predvolené: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Zadať konfiguračný súbor (predvolené: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Zadajte časový limit pripojenia v milisekundách (minimum: 1, predvolené: %d) + Specify pid file (default: %s) Zadať pid súbor (predvolené: %s) + Spend unconfirmed change when sending transactions (default: %u) Minúť nepotvrdené zmenu pri posielaní transakcií (predvolené: %u) + Starting network threads... Spúšťajú sa sieťové vlákna... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Peňaženka zabráni zaplateniu menšej sumy ako je minimálny poplatok. + This is the minimum transaction fee you pay on every transaction. Toto je minimálny poplatok za transakciu pri každej transakcii. + This is the transaction fee you will pay if you send a transaction. Toto je poplatok za transakciu pri odoslaní transakcie. + Threshold for disconnecting misbehaving peers (default: %u) Hranica pre odpájanie zle sa správajúcim partnerským uzlom (predvolené: %u) + Transaction amounts must not be negative Sumy transakcií nesmú byť záporné + + Transaction has too long of a mempool chain + + + + Transaction must have at least one recipient Transakcia musí mať aspoň jedného príjemcu - Unknown network specified in -onlynet: '%s' - Neznáma sieť upresnená v -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Neznáma sieť upresnená v -onlynet: '%s' + + + Insufficient funds Nedostatok prostriedkov + Loading block index... Načítavanie zoznamu blokov... - Add a node to connect to and attempt to keep the connection open - Pridať nód na pripojenie a pokus o udržanie pripojenia otvoreného - - + Loading wallet... Načítavam peňaženku... + Cannot downgrade wallet Nie je možné prejsť na nižšiu verziu peňaženky - Cannot write default address - Nie je možné zapísať predvolenú adresu. - - + Rescanning... Nové prehľadávanie... - Done loading - Dokončené načítavanie - - + Error Chyba diff --git a/src/qt/locale/raven_sl_SI.ts b/src/qt/locale/raven_sl_SI.ts index e043eaf8ba..6e923d9280 100644 --- a/src/qt/locale/raven_sl_SI.ts +++ b/src/qt/locale/raven_sl_SI.ts @@ -1,88 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label Desni klik za urejanje naslovov ali oznak + Create a new address Ustvari nov naslov + &New &Novo + Copy the currently selected address to the system clipboard Kopiraj trenutno izbrani naslov v odložišče + &Copy &Kopiraj + C&lose &Zapri + Delete the currently selected address from the list Izbriši trenutno označeni naslov iz seznama + Export the data in the current tab to a file Izvozi podatke v trenutnem zavihku v datoteko + &Export &Izvozi + &Delete I&zbriši + Choose the address to send coins to Izberi naslov prejemnika kovancev + Choose the address to receive coins with Izberi naslov, na katerega želiš prejeti kovance + C&hoose &Izberi + Sending addresses Imenik naslovov za pošiljanje + Receiving addresses Imenik naslovov za prejemanje + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + Export Address List Izvozi seznam naslovov + + Comma separated file (*.csv) + + + + Exporting Failed Podatkov ni bilo mogoče izvoziti. - + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + Label Oznaka + Address Naslov + (no label) (brez oznake) @@ -90,1908 +143,8149 @@ AskPassphraseDialog + Passphrase Dialog Vnos gesla + Enter passphrase Vnesite geslo + New passphrase Novo geslo + Repeat new passphrase Ponovite novo geslo - Unlock wallet - Odkleni denarnico + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - Decrypt wallet - Odšifriraj denarnico + + Encrypt wallet + - - - BanTableModel - IP/Netmask - IP/Netmaska + + This operation needs your wallet passphrase to unlock the wallet. + - Banned Until - Prepoved do + + Unlock wallet + Odkleni denarnico - - - RavenGUI - Sign &message... - Podpiši &sporočilo ... + + This operation needs your wallet passphrase to decrypt the wallet. + - Synchronizing with network... - Dohitevam omrežje ... + + Decrypt wallet + Odšifriraj denarnico - &Overview - Pre&gled + + Change passphrase + - Node - Vozlišče + + Enter the old passphrase and new passphrase to the wallet. + - Show general overview of wallet - Oglejte si splošne informacije o vaši denarnici + + Confirm wallet encryption + - &Transactions - &Transakcije + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - Browse transaction history - Brskajte po zgodovini transakcij + + Are you sure you wish to encrypt your wallet? + - E&xit - I&zhod + + + Wallet encrypted + - Quit application - Ustavite program + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - About &Qt - O &Qt + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Show information about Qt - Oglejte si informacije o Qt + + + + + Wallet encryption failed + - &Options... - &Možnosti ... + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Encrypt Wallet... - &Šifriraj denarnico ... + + + The supplied passphrases do not match. + - &Backup Wallet... - Shrani &varnostno kopijo denarnice ... + + Wallet unlock failed + - &Change Passphrase... - &Spremeni geslo ... + + + + The passphrase entered for the wallet decryption was incorrect. + - &Sending addresses... - Naslovi za po&šiljanje ... + + Wallet decryption failed + - &Receiving addresses... - Naslovi za &prejemanje... + + Wallet passphrase was successfully changed. + - Open &URI... - Odpri &URI ... + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Reindexing blocks on disk... - Poustvarjam kazalo blokov na disku ... + + Asset Selection + - Send coins to a Raven address - Izvedite plačilo na naslov Raven + + Quantity: + - Backup wallet to another location - Shranite varnostno kopijo svoje denarnice na drugo lokacijo + + Bytes: + - Change the passphrase used for wallet encryption - Spremenite geslo za šifriranje denarnice + + Amount: + - &Debug window - &Razhroščevalno okno + + Dust: + - Open debugging and diagnostic console - Odprite razhroščevalno in diagnostično konzolo + + Fee: + - &Verify message... - &Preveri sporočilo ... + + After Fee: + - Raven - Raven + + Change: + - Wallet - Denarnica + + (un)select all + - &Send - &Pošlji + + Tree mode + - &Receive - P&rejmi + + List mode + - &Show / Hide - &Prikaži / Skrij + + View assets that you have the ownership asset for + - Show or hide the main Window - Prikaži ali skrij glavno okno + + View Administrator Assets + - Encrypt the private keys that belong to your wallet - Šifrirajte zasebne ključe, ki se nahajajo v denarnici + + Asset + - Sign messages with your Raven addresses to prove you own them - Podpišite poljubno sporočilo z enim svojih naslovov Raven, da prejemniku sporočila dokažete, da je ta naslov v vaši lasti. + + Amount + - Verify messages to ensure they were signed with specified Raven addresses - Preverite, če je bilo prejeto sporočilo podpisano z določenim naslovom Raven + + Received with label + - &File - &Datoteka + + Received with address + - &Settings - &Nastavitve + + Date + - &Help - &Pomoč + + Confirmations + - Tabs toolbar - Orodna vrstica zavihkov + + Confirmed + - Request payments (generates QR codes and raven: URIs) - Zahtevajte plačilo (ustvarite zahtevek s kodo QR in URI tipa raven:) + + Copy address + - Show the list of used sending addresses and labels - Preglejte in uredite seznam naslovov, na katere ste kdaj poslali plačila + + Copy label + - Show the list of used receiving addresses and labels - Preglejte in uredite seznam naslovov, na katere ste kdaj prejeli plačila + + + Copy amount + - Open a raven: URI or payment request - Izvedite plačilo iz zahtevka v datoteki ali iz URI tipa raven: + + Copy transaction ID + - &Command-line options - Opcije &ukazne vrstice - - - %n active connection(s) to Raven network - %n aktivna povezava v omrežje Raven%n aktivni povezavi v omrežje Raven%n aktivne povezave v omrežje Raven%n aktivnih povezav v omrežje Raven + + Lock unspent + - Indexing blocks on disk... - Indeksirani bloki na disku ... + + Unlock unspent + - Processing blocks on disk... - Obdelava blokov na disku ... + + Copy quantity + - - Processed %n block(s) of transaction history. - %n obdelan blok zgodovine transakcij.%n obdelana bloka zgodovine transakcij.%n obdelani bloki zgodovine transakcij.%n obdelanih blokov zgodovine transakcij. + + + Copy fee + - %1 behind - imam še %1 zaostanka + + Copy after fee + - Last received block was generated %1 ago. - Zadnji prejeti blok je star %1. + + Copy bytes + - Transactions after this will not yet be visible. - Novejše transakcije še ne bodo vidne. + + Copy dust + - Error - Napaka + + Copy change + - Warning - Opozorilo + + (%1 locked) + - Information - Informacije + + yes + - Up to date - Posodobljeno + + no + - %1 client - %1 odjemalec + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Catching up... - Dohitevam omrežje ... + + Can vary +/- %1 satoshi(s) per input. + - Date: %1 - - Datum: %1 - + + + (no label) + - Amount: %1 - - Znesek: %1 - + + change from %1 (%2) + - Type: %1 - - Vrsta: %1 - + + (change) + + + + AssetTableModel - Label: %1 - - Oznaka: %1 - + + Name + - Address: %1 - - Naslov: %1 - + + Quantity + + + + AssetsDialog - Sent transaction - Odlivi + + + Send Coins + - Incoming transaction - Prilivi + + Asset Control Features + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denarnica je <b>šifrirana</b> in trenutno <b>odklenjena</b> + + Inputs... + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Denarnica je <b>šifrirana</b> in trenutno <b>zaklenjena</b> + + automatically selected + - - - CoinControlDialog - Coin Selection - Izbira vhodnih kovancev + + Insufficient funds! + + Quantity: - Št.vhodov: + + Bytes: - Št.bajtov: + + Amount: - Znesek: + - Fee: - Provizija: + + Dust: + - Dust: - Prah: + + Fee: + + After Fee: - Po proviziji: + + Change: - Vračilo: + - (un)select all - izberi vse/nič + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - Drevesni prikaz + + Custom change address + - List mode - Seznam + + Transaction Fee: + - Amount - Znesek + + Choose... + - Received with label - Oznaka priliva + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Received with address - Naslov priliva + + Warning: Fee estimation is currently not possible. + - Date - Datum + + collapse fee-settings + - Confirmations - Potrditve + + Hide + - Confirmed - Potrjeno + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - (no label) - (brez oznake) + + per kilobyte + - - - EditAddressDialog - Edit Address - Uredi naslov + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Label - &Oznaka + + (read the tooltip) + - The label associated with this address list entry - Oznaka, pod katero je spodnji naslov naveden v vašem imeniku naslovov. + + Recommended: + - The address associated with this address list entry. This can only be modified for sending addresses. - Naslov tega vnosa v imeniku. Spremeniti ga je mogoče le pri vnosih iz imenika naslovov za pošiljanje. + + Custom: + - &Address - &Naslov + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmaska + + + + Banned Until + Prepoved do + + + + CoinControlDialog + + + Coin Selection + Izbira vhodnih kovancev + + + + Quantity: + Št.vhodov: + + + + Bytes: + Št.bajtov: + + + + Amount: + Znesek: + + + + Fee: + Provizija: + + + + Dust: + Prah: + + + + After Fee: + Po proviziji: + + + + Change: + Vračilo: + + + + (un)select all + izberi vse/nič + + + + Tree mode + Drevesni prikaz + + + + List mode + Seznam + + + + Amount + Znesek + + + + Received with label + Oznaka priliva + + + + Received with address + Naslov priliva + + + + Date + Datum + + + + Confirmations + Potrditve + + + + Confirmed + Potrjeno + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (brez oznake) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Uredi naslov + + + + &Label + &Oznaka + + + + The label associated with this address list entry + Oznaka, pod katero je spodnji naslov naveden v vašem imeniku naslovov. + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Naslov tega vnosa v imeniku. Spremeniti ga je mogoče le pri vnosih iz imenika naslovov za pošiljanje. + + + + &Address + &Naslov + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + FreespaceChecker - A new data directory will be created. - Ustvarjena bo nova podatkovna mapa. + + A new data directory will be created. + Ustvarjena bo nova podatkovna mapa. + + + + name + ime + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Mapa že obstaja. Dodajte %1, če tu želite ustvariti novo mapo. + + + + Path already exists, and is not a directory. + Pot že obstaja, vendar ni mapa. + + + + Cannot create data directory here. + Na tem mestu ni mogoče ustvariti nove mape. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + različica + + + + + (%1-bit) + (%1-bit) + + + + About %1 + O %1 + + + + Command-line options + Možnosti ukazne vrstice + + + + Usage: + Uporaba: + + + + command-line options + možnosti ukazne vrstice + + + + UI Options: + UI možnosti: + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + Nastavi jezik, na primer "sl_SI" (privzeto: sistemsko) + + + + Start minimized + Začni minimizirano + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Dobrodošli + + + + Welcome to %1. + Dobrodošli v %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Uporabi privzeto podatkovno mapo + + + + Use a custom data directory: + Uporabi to podatkovno mapo: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Napaka: Ni mogoče ustvariti mape "%1". + + + + Error + Napaka + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Oblika + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Čas zadnjega bloka + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Skrij + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Odpri URl + + + + Open payment request from URI or file + Vnesite zahtevek za plačilo iz URI ali pa ga naložite iz datoteke + + + + URI: + URI: + + + + Select payment request file + Izbiranje datoteke z zahtevkom za plačilo + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Možnosti + + + + &Main + &Glavno + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + Velikost &predpomnilnika podatkovne baze + + + + MB + MiB + + + + Number of script &verification threads + Število programskih &niti za preverjanje + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Naslov IP posredniškega strežnika (npr. IPv4: 127.0.0.1 ali IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Ko zaprete glavno okno programa, bo program tekel še naprej, okno pa bo zgolj minimirano. Program v tem primeru ustavite tako, da v meniju izberete ukaz Izhod. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Naslovi URL tretjih oseb (npr. raziskovalec blokov), ki bodo navedeni v kontekstnem meniju seznama transakcij. Niz %s iz naslova URL je nadomeščen s hash vrednostjo transakcije. Več zaporednih naslovov URL je med seboj ločenih z znakom |. + + + + Active command-line options that override above options: + Aktivne opcije iz ukazne vrstice, ki preglasijo zgornje opcije: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Ponastavi vse nastavitve programa na privzete vrednosti. + + + + &Reset Options + &Ponastavi nastavitve + + + + &Network + &Omrežje + + + + (0 = auto, <0 = leave that many cores free) + (0 = samodejno, <0 = toliko procesorskih jeder naj ostane prostih) + + + + W&allet + &Denarnica + + + + Expert + Napredne možnosti + + + + Enable coin &control features + Omogoči upravljanje s kovanci + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Če onemogočite trošenje drobiža iz še nepotrjenih transakcij, potem vrnjenega drobiža ne morete uporabiti, dokler plačilo ni vsaj enkrat potrjeno. Ta opcija vpliva tudi na izračun stanja sredstev. + + + + &Spend unconfirmed change + Omogoči &trošenje drobiža iz še nepotrjenih plačil + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Program samodejno odpre ustrezna vrata na usmerjevalniku. To deluje samo, če vaš usmerjevalnik podpira in ima omogočen UPnP. + + + + Map port using &UPnP + Preslikaj vrata z uporabo &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Poveži se v omrežje Raven preko posredniškega strežnika SOCKS5. + + + + &Connect through SOCKS5 proxy (default proxy): + &Poveži se preko posredniškega strežnika SOCKS5 (privzeti strežnik): + + + + + Proxy &IP: + Naslov &IP posredniškega strežnika: + + + + + &Port: + &Vrata: + + + + + Port of the proxy (e.g. 9050) + Vrata posredniškega strežnika (npr. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + O&kno + + + + Show only a tray icon after minimizing the window. + Po minimiranju okna samo prikaži ikono programa v pladnju. + + + + &Minimize to the tray instead of the taskbar + &Minimiraj na pladenj namesto na opravilno vrstico + + + + M&inimize on close + Ob zapiranju okno zgolj m&inimiraj + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Prikaz + + + + User Interface &language: + &Jezik uporabniškega vmesnika: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Enota za prikaz zneskov: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Izberite privzeto mersko enoto za prikaz v uporabniškem vmesniku in pri pošiljanju kovancev. + + + + Whether to show coin control features or not. + Omogoči dodatno možnost podrobnega nadzora nad posameznimi kovanci v transakcijah. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Potrdi + + + + &Cancel + &Prekliči + + + + default + privzeto + + + + none + nič + + + + Confirm options reset + Potrditev ponastavitve + + + + + Client restart required to activate changes. + Za uveljavitev sprememb je potreben ponoven zagon programa. + + + + Client will be shut down. Do you want to proceed? + Program bo zaustavljen. Želite nadaljevati z izhodom? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Ta sprememba zahteva ponoven zagon programa. + + + + The supplied proxy address is invalid. + Vnešeni naslov posredniškega strežnika ni veljaven. + + + + OverviewPage + + + Form + Oblika + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Prikazani podatki so morda zastareli. Program ob vzpostavitvi povezave samodejno sinhronizira denarnico z omrežjem Raven, a trenutno ta proces še ni zaključen. + + + + Watch-only: + Opazovano: + + + + Available: + Na voljo: + + + + Your current spendable balance + Skupni znesek vaših sredstev, s katerimi lahko prosto razpolagate + + + + Pending: + Nepotrjeno: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Skupni znesek sredstev s katerimi še ne razpolagate prosto, ker so del še nepotrjenih transakcij. + + + + Immature: + Nedozorelo: + + + + Mined balance that has not yet matured + Nedozorel narudarjeni znesek + + + + Total: + Skupaj: + + + + Your current total balance + Trenutna vsota vseh vaših sredstev + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Trenutno stanje vaših sredstev na opazovanih naslovih + + + + Spendable: + Na voljo: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Nedavne transakcije + + + + Unconfirmed transactions to watch-only addresses + Nepotrjene transakcije na opazovanih naslovih + + + + Mined balance in watch-only addresses that has not yet matured + Nedozoreli narudarjeni znesek na opazovanih naslovih + + + + Current total balance in watch-only addresses + Trenutno skupno stanje sredstev na opazovanih naslovih + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Ime agenta + + + + Node/Service + Naslov + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Znesek + + + + Enter a Raven address (e.g. %1) + Vnesite naslov Raven (npr. %1): + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Nič + + + + N/A + Neznano + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 in %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Neznano + + + + Client version + Različica odjemalca + + + + &Information + &Informacije + + + + Debug window + Razhroščevalno okno + + + + General + Splošno + + + + Using BerkeleyDB version + BerkeleyDB različica v rabi + + + + Datadir + + + + + Startup time + Čas zagona + + + + Network + Omrežje + + + + Name + Ime + + + + Number of connections + Število povezav + + + + Block chain + Veriga blokov + + + + Current number of blocks + Trenutno število blokov + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + Prejeto + + + + + Sent + Oddano + + + + &Peers + &Soležniki + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Izberite soležnika, o katerem si želite ogledati podrobnejše informacije. + + + + Whitelisted + + + + + Direction + Smer povezave + + + + Version + Različica + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Ime agenta + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Storitve + + + + Ban Score + Kazenske točke + + + + Connection Time + Trajanje povezave + + + + Last Send + Nazadje oddano + + + + Last Receive + Nazadnje prejeto + + + + Ping Time + Odzivni čas + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + Časovni odklon + + + + Last block time + Čas zadnjega bloka + + + + &Open + &Odpri + + + + &Console + &Konzola + + + + &Network Traffic + &Omrežni promet + + + + Totals + Promet + + + + In: + Dohodnih: + + + + Out: + Odhodnih: + + + + Debug log file + Razhroščevalni dnevnik + + + + Clear console + Počisti konzolo + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Vtipkajte <b>help</b> za pregled razpoložljivih ukazov. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + preko %1 + + + + + never + nikoli + + + + Inbound + Dohodna + + + + Outbound + Odhodna + + + + Yes + Da + + + + No + Ne + + + + + Unknown + Neznano + + + + RavenGUI + + + Sign &message... + Podpiši &sporočilo ... + + + + Synchronizing with network... + Dohitevam omrežje ... + + + + &Overview + Pre&gled + + + + Node + Vozlišče + + + + Show general overview of wallet + Oglejte si splošne informacije o vaši denarnici + + + + &Transactions + &Transakcije + + + + Browse transaction history + Brskajte po zgodovini transakcij + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + I&zhod + + + + Quit application + Ustavite program + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + O &Qt + + + + Show information about Qt + Oglejte si informacije o Qt + + + + &Options... + &Možnosti ... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Šifriraj denarnico ... + + + + &Backup Wallet... + Shrani &varnostno kopijo denarnice ... + + + + &Change Passphrase... + &Spremeni geslo ... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Naslovi za po&šiljanje ... + + + + &Receiving addresses... + Naslovi za &prejemanje... + + + + Open &URI... + Odpri &URI ... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Poustvarjam kazalo blokov na disku ... + + + + Send coins to a Raven address + Izvedite plačilo na naslov Raven + + + + Backup wallet to another location + Shranite varnostno kopijo svoje denarnice na drugo lokacijo + + + + Change the passphrase used for wallet encryption + Spremenite geslo za šifriranje denarnice + + + + Open debugging and diagnostic console + Odprite razhroščevalno in diagnostično konzolo + + + + &Verify message... + &Preveri sporočilo ... + + + + Raven + Raven + + + + Wallet + Denarnica + + + + &Send + &Pošlji + + + + &Receive + P&rejmi + + + + &Show / Hide + &Prikaži / Skrij + + + + Show or hide the main Window + Prikaži ali skrij glavno okno + + + + Encrypt the private keys that belong to your wallet + Šifrirajte zasebne ključe, ki se nahajajo v denarnici + + + + Sign messages with your Raven addresses to prove you own them + Podpišite poljubno sporočilo z enim svojih naslovov Raven, da prejemniku sporočila dokažete, da je ta naslov v vaši lasti. + + + + Verify messages to ensure they were signed with specified Raven addresses + Preverite, če je bilo prejeto sporočilo podpisano z določenim naslovom Raven + + + + &File + &Datoteka + + + + &Help + &Pomoč + + + + Request payments (generates QR codes and raven: URIs) + Zahtevajte plačilo (ustvarite zahtevek s kodo QR in URI tipa raven:) + + + + Show the list of used sending addresses and labels + Preglejte in uredite seznam naslovov, na katere ste kdaj poslali plačila + + + + Show the list of used receiving addresses and labels + Preglejte in uredite seznam naslovov, na katere ste kdaj prejeli plačila + + + + Open a raven: URI or payment request + Izvedite plačilo iz zahtevka v datoteki ali iz URI tipa raven: + + + + &Command-line options + Opcije &ukazne vrstice + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indeksirani bloki na disku ... + + + + Processing blocks on disk... + Obdelava blokov na disku ... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + imam še %1 zaostanka + + + + Last received block was generated %1 ago. + Zadnji prejeti blok je star %1. + + + + Transactions after this will not yet be visible. + Novejše transakcije še ne bodo vidne. + + + + Error + Napaka + + + + Warning + Opozorilo + + + + Information + Informacije + + + + Up to date + Posodobljeno + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 odjemalec + + + + Connecting to peers... + + + + + Catching up... + Dohitevam omrežje ... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Znesek: %1 + + + + + Type: %1 + + Vrsta: %1 + + + + + Label: %1 + + Oznaka: %1 + + + + + Address: %1 + + Naslov: %1 + + + + + Sent transaction + Odlivi + + + + Incoming transaction + Prilivi + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Denarnica je <b>šifrirana</b> in trenutno <b>odklenjena</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Denarnica je <b>šifrirana</b> in trenutno <b>zaklenjena</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Znesek: + + + + &Label: + &Oznaka: + + + + &Message: + &Sporočilo: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Ponovno uporabite enega od že uporabljenih naslovov za prejemanje. Večkratna uporaba istih naslovov za prejemanje negativno vpliva na varnost in zasebnost. To opcijo uporabite samo v primeru, da poustvarjate obstoječ zahtevek za plačilo. + + + + R&euse an existing receiving address (not recommended) + P&onovno uporabite obstoječ naslov za prejemanje. (Ni priporočeno.) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Neobvezno sporočilo kot priponka zahtevku za plačilo, ki bo prikazano, ko bo zahtevek odprt. Opomba: Opravljeno plačilo.prek omrežja Raven tega sporočila ne bo vsebovalo. + + + + + An optional label to associate with the new receiving address. + Oznaka novega sprejemnega naslova. + + + + Use this form to request payments. All fields are <b>optional</b>. + S tem obrazcem ustvarite nov zahtevek za plačilo. Vsa polja so <b>neobvezna</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Zahtevani znesek. Če ne zahtevate določenega zneska, pustite prazno ali nastavite vrednost na 0. + + + + Clear all fields of the form. + Počisti vsa polja. + + + + Clear + Počisti + + + + Requested payments history + Zgodovina zahtevkov za plačilo + + + + &Request payment + &Zahtevaj plačilo + + + + Show the selected request (does the same as double clicking an entry) + Prikaz izbranega zahtevka. (Isto funkcijo opravi dvojni klik na zapis.) + + + + Show + Pokaži + + + + Remove the selected entries from the list + Odstrani označene vnose iz seznama + + + + Remove + Odstrani + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Koda + + + + Copy &URI + Kopiraj &URl + + + + Copy &Address + Kopiraj &naslov + + + + &Save Image... + &Shrani sliko ... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Naslov + + + + Amount + + + + + Label + Oznaka + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + Oznaka + + + + Message + + + + + (no label) + (brez oznake) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Pošlji + + + + Coin Control Features + Upravljanje s kovanci + + + + Inputs... + Vhodi ... + + + + automatically selected + samodejno izbrani + + + + Insufficient funds! + Premalo sredstev! + + + + Quantity: + Št.vhodov: + + + + Bytes: + Št.bajtov: + + + + Amount: + Znesek: + + + + Fee: + Provizija: + + + + After Fee: + Po proviziji: + + + + Change: + Vračilo: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Če to vključite, nato pa vnesete neveljaven naslov, ali pa pustite polje prazno, bo vrnjen drobiž poslan na novo ustvarjen naslov. + + + + Custom change address + Naslov za vračilo drobiža po meri + + + + Transaction Fee: + Provizija: + + + + Choose... + Izberi ... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + Skrije nastavitve provizije + + + + per kilobyte + na KiB + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Če je nastavitev zneska provizije po meri enaka 1000 satoshijev, transakcija pa je velika samo 250 bajtov, je obračunani znesek provizije pri nastavitvi "za KiB" samo 250 satoshijev, medtem ko je pri nastavitvi "skupno vsaj" ta znesek 1000 satoshijev. Za transakcije, večje od 1 KiB, se končni znesek pri obeh nastavitvah obračuna na KiB. + + + + Hide + Skrij + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Dokler bo v blokih še dovolj prostora za vse nastajajoče transakcije, zadostuje, če plačate samo minimalno provizijo. Ko pa se bo količina vseh transakcij povečala do meja zmogljivosti omrežja, se lahko zgodi, da vaša transakcija brez večje provizije nikoli ne bo potrjena. + + + + (read the tooltip) + (oglejte si namig) + + + + Recommended: + Priporočena: + + + + Custom: + Po meri: + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Samodejni obračun provizije še ni pripravljen. Po navadi izračun traja nekaj blokov ...) + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Pošlji več prejemnikom hkrati + + + + Add &Recipient + Dodaj &prejemnika + + + + Clear all fields of the form. + Počisti vsa polja. + + + + Dust: + Prah: + + + + Confirmation time target: + + + + + Clear &All + Počisti &vse + + + + Balance: + Stanje: + + + + Confirm the send action + Potrdi pošiljanje + + + + S&end + &Pošlji + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (brez oznake) + + + + SendCoinsEntry + + + + + A&mount: + &Znesek: + + + + &Label: + &Oznaka: + + + + Choose previously used address + Izberite enega od že uporabljenih naslovov + + + + This is a normal payment. + Plačilo je navadne vrste. + + + + The Raven address to send the payment to + Naslov Raven, na katerega bo plačilo poslano + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Prilepite naslov iz odložišča + + + + Alt+P + Alt+P + + + + + + Remove this entry + Izpraznite vsebino polja + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + Znesek plačila bo zmanjšan za znesek provizije. Prejemnik bo prejel manjše število kovancev, kot je bil vnešeni znesek. Če je prejemnikov več, bo provizija med njih enakomerno porazdeljena. + + + + S&ubtract fee from amount + O&dštej provizijo od zneska + + + + Message: + Sporočilo: + + + + Send &To: + + + + + This is an unauthenticated payment request. + Zahtevek za plačilo je neoverjen. + + + + + Send to: + + + + + This is an authenticated payment request. + Zahtevek za plačilo je overjen. + + + + Enter a label for this address to add it to the list of used addresses + Če vnesete oznako za zgornji naslov, se bo skupaj z naslovom shranila v imenk že uporabljenih naslovov + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + Sporočilo, ki ste ga pripeli na URI tipa raven:. Shranjeno bo skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja Raven. + + + + + Memo: + Opomba: + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + Dokler to okno ne izgine, ne zaustavljajte računalnika. + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + Podpiši / preveri sporočilo + + + + &Sign Message + &Podpiši sporočilo + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + S svojimi naslovi lahko podpisujete sporočila ali pogodbe in s tem dokazujete, da na teh naslovih lahko prejemate kovance. Bodite previdni in ne podpisujte ničesar nejasnega ali naključnega, ker vas zlikovci preko ribarjenja (phishing) lahko prelisičijo, da na njih prepišete svojo identiteto. Podpisujte samo podrobno opisane izjave, s katerimi se strinjate. + + + + The Raven address to sign the message with + Naslov Raven, s katerim podpisujete sporočilo + + + + + Choose previously used address + Izberite enega od že uporabljenih naslovov + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Prilepite naslov iz odložišča + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + Vnesite sporočilo, ki ga želite podpisati + + + + Signature + Podpis + + + + Copy the current signature to the system clipboard + Kopiranje trenutnega podpisa na sistemsko odložišče. + + + + Sign the message to prove you own this Raven address + Podpišite sporočilo, da dokažete lastništvo nad zgornjim naslovom. + + + + Sign &Message + Podpiši &sporočilo + + + + Reset all sign message fields + Počisti vsa polja za vnos v oknu za podpisovanje + + + + + Clear &All + Počisti &vse + + + + &Verify Message + &Preveri sporočilo + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + Da preverite verodostojnost sporočila, spodaj vnesite: prejemnikov naslov, prejeto sporočilo (pazljivo skopirajte vse prelome vrstic, presledke, tabulatorje ipd.,) in prejeti podpis. Da se izognete napadom tipa man-in-the-middle, vedite, da iz veljavnega podpisa ne sledi nič drugega, kot tisto, kar je navedeno v sporočilu. Podpis samo potrjuje dejstvo, da ima podpisnik v lasti prejemni naslov, ne more pa dokazati vira nobene transakcije! + + + + The Raven address the message was signed with + Naslov Raven, s katerim je bilo sporočilo podpisano + + + + Verify the message to ensure it was signed with the specified Raven address + Preverite, ali je bilo sporočilo v resnici podpisano z navedenim naslovom Raven. + + + + Verify &Message + Preveri &sporočilo + + + + Reset all verify message fields + Počisti vsa polja za vnos v oknu za preverjanje + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + KiB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + V tem podoknu so prikazane podrobnosti o transakciji + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + Oznaka - name - ime + + Amount + - Directory already exists. Add %1 if you intend to create a new directory here. - Mapa že obstaja. Dodajte %1, če tu želite ustvariti novo mapo. + + Asset + + + + + Open for %n more block(s) + - Path already exists, and is not a directory. - Pot že obstaja, vendar ni mapa. + + Open until %1 + - Cannot create data directory here. - Na tem mestu ni mogoče ustvariti nove mape. + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (brez oznake) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + - HelpMessageDialog + TransactionView - version - različica + + + All + - (%1-bit) - (%1-bit) + + Today + - About %1 - O %1 + + This week + - Command-line options - Možnosti ukazne vrstice + + This month + - Usage: - Uporaba: + + Last month + - command-line options - možnosti ukazne vrstice + + This year + - UI Options: - UI možnosti: + + Range... + - Set language, for example "de_DE" (default: system locale) - Nastavi jezik, na primer "sl_SI" (privzeto: sistemsko) + + Received with + - Start minimized - Začni minimizirano + + Sent to + - - - Intro - Welcome - Dobrodošli + + To yourself + - Welcome to %1. - Dobrodošli v %1 + + Mined + - Use the default data directory - Uporabi privzeto podatkovno mapo + + Other + - Use a custom data directory: - Uporabi to podatkovno mapo: + + Enter address or label to search + - Error: Specified data directory "%1" cannot be created. - Napaka: Ni mogoče ustvariti mape "%1". + + Min amount + - Error - Napaka + + Asset name + - - %n GB of free space available - %n GiB prostega prostora na voljo%n GiB prostega prostora na voljo%n GiB prostega prostora na voljo%n GiB prostega prostora na voljo + + + Abandon transaction + - - (of %n GB needed) - (od potrebnih %n GiB)(od potrebnih %n GiB)(od potrebnih %n GiB)(od potrebnih %n GiB) + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + Oznaka + + + + Address + Naslov + + + + Asset + + + + + ID + + + + + Exporting Failed + Podatkov ni bilo mogoče izvoziti. + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + - ModalOverlay + UnitDisplayStatusBarControl - Form - Oblika + + Unit to show amounts in. Click to select another unit. + Merska enota za prikaz zneskov. Kliknite za izbiro druge enote. + + + WalletFrame - Last block time - Čas zadnjega bloka + + No wallet has been loaded. + + + + WalletModel - Hide - Skrij + + Send Coins + - - - OpenURIDialog - Open URI - Odpri URl + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + - Open payment request from URI or file - Vnesite zahtevek za plačilo iz URI ali pa ga naložite iz datoteke + + Error: Wallet locked + - URI: - URI: + + Words: + - Select payment request file - Izbiranje datoteke z zahtevkom za plačilo + + Passphrase: + - + - OptionsDialog + WalletView - Options - Možnosti + + &Export + - &Main - &Glavno + + Export the data in the current tab to a file + Izvozi podatke v trenutnem zavihku v datoteko - Size of &database cache - Velikost &predpomnilnika podatkovne baze + + Backup Wallet + - MB - MiB + + Wallet Data (*.dat) + - Number of script &verification threads - Število programskih &niti za preverjanje + + Backup Failed + - Accept connections from outside - Sprejemaj zunanje povezave + + There was an error trying to save the wallet data to %1. + - Allow incoming connections - Dovoli dohodne povezave + + Backup Successful + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Naslov IP posredniškega strežnika (npr. IPv4: 127.0.0.1 ali IPv6: ::1) + + The wallet data was successfully saved to %1. + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Ko zaprete glavno okno programa, bo program tekel še naprej, okno pa bo zgolj minimirano. Program v tem primeru ustavite tako, da v meniju izberete ukaz Izhod. + + Recovery information + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Naslovi URL tretjih oseb (npr. raziskovalec blokov), ki bodo navedeni v kontekstnem meniju seznama transakcij. Niz %s iz naslova URL je nadomeščen s hash vrednostjo transakcije. Več zaporednih naslovov URL je med seboj ločenih z znakom |. + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + raven-core - Third party transaction URLs - Zunanje povezave za transakcije + + Options: + Možnosti: - Active command-line options that override above options: - Aktivne opcije iz ukazne vrstice, ki preglasijo zgornje opcije: + + Specify data directory + Izberite podatkovno mapo - Reset all client options to default. - Ponastavi vse nastavitve programa na privzete vrednosti. + + Connect to a node to retrieve peer addresses, and disconnect + Povežite se z vozliščem za pridobitev naslovov soležnikov in nato prekinite povezavo. - &Reset Options - &Ponastavi nastavitve + + Specify your own public address + Določite vaš lasten javni naslov + + + + Accept command line and JSON-RPC commands + Sprejemaj ukaze iz ukazne vrstice in preko JSON-RPC + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + - &Network - &Omrežje + + Fee (in %s/kB) to add to transactions you send (default: %s) + - (0 = auto, <0 = leave that many cores free) - (0 = samodejno, <0 = toliko procesorskih jeder naj ostane prostih) + + Pruning blockstore... + - W&allet - &Denarnica + + Run in the background as a daemon and accept commands + Teci v ozadju in sprejemaj ukaze - Expert - Napredne možnosti + + Unable to start HTTP server. See debug log for details. + - Enable coin &control features - Omogoči upravljanje s kovanci + + Raven Core + Raven Core - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Če onemogočite trošenje drobiža iz še nepotrjenih transakcij, potem vrnjenega drobiža ne morete uporabiti, dokler plačilo ni vsaj enkrat potrjeno. Ta opcija vpliva tudi na izračun stanja sredstev. + + The %s developers + - &Spend unconfirmed change - Omogoči &trošenje drobiža iz še nepotrjenih plačil + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Program samodejno odpre ustrezna vrata na usmerjevalniku. To deluje samo, če vaš usmerjevalnik podpira in ima omogočen UPnP. + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + - Map port using &UPnP - Preslikaj vrata z uporabo &UPnP + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + - Connect to the Raven network through a SOCKS5 proxy. - Poveži se v omrežje Raven preko posredniškega strežnika SOCKS5. + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Veži dani naslov in tam vedno poslušaj. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. - &Connect through SOCKS5 proxy (default proxy): - &Poveži se preko posredniškega strežnika SOCKS5 (privzeti strežnik): + + Cannot obtain a lock on data directory %s. %s is probably already running. + - Proxy &IP: - Naslov &IP posredniškega strežnika: + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - &Port: - &Vrata: + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Port of the proxy (e.g. 9050) - Vrata posredniškega strežnika (npr. 9050) + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Za dostop do soležnikov preko skritih storitev Tor uporabi drug posredniški strežnik SOCKS5: + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + - &Window - O&kno + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + - Show only a tray icon after minimizing the window. - Po minimiranju okna samo prikaži ikono programa v pladnju. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + - &Minimize to the tray instead of the taskbar - &Minimiraj na pladenj namesto na opravilno vrstico + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + Izvedi ukaz, ko bo transakcija denarnice se spremenila (V cmd je bil TxID zamenjan za %s) - M&inimize on close - Ob zapiranju okno zgolj m&inimiraj + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + - &Display - &Prikaz + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + - User Interface &language: - &Jezik uporabniškega vmesnika: + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + - &Unit to show amounts in: - &Enota za prikaz zneskov: + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + - Choose the default subdivision unit to show in the interface and when sending coins. - Izberite privzeto mersko enoto za prikaz v uporabniškem vmesniku in pri pošiljanju kovancev. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + - Whether to show coin control features or not. - Omogoči dodatno možnost podrobnega nadzora nad posameznimi kovanci v transakcijah. + + Please contribute if you find %s useful. Visit %s for further information about the software. + - &OK - &Potrdi + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + - &Cancel - &Prekliči + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + - default - privzeto + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + - none - nič + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + Nastavi število niti za preverjanje skript (%u do %d, 0 = samodejno, <0 toliko procesorskih jeder naj ostane prostih, privzeto: %d) - Confirm options reset - Potrditev ponastavitve + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + - Client restart required to activate changes. - Za uveljavitev sprememb je potreben ponoven zagon programa. + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + - Client will be shut down. Do you want to proceed? - Program bo zaustavljen. Želite nadaljevati z izhodom? + + This is the transaction fee you may discard if change is smaller than dust at this level + - This change would require a client restart. - Ta sprememba zahteva ponoven zagon programa. + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + - The supplied proxy address is invalid. - Vnešeni naslov posredniškega strežnika ni veljaven. + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + - - - OverviewPage - Form - Oblika + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Prikazani podatki so morda zastareli. Program ob vzpostavitvi povezave samodejno sinhronizira denarnico z omrežjem Raven, a trenutno ta proces še ni zaključen. + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + - Watch-only: - Opazovano: + + Wallet will not create transactions that violate mempool chain limits (default: %u) + - Available: - Na voljo: + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + - Your current spendable balance - Skupni znesek vaših sredstev, s katerimi lahko prosto razpolagate + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + - Pending: - Nepotrjeno: + + Whether to save the mempool on shutdown and load on restart (default: %u) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Skupni znesek sredstev s katerimi še ne razpolagate prosto, ker so del še nepotrjenih transakcij. + + %d of last 100 blocks have unexpected version + - Immature: - Nedozorelo: + + %s corrupt, salvage failed + - Mined balance that has not yet matured - Nedozorel narudarjeni znesek + + -maxmempool must be at least %d MB + - Balances - Stanje sredstev + + <category> can be: + <category> je lahko: - Total: - Skupaj: + + Accept connections from outside (default: 1 if no -proxy or -connect) + - Your current total balance - Trenutna vsota vseh vaših sredstev + + Append comment to the user agent string + - Your current balance in watch-only addresses - Trenutno stanje vaših sredstev na opazovanih naslovih + + Attempt to recover private keys from a corrupt wallet on startup + - Spendable: - Na voljo: + + Block creation options: + Možnosti ustvarjanja blokov: - Recent transactions - Nedavne transakcije + + Cannot resolve -%s address: '%s' + - Unconfirmed transactions to watch-only addresses - Nepotrjene transakcije na opazovanih naslovih + + Chain selection options: + - Mined balance in watch-only addresses that has not yet matured - Nedozoreli narudarjeni znesek na opazovanih naslovih + + Change index out of range + - Current total balance in watch-only addresses - Trenutno skupno stanje sredstev na opazovanih naslovih + + Connection options: + Izbire povezave: - - - PaymentServer - - - PeerTableModel - User Agent - Ime agenta + + Copyright (C) %i-%i + - Node/Service - Naslov + + Corrupted block database detected + Podatkovna baza blokov je okvarjena - - - QObject - Amount - Znesek + + Debugging/Testing options: + Možnosti razhroščevanja in testiranja: - Enter a Raven address (e.g. %1) - Vnesite naslov Raven (npr. %1): + + Do not load the wallet and disable wallet RPC calls + Ne naloži denarnice in onemogoči s tem povezane klice RPC - %1 d - %1 d + + Do you want to rebuild the block database now? + Želite zdaj obnoviti podatkovno bazo blokov? - %1 h - %1 h + + Enable publish hash block in <address> + - %1 m - %1 m + + Enable publish hash transaction in <address> + - %1 s - %1 s + + Enable publish raw block in <address> + - None - Nič + + Enable publish raw transaction in <address> + - N/A - Neznano + + Enable transaction replacement in the memory pool (default: %u) + - %1 ms - %1 ms + + Error initializing block database + Napaka pri inicializaciji podatkovne baze blokov - %1 and %2 - %1 in %2 + + Error initializing wallet database environment %s! + Napaka pri inicializaciji okolja podatkovne baze denarnice %s! - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - Neznano + + Error loading %s + - Client version - Različica odjemalca + + Error loading %s: Wallet corrupted + - &Information - &Informacije + + Error loading %s: Wallet requires newer version of %s + - Debug window - Razhroščevalno okno + + Error loading block database + Napaka pri nalaganju podatkovne baze blokov - General - Splošno + + Error opening block database + Napaka pri odpiranju podatkovne baze blokov - Using BerkeleyDB version - BerkeleyDB različica v rabi + + Error: Disk space is low! + Opozorilo: Premalo prostora na disku! - Startup time - Čas zagona + + Failed to listen on any port. Use -listen=0 if you want this. + Ni mogoče poslušati na nobenih vratih. Če to zares želite, uporabite opcijo -listen=0. - Network - Omrežje + + Importing... + Uvažam ... - Name - Ime + + Incorrect or no genesis block found. Wrong datadir for network? + Izvornega bloka ni mogoče najti ali pa je neveljaven. Preverite, če ste izbrali pravo podatkovno mapo za izbrano omrežje. - Number of connections - Število povezav + + Initialization sanity check failed. %s is shutting down. + - Block chain - Veriga blokov + + Invalid amount for -%s=<amount>: '%s' + - Current number of blocks - Trenutno število blokov + + Invalid amount for -discardfee=<amount>: '%s' + - Received - Prejeto + + Invalid amount for -fallbackfee=<amount>: '%s' + - Sent - Oddano + + Keep the transaction memory pool below <n> megabytes (default: %u) + - &Peers - &Soležniki + + Loading P2P addresses... + - Select a peer to view detailed information. - Izberite soležnika, o katerem si želite ogledati podrobnejše informacije. + + Loading banlist... + - Direction - Smer povezave + + Location of the auth cookie (default: data dir) + - Version - Različica + + Not enough file descriptors available. + Na voljo ni dovolj deskriptorjev datotek. - User Agent - Ime agenta + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + Povezuj se samo z vozlišči na omrežju tipa <net> (IPv4, IPv6 ali onion) - Services - Storitve + + Print this help message and exit + - Ban Score - Kazenske točke + + Print version and exit + - Connection Time - Trajanje povezave + + Prune cannot be configured with a negative value. + Negativne vrednosti parametra funkcije obrezovanja niso sprejemljive. - Last Send - Nazadje oddano + + Prune mode is incompatible with -txindex. + Funkcija obrezovanja ni združljiva z opcijo -txindex. - Last Receive - Nazadnje prejeto + + Rebuild chain state and block index from the blk*.dat files on disk + - Ping Time - Odzivni čas + + Rebuild chain state from the currently indexed blocks + - Time Offset - Časovni odklon + + Replaying blocks... + - Last block time - Čas zadnjega bloka + + Rewinding blocks... + - &Open - &Odpri + + Set database cache size in megabytes (%d to %d, default: %d) + Nastavitev velikosti predpomnilnik podatkovne baze v MiB (%d do %d, privzeto: %d) - &Console - &Konzola + + Specify wallet file (within data directory) + Ime datoteke z denarnico (znotraj podatkovne mape) - &Network Traffic - &Omrežni promet + + The source code is available from %s. + - &Clear - &Počisti + + Transaction fee and change calculation failed + - Totals - Promet + + Unable to bind to %s on this computer. %s is probably already running. + - In: - Dohodnih: + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + - Out: - Odhodnih: + + Unsupported argument -tor found, use -onion. + - Debug log file - Razhroščevalni dnevnik + + Unsupported logging category %s=%s. + - Clear console - Počisti konzolo + + Upgrading UTXO database + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Uporabite tipki gor in dol za navigacijo po zgodovini ukazov. Uporabite <b>Ctrl-L</b> za izbris zaslona in zgodovine ukazov. + + Use UPnP to map the listening port (default: %u) + Uporabi protokol UPnP za preslikavo vrat za poslušanje (privzeto: %u) - Type <b>help</b> for an overview of available commands. - Vtipkajte <b>help</b> za pregled razpoložljivih ukazov. + + Use the test chain + - %1 B - %1 B + + User Agent comment (%s) contains unsafe characters. + - %1 KB - %1 KiB + + Verifying blocks... + Preverjam celovitost blokov ... - %1 MB - %1 MiB + + Wallet %s resides outside data directory %s + Datoteka %s z denarnico se nahaja izven podatkovne mape %s - %1 GB - %1 GiB + + Wallet debugging/testing options: + - via %1 - preko %1 + + Wallet needed to be rewritten: restart %s to complete + - never - nikoli + + Wallet options: + Izbire denarnice: - Inbound - Dohodna + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + Iz navedenega vira dovoli povezave na JSON-RPC. Veljavne oblike vrednosti parametra <ip> so: edinstven naslov IP (npr.: 1.2.3.4), kombinacija omrežje/netmask (npr.: 1.2.3.4/255.255.255.0), ali pa kombinacija omrežje/CIDR (1.2.3.4/24). To opcijo lahko navedete večkrat. - Outbound - Odhodna + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + Veži dani naslov in sprejemaj povezave samo od navedenih soležnikov. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. - Yes - Da + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + Ustvarjaj nove datoteke s privzetimi sistemskimi dovoljenji, namesto z umask 077. (To pride v poštev samo, kadar imate izklopljeno funkcijo denarnice.) - No - Ne + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + Odkrij svoj naslov IP (privzeto: 1, če poslušate in sta opciji -externalip in -proxy neaktivni) - Unknown - Neznano + + Error: Listening for incoming connections failed (listen returned error %s) + Napaka: Ni mogoče sprejemati dohodnih povezav (vrnjena napaka: %s) - - - ReceiveCoinsDialog - &Amount: - &Znesek: + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + Ko bo prejeto ustrezno opozorilo, ali ko bo opažena zelo dolga razvejitev, izvedi navedeni ukazni niz. (Niz %s bo nadomeščen z vsebino sporočila.) - &Label: - &Oznaka: + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - &Message: - &Sporočilo: + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + Če opcija -paytxfee ni nastavljena, nastavi znesek provizije tako visoko, da bodo transakcije potrjene v povprečno n blokih. (privzeto: %u) - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Ponovno uporabite enega od že uporabljenih naslovov za prejemanje. Večkratna uporaba istih naslovov za prejemanje negativno vpliva na varnost in zasebnost. To opcijo uporabite samo v primeru, da poustvarjate obstoječ zahtevek za plačilo. + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - R&euse an existing receiving address (not recommended) - P&onovno uporabite obstoječ naslov za prejemanje. (Ni priporočeno.) + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Neobvezno sporočilo kot priponka zahtevku za plačilo, ki bo prikazano, ko bo zahtevek odprt. Opomba: Opravljeno plačilo.prek omrežja Raven tega sporočila ne bo vsebovalo. + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + Na vsak posredniški strežnik se prijavi z drugimi naključnimi podatki. Tako je omogočena osamitev tokov v omrežju Tor (privzeto: %u) - An optional label to associate with the new receiving address. - Oznaka novega sprejemnega naslova. + + The transaction amount is too small to send after the fee has been deducted + - Use this form to request payments. All fields are <b>optional</b>. - S tem obrazcem ustvarite nov zahtevek za plačilo. Vsa polja so <b>neobvezna</b>. + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Zahtevani znesek. Če ne zahtevate določenega zneska, pustite prazno ali nastavite vrednost na 0. + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - Clear all fields of the form. - Počisti vsa polja. + + (default: %u) + (privzeto: %u) - Clear - Počisti + + Accept public REST requests (default: %u) + - Requested payments history - Zgodovina zahtevkov za plačilo + + Automatically create Tor hidden service (default: %d) + - &Request payment - &Zahtevaj plačilo + + Connect through SOCKS5 proxy + Poveži se preko posredniškega strežnika SOCKS5 - Show the selected request (does the same as double clicking an entry) - Prikaz izbranega zahtevka. (Isto funkcijo opravi dvojni klik na zapis.) + + Error loading %s: You can't disable HD on an already existing HD wallet + - Show - Pokaži + + Error reading from database, shutting down. + - Remove the selected entries from the list - Odstrani označene vnose iz seznama + + Error upgrading chainstate database + - Remove - Odstrani + + Imports blocks from external blk000??.dat file on startup + - - - ReceiveRequestDialog - QR Code - QR Koda + + Information + Informacije - Copy &URI - Kopiraj &URl + + Invalid -onion address or hostname: '%s' + - Copy &Address - Kopiraj &naslov + + Invalid -proxy address or hostname: '%s' + - &Save Image... - &Shrani sliko ... + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - Address - Naslov + + Invalid netmask specified in -whitelist: '%s' + - Label - Oznaka + + Keep at most <n> unconnectable transactions in memory (default: %u) + - - - RecentRequestsTableModel - Label - Oznaka + + Need to specify a port with -whitebind: '%s' + Pri opciji -whitebind morate navesti vrata: %s - (no label) - (brez oznake) + + Node relay options: + - - - SendCoinsDialog - Send Coins - Pošlji + + RPC server options: + - Coin Control Features - Upravljanje s kovanci + + Reducing -maxconnections from %d to %d, because of system limitations. + - Inputs... - Vhodi ... + + Rescan the block chain for missing wallet transactions on startup + - automatically selected - samodejno izbrani + + Send trace/debug info to console instead of debug.log file + Pošilja sledilne/razhroščevalne informacije na konzolo namesto v datoteko debug.log - Insufficient funds! - Premalo sredstev! + + Show all debugging options (usage: --help -help-debug) + - Quantity: - Št.vhodov: + + Shrink debug.log file on client startup (default: 1 when no -debug) + Ob zagonu skrajšaj datoteko debug.log (privzeto: 1, če ni vklopljena opcija -debug) - Bytes: - Št.bajtov: + + Signing transaction failed + Transakcije ni bilo mogoče podpisati. - Amount: - Znesek: + + The transaction amount is too small to pay the fee + - Fee: - Provizija: + + This is experimental software. + Program je eksperimentalne narave. - After Fee: - Po proviziji: + + Tor control port password (default: empty) + - Change: - Vračilo: + + Tor control port to use if onion listening enabled (default: %s) + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Če to vključite, nato pa vnesete neveljaven naslov, ali pa pustite polje prazno, bo vrnjen drobiž poslan na novo ustvarjen naslov. + + Transaction amount too small + Znesek je pramajhen - Custom change address - Naslov za vračilo drobiža po meri + + Transaction too large for fee policy + - Transaction Fee: - Provizija: + + Transaction too large + Transkacija je prevelika - Choose... - Izberi ... + + Unable to bind to %s on this computer (bind returned error %s) + Na tem računalniku ni bilo mogoče vezati naslova %s (vrnjena napaka: %s) - collapse fee-settings - Skrije nastavitve provizije + + Upgrade wallet to latest format on startup + - per kilobyte - na KiB + + Username for JSON-RPC connections + Uporabniško ime za povezave na JSON-RPC - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Če je nastavitev zneska provizije po meri enaka 1000 satoshijev, transakcija pa je velika samo 250 bajtov, je obračunani znesek provizije pri nastavitvi "za KiB" samo 250 satoshijev, medtem ko je pri nastavitvi "skupno vsaj" ta znesek 1000 satoshijev. Za transakcije, večje od 1 KiB, se končni znesek pri obeh nastavitvah obračuna na KiB. + + Valid Verifier + - Hide - Skrij + + Variable is not allow in the expression: ' + - total at least - skupno vsaj + + Verifier String doesn't exist for asset: + - Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Dokler bo v blokih še dovolj prostora za vse nastajajoče transakcije, zadostuje, če plačate samo minimalno provizijo. Ko pa se bo količina vseh transakcij povečala do meja zmogljivosti omrežja, se lahko zgodi, da vaša transakcija brez večje provizije nikoli ne bo potrjena. + + Verifier String for asset trasnfer, not found + - (read the tooltip) - (oglejte si namig) + + Verifier not found for asset: + - Recommended: - Priporočena: + + Verifier string can not be empty. To default to true, use "true" + - Custom: - Po meri: + + Verifier string is empty + - (Smart fee not initialized yet. This usually takes a few blocks...) - (Samodejni obračun provizije še ni pripravljen. Po navadi izračun traja nekaj blokov ...) + + Verifier string not found + - normal - navadno + + Verifying wallet(s)... + - fast - hitro + + Warning + Opozorilo - Send to multiple recipients at once - Pošlji več prejemnikom hkrati + + Warning: unknown new rules activated (versionbit %i) + - Add &Recipient - Dodaj &prejemnika + + Whether to operate in a blocks only mode (default: %u) + - Clear all fields of the form. - Počisti vsa polja. + + You need to rebuild the database using -reindex to change -txindex + - Dust: - Prah: + + Zapping all transactions from wallet... + Brišem vse transakcije iz denarnice ... - Clear &All - Počisti &vse + + ZeroMQ notification options: + - Balance: - Stanje: + + Password for JSON-RPC connections + Geslo za povezave na JSON-RPC - Confirm the send action - Potrdi pošiljanje + + Execute command when the best block changes (%s in cmd is replaced by block hash) + Izvedi ukaz, ko je najden najboljši blok (niz %s v ukazu bo zamenjan s hash vrednostjo bloka) - S&end - &Pošlji + + Allow DNS lookups for -addnode, -seednode and -connect + Omogoči poizvedbe DNS za opcije -addnode, -seednode in -connect. - (no label) - (brez oznake) + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - - - SendCoinsEntry - A&mount: - &Znesek: + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Pay &To: - Prejemnik &plačila: + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - &Label: - &Oznaka: + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Choose previously used address - Izberite enega od že uporabljenih naslovov + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - This is a normal payment. - Plačilo je navadne vrste. + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - The Raven address to send the payment to - Naslov Raven, na katerega bo plačilo poslano + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Alt+A - Alt+A + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Paste address from clipboard - Prilepite naslov iz odložišča + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Alt+P - Alt+P + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Remove this entry - Izpraznite vsebino polja + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. - Znesek plačila bo zmanjšan za znesek provizije. Prejemnik bo prejel manjše število kovancev, kot je bil vnešeni znesek. Če je prejemnikov več, bo provizija med njih enakomerno porazdeljena. + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - S&ubtract fee from amount - O&dštej provizijo od zneska + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Message: - Sporočilo: + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - This is an unauthenticated payment request. - Zahtevek za plačilo je neoverjen. + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - This is an authenticated payment request. - Zahtevek za plačilo je overjen. + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Enter a label for this address to add it to the list of used addresses - Če vnesete oznako za zgornji naslov, se bo skupaj z naslovom shranila v imenk že uporabljenih naslovov + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Sporočilo, ki ste ga pripeli na URI tipa raven:. Shranjeno bo skupaj s podatki o transakciji. Opomba: Sporočilo ne bo poslano preko omrežja Raven. + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Pay To: - Prejemnik: + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Memo: - Opomba: + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - - - SendConfirmationDialog - - - ShutdownWindow - Do not shut down the computer until this window disappears. - Dokler to okno ne izgine, ne zaustavljajte računalnika. + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - - - SignVerifyMessageDialog - Signatures - Sign / Verify a Message - Podpiši / preveri sporočilo + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - &Sign Message - &Podpiši sporočilo + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. - S svojimi naslovi lahko podpisujete sporočila ali pogodbe in s tem dokazujete, da na teh naslovih lahko prejemate kovance. Bodite previdni in ne podpisujte ničesar nejasnega ali naključnega, ker vas zlikovci preko ribarjenja (phishing) lahko prelisičijo, da na njih prepišete svojo identiteto. Podpisujte samo podrobno opisane izjave, s katerimi se strinjate. + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - The Raven address to sign the message with - Naslov Raven, s katerim podpisujete sporočilo + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - Choose previously used address - Izberite enega od že uporabljenih naslovov + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Alt+A - Alt+A + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Paste address from clipboard - Prilepite naslov iz odložišča + + The default height that is required before rewards are allowed to be sent out + - Alt+P - Alt+P + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Enter the message you want to sign here - Vnesite sporočilo, ki ga želite podpisati + + This address doesn't contain the correct tags to pass the verifier string check: + - Signature - Podpis + + This is the transaction fee you may pay when fee estimates are not available. + - Copy the current signature to the system clipboard - Kopiranje trenutnega podpisa na sistemsko odložišče. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Sign the message to prove you own this Raven address - Podpišite sporočilo, da dokažete lastništvo nad zgornjim naslovom. + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - Sign &Message - Podpiši &sporočilo + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Reset all sign message fields - Počisti vsa polja za vnos v oknu za podpisovanje + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Clear &All - Počisti &vse + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - &Verify Message - &Preveri sporočilo + + Unable to reissue asset: unit must be larger than current unit selection + - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! - Da preverite verodostojnost sporočila, spodaj vnesite: prejemnikov naslov, prejeto sporočilo (pazljivo skopirajte vse prelome vrstic, presledke, tabulatorje ipd.,) in prejeti podpis. Da se izognete napadom tipa man-in-the-middle, vedite, da iz veljavnega podpisa ne sledi nič drugega, kot tisto, kar je navedeno v sporočilu. Podpis samo potrjuje dejstvo, da ima podpisnik v lasti prejemni naslov, ne more pa dokazati vira nobene transakcije! + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - The Raven address the message was signed with - Naslov Raven, s katerim je bilo sporočilo podpisano + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Verify the message to ensure it was signed with the specified Raven address - Preverite, ali je bilo sporočilo v resnici podpisano z navedenim naslovom Raven. + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Verify &Message - Preveri &sporočilo + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + Za dostop do soležnikov preko skritih storitev Tor uporabi drug posredniški strežnik SOCKS5 (privzeto: %s) - Reset all verify message fields - Počisti vsa polja za vnos v oknu za preverjanje + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - - - SplashScreen - [testnet] - [testnet] + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - - - TrafficGraphWidget - KB/s - KiB/s + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - V tem podoknu so prikazane podrobnosti o transakciji + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - - - TransactionTableModel - Label - Oznaka + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - (no label) - (brez oznake) + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - - - TransactionView - Label - Oznaka + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Address - Naslov + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Exporting Failed - Podatkov ni bilo mogoče izvoziti. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - - - UnitDisplayStatusBarControl - Unit to show amounts in. Click to select another unit. - Merska enota za prikaz zneskov. Kliknite za izbiro druge enote. + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - - - WalletFrame - - - WalletModel - - - WalletView - Export the data in the current tab to a file - Izvozi podatke v trenutnem zavihku v datoteko + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - raven-core - Options: - Možnosti: + + %s is set very high! + - Specify data directory - Izberite podatkovno mapo + + ' doesn't exist in the database + - Connect to a node to retrieve peer addresses, and disconnect - Povežite se z vozliščem za pridobitev naslovov soležnikov in nato prekinite povezavo. + + ' has already been used + - Specify your own public address - Določite vaš lasten javni naslov + + ' is not a valid character in the expression: + - Accept command line and JSON-RPC commands - Sprejemaj ukaze iz ukazne vrstice in preko JSON-RPC + + ' the amount trying to reissue is to large + - Run in the background as a daemon and accept commands - Teci v ozadju in sprejemaj ukaze + + (default: %s) + (privzeto: %s) - Raven Core - Raven Core + + A space separated list of 12-words used to import a bip44 wallet + - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Veži dani naslov in tam vedno poslušaj. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. + + Always query for peer addresses via DNS lookup (default: %u) + - Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) - Izvedi ukaz, ko bo transakcija denarnice se spremenila (V cmd je bil TxID zamenjan za %s) + + Asset Transfer amounts must be greater than 0 + - Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) - Nastavi število niti za preverjanje skript (%u do %d, 0 = samodejno, <0 toliko procesorskih jeder naj ostane prostih, privzeto: %d) + + Asset doesn't exist: + - <category> can be: - <category> je lahko: + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Block creation options: - Možnosti ustvarjanja blokov: + + Asset name is not valid + - Connection options: - Izbire povezave: + + Asset with this name is already in the mempool + - Corrupted block database detected - Podatkovna baza blokov je okvarjena + + Done Loading + - Debugging/Testing options: - Možnosti razhroščevanja in testiranja: + + Enable publish raw asset messages in <address> + - Do not load the wallet and disable wallet RPC calls - Ne naloži denarnice in onemogoči s tem povezane klice RPC + + Error creating %s: You can't create non-HD wallets with this version. + - Do you want to rebuild the block database now? - Želite zdaj obnoviti podatkovno bazo blokov? + + Error loading wallet %s. -wallet filename must be a regular file. + - Error initializing block database - Napaka pri inicializaciji podatkovne baze blokov + + Error loading wallet %s. Duplicate -wallet filename specified. + - Error initializing wallet database environment %s! - Napaka pri inicializaciji okolja podatkovne baze denarnice %s! + + Error loading wallet %s. Invalid characters in -wallet filename. + - Error loading block database - Napaka pri nalaganju podatkovne baze blokov + + Error not set + - Error opening block database - Napaka pri odpiranju podatkovne baze blokov + + Error writing bip 39 passphrase to database + - Error: Disk space is low! - Opozorilo: Premalo prostora na disku! + + Error writing bip 39 vchseed to database + - Failed to listen on any port. Use -listen=0 if you want this. - Ni mogoče poslušati na nobenih vratih. Če to zares želite, uporabite opcijo -listen=0. + + Error writing bip 39 words to database + - Importing... - Uvažam ... + + Every '(' must have a corresponding ')' in the expression: + - Incorrect or no genesis block found. Wrong datadir for network? - Izvornega bloka ni mogoče najti ali pa je neveljaven. Preverite, če ste izbrali pravo podatkovno mapo za izbrano omrežje. + + Failed to extract destination from change script + - Invalid -onion address: '%s' - Neveljaven naslov tipa -onion: '%s' + + Failed to find restricted asset change address from inputs + - Not enough file descriptors available. - Na voljo ni dovolj deskriptorjev datotek. + + Failed to get asset data from script + - Only connect to nodes in network <net> (ipv4, ipv6 or onion) - Povezuj se samo z vozlišči na omrežju tipa <net> (IPv4, IPv6 ali onion) + + Failed to get verifier string from output: + - Prune cannot be configured with a negative value. - Negativne vrednosti parametra funkcije obrezovanja niso sprejemljive. + + Failed to load Assets Database + - Prune mode is incompatible with -txindex. - Funkcija obrezovanja ni združljiva z opcijo -txindex. + + Flag must be 1 or 0 + - Set database cache size in megabytes (%d to %d, default: %d) - Nastavitev velikosti predpomnilnik podatkovne baze v MiB (%d do %d, privzeto: %d) + + How many blocks to check at startup (default: %u, 0 = all) + - Set maximum block size in bytes (default: %d) - Nastavitev maksimalne velikosti bloka v bajtih (privzeto: %d) + + Include IP addresses in debug output (default: %u) + - Specify wallet file (within data directory) - Ime datoteke z denarnico (znotraj podatkovne mape) + + Init Message Channels - Scanning Asset Transactions + - Use UPnP to map the listening port (default: %u) - Uporabi protokol UPnP za preslikavo vrat za poslušanje (privzeto: %u) + + Insufficient asset funds + - Verifying blocks... - Preverjam celovitost blokov ... + + Invalid Qualifier Name: + - Verifying wallet... - Preverjam celovitost denarnice ... + + Invalid expressions in verifier string: + - Wallet %s resides outside data directory %s - Datoteka %s z denarnico se nahaja izven podatkovne mape %s + + Invalid parameter: amount must be + - Wallet options: - Izbire denarnice: + + Invalid parameter: amount must be between + - Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times - Iz navedenega vira dovoli povezave na JSON-RPC. Veljavne oblike vrednosti parametra <ip> so: edinstven naslov IP (npr.: 1.2.3.4), kombinacija omrežje/netmask (npr.: 1.2.3.4/255.255.255.0), ali pa kombinacija omrežje/CIDR (1.2.3.4/24). To opcijo lahko navedete večkrat. + + Invalid parameter: asset amount can't be equal to or less than zero. + - Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Veži dani naslov in sprejemaj povezave samo od navedenih soležnikov. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. + + Invalid parameter: asset amount greater than max money: + - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Veži dani naslov in sprejemaj povezave na JSON-RPC. Za naslove protokola IPv6 uporabite zapis [gostitelj]:vrata. To opcijo lahko navedete večkrat. (privzeto: veži vse omrežne vmesnike) + + Invalid parameter: asset_name ' + - Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) - Ustvarjaj nove datoteke s privzetimi sistemskimi dovoljenji, namesto z umask 077. (To pride v poštev samo, kadar imate izklopljeno funkcijo denarnice.) + + Invalid parameter: has_ipfs must be 0 or 1. + - Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) - Odkrij svoj naslov IP (privzeto: 1, če poslušate in sta opciji -externalip in -proxy neaktivni) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Error: Listening for incoming connections failed (listen returned error %s) - Napaka: Ni mogoče sprejemati dohodnih povezav (vrnjena napaka: %s) + + Invalid parameter: reissuable must be 0 or 1 + - Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) - Ko bo prejeto ustrezno opozorilo, ali ko bo opažena zelo dolga razvejitev, izvedi navedeni ukazni niz. (Niz %s bo nadomeščen z vsebino sporočila.) + + Invalid parameter: reissuable must be 0 + - If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) - Če opcija -paytxfee ni nastavljena, nastavi znesek provizije tako visoko, da bodo transakcije potrjene v povprečno n blokih. (privzeto: %u) + + Invalid parameter: units must be + - Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Na vsak posredniški strežnik se prijavi z drugimi naključnimi podatki. Tako je omogočena osamitev tokov v omrežju Tor (privzeto: %u) + + Invalid parameter: units must be between 0-8. + - (default: %u) - (privzeto: %u) + + Invalid syntax: + - Connect through SOCKS5 proxy - Poveži se preko posredniškega strežnika SOCKS5 + + Keypool ran out, please call keypoolrefill first + - Information - Informacije + + Length is to large. Please use a smaller length + - Need to specify a port with -whitebind: '%s' - Pri opciji -whitebind morate navesti vrata: %s + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Send trace/debug info to console instead of debug.log file - Pošilja sledilne/razhroščevalne informacije na konzolo namesto v datoteko debug.log + + Listen for connections on <port> (default: %u or testnet: %u) + - Shrink debug.log file on client startup (default: 1 when no -debug) - Ob zagonu skrajšaj datoteko debug.log (privzeto: 1, če ni vklopljena opcija -debug) + + Maintain at most <n> connections to peers (default: %u) + - Signing transaction failed - Transakcije ni bilo mogoče podpisati. + + Make the wallet broadcast transactions + - This is experimental software. - Program je eksperimentalne narave. + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Transaction amount too small - Znesek je pramajhen + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Transaction too large - Transkacija je prevelika + + Mempool cleared + - Unable to bind to %s on this computer (bind returned error %s) - Na tem računalniku ni bilo mogoče vezati naslova %s (vrnjena napaka: %s) + + Multiple verifier strings found in transaction + - Username for JSON-RPC connections - Uporabniško ime za povezave na JSON-RPC + + Passphrase securing your 12-word mnemonic word-list + - Warning - Opozorilo + + Prepend debug output with timestamp (default: %u) + - Zapping all transactions from wallet... - Brišem vse transakcije iz denarnice ... + + Relay and mine data carrier transactions (default: %u) + - Password for JSON-RPC connections - Geslo za povezave na JSON-RPC + + Relay non-P2SH multisig (default: %u) + Posreduj transakcije tipa multisig, ki niso hkrati tipa P2SH. (privzeto: %u) - Execute command when the best block changes (%s in cmd is replaced by block hash) - Izvedi ukaz, ko je najden najboljši blok (niz %s v ukazu bo zamenjan s hash vrednostjo bloka) + + Restricted asset transfer from address that has been frozen + - Allow DNS lookups for -addnode, -seednode and -connect - Omogoči poizvedbe DNS za opcije -addnode, -seednode in -connect. + + Send transactions with full-RBF opt-in enabled (default: %u) + - Loading addresses... - Nalagam naslove ... + + Set key pool size to <n> (default: %u) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Za dostop do soležnikov preko skritih storitev Tor uporabi drug posredniški strežnik SOCKS5 (privzeto: %s) + + Set maximum BIP141 block weight (default: %d) + - (default: %s) - (privzeto: %s) + + Set the Maximum reorg depth (default: %u) + - Invalid -proxy address: '%s' - Neveljaven naslov -proxy: '%s' + + Set the number of threads to service RPC calls (default: %d) + - Relay non-P2SH multisig (default: %u) - Posreduj transakcije tipa multisig, ki niso hkrati tipa P2SH. (privzeto: %u) + + Signing asset transaction failed + + Specify configuration file (default: %s) Za shranjevanje konfiguracije uporabi navedeno datoteko. (privzeto: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Vzpostavljanje nove povezave poteče po navedenem št. pretečenih milisekund. (najmanj: 1, privzeto: %d) + Specify pid file (default: %s) Za shranjevanje PID uporabi navedeno datoteko. (privzeto: %s) + Spend unconfirmed change when sending transactions (default: %u) Pri odlivnih transakcijah omogoči trošenje drobiža iz še nepotrjenih plačil (privzeto: %u) + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) Prekini povezavo s soležnikom, ko št. njegovih kazenskih točk preseže navedeni prag. (privzeto: %u) - Unknown network specified in -onlynet: '%s' - Neznano omrežje določeno v -onlynet: '%s'. + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Neznano omrežje določeno v -onlynet: '%s'. + + + Insufficient funds Premalo sredstev + Loading block index... Nalagam kazalo blokov ... - Add a node to connect to and attempt to keep the connection open - Dodaj povezavo na vozlišče in jo skušaj držati odprto - - + Loading wallet... Nalagam denarnico ... + Cannot downgrade wallet Ne morem - Cannot write default address - Ni mogoče zapisati privzetega naslova - - + Rescanning... Ponovno pregledujem verigo ... - Done loading - Nalaganje končano - - + Error Napaka diff --git a/src/qt/locale/raven_sq.ts b/src/qt/locale/raven_sq.ts index 0e3872e3e3..d8c4d8b2d5 100644 --- a/src/qt/locale/raven_sq.ts +++ b/src/qt/locale/raven_sq.ts @@ -1,85 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Kliko me të djathtën për të ndryshuar adresën ose etiketen. + Create a new address Krijo një adresë të re + &New &E re + Copy the currently selected address to the system clipboard Kopjo adresën e zgjedhur në memorjen e sistemit + &Copy &Kopjo + + C&lose + + + + Delete the currently selected address from the list Fshi adresen e selektuar nga lista + Export the data in the current tab to a file Eksporto të dhënat e skedës korrente në një skedar + + &Export + + + + &Delete &Fshi + Choose the address to send coins to Zgjidh adresen ku do te dergoni monedhat + + Choose the address to receive coins with + + + + + C&hoose + + + + Sending addresses Duke derguar adresen + Receiving addresses Duke marr adresen + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Këto janë Raven adresat e juaja për të dërguar pagesa. Gjithmon kontrolloni shumën dhe adresën pranuese para se të dërgoni monedha. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Këto janë Raven adresat e juaja për të pranuar pagesa. Rekomandohet që gjithmon të përdorni një adresë të re për çdo transaksion. + &Copy Address &Kopjo adresen + Copy &Label Kopjo &Etiketë + &Edit &Ndrysho + Export Address List Eksporto listën e adresave + Comma separated file (*.csv) Skedar i ndarë me pikëpresje(*.csv) + Exporting Failed Eksportimi dështoj + There was an error trying to save the address list to %1. Please try again. Gabim gjatë ruajtjes së listës së adresave në %1. Ju lutem provoni prapë. @@ -87,14 +125,17 @@ AddressTableModel + Label Etiketë + Address Adresë + (no label) (pa etiketë) @@ -102,706 +143,8144 @@ AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Futni frazkalimin + New passphrase Frazkalim i ri + Repeat new passphrase Përsërisni frazkalimin e ri + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet Kripto portofolin + This operation needs your wallet passphrase to unlock the wallet. - Ky veprim ka nevojë per frazkalimin e portofolit tuaj që të ç'kyç portofolin. + Ky veprim ka nevojë per frazkalimin e portofolit tuaj që të ç'kyç portofolin. + Unlock wallet - ç'kyç portofolin. + ç'kyç portofolin. + This operation needs your wallet passphrase to decrypt the wallet. Ky veprim kërkon frazkalimin e portofolit tuaj që të dekriptoj portofolin. + Decrypt wallet Dekripto portofolin + Change passphrase Ndrysho frazkalimin + + Enter the old passphrase and new passphrase to the wallet. + + + + Confirm wallet encryption Konfirmoni enkriptimin e portofolit + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + Are you sure you wish to encrypt your wallet? Jeni te sigurt te enkriptoni portofolin tuaj? + + Wallet encrypted Portofoli u enkriptua + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + Wallet encryption failed Enkriptimi i portofolit dështoi + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Enkriptimi i portofolit dështoi për shkak të një gabimi të brëndshëm. portofoli juaj nuk u enkriptua. + + The supplied passphrases do not match. Frazkalimet e plotësuara nuk përputhen. + Wallet unlock failed - ç'kyçja e portofolit dështoi + ç'kyçja e portofolit dështoi + + + The passphrase entered for the wallet decryption was incorrect. Frazkalimi i futur për dekriptimin e portofolit nuk ishte i saktë. + Wallet decryption failed Dekriptimi i portofolit dështoi - - - BanTableModel - - - RavenGUI - - Synchronizing with network... - Duke u sinkronizuar me rrjetin... - - &Overview - &Përmbledhje + + Wallet passphrase was successfully changed. + - Show general overview of wallet - Trego një përmbledhje te përgjithshme të portofolit + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - &Transactions - &Transaksionet + + Asset Selection + - Browse transaction history - Shfleto historinë e transaksioneve + + Quantity: + - Quit application - Mbyllni aplikacionin + + Bytes: + - &Options... - &Opsione + + Amount: + - &Receiving addresses... - Duke marr adresen + + Dust: + - Change the passphrase used for wallet encryption - Ndrysho frazkalimin e përdorur per enkriptimin e portofolit + + Fee: + - Raven - Raven + + After Fee: + - Wallet - Portofol + + Change: + - &Send - &Dergo + + (un)select all + - &Receive - &Merr + + Tree mode + - &Show / Hide - &Shfaq / Fsheh + + List mode + - &File - &Skedar + + View assets that you have the ownership asset for + - &Settings - &Konfigurimet + + View Administrator Assets + - &Help - &Ndihmë + + Asset + - Tabs toolbar - Shiriti i mjeteve + + Amount + - %1 behind - %1 Pas + + Received with label + - Error - Problem + + Received with address + - Information - Informacion + + Date + - Up to date - I azhornuar + + Confirmations + - Catching up... - Duke u azhornuar... + + Confirmed + - Sent transaction - Dërgo transaksionin + + Copy address + - Incoming transaction - Transaksion në ardhje + + Copy label + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Portofoli po <b> enkriptohet</b> dhe është <b> i ç'kyçur</b> + + + Copy amount + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Portofoli po <b> enkriptohet</b> dhe është <b> i kyçur</b> + + Copy transaction ID + - - - CoinControlDialog - Coin Selection - Zgjedhja e monedhes + + Lock unspent + - Amount: - Shuma: + + Unlock unspent + - Amount - Sasia + + Copy quantity + - Date - Data + + Copy fee + - Copy address - Kopjo adresën + + Copy after fee + - yes - po + + Copy bytes + - no - jo + + Copy dust + - (no label) - (pa etiketë) + + Copy change + - - - EditAddressDialog - Edit Address - Ndrysho Adresën + + (%1 locked) + - &Label - &Etiketë + + yes + - &Address - &Adresa + + no + - New receiving address - Adresë e re pritëse + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - New sending address - Adresë e re dërgimi + + Can vary +/- %1 satoshi(s) per input. + - Edit receiving address - Ndrysho adresën pritëse + + + (no label) + - Edit sending address - ndrysho adresën dërguese + + change from %1 (%2) + - The entered address "%1" is already in the address book. - Adresa e dhënë "%1" është e zënë në librin e adresave. + + (change) + + + + AssetTableModel - Could not unlock wallet. - Nuk mund të ç'kyçet portofoli. + + Name + - New key generation failed. - Krijimi i çelësit të ri dështoi. + + Quantity + - FreespaceChecker + AssetsDialog - name - emri + + + Send Coins + - - - HelpMessageDialog - version - versioni + + Asset Control Features + - - - Intro - Welcome - Miresevini + + Inputs... + - Error - Problem + + automatically selected + - - - ModalOverlay - Form - Formilarë + + Insufficient funds! + - - - OpenURIDialog - - - OptionsDialog - Options - Opsionet + + Quantity: + - W&allet - Portofol + + Bytes: + - - - OverviewPage - Form - Formilarë + + Amount: + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Sasia + + Dust: + - %1 and %2 - %1 dhe %2 + + Fee: + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - &Information - Informacion + + After Fee: + - &Open - &Hap + + Change: + - &Clear - &Pastro + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - never - asnjehere + + Custom change address + - Unknown - i/e panjohur + + Transaction Fee: + - - - ReceiveCoinsDialog - &Amount: - Shuma: + + Choose... + - &Label: - &Etiketë: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Clear - Pastro + + Warning: Fee estimation is currently not possible. + - - - ReceiveRequestDialog - Copy &Address - &Kopjo adresen + + collapse fee-settings + - Address - Adresë + + Hide + - Amount - Sasia + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Label - Etiketë + + per kilobyte + - - - RecentRequestsTableModel - Date - Data + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Label - Etiketë + + (read the tooltip) + - (no label) - (pa etiketë) + + Recommended: + - - - SendCoinsDialog - Send Coins - Dërgo Monedha + + Custom: + - Insufficient funds! - Fonde te pamjaftueshme + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Amount: - Shuma: + + Confirmation time target: + - Send to multiple recipients at once - Dërgo marrësve të ndryshëm njëkohësisht + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Balance: - Balanca: + + Request Replace-By-Fee + + Confirm the send action - Konfirmo veprimin e dërgimit + - Confirm send coins - konfirmo dërgimin e monedhave + + S&end + - The amount to pay must be larger than 0. - Shuma e paguar duhet të jetë më e madhe se 0. + + Clear all fields of the form. + - (no label) - (pa etiketë) + + Clear &All + - - - SendCoinsEntry - A&mount: - Sh&uma: + + Transfer to multiple recipients at once + - Pay &To: - Paguaj &drejt: + + Add &Recipient + - &Label: - &Etiketë: + + Balance: + - Alt+A - Alt+A + + Copy quantity + - Paste address from clipboard - Ngjit nga memorja e sistemit + + Copy amount + - Alt+P - Alt+P + + Copy fee + - Pay To: - Paguaj drejt: + + Copy after fee + - Enter a label for this address to add it to your address book - Krijoni një etiketë për këtë adresë që t'ja shtoni librit të adresave + + Copy bytes + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + Copy dust + - Paste address from clipboard - Ngjit nga memorja e sistemit + + Copy change + - Alt+P - Alt+P + + %1 (%2 blocks) + - - - SplashScreen - [testnet] - [testo rrjetin] + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - TrafficGraphWidget - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - TransactionDesc + BanTableModel - Open until %1 - Hapur deri më %1 + + IP/Netmask + - %1/unconfirmed - %1/I pakonfirmuar + + Banned Until + + + + CoinControlDialog - %1 confirmations - %1 konfirmimet + + Coin Selection + Zgjedhja e monedhes - , has not been successfully broadcast yet - , nuk është transmetuar me sukses deri tani + + Quantity: + - Date - Data + + Bytes: + - unknown - i/e panjohur + + Amount: + Shuma: - Transaction - transaksionit + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + Amount Sasia - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Ky panel tregon një përshkrim të detajuar të transaksionit + + Received with label + - - - TransactionTableModel + + Received with address + + + + Date Data - Type - Lloji + + Confirmations + - Label - Etiketë + + Confirmed + - Open until %1 - Hapur deri më %1 + + Copy address + Kopjo adresën - Confirmed (%1 confirmations) - I/E konfirmuar(%1 konfirmime) + + Copy label + - This block was not received by any other nodes and will probably not be accepted! - Ky bllok është marrë nga ndonjë nyje dhe ka shumë mundësi të mos pranohet! + + + Copy amount + - Generated but not accepted - I krijuar por i papranuar + + Copy transaction ID + - Received with - Marrë me + + Lock unspent + - Sent to - Dërguar drejt + + Unlock unspent + - Payment to yourself - Pagesë ndaj vetvetes + + Copy quantity + - Mined - Minuar + + Copy fee + - (n/a) - (p/a) + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + po + + + + no + jo + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + Can vary +/- %1 satoshi(s) per input. + + + + + (no label) (pa etiketë) - + + + change from %1 (%2) + + + + + (change) + + + - TransactionView + CreateAssetDialog - Received with - Marrë me + + Coin Control Features + - Sent to - Dërguar drejt + + Inputs... + - Mined - Minuar + + automatically selected + - Copy address - Kopjo adresën + + Insufficient funds! + - Comma separated file (*.csv) - Skedar i ndarë me pikëpresje(*.csv) + + + Quantity: + - Date - Data + + Bytes: + - Type - Lloji + + Amount: + - Label - Etiketë + + Dust: + - Address - Adresë + + Fee: + - Exporting Failed - Eksportimi dështoj + + After Fee: + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Dërgo Monedha + + Change: + - - - WalletView - Export the data in the current tab to a file - Eksporto të dhënat e skedës korrente në një skedar + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - raven-core - Options: - Opsionet: + + Custom change address + - Raven Core - Berthama Raven + + Name: + - Information - Informacion + + A-Z 0-9 and . or _ as the second character + - Insufficient funds - Fonde te pamjaftueshme + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Ndrysho Adresën + + + + &Label + &Etiketë + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adresa + + + + New receiving address + Adresë e re pritëse + + + + New sending address + Adresë e re dërgimi + + + + Edit receiving address + Ndrysho adresën pritëse + + + + Edit sending address + ndrysho adresën dërguese + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + Adresa e dhënë "%1" është e zënë në librin e adresave. + + + + Could not unlock wallet. + Nuk mund të ç'kyçet portofoli. + + + + New key generation failed. + Krijimi i çelësit të ri dështoi. + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + emri + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + versioni + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Miresevini + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Problem + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formilarë + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Opsionet + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Portofol + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Formilarë + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Sasia + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 dhe %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Informacion + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &Hap + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + asnjehere + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + i/e panjohur + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Duke u sinkronizuar me rrjetin... + + + + &Overview + &Përmbledhje + + + + Node + + + + + Show general overview of wallet + Trego një përmbledhje te përgjithshme të portofolit + + + + &Transactions + &Transaksionet + + + + Browse transaction history + Shfleto historinë e transaksioneve + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + Mbyllni aplikacionin + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opsione + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Duke marr adresen + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Ndrysho frazkalimin e përdorur per enkriptimin e portofolit + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + Raven + + + + Wallet + Portofol + + + + &Send + &Dergo + + + + &Receive + &Merr + + + + &Show / Hide + &Shfaq / Fsheh + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Skedar + + + + &Help + &Ndihmë + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 Pas + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Problem + + + + Warning + + + + + Information + Informacion + + + + Up to date + I azhornuar + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Duke u azhornuar... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Dërgo transaksionin + + + + Incoming transaction + Transaksion në ardhje + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Portofoli po <b> enkriptohet</b> dhe është <b> i ç'kyçur</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Portofoli po <b> enkriptohet</b> dhe është <b> i kyçur</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Shuma: + + + + &Label: + &Etiketë: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + Pastro + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Kopjo adresen + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + Adresë + + + + Amount + Sasia + + + + Label + Etiketë + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + Data + + + + Label + Etiketë + + + + Message + + + + + (no label) + (pa etiketë) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Dërgo Monedha + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + Fonde te pamjaftueshme + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Shuma: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Dërgo marrësve të ndryshëm njëkohësisht + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + Balanca: + + + + Confirm the send action + Konfirmo veprimin e dërgimit + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + konfirmo dërgimin e monedhave + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + Shuma e paguar duhet të jetë më e madhe se 0. + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (pa etiketë) + + + + SendCoinsEntry + + + + + A&mount: + Sh&uma: + + + + &Label: + &Etiketë: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Ngjit nga memorja e sistemit + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + Krijoni një etiketë për këtë adresë që t'ja shtoni librit të adresave + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Ngjit nga memorja e sistemit + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testo rrjetin] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + Hapur deri më %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + %1/I pakonfirmuar + + + + %1 confirmations + %1 konfirmimet + + + + + Status + + + + + + , has not been successfully broadcast yet + , nuk është transmetuar me sukses deri tani + + + + + , broadcast through %n node(s) + + + + + + Date + Data + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + i/e panjohur + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + transaksionit + + + + Inputs + + + + + Amount + Sasia + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Ky panel tregon një përshkrim të detajuar të transaksionit + + + + Details for %1 + + + + + TransactionTableModel + + + Date + Data + + + + Type + Lloji + + + + Label + Etiketë + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + Hapur deri më %1 + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + I/E konfirmuar(%1 konfirmime) + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + Ky bllok është marrë nga ndonjë nyje dhe ka shumë mundësi të mos pranohet! + + + + Generated but not accepted + I krijuar por i papranuar + + + + Received with + Marrë me + + + + Received from + + + + + Sent to + Dërguar drejt + + + + Payment to yourself + Pagesë ndaj vetvetes + + + + Mined + Minuar + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + (p/a) + + + + (no label) + (pa etiketë) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + Marrë me + + + + Sent to + Dërguar drejt + + + + To yourself + + + + + Mined + Minuar + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + Kopjo adresën + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + Skedar i ndarë me pikëpresje(*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + Data + + + + Type + Lloji + + + + Label + Etiketë + + + + Address + Adresë + + + + Asset + + + + + ID + + + + + Exporting Failed + Eksportimi dështoj + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Dërgo Monedha + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + Eksporto të dhënat e skedës korrente në një skedar + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opsionet: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Berthama Raven + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informacion + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Fonde te pamjaftueshme + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + Rescanning... Rikerkim + Error Problem diff --git a/src/qt/locale/raven_sr.ts b/src/qt/locale/raven_sr.ts index a7f4b72704..31b8861e7b 100644 --- a/src/qt/locale/raven_sr.ts +++ b/src/qt/locale/raven_sr.ts @@ -1,499 +1,8287 @@ - - - + AddressBookPage + Right-click to edit address or label Kliknite desnim klikom radi izmene adrese ili oznake + Create a new address Napravite novu adresu + &New Novo + Copy the currently selected address to the system clipboard Kopirajte trenutno izabranu adresu + &Copy Kopirajte + C&lose Zatvorite + Delete the currently selected address from the list Izbrisite trenutno izabranu adresu sa liste + Export the data in the current tab to a file Eksportuj podatke iz izabrane kartice u fajl + + &Export + &Eksportuj + + + &Delete &Избриши + Choose the address to send coins to Izbirajte adresu za slanje + Choose the address to receive coins with Izbirajte adresu za primanje + + C&hoose + I&aberi + + + Sending addresses Adresa za slanje + Receiving addresses Adresa za primanje - + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + Ovo su vase Ravencoin adrese za slanje. Uvek proverite iznos i adresu primaoca pre slanja novcica. + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + Ovo su vase Ravencoin adrese za prijem. Preporucljivo je da za svaki prijem novcica kreirate novu adresu za prijem. + + + + &Copy Address + &Kopirajte Adresu + + + + Copy &Label + Kopiraj&Oznaka + + + + &Edit + &Edituj + + + + Export Address List + Eksport Liste Adresa + + + + Comma separated file (*.csv) + + + + + Exporting Failed + Eksportovanje je Neuspesno + + + + There was an error trying to save the address list to %1. Please try again. + Desila se greška prilikom snimanja liste adresa u %1. Molimo pokušajte ponovo. + + AddressTableModel - + + + Label + Oznaka + + + + Address + Adresa + + + + (no label) + (bez oznake) + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase Унесите лозинку + New passphrase Нова лозинка + Repeat new passphrase Поновите нову лозинку - - - BanTableModel - - - RavenGUI - Synchronizing with network... - Синхронизација са мрежом у току... + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + Unesite novu lozinku novčanika. <br/>Molimo koristite lozinku od <b>deset ili više nasumičnih karaktera</b>, ili <b>osam ili više nasumičnih reči</b>. - &Overview - &Општи преглед + + Encrypt wallet + Enkriptuj novčanik - Show general overview of wallet - Погледајте општи преглед новчаника + + This operation needs your wallet passphrase to unlock the wallet. + Unesite vašu lozinku da bi ste otključali novčanik. - &Transactions - &Трансакције + + Unlock wallet + Otključaj novčanik - Browse transaction history - Претражите историјат трансакција + + This operation needs your wallet passphrase to decrypt the wallet. + Unesite vašu lozinku da bi ste dekriptovali novčanik. - E&xit - I&zlaz + + Decrypt wallet + Dešifruj novčanik - Quit application - Напустите програм + + Change passphrase + Promeni lozinku - About &Qt - О &Qt-у + + Enter the old passphrase and new passphrase to the wallet. + Unesite staru i novu lozinku u novčanik - Show information about Qt - Прегледајте информације о Qt-у + + Confirm wallet encryption + Potvrdite enkripciju novčanika - &Options... - П&оставке... + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + Pažnja: Ukoliko enkriptujete novčanik a zatim izgubite vašu lozinku, izgubićete<b>SVA VAŠA SREDSTVA</b>! - &Encrypt Wallet... - &Шифровање новчаника... + + Are you sure you wish to encrypt your wallet? + Da li ste sigurni da želite da enkriptujete novčanik? - &Backup Wallet... - &Backup новчаника + + + Wallet encrypted + Novčanik enkriptovan - &Change Passphrase... - Промени &лозинку... + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + %1 će se zatvoriti kako bi se završio proces enkripcije. +Zapamtite da enkripcija vašeg novčanika ne može u potpunosti zaštititi vaša sredstva od krađe ukoliko je vaš računar kompromitovan računarskim virusom ili drugim oblicima malicioznog softvera. - Send coins to a Raven address - Пошаљите новац на raven адресу + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Change the passphrase used for wallet encryption - Мењање лозинке којом се шифрује новчаник + + + + + Wallet encryption failed + Enkripcija novčanika nije uspela - Wallet - новчаник + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + Enkripcija novčanika nije uspela usled interne greške u programu. Vaš novčanik nije enkriptovan. - &Send - &Пошаљи + + + The supplied passphrases do not match. + Uneta lozinka se ne slaže. - &File - &Фајл + + Wallet unlock failed + Otključavanje novčanika nije uspelo. - &Settings - &Подешавања + + + + The passphrase entered for the wallet decryption was incorrect. + Lozinka za dekriptovanje novčanika je pogrešna. - &Help - П&омоћ + + Wallet decryption failed + Dekriptovanje novčanika nije uspelo. - Tabs toolbar - Трака са картицама + + Wallet passphrase was successfully changed. + Lozinka novčanika uspešno promenjena. - Error - Greška + + + Warning: The Caps Lock key is on! + Upozorenje: Caps Lock dugme je aktivno! + + + AssetControlDialog - Up to date - Ажурно + + Asset Selection + - Catching up... - Ажурирање у току... + + Quantity: + Količina: - Sent transaction - Послана трансакција + + Bytes: + Bajtovi: - Incoming transaction - Придошла трансакција + + Amount: + Svota: - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> + + Dust: + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> + + Fee: + Provizija: - - - CoinControlDialog - Amount: - Iznos: + + After Fee: + Nakon provizije: - Amount - iznos + + Change: + Kusur: - Date - datum + + (un)select all + - Confirmed - Potvrdjen + + Tree mode + - - - EditAddressDialog - Edit Address - Измени адресу + + List mode + - &Label - &Етикета + + View assets that you have the ownership asset for + - &Address - &Адреса + + View Administrator Assets + - - - FreespaceChecker - - - HelpMessageDialog - version - верзија + + Asset + - Usage: - Korišćenje: + + Amount + Svota: - - - Intro - Error - Greška + + Received with label + - - - ModalOverlay - Form - Форма + + Received with address + - - - OpenURIDialog - - - OptionsDialog - Options - Поставке + + Date + Datum - W&allet - новчаник + + Confirmations + Potvrde - &Unit to show amounts in: - &Јединица за приказивање износа: + + Confirmed + Potvrđeno - &OK - &OK + + Copy address + Kpiraj adresu - - - OverviewPage - Form - Форма + + Copy label + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - iznos + + + Copy amount + Kopiraj svotu - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - Yes - Da + + Copy transaction ID + - No - Ne + + Lock unspent + - - - ReceiveCoinsDialog - &Amount: - Iznos: + + Unlock unspent + - &Label: - &Етикета + + Copy quantity + - &Message: - Poruka: + + Copy fee + - Show - Prikaži + + Copy after fee + - - - ReceiveRequestDialog - Copy &Address - Kopirajte adresu + + Copy bytes + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Слање новца + + Copy dust + - Amount: - Iznos: + + Copy change + - Confirm the send action - Потврди акцију слања + + (%1 locked) + - S&end - &Пошаљи + + yes + da - - - SendCoinsEntry - A&mount: - Iznos: + + no + ne - &Label: - &Етикета + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Alt+A - Alt+ + + Can vary +/- %1 satoshi(s) per input. + - Alt+P - Alt+П + + + (no label) + - Message: - Poruka: + + change from %1 (%2) + - - - SendConfirmationDialog - Yes - Da + + (change) + - ShutdownWindow - - - SignVerifyMessageDialog + AssetTableModel - Alt+A - Alt+ + + Name + - Alt+P - Alt+П + + Quantity + - + - SplashScreen + AssetsDialog - [testnet] - [testnet] + + + Send Coins + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Ovaj odeljak pokazuje detaljan opis transakcije + + Asset Control Features + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Opcije + + Inputs... + - Specify data directory - Gde je konkretni data direktorijum + + automatically selected + - Accept command line and JSON-RPC commands - Prihvati komandnu liniju i JSON-RPC komande + + Insufficient funds! + Nedovoljno sredstava! - Run in the background as a daemon and accept commands - Radi u pozadini kao daemon servis i prihvati komande + + Quantity: + Količina: - Username for JSON-RPC connections - Korisničko ime za JSON-RPC konekcije + + Bytes: + - Password for JSON-RPC connections - Lozinka za JSON-RPC konekcije + + Amount: + - Loading addresses... - učitavam adrese.... + + Dust: + - Insufficient funds - Nedovoljno sredstava + + Fee: + - Loading block index... - Učitavam blok indeksa... + + After Fee: + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + Upozorenje: Trenutno nije moguće proceniti visinu provizije. + + + + collapse fee-settings + + + + + Hide + Sakrij + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + po kilobajtu + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + Aresa primaoca nije validna. Molimo proverite. + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Iznos: + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + iznos + + + + Received with label + + + + + Received with address + + + + + Date + datum + + + + Confirmations + + + + + Confirmed + Potvrdjen + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Измени адресу + + + + &Label + &Етикета + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Адреса + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + верзија + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + Korišćenje: + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Greška + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Форма + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Поставке + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + новчаник + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + &Јединица за приказивање износа: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Форма + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + iznos + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + Da + + + + No + Ne + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Синхронизација са мрежом у току... + + + + &Overview + &Општи преглед + + + + Node + + + + + Show general overview of wallet + Погледајте општи преглед новчаника + + + + &Transactions + &Трансакције + + + + Browse transaction history + Претражите историјат трансакција + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + I&zlaz + + + + Quit application + Напустите програм + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + О &Qt-у + + + + Show information about Qt + Прегледајте информације о Qt-у + + + + &Options... + П&оставке... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &Шифровање новчаника... + + + + &Backup Wallet... + &Backup новчаника + + + + &Change Passphrase... + Промени &лозинку... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + Пошаљите новац на raven адресу + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + Мењање лозинке којом се шифрује новчаник + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + новчаник + + + + &Send + &Пошаљи + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &Фајл + + + + &Help + П&омоћ + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Greška + + + + Warning + + + + + Information + + + + + Up to date + Ажурно + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Ажурирање у току... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Послана трансакција + + + + Incoming transaction + Придошла трансакција + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Новчаник јс <b>шифрован</b> и тренутно <b>откључан</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Новчаник јс <b>шифрован</b> и тренутно <b>закључан</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Iznos: + + + + &Label: + &Етикета + + + + &Message: + Poruka: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Prikaži + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + Kopirajte adresu + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Слање новца + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Iznos: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + Потврди акцију слања + + + + S&end + &Пошаљи + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Iznos: + + + + &Label: + &Етикета + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+ + + + + Paste address from clipboard + + + + + Alt+P + Alt+П + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Poruka: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Da + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+ + + + + Paste address from clipboard + + + + + Alt+P + Alt+П + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Ovaj odeljak pokazuje detaljan opis transakcije + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Opcije + + + + Specify data directory + Gde je konkretni data direktorijum + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + Prihvati komandnu liniju i JSON-RPC komande + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Radi u pozadini kao daemon servis i prihvati komande + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + Korisničko ime za JSON-RPC konekcije + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + Lozinka za JSON-RPC konekcije + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Nedovoljno sredstava + + + + Loading block index... + Učitavam blok indeksa... + + + Loading wallet... Новчаник се учитава... - Rescanning... - Ponovo skeniram... + + Cannot downgrade wallet + - Done loading - Završeno učitavanje + + Rescanning... + Ponovo skeniram... + Error Greška diff --git a/src/qt/locale/raven_sr@latin.ts b/src/qt/locale/raven_sr@latin.ts index ffcd935498..28bcc8766f 100644 --- a/src/qt/locale/raven_sr@latin.ts +++ b/src/qt/locale/raven_sr@latin.ts @@ -1,453 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label Klikni desnim tasterom za uređivanje adrese ili oznake + Create a new address Kreiraj novu adresu + &New &Novi + Copy the currently selected address to the system clipboard Kopiraj selektovanu adresu u sistemski klipbord + &Copy &Kopiraj + C&lose Zatvori + Delete the currently selected address from the list Briše trenutno izabranu adresu sa liste + Export the data in the current tab to a file Izvoz podataka iz trenutne kartice u datoteku + &Export &Izvoz + &Delete &Izbrisati - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Dialog pristupne fraze + Enter passphrase Unesi pristupnu frazu + New passphrase Nova pristupna fraza + Repeat new passphrase Ponovo unesite pristupnu frazu + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Unesite novu pristupnu frazu u novčanik. <br/>Molimo, koristite pristupnu frazu koja ima <b> deset ili više nasumičnih znakova</b>, ili <b>osam ili više reči</b>. + Encrypt wallet Šifrujte novčanik + This operation needs your wallet passphrase to unlock the wallet. Da biste otključali novčanik potrebno je da unesete svoju pristupnu frazu. + Unlock wallet Otključajte novčanik + This operation needs your wallet passphrase to decrypt the wallet. Da biste dešifrovali novčanik, potrebno je da unesete svoju pristupnu frazu. + Decrypt wallet Dešifrujte novčanik + Change passphrase Promenite pristupnu frazu + Enter the old passphrase and new passphrase to the wallet. Unesite u novčanik staru pristupnu frazu i novu pristupnu frazu. + Confirm wallet encryption Potvrdite šifrovanje novčanika + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! Upozorenje: Ako šifrujete svoj novčanik, i potom izgubite svoju pristupnu frazu <b>IZGUBIĆETE SVE SVOJE BITKOINE</b>! + Are you sure you wish to encrypt your wallet? Da li ste sigurni da želite da šifrujete svoj novčanik? + + Wallet encrypted Novčanik je šifrovan - - - BanTableModel - IP/Netmask - IP/Netmask + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Banned Until - Banovani ste do + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + - RavenGUI + AssetControlDialog - Synchronizing with network... - Usklađivanje sa mrežom... + + Asset Selection + - &Overview - &Pregled + + Quantity: + - Quit application - Isključi aplikaciju + + Bytes: + - &Options... - &Opcije... + + Amount: + - &Change Passphrase... - &Izmeni pristupnu frazu... + + Dust: + - &Sending addresses... - &Slanje adresa... + + Fee: + - &Receiving addresses... - &Primanje adresa... + + After Fee: + - Open &URI... - Otvori &URI... + + Change: + - Send coins to a Raven address - Pošalji novčiće na Raven adresu + + (un)select all + - &Verify message... - &Proveri poruku... + + Tree mode + - Raven - Raven + + List mode + - Wallet - Novčanik + + View assets that you have the ownership asset for + - &Send - &Pošalji + + View Administrator Assets + - &Receive - &Primi + + Asset + - &Show / Hide - &Prikazati / Sakriti + + Amount + - Show or hide the main Window - Prikaži ili sakrij glavni prozor + + Received with label + - &Settings - &Podešavanja + + Received with address + - &Help - &Pomoć + + Date + - Error - Greska + + Confirmations + - Warning - Upozorenje + + Confirmed + - Information - Informacije + + Copy address + - %1 client - %1 klijent + + Copy label + - Date: %1 - - Datum: %1 - + + + Copy amount + - Amount: %1 - - Iznos: %1 - + + Copy transaction ID + - Type: %1 - - Tip: %1 - + + Lock unspent + - Label: %1 - - Oznaka: %1 - + + Unlock unspent + - Address: %1 - - Adresa: %1 - + + Copy quantity + - - - CoinControlDialog - Quantity: - Količina: + + Copy fee + - Amount: - Iznos: + + Copy after fee + - Fee: - Naknada: + + Copy bytes + - After Fee: - Nakon Naknade: + + Copy dust + - Amount - Kolicina + + Copy change + - Date - Datum + + (%1 locked) + - - - EditAddressDialog - Edit Address - Izmeni Adresu + + yes + - &Label - &Oznaka + + no + - &Address - &Adresa + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - Greska + + Can vary +/- %1 satoshi(s) per input. + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - Kolicina + + + (no label) + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - + + + change from %1 (%2) + + + + + (change) + + + - RecentRequestsTableModel - + AssetTableModel + + + Name + + + + + Quantity + + + - SendCoinsDialog + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + Quantity: - Količina: + + + + + Bytes: + + Amount: - Iznos: + + + + + Dust: + + Fee: - Naknada: + + After Fee: - Nakon Naknade: + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Raven Core - Raven Core + + Change: + - Information - Informacije + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Warning - Upozorenje + + Custom change address + - Insufficient funds - Nedovoljno sredstava + + Transaction Fee: + - Loading block index... - Ucitavanje indeksa bloka... + + Choose... + - Add a node to connect to and attempt to keep the connection open - Dodajte cvor za povezivanje, da bi pokusali da odrzite vezu otvorenom + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Loading wallet... - Ucitavanje novcanika... + + Warning: Fee estimation is currently not possible. + - Cannot write default address - Nije moguce ispisivanje podrazumevane adrese + + collapse fee-settings + - Rescanning... - Ponovno skeniranje... + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Banovani ste do + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Količina: + + + + Bytes: + + + + + Amount: + Iznos: + + + + Fee: + Naknada: + + + + Dust: + + + + + After Fee: + Nakon Naknade: + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Kolicina + + + + Received with label + + + + + Received with address + + + + + Date + Datum + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Izmeni Adresu + + + + &Label + &Oznaka + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + &Adresa + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Greska + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Kolicina + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + Usklađivanje sa mrežom... + + + + &Overview + &Pregled + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + Isključi aplikaciju + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + &Opcije... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + &Izmeni pristupnu frazu... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Slanje adresa... + + + + &Receiving addresses... + &Primanje adresa... + + + + Open &URI... + Otvori &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + Pošalji novčiće na Raven adresu + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + &Proveri poruku... + + + + Raven + Raven + + + + Wallet + Novčanik + + + + &Send + &Pošalji + + + + &Receive + &Primi + + + + &Show / Hide + &Prikazati / Sakriti + + + + Show or hide the main Window + Prikaži ili sakrij glavni prozor + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + &Pomoć + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + Greska + + + + Warning + Upozorenje + + + + Information + Informacije + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + %1 klijent + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Iznos: %1 + + + + + Type: %1 + + Tip: %1 + + + + + Label: %1 + + Oznaka: %1 + + + + + Address: %1 + + Adresa: %1 + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + Količina: + + + + Bytes: + + + + + Amount: + Iznos: + + + + Fee: + Naknada: + + + + After Fee: + Nakon Naknade: + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + Informacije + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + Upozorenje + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - Done loading - Zavrseno ucitavanje + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + Nedovoljno sredstava + + + + Loading block index... + Ucitavanje indeksa bloka... + + + + Loading wallet... + Ucitavanje novcanika... + + + + Cannot downgrade wallet + + + + + Rescanning... + Ponovno skeniranje... + Error Greska diff --git a/src/qt/locale/raven_sv.ts b/src/qt/locale/raven_sv.ts index c7d135979d..8eb625a32c 100644 --- a/src/qt/locale/raven_sv.ts +++ b/src/qt/locale/raven_sv.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Högerklicka för att ändra adressen eller etiketten + Create a new address Skapa ny adress + &New &Ny + Copy the currently selected address to the system clipboard Kopiera den markerade adressen till systemets Urklipp + &Copy &Kopiera + C&lose S&täng + Delete the currently selected address from the list Ta bort den valda adressen från listan + Export the data in the current tab to a file Exportera informationen i den nuvarande fliken till en fil + &Export &Exportera + &Delete &Radera + Choose the address to send coins to Välj en adress att sända betalning till + Choose the address to receive coins with Välj en adress att ta emot betalning till + C&hoose V&älj + Sending addresses Avsändaradresser + Receiving addresses Mottagaradresser + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Detta är dina Raven adresser för att skicka betalningar. Kolla alltid summan och den mottagande adressen innan du skickar Ravens. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Detta är dina Raven adresser för att ta emot betalningar. Det rekommenderas att använda en ny mottagningsadress för varje transaktion. + &Copy Address &Kopiera adress + Copy &Label Kopiera &etikett + &Edit &Redigera + Export Address List Exportera adresslista + Comma separated file (*.csv) Kommaseparerad fil (*.csv) + Exporting Failed Export misslyckades + There was an error trying to save the address list to %1. Please try again. Det inträffade ett fel när adresslistan skulle sparas till %1. Var vänlig och försök igen. @@ -104,14 +126,17 @@ Var vänlig och försök igen. AddressTableModel + Label Etikett + Address Adress + (no label) (Ingen etikett) @@ -119,2087 +144,5354 @@ Var vänlig och försök igen. AskPassphraseDialog + Passphrase Dialog Lösenordsdialog + Enter passphrase Ange lösenord + New passphrase Nytt lösenord + Repeat new passphrase Upprepa nytt lösenord + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Ange plånbokens nya lösenord. <br/> Använd ett lösenord på <b>tio eller fler slumpmässiga tecken,</b> eller <b>åtta eller fler ord.</b>. + Encrypt wallet Kryptera plånbok + This operation needs your wallet passphrase to unlock the wallet. Denna operation behöver din plånboks lösenord för att låsa upp plånboken. + Unlock wallet Lås upp plånbok + This operation needs your wallet passphrase to decrypt the wallet. Denna operation behöver din plånboks lösenord för att dekryptera plånboken. + Decrypt wallet Dekryptera plånbok + Change passphrase Ändra lösenord + Enter the old passphrase and new passphrase to the wallet. Ge det gamla lösenordet och det nya lösenordet för plånboken. + Confirm wallet encryption Bekräfta kryptering av plånbok + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! VARNING: Om du krypterar din plånbok och glömmer ditt lösenord, kommer du att <b>FÖRLORA ALLA DINA RAVEN</b>! + Are you sure you wish to encrypt your wallet? Är du säker på att du vill kryptera din plånbok? + + Wallet encrypted Plånbok krypterad + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 kommer nu att stänga ner för att färdigställa krypteringen. Tänk på att en krypterad plånbok inte skyddar mot stöld om din dator är infekterad med en keylogger. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. VIKTIGT: Alla tidigare säkerhetskopior du har gjort av plånboksfilen ska ersättas med den nya genererade, krypterade plånboksfilen. Av säkerhetsskäl kommer tidigare säkerhetskopior av den okrypterade plånboksfilen blir oanvändbara när du börjar använda en ny, krypterad plånbok. + + + + Wallet encryption failed Kryptering av plånbok misslyckades + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Kryptering av plånbok misslyckades på grund av ett internt fel. Din plånbok blev inte krypterad. + + The supplied passphrases do not match. De angivna lösenorden överensstämmer inte. + Wallet unlock failed Misslyckades låsa upp plånboken + + + The passphrase entered for the wallet decryption was incorrect. Lösenordet för dekryptering av plånboken var felaktig. + Wallet decryption failed Dekryptering av plånbok misslyckades + Wallet passphrase was successfully changed. Plånbokens lösenord har ändrats. + + Warning: The Caps Lock key is on! Varning: Caps Lock är påslaget! - BanTableModel + AssetControlDialog - IP/Netmask - IP/nätmask + + Asset Selection + - Banned Until - Bannad tills + + Quantity: + - - - RavenGUI - Sign &message... - Signera &meddelande... + + Bytes: + - Synchronizing with network... - Synkroniserar med nätverk... + + Amount: + - &Overview - &Översikt + + Dust: + - Node - Nod + + Fee: + - Show general overview of wallet - Visa generell översikt av plånboken + + After Fee: + - &Transactions - &Transaktioner + + Change: + - Browse transaction history - Bläddra i transaktionshistorik + + (un)select all + - E&xit - &Avsluta + + Tree mode + - Quit application - Avsluta programmet + + List mode + - &About %1 - &Om %1 + + View assets that you have the ownership asset for + - Show information about %1 - Visa information om %1 + + View Administrator Assets + - About &Qt - Om &Qt + + Asset + - Show information about Qt - Visa information om Qt + + Amount + - &Options... - &Alternativ... + + Received with label + - Modify configuration options for %1 - Ändra konfigurationsalternativ för %1 + + Received with address + - &Encrypt Wallet... - &Kryptera plånbok... + + Date + - &Backup Wallet... - &Säkerhetskopiera plånbok... + + Confirmations + - &Change Passphrase... - &Byt lösenord... + + Confirmed + - &Sending addresses... - Av&sändaradresser... + + Copy address + - &Receiving addresses... - Mottaga&radresser... + + Copy label + - Open &URI... - Öppna &URI... + + + Copy amount + - Click to disable network activity. - Klicka för att inaktivera nätverksaktivitet. + + Copy transaction ID + - Network activity disabled. - Nätverksaktivitet inaktiverad. + + Lock unspent + - Click to enable network activity again. - Klicka för att aktivera nätverksaktivitet igen. + + Unlock unspent + - Syncing Headers (%1%)... - Synkar huvuden (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Återindexerar block på disken... + + Copy fee + - Send coins to a Raven address - Skicka ravens till en Raven-adress + + Copy after fee + - Backup wallet to another location - Säkerhetskopiera plånboken till en annan plats + + Copy bytes + - Change the passphrase used for wallet encryption - Byt lösenfras för kryptering av plånbok + + Copy dust + - &Debug window - &Debug-fönster + + Copy change + - Open debugging and diagnostic console - Öppna debug- och diagnostikkonsolen + + (%1 locked) + - &Verify message... - &Verifiera meddelande... + + yes + - Raven - Raven + + no + - Wallet - Plånbok + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Skicka + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Ta emot + + + (no label) + - &Show / Hide - &Visa / Göm + + change from %1 (%2) + - Show or hide the main Window - Visa eller göm huvudfönstret + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Kryptera de privata nycklar som tillhör din plånbok + + Name + - Sign messages with your Raven addresses to prove you own them - Signera meddelanden med din Raven-adress för att bevisa att du äger dem + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Verifiera meddelanden för att vara säker på att de var signerade med specificerade Raven-adresser + + + Send Coins + - &File - &Arkiv + + Asset Control Features + - &Settings - &Inställningar + + Inputs... + - &Help - &Hjälp + + automatically selected + - Tabs toolbar - Verktygsfält för tabbar + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Begär betalning (genererar QR-koder och raven-URI) + + Quantity: + - Show the list of used sending addresses and labels - Visa listan av använda avsändaradresser och etiketter + + Bytes: + - Show the list of used receiving addresses and labels - Visa listan av använda mottagningsadresser och etiketter + + Amount: + - Open a raven: URI or payment request - Öppna en raven: URI eller betalningsbegäran + + Dust: + - &Command-line options - &Kommandoradsalternativ - - - %n active connection(s) to Raven network - %n aktiva anslutningar till Raven-nätverket.%n aktiva anslutningar till Raven-nätverket. + + Fee: + - Indexing blocks on disk... - Indexerar block på disken... + + After Fee: + - Processing blocks on disk... - Bearbetar block på disken... + + Change: + - - Processed %n block(s) of transaction history. - Bearbetade %n block av transaktionshistoriken.Bearbetade %n block av transaktionshistoriken. + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - %1 behind - %1 efter + + Custom change address + - Last received block was generated %1 ago. - Senast mottagna block genererades för %1 sen. + + Transaction Fee: + - Transactions after this will not yet be visible. - Transaktioner efter denna kommer inte ännu vara synliga. + + Choose... + - Error - Fel + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Warning - Varning + + Warning: Fee estimation is currently not possible. + - Information - Information + + collapse fee-settings + - Up to date - Uppdaterad + + Hide + - Show the %1 help message to get a list with possible Raven command-line options - Visa %1 hjälpmeddelande för att få en lista med möjliga Raven kommandoradsalternativ. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 client - %1-klient + + per kilobyte + - Connecting to peers... - Ansluter till noder... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Catching up... - Hämtar senaste... + + (read the tooltip) + - Date: %1 - - Datum: %1 - + + Recommended: + - Amount: %1 - - Belopp: %1 - + + Custom: + - Type: %1 - - Typ: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Label: %1 - - Etikett: %1 - + + Confirmation time target: + - Address: %1 - - Adress: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Sent transaction - Transaktion skickad + + Request Replace-By-Fee + - Incoming transaction - Inkommande transaktion + + Confirm the send action + - HD key generation is <b>enabled</b> - HD-nyckelgenerering är <b>aktiverad</b> + + S&end + - HD key generation is <b>disabled</b> - HD-nyckelgenerering är <b>inaktiverad</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> + + Transfer to multiple recipients at once + - A fatal error occurred. Raven can no longer continue safely and will quit. - Ett kritiskt fel uppstod. Raven kan inte fortsätta att köra säkert och kommer att avslutas. + + Add &Recipient + - - - CoinControlDialog - Coin Selection - Myntval + + Balance: + - Quantity: - Kvantitet: + + Copy quantity + - Bytes: - Antal byte: + + Copy amount + - Amount: - Belopp: + + Copy fee + - Fee: - Avgift: + + Copy after fee + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/nätmask + + + + Banned Until + Bannad tills + + + + CoinControlDialog + + + Coin Selection + Myntval + + + + Quantity: + Kvantitet: + + + + Bytes: + Antal byte: + + + + Amount: + Belopp: + + + + Fee: + Avgift: + + + Dust: Damm: + After Fee: Efter avgift: + Change: Växel: + (un)select all (av)markera allt + Tree mode Trädvy + List mode Listvy + Amount Mängd + Received with label Mottagen med etikett + Received with address Mottagen med adress + Date Datum + Confirmations Bekräftelser + Confirmed Bekräftad + Copy address Kopiera adress + Copy label Kopiera etikett + + Copy amount Kopiera belopp + Copy transaction ID Kopiera transaktions-ID + Lock unspent Lås ospenderat + Unlock unspent Lås upp ospenderat + Copy quantity Kopiera kvantitet + Copy fee Kopiera avgift + Copy after fee Kopiera efter avgift + Copy bytes Kopiera byte + Copy dust Kopiera damm + Copy change Kopiera växel + (%1 locked) (%1 låst) + yes ja + no nej + This label turns red if any recipient receives an amount smaller than the current dust threshold. Denna etikett blir röd om någon mottagare får en betalning som är mindre än aktuella dammtröskeln. + Can vary +/- %1 satoshi(s) per input. Kan variera +/- %1 satoshi per inmatning. + + (no label) (Ingen etikett) + change from %1 (%2) växel från %1 (%2) + (change) (växel) - EditAddressDialog + CreateAssetDialog - Edit Address - Redigera adress + + Coin Control Features + - &Label - &Etikett + + Inputs... + - The label associated with this address list entry - Etiketten associerad med denna adresslistas post + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Adressen associerad med denna adresslistas post. Detta kan bara ändras för sändningsadresser. + + Insufficient funds! + - &Address - &Adress + + + Quantity: + - New receiving address - Ny mottagaradress + + Bytes: + - New sending address - Ny avsändaradress + + Amount: + - Edit receiving address - Redigera mottagaradress + + Dust: + - Edit sending address - Redigera avsändaradress + + Fee: + - The entered address "%1" is not a valid Raven address. - Den angivna adressen "%1" är inte en giltig Raven-adress. + + After Fee: + - The entered address "%1" is already in the address book. - Den angivna adressen "%1" finns redan i adressboken. + + Change: + - Could not unlock wallet. - Kunde inte låsa upp plånboken. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Misslyckades med generering av ny nyckel. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - En ny datakatalog kommer att skapas. + + Name: + - name - namn + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Katalogen finns redan. Lägg till %1 om du vill skapa en ny katalog här. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Sökvägen finns redan, och är inte en katalog. + + Check Availabilty + - Cannot create data directory here. - Kan inte skapa datakatalog här. + + Address: + - - - HelpMessageDialog - version - version + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-bit) + + Verifier String: + - About %1 - Om %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Kommandoradsalternativ + + Warning: + - Usage: - Användning: + + The number of assets that will be created + - command-line options - kommandoradsalternativ + + Units: + - UI Options: - UI-inställningar: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Välj datakatalog vid uppstart (standard: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Ange språk, till exempel "de_DE" (standard: systemspråk) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Starta minimerad + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Ange SSL rotcertifikat för betalningsansökan (standard: -system-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Visa startbild vid uppstart (standard: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Återställ alla inställningar som gjorts i GUI + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Välkommen + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Välkommen till %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Eftersom detta är första gången programmet startas får du välja var %1 skall lagra sitt data. + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 kommer att ladda ner och spara en kopia av Raven blockkedjan. Åtminstone %2GB av data kommer att sparas i denna katalog, och den kommer att växa över tiden. Plånboken kommer också att sparas i denna katalog. + + Choose... + - Use the default data directory - Använd den förvalda datakatalogen + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - Använd en anpassad datakatalog: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - Fel: Den angivna datakatalogen "%1" kan inte skapas. + + collapse fee-settings + - Error - Fel + + Hide + - - %n GB of free space available - %n GB fritt utrymme kvar%n GB fritt utrymme kvar + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - (of %n GB needed) - (av %n GB behövs)(av %n GB behövs) + + + per kilobyte + - - - ModalOverlay - Form - Formulär + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Nyligen gjorda transaktioner visas inte korrekt och därför kan ditt din plånboks saldo visas felaktigt. Denna information kommer att visas korrekt så snart din plånbok har synkroniserat klart med raven nätverket, enligt detaljer nedan. + + (read the tooltip) + - Number of blocks left - Antal block kvar + + Recommended: + - Unknown... - Okänt... + + C&ustom: + - Last block time - Sista blocktid + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - Förlopp + + Confirmation time target: + - Progress increase per hour - Framstegssökning per timme + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - beräknar... + + Request Replace-By-Fee + - Estimated time left until synced - Beräknad tid kvar tills synkroniserad + + Create Asset + - Hide - Göm + + Clear + - Unknown. Syncing Headers (%1)... - Okänd. Synkar huvuden (%1)... + + Balance: + - - - OpenURIDialog - Open URI - Öppna URI + + 123.456 RVN + - Open payment request from URI or file - Öppna betalningsbegäran från URI eller fil + + Copy quantity + - URI: - URI: + + Copy amount + - Select payment request file - Välj betalningsbegäransfil + + Copy fee + - Select payment request file to open - Välj betalningsförfrågningsfil som ska öppnas + + Copy after fee + - - - OptionsDialog - Options - Alternativ + + Copy bytes + - &Main - &Allmänt + + Copy dust + - Automatically start %1 after logging in to the system. - Starta %1 automatiskt efter inloggningen. + + Copy change + - &Start %1 on system login - &Starta %1 vid systemlogin + + %1 (%2 blocks) + - Size of &database cache - Storleken på &databascache + + Main Asset + - MB - MB + + Sub Asset + - Number of script &verification threads - Antalet skript&verifikationstrådar + + Unique Asset + - Accept connections from outside - Acceptera anslutningar utifrån + + Messaging Channel Asset + - Allow incoming connections - Acceptera inkommande anslutningar + + Qualifier Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Proxyns IP-adress (t.ex. IPv4: 127.0.0.1 / IPv6: ::1) + + Sub Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Minimera istället för att stänga programmet när fönstret stängs. När detta alternativ är aktiverat stängs programmet endast genom att välja Stäng i menyn. + + Restricted Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Tredjeparts URL:er (t.ex. en blockutforskare) som finns i transaktionstabben som ett menyval i sammanhanget. %s i URL:en ersätts med tansaktionshashen. Flera URL:er är separerade med vertikala streck |. + + Asset Type + - Third party transaction URLs - Tredjeparts transaktions-URL:er + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Active command-line options that override above options: - Aktiva kommandoradsalternativ som ersätter alternativen ovan: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Reset all client options to default. - Återställ alla klientinställningar till förvalen. + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Reset Options - &Återställ alternativ + + + + Warning: Invalid Raven address + - &Network - &Nätverk + + Warning: Restricted Assets Reissuance requires an address + - (0 = auto, <0 = leave that many cores free) - (0 = auto, <0 = lämna så många kärnor lediga) + + Valid Asset + - W&allet - &Plånbok + + Invalid: Asset name already in use + - Expert - Expert + + Error: Asset Database not in sync + - Enable coin &control features - Aktivera mynt&kontrollfunktioner + + + %1 to %2 + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Om du avaktiverar betalning med obekräftad växel, kan inte växeln från en transaktion användas förrän den transaktionen har minst en bekräftelse. + + Are you sure you want to send? + - &Spend unconfirmed change - &Spendera obekräftad växel + + added as transaction fee + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Öppna automatiskt Raven-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. + + Total Amount %1 + - Map port using &UPnP - Tilldela port med hjälp av &UPnP + + or + - Connect to the Raven network through a SOCKS5 proxy. - Anslut till Raven-nätverket genom en SOCKS5-proxy. + + Confirm send assets + - &Connect through SOCKS5 proxy (default proxy): - &Anslut genom SOCKS5-proxy (förvald proxy): + + Invalid: + - Proxy &IP: - Proxy-&IP: + + Copy + - &Port: - &Port: + + Transaction ID Copied + - Port of the proxy (e.g. 9050) - Proxyns port (t.ex. 9050) + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Used for reaching peers via: - Används för att nå noder via: + + Warning: Unknown change address + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Visas, om den angivna standard-SOCKS5-proxyn används för att nå noder via den här nätverkstypen. + + Confirm custom change address + - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - IPv6 - IPv6 + + (no label) + - Tor - Tor + + Pay only the required fee of %1 + + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Anslut till Raven-nätverket genom en separat SOCKS5-proxy för dolda tjänster i Tor. + + Edit Address + Redigera adress - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Använd separat SOCKS5-proxy för att nå noder via dolda tjänster i Tor: + + &Label + &Etikett - &Window - &Fönster + + The label associated with this address list entry + Etiketten associerad med denna adresslistas post - &Hide the icon from the system tray. - &Göm ikonen från systemfältet. + + The address associated with this address list entry. This can only be modified for sending addresses. + Adressen associerad med denna adresslistas post. Detta kan bara ändras för sändningsadresser. - Hide tray icon - Göm systemfältsikonen + + &Address + &Adress - Show only a tray icon after minimizing the window. - Visa endast en systemfältsikon vid minimering. + + New receiving address + Ny mottagaradress - &Minimize to the tray instead of the taskbar - &Minimera till systemfältet istället för aktivitetsfältet + + New sending address + Ny avsändaradress - M&inimize on close - M&inimera vid stängning + + Edit receiving address + Redigera mottagaradress - &Display - &Visa + + Edit sending address + Redigera avsändaradress - User Interface &language: - Användargränssnittets &språk: + + The entered address "%1" is not a valid Raven address. + Den angivna adressen "%1" är inte en giltig Raven-adress. - The user interface language can be set here. This setting will take effect after restarting %1. - Användargränssnittets språk kan ställas in här. Denna inställning träder i kraft efter en omstart av %1. + + The entered address "%1" is already in the address book. + Den angivna adressen "%1" finns redan i adressboken. - &Unit to show amounts in: - &Måttenhet att visa belopp i: + + Could not unlock wallet. + Kunde inte låsa upp plånboken. - Choose the default subdivision unit to show in the interface and when sending coins. - Välj en måttenhet att visa i gränssnittet och när du skickar mynt. + + New key generation failed. + Misslyckades med generering av ny nyckel. + + + FreespaceChecker - Whether to show coin control features or not. - Om myntkontrollfunktioner skall visas eller inte + + A new data directory will be created. + En ny datakatalog kommer att skapas. - &OK - &OK + + name + namn - &Cancel - &Avbryt + + Directory already exists. Add %1 if you intend to create a new directory here. + Katalogen finns redan. Lägg till %1 om du vill skapa en ny katalog här. - default - standard + + Path already exists, and is not a directory. + Sökvägen finns redan, och är inte en katalog. - none - ingen + + Cannot create data directory here. + Kan inte skapa datakatalog här. + + + FreezeAddress - Confirm options reset - Bekräfta att alternativen ska återställs + + Frame + - Client restart required to activate changes. - Klientomstart är nödvändig för att aktivera ändringarna. + + Restricted Asset: + - Client will be shut down. Do you want to proceed? - Programmet kommer att stängas. Vill du fortsätta? + + Address: + - This change would require a client restart. - Denna ändring kräver en klientomstart. + + Custom Change Address + - The supplied proxy address is invalid. - Den angivna proxy-adressen är ogiltig. + + IPFS / Hash: + - - - OverviewPage - Form - Formulär + + Single Address Options + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Raven-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu. + + Global Options + - Watch-only: - Granska-bara: + + Free&ze trading on this address + - Available: - Tillgängligt: + + Unfreeze tradin&g on this address + - Your current spendable balance - Ditt tillgängliga saldo + + Freeze all &trading for the selected restricted asset + - Pending: - Pågående: + + &Unfreeze all trading for the selected restricted asset + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Totalt antal transaktioner som ännu inte bekräftats, och som ännu inte räknas med i aktuellt saldo + + Check + - Immature: - Omogen: + + Clear + - Mined balance that has not yet matured - Den genererade balansen som ännu inte har mognat + + Submit + - Balances - Balanser + + Data has been validated, You can now submit the restriction transaction + - Total: - Totalt: + + Must have a restricted asset selected + - Your current total balance - Ditt nuvarande totala saldo + + Address is already frozen + - Your current balance in watch-only addresses - Ditt nuvarande saldo i granska-bara adresser + + Address is not frozen + - Spendable: - Spenderbar: + + Restricted asset is already frozen globally + - Recent transactions - Nyligen genomförda transaktioner + + Restricted asset is not frozen globally + - Unconfirmed transactions to watch-only addresses - Okonfirmerade transaktioner till granska-bara adresser + + Unable to preform action at this time + + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Den genererade balansen i granska-bara adresser som ännu inte har mognat + + Warning: transaction while syncing wallet! + - Current total balance in watch-only addresses - Nuvarande total balans i granska-bara adresser + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + - PaymentServer + HelpMessageDialog - Payment request error - Fel vid betalningsbegäran + + version + version - Cannot start raven: click-to-pay handler - Kan inte starta raven: klicka-och-betala handhavare + + + (%1-bit) + (%1-bit) - URI handling - URI-hantering + + About %1 + Om %1 - Payment request fetch URL is invalid: %1 - Hämtningsadressen för betalningsförfrågan är ogiltig: %1 + + Command-line options + Kommandoradsalternativ - Invalid payment address %1 - Ogiltig betalningsadress %1 + + Usage: + Användning: + + command-line options + kommandoradsalternativ + + + + UI Options: + UI-inställningar: + + + + Choose data directory on startup (default: %u) + Välj datakatalog vid uppstart (standard: %u) + + + + Set language, for example "de_DE" (default: system locale) + Ange språk, till exempel "de_DE" (standard: systemspråk) + + + + Start minimized + Starta minimerad + + + + Set SSL root certificates for payment request (default: -system-) + Ange SSL rotcertifikat för betalningsansökan (standard: -system-) + + + + Show splash screen on startup (default: %u) + Visa startbild vid uppstart (standard: %u) + + + + Reset all settings changed in the GUI + Återställ alla inställningar som gjorts i GUI + + + + Intro + + + Welcome + Välkommen + + + + Welcome to %1. + Välkommen till %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Eftersom detta är första gången programmet startas får du välja var %1 skall lagra sitt data. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Använd den förvalda datakatalogen + + + + Use a custom data directory: + Använd en anpassad datakatalog: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Fel: Den angivna datakatalogen "%1" kan inte skapas. + + + + Error + Fel + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Formulär + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Nyligen gjorda transaktioner visas inte korrekt och därför kan ditt din plånboks saldo visas felaktigt. Denna information kommer att visas korrekt så snart din plånbok har synkroniserat klart med raven nätverket, enligt detaljer nedan. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + Antal block kvar + + + + + + Unknown... + Okänt... + + + + Last block time + Sista blocktid + + + + Progress + Förlopp + + + + Progress increase per hour + Framstegssökning per timme + + + + + calculating... + beräknar... + + + + Estimated time left until synced + Beräknad tid kvar tills synkroniserad + + + + Hide + Göm + + + + Unknown. Syncing Headers (%1)... + Okänd. Synkar huvuden (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Öppna URI + + + + Open payment request from URI or file + Öppna betalningsbegäran från URI eller fil + + + + URI: + URI: + + + + Select payment request file + Välj betalningsbegäransfil + + + + Select payment request file to open + Välj betalningsförfrågningsfil som ska öppnas + + + + OptionsDialog + + + Options + Alternativ + + + + &Main + &Allmänt + + + + Automatically start %1 after logging in to the system. + Starta %1 automatiskt efter inloggningen. + + + + &Start %1 on system login + &Starta %1 vid systemlogin + + + + Size of &database cache + Storleken på &databascache + + + + MB + MB + + + + Number of script &verification threads + Antalet skript&verifikationstrådar + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Proxyns IP-adress (t.ex. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Minimera istället för att stänga programmet när fönstret stängs. När detta alternativ är aktiverat stängs programmet endast genom att välja Stäng i menyn. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Tredjeparts URL:er (t.ex. en blockutforskare) som finns i transaktionstabben som ett menyval i sammanhanget. %s i URL:en ersätts med tansaktionshashen. Flera URL:er är separerade med vertikala streck |. + + + + Active command-line options that override above options: + Aktiva kommandoradsalternativ som ersätter alternativen ovan: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Återställ alla klientinställningar till förvalen. + + + + &Reset Options + &Återställ alternativ + + + + &Network + &Nätverk + + + + (0 = auto, <0 = leave that many cores free) + (0 = auto, <0 = lämna så många kärnor lediga) + + + + W&allet + &Plånbok + + + + Expert + Expert + + + + Enable coin &control features + Aktivera mynt&kontrollfunktioner + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Om du avaktiverar betalning med obekräftad växel, kan inte växeln från en transaktion användas förrän den transaktionen har minst en bekräftelse. + + + + &Spend unconfirmed change + &Spendera obekräftad växel + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Öppna automatiskt Raven-klientens port på routern. Detta fungerar endast om din router har UPnP aktiverat. + + + + Map port using &UPnP + Tilldela port med hjälp av &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Anslut till Raven-nätverket genom en SOCKS5-proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + &Anslut genom SOCKS5-proxy (förvald proxy): + + + + + Proxy &IP: + Proxy-&IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Proxyns port (t.ex. 9050) + + + + Used for reaching peers via: + Används för att nå noder via: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Anslut till Raven-nätverket genom en separat SOCKS5-proxy för dolda tjänster i Tor. + + + + &Window + &Fönster + + + + Show only a tray icon after minimizing the window. + Visa endast en systemfältsikon vid minimering. + + + + &Minimize to the tray instead of the taskbar + &Minimera till systemfältet istället för aktivitetsfältet + + + + M&inimize on close + M&inimera vid stängning + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Visa + + + + User Interface &language: + Användargränssnittets &språk: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Användargränssnittets språk kan ställas in här. Denna inställning träder i kraft efter en omstart av %1. + + + + &Unit to show amounts in: + &Måttenhet att visa belopp i: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Välj en måttenhet att visa i gränssnittet och när du skickar mynt. + + + + Whether to show coin control features or not. + Om myntkontrollfunktioner skall visas eller inte + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Avbryt + + + + default + standard + + + + none + ingen + + + + Confirm options reset + Bekräfta att alternativen ska återställs + + + + + Client restart required to activate changes. + Klientomstart är nödvändig för att aktivera ändringarna. + + + + Client will be shut down. Do you want to proceed? + Programmet kommer att stängas. Vill du fortsätta? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Denna ändring kräver en klientomstart. + + + + The supplied proxy address is invalid. + Den angivna proxy-adressen är ogiltig. + + + + OverviewPage + + + Form + Formulär + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Den visade informationen kan vara inaktuell. Plånboken synkroniseras automatiskt med Raven-nätverket efter att anslutningen är upprättad, men denna process har inte slutförts ännu. + + + + Watch-only: + Granska-bara: + + + + Available: + Tillgängligt: + + + + Your current spendable balance + Ditt tillgängliga saldo + + + + Pending: + Pågående: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Totalt antal transaktioner som ännu inte bekräftats, och som ännu inte räknas med i aktuellt saldo + + + + Immature: + Omogen: + + + + Mined balance that has not yet matured + Den genererade balansen som ännu inte har mognat + + + + Total: + Totalt: + + + + Your current total balance + Ditt nuvarande totala saldo + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Ditt nuvarande saldo i granska-bara adresser + + + + Spendable: + Spenderbar: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Nyligen genomförda transaktioner + + + + Unconfirmed transactions to watch-only addresses + Okonfirmerade transaktioner till granska-bara adresser + + + + Mined balance in watch-only addresses that has not yet matured + Den genererade balansen i granska-bara adresser som ännu inte har mognat + + + + Current total balance in watch-only addresses + Nuvarande total balans i granska-bara adresser + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Fel vid betalningsbegäran + + + + Cannot start raven: click-to-pay handler + Kan inte starta raven: klicka-och-betala handhavare + + + + + + URI handling + URI-hantering + + + + Payment request fetch URL is invalid: %1 + Hämtningsadressen för betalningsförfrågan är ogiltig: %1 + + + + Invalid payment address %1 + Ogiltig betalningsadress %1 + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. URI kan inte tolkas! Detta kan orsakas av en ogiltig Raven-adress eller felaktiga URI parametrar. - Payment request file handling - Hantering av betalningsförfrågningsfil + + Payment request file handling + Hantering av betalningsförfrågningsfil + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Betalningsförfrågningsfilen kan inte läsas! Detta kan orsakas av en felaktig betalningsförfrågnigsfil. + + + + + + + + + Payment request rejected + Betalningsbegäran avslogs + + + + Payment request network doesn't match client network. + Betalningsbegärans nätverk matchar inte klientens nätverk. + + + + Payment request expired. + Betalningsbegäran löpte ut. + + + + Payment request is not initialized. + Betalningsbegäran är inte initierad. + + + + Unverified payment requests to custom payment scripts are unsupported. + Overifierade betalningsförfrågningar till anpassade betalningsskript stöds inte. + + + + + Invalid payment request. + Ogiltig betalningsbegäran. + + + + Requested payment amount of %1 is too small (considered dust). + Begärd betalning av %1 är för liten (betraktas som damm). + + + + Refund from %1 + Återbetalning från %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + Betalningsbegäran %1 är för stor (%2 bytes, tillåten %3 bytes). + + + + Error communicating with %1: %2 + Kommunikationsfel med %1: %2 + + + + Payment request cannot be parsed! + Betalningsbegäran kan inte behandlas! + + + + Bad response from server %1 + Felaktigt svar från server %1 + + + + Network request error + Fel vid närverksbegäran + + + + Payment acknowledged + Betalningen bekräftad + + + + PeerTableModel + + + User Agent + Användaragent + + + + Node/Service + Nod/Tjänst + + + + NodeId + + + + + Ping + Ping + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Mängd + + + + Enter a Raven address (e.g. %1) + Ange en Raven-adress (t.ex. %1) + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + %1 m + + + + + %1 s + %1 s + + + + None + Ingen + + + + N/A + ej tillgänglig + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 och %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 avslutades inte ännu säkert... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Fel: Den angivna datakatalogen "%1" finns inte. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Fel: Kan inte läsa konfigurationsfilen: %1. Använd bara nyckel=värde formatet. + + + + Error: %1 + Fel: %1 + + + + QRImageWidget + + + &Save Image... + &Spara Bild... + + + + &Copy Image + &Kopiera Bild + + + + Save QR Code + Spara QR-kod + + + + PNG Image (*.png) + PNG-bild (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + ej tillgänglig + + + + Client version + Klient-version + + + + &Information + &Information + + + + Debug window + Debug fönster + + + + General + Generell + + + + Using BerkeleyDB version + Använder BerkeleyDB versionen + + + + Datadir + Datakatalog + + + + Startup time + Uppstartstid + + + + Network + Nätverk + + + + Name + Namn + + + + Number of connections + Antalet anslutningar + + + + Block chain + Blockkedja + + + + Current number of blocks + Aktuellt antal block + + + + Memory Pool + Minnespool + + + + Current number of transactions + Nuvarande antal transaktioner + + + + Memory usage + Minnesåtgång + + + + &Reset + + + + + + Received + Mottagen + + + + + Sent + Skickad + + + + &Peers + &Klienter + + + + Banned peers + Bannade noder + + + + + + Select a peer to view detailed information. + Välj en klient för att se detaljerad information. + + + + Whitelisted + Vitlistad + + + + Direction + Riktning + + + + Version + Version + + + + Starting Block + Startblock + + + + Synced Headers + Synkade huvuden + + + + Synced Blocks + Synkade block + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Användaragent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Öppna %1 debug-loggfilen från aktuell datakatalog. Detta kan ta några sekunder för stora loggfiler. + + + + Decrease font size + Minska fontstorleken + + + + Increase font size + Öka fontstorleken + + + + Services + Tjänster + + + + Ban Score + Banpoäng + + + + Connection Time + Anslutningstid + + + + Last Send + Senast sänt + + + + Last Receive + Senast mottagen + + + + Ping Time + Pingtid + + + + The duration of a currently outstanding ping. + Tidsåtgången för en nuvarande utestående ping. + + + + Ping Wait + Pingväntetid + + + + Min Ping + + + + + Time Offset + Tidsförskjutning + + + + Last block time + Sista blocktid + + + + &Open + &Öppna + + + + &Console + &Konsol + + + + &Network Traffic + &Nätverkstrafik + + + + Totals + Totalt: + + + + In: + In: + + + + Out: + Ut: + + + + Debug log file + Debugloggfil + + + + Clear console + Rensa konsollen + + + + 1 &hour + 1 &timme + + + + 1 &day + 1 &dag + + + + 1 &week + 1 &vecka + + + + 1 &year + 1 &år + + + + &Disconnect + &Koppla ner + + + + + + + Ban for + Blockera i + + + + &Unban + &Ta bort blockering + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + Välkommen till %1 RPC-konsolen. + + + + Type <b>help</b> for an overview of available commands. + Skriv <b>help</b> för en översikt av alla kommandon. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Nätverksaktivitet inaktiverad + + + + (node id: %1) + (nod-id: %1) + + + + via %1 + via %1 + + + + + never + aldrig + + + + Inbound + Inkommande + + + + Outbound + Utgående + + + + Yes + Ja + + + + No + Nej + + + + + Unknown + Okänd + + + + RavenGUI + + + Sign &message... + Signera &meddelande... + + + + Synchronizing with network... + Synkroniserar med nätverk... + + + + &Overview + &Översikt + + + + Node + Nod + + + + Show general overview of wallet + Visa generell översikt av plånboken + + + + &Transactions + &Transaktioner + + + + Browse transaction history + Bläddra i transaktionshistorik + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Avsluta + + + + Quit application + Avsluta programmet + + + + &About %1 + &Om %1 + + + + Show information about %1 + Visa information om %1 + + + + About &Qt + Om &Qt + + + + Show information about Qt + Visa information om Qt + + + + &Options... + &Alternativ... + + + + Modify configuration options for %1 + Ändra konfigurationsalternativ för %1 + + + + &Encrypt Wallet... + &Kryptera plånbok... + + + + &Backup Wallet... + &Säkerhetskopiera plånbok... + + + + &Change Passphrase... + &Byt lösenord... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Av&sändaradresser... + + + + &Receiving addresses... + Mottaga&radresser... + + + + Open &URI... + Öppna &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Klicka för att inaktivera nätverksaktivitet. + + + + Network activity disabled. + Nätverksaktivitet inaktiverad. + + + + Click to enable network activity again. + Klicka för att aktivera nätverksaktivitet igen. + + + + Syncing Headers (%1%)... + Synkar huvuden (%1%)... + + + + Reindexing blocks on disk... + Återindexerar block på disken... + + + + Send coins to a Raven address + Skicka ravens till en Raven-adress + + + + Backup wallet to another location + Säkerhetskopiera plånboken till en annan plats + + + + Change the passphrase used for wallet encryption + Byt lösenfras för kryptering av plånbok + + + + Open debugging and diagnostic console + Öppna debug- och diagnostikkonsolen + + + + &Verify message... + &Verifiera meddelande... + + + + Raven + Raven + + + + Wallet + Plånbok + + + + &Send + &Skicka + + + + &Receive + &Ta emot + + + + &Show / Hide + &Visa / Göm + + + + Show or hide the main Window + Visa eller göm huvudfönstret + + + + Encrypt the private keys that belong to your wallet + Kryptera de privata nycklar som tillhör din plånbok + + + + Sign messages with your Raven addresses to prove you own them + Signera meddelanden med din Raven-adress för att bevisa att du äger dem + + + + Verify messages to ensure they were signed with specified Raven addresses + Verifiera meddelanden för att vara säker på att de var signerade med specificerade Raven-adresser + + + + &File + &Arkiv + + + + &Help + &Hjälp + + + + Request payments (generates QR codes and raven: URIs) + Begär betalning (genererar QR-koder och raven-URI) + + + + Show the list of used sending addresses and labels + Visa listan av använda avsändaradresser och etiketter + + + + Show the list of used receiving addresses and labels + Visa listan av använda mottagningsadresser och etiketter + + + + Open a raven: URI or payment request + Öppna en raven: URI eller betalningsbegäran + + + + &Command-line options + &Kommandoradsalternativ + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Indexerar block på disken... + + + + Processing blocks on disk... + Bearbetar block på disken... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 efter + + + + Last received block was generated %1 ago. + Senast mottagna block genererades för %1 sen. + + + + Transactions after this will not yet be visible. + Transaktioner efter denna kommer inte ännu vara synliga. + + + + Error + Fel + + + + Warning + Varning + + + + Information + Information - Payment request file cannot be read! This can be caused by an invalid payment request file. - Betalningsförfrågningsfilen kan inte läsas! Detta kan orsakas av en felaktig betalningsförfrågnigsfil. + + Up to date + Uppdaterad - Payment request rejected - Betalningsbegäran avslogs + + Show the %1 help message to get a list with possible Raven command-line options + Visa %1 hjälpmeddelande för att få en lista med möjliga Raven kommandoradsalternativ. + + + + %1 client + %1-klient + + + + Connecting to peers... + Ansluter till noder... + + + + Catching up... + Hämtar senaste... + + + + Date: %1 + + Datum: %1 + + + + + + Amount: %1 + + Belopp: %1 + + + + + Type: %1 + + Typ: %1 + + + + + Label: %1 + + Etikett: %1 + + + + + Address: %1 + + Adress: %1 + + + + + Sent transaction + Transaktion skickad + + + + Incoming transaction + Inkommande transaktion + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + HD-nyckelgenerering är <b>aktiverad</b> + + + + HD key generation is <b>disabled</b> + HD-nyckelgenerering är <b>inaktiverad</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Denna plånbok är <b>krypterad</b> och för närvarande <b>olåst</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Denna plånbok är <b>krypterad</b> och för närvarande <b>låst</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ett kritiskt fel uppstod. Raven kan inte fortsätta att köra säkert och kommer att avslutas. + + + + ReceiveCoinsDialog + + + &Amount: + &Belopp: + + + + &Label: + &Etikett: + + + + &Message: + &Meddelande: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Återanvänd en av tidigare använda mottagningsadresser. Återanvändning av adresser har både säkerhets och integritetsbrister. Använd inte samma mottagningsadress om du inte gör om samma betalningsbegäran. + + + + R&euse an existing receiving address (not recommended) + Åt&eranvänd en existerande mottagningsadress (rekommenderas inte) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Ett frivilligt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. NB: Meddelandet kommer inte att sändas med betalningen över Ravennätverket. + + + + + An optional label to associate with the new receiving address. + En frivillig etikett att associera med den nya mottagningsadressen. + + + + Use this form to request payments. All fields are <b>optional</b>. + Använd detta formulär för att begära betalningar. Alla fält är <b>frivilliga</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + En valfri summa att begära. Lämna denna tom eller noll för att inte begära en specifik summa. + + + + Clear all fields of the form. + Rensa alla formulärfälten + + + + Clear + Rensa + + + + Requested payments history + Historik för begärda betalningar + + + + &Request payment + Begä&r betalning + + + + Show the selected request (does the same as double clicking an entry) + Visa valda begäranden (gör samma som att dubbelklicka på en post) + + + + Show + Visa + + + + Remove the selected entries from the list + Ta bort valda poster från listan + + + + Remove + Ta bort + + + + Copy URI + Kopiera URI + + + + Copy label + Kopiera etikett + + + + Copy message + Kopiera meddelande + + + + Copy amount + Kopiera belopp + + + + ReceiveRequestDialog + + + QR Code + QR-kod + + + + Copy &URI + Kopiera &URI + + + + Copy &Address + Kopiera &Adress + + + + &Save Image... + &Spara Bild... + + + + Request payment to %1 + Begär betalning till %1 + + + + Payment information + Betalinformaton + + + + URI + URI + + + + Address + Adress + + + + Amount + Belopp: + + + + Label + Etikett + + + + Message + Meddelande + + + + Resulting URI too long, try to reduce the text for label / message. + URI:n är för lång, försöka minska texten för etikett / meddelande. + + + + Error encoding URI into QR Code. + Fel vid skapande av QR-kod från URI. + + + + RecentRequestsTableModel + + + Date + Datum + + + + Label + Etikett + + + + Message + Meddelande + + + + (no label) + (Ingen etikett) + + + + (no message) + (inget meddelande) + + + + (no amount requested) + (ingen summa begärd) - Payment request network doesn't match client network. - Betalningsbegärans nätverk matchar inte klientens nätverk. + + Requested + Begärd + + + ReissueAssetDialog - Payment request expired. - Betalningsbegäran löpte ut. + + Coin Control Features + - Payment request is not initialized. - Betalningsbegäran är inte initierad. + + Inputs... + - Unverified payment requests to custom payment scripts are unsupported. - Overifierade betalningsförfrågningar till anpassade betalningsskript stöds inte. + + automatically selected + - Invalid payment request. - Ogiltig betalningsbegäran. + + Insufficient funds! + - Requested payment amount of %1 is too small (considered dust). - Begärd betalning av %1 är för liten (betraktas som damm). + + + Quantity: + - Refund from %1 - Återbetalning från %1 + + Bytes: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - Betalningsbegäran %1 är för stor (%2 bytes, tillåten %3 bytes). + + Amount: + - Error communicating with %1: %2 - Kommunikationsfel med %1: %2 + + Dust: + - Payment request cannot be parsed! - Betalningsbegäran kan inte behandlas! + + Fee: + - Bad response from server %1 - Felaktigt svar från server %1 + + After Fee: + - Network request error - Fel vid närverksbegäran + + Change: + - Payment acknowledged - Betalningen bekräftad + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - PeerTableModel - User Agent - Användaragent + + Custom change address + - Node/Service - Nod/Tjänst + + + Reissue Asset + - Ping - Ping + + Select an asset to reissue: + - - - QObject - Amount - Mängd + + Address: + - Enter a Raven address (e.g. %1) - Ange en Raven-adress (t.ex. %1) + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - %1 d - %1 d + + Verifier String: + - %1 h - %1 h + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 m - %1 m + + Warning: + - %1 s - %1 s + + The number of assets that will be created + - None - Ingen + + Unit: + - N/A - ej tillgänglig + + e.g. 1.00000000 + - %1 ms - %1 ms + + If the owner of this asset will be able to issue more assets in the future + - - %n second(s) - %n sekund%n sekunder + + + Reissuable + - - %n minute(s) - %n minut%n minuter + + + Change IPFS/Txid Hash + - - %n hour(s) - %n timme%n timmar + + + The ipfs/txid hash that contains information about the asset + - - %n day(s) - %n dag%n dagar + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n week(s) - %n vecka%n veckor + + + ERROR TEXT + - %1 and %2 - %1 och %2 + + Current Asset Settings + - - %n year(s) - %n år%n år + + + Updated Asset Settings + - %1 didn't yet exit safely... - %1 avslutades inte ännu säkert... + + Transaction Fee: + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Fel: Den angivna datakatalogen "%1" finns inte. + + Choose... + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Fel: Kan inte läsa konfigurationsfilen: %1. Använd bara nyckel=värde formatet. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error: %1 - Fel: %1 + + Warning: Fee estimation is currently not possible. + - - - QRImageWidget - &Save Image... - &Spara Bild... + + collapse fee-settings + - &Copy Image - &Kopiera Bild + + Hide + - Save QR Code - Spara QR-kod + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - PNG Image (*.png) - PNG-bild (*.png) + + per kilobyte + - - - RPCConsole - N/A - ej tillgänglig + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Client version - Klient-version + + (read the tooltip) + - &Information - &Information + + Recommended: + - Debug window - Debug fönster + + Cus&tom: + - General - Generell + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Using BerkeleyDB version - Använder BerkeleyDB versionen + + Confirmation time target: + - Datadir - Datakatalog + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Startup time - Uppstartstid + + Request Replace-By-Fee + - Network - Nätverk + + Clear + - Name - Namn + + Balance: + - Number of connections - Antalet anslutningar + + 123.456 RVN + - Block chain - Blockkedja + + Copy quantity + - Current number of blocks - Aktuellt antal block + + Copy amount + - Memory Pool - Minnespool + + Copy fee + - Current number of transactions - Nuvarande antal transaktioner + + Copy after fee + - Memory usage - Minnesåtgång + + Copy bytes + - Received - Mottagen + + Copy dust + - Sent - Skickad + + Copy change + - &Peers - &Klienter + + Select an asset to reissue.. + - Banned peers - Bannade noder + + Select the asset you want to reissue. + - Select a peer to view detailed information. - Välj en klient för att se detaljerad information. + + %1 (%2 blocks) + - Whitelisted - Vitlistad + + Cost + - Direction - Riktning + + Asset data couldn't be found + - Version - Version + + Quantity is to large. Max is 21,000,000,000 + - Starting Block - Startblock + + Invalid Raven Destination Address + - Synced Headers - Synkade huvuden + + Warning: Restricted Assets Issuance requires an address + - Synced Blocks - Synkade block + + + Warning: Invalid Raven address + - User Agent - Användaragent + + + Yes + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Öppna %1 debug-loggfilen från aktuell datakatalog. Detta kan ta några sekunder för stora loggfiler. + + No + - Decrease font size - Minska fontstorleken + + + Name + - Increase font size - Öka fontstorleken + + + Total Quantity + - Services - Tjänster + + + Units + - Ban Score - Banpoäng + + + Can Reisssue + - Connection Time - Anslutningstid + + + + IPFS Hash + - Last Send - Senast sänt + + + + Txid Hash + - Last Receive - Senast mottagen + + Verifier String + - Ping Time - Pingtid + + + Current Verifier String + - The duration of a currently outstanding ping. - Tidsåtgången för en nuvarande utestående ping. + + Please select a asset from the menu to display the assets current settings + - Ping Wait - Pingväntetid + + Please select a asset from the menu to display the assets updated settings + - Time Offset - Tidsförskjutning + + Current Quantity + - Last block time - Sista blocktid + + Current Units + - &Open - &Öppna + + Can Reissue + - &Console - &Konsol + + Unknown data hash type + - &Network Traffic - &Nätverkstrafik + + Only IPFS Hashes allowed until RIP5 is activated + - &Clear - &Rensa + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Totals - Totalt: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - In: - In: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Out: - Ut: + + + %1 to %2 + - Debug log file - Debugloggfil + + Are you sure you want to send? + - Clear console - Rensa konsollen + + added as transaction fee + - 1 &hour - 1 &timme + + Total Amount %1 + - 1 &day - 1 &dag + + or + - 1 &week - 1 &vecka + + Confirm reissue assets + - 1 &year - 1 &år + + Copy + - &Disconnect - &Koppla ner + + Transaction ID Copied + - Ban for - Blockera i + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - &Unban - &Ta bort blockering + + Warning: Unknown change address + - Welcome to the %1 RPC console. - Välkommen till %1 RPC-konsolen. + + Confirm custom change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Använd upp- och ner-pilarna för att navigera i historiken, och <b>Ctrl-L</b> för att rensa skärmen. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Type <b>help</b> for an overview of available commands. - Skriv <b>help</b> för en översikt av alla kommandon. + + (no label) + - Network activity disabled - Nätverksaktivitet inaktiverad + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + - %1 KB - %1 KB + + Asset Balances + - %1 MB - %1 MB + + + Search + - %1 GB - %1 GB + + Address List + - (node id: %1) - (nod-id: %1) + + Balance: + - via %1 - via %1 + + + Failed to create a change address + - never - aldrig + + Failed to generate the correct transaction. Please try again + - Inbound - Inkommande + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - Utgående + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - Ja + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - Nej + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - Okänd + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - &Belopp: + + + Total Amount %1 + - &Label: - &Etikett: + + + or + - &Message: - &Meddelande: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Återanvänd en av tidigare använda mottagningsadresser. Återanvändning av adresser har både säkerhets och integritetsbrister. Använd inte samma mottagningsadress om du inte gör om samma betalningsbegäran. + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - Åt&eranvänd en existerande mottagningsadress (rekommenderas inte) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Ett frivilligt meddelande att bifoga betalningsbegäran, vilket visas när begäran öppnas. NB: Meddelandet kommer inte att sändas med betalningen över Ravennätverket. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - En frivillig etikett att associera med den nya mottagningsadressen. + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - Använd detta formulär för att begära betalningar. Alla fält är <b>frivilliga</b>. + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - En valfri summa att begära. Lämna denna tom eller noll för att inte begära en specifik summa. + + This is an asset payment + - Clear all fields of the form. - Rensa alla formulärfälten + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - Rensa + + + + Memo: + - Requested payments history - Historik för begärda betalningar + + Amount: + - &Request payment - Begä&r betalning + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - Visa valda begäranden (gör samma som att dubbelklicka på en post) + + &Label: + - Show - Visa + + Asset: + - Remove the selected entries from the list - Ta bort valda poster från listan + + The Raven address to send the payment to + - Remove - Ta bort + + Choose previously used address + - Copy URI - Kopiera URI + + Alt+A + - Copy label - Kopiera etikett + + Paste address from clipboard + - Copy message - Kopiera meddelande + + Alt+P + - Copy amount - Kopiera belopp + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR-kod + + Message: + - Copy &URI - Kopiera &URI + + Transfer &To: + - Copy &Address - Kopiera &Adress + + Transfer Administrator Asset + - &Save Image... - &Spara Bild... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - Begär betalning till %1 + + This is an unauthenticated payment request. + - Payment information - Betalinformaton + + + Transfer to: + - URI - URI + + + A&mount: + - Address - Adress + + This is an authenticated payment request. + - Amount - Belopp: + + Enter a label for this address to add it to your address book + - Label - Etikett + + Select to view administrator assets to transfer + - Message - Meddelande + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI:n är för lång, försöka minska texten för etikett / meddelande. + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - Fel vid skapande av QR-kod från URI. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Datum + + Failed to get asset metadata for: + - Label - Etikett + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Meddelande + + Failed to get asset outpoints from database + - (no label) - (Ingen etikett) + + Selected Balance + - (no message) - (inget meddelande) + + Wallet Balance + - (no amount requested) - (ingen summa begärd) + + Select an administrator asset to transfer + - Requested - Begärd + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Skicka pengar + Coin Control Features Myntkontrollfunktioner + Inputs... Inmatningar... + automatically selected automatiskt vald + Insufficient funds! Otillräckliga medel! + Quantity: Kvantitet: + Bytes: Antal Byte: + Amount: Belopp: + Fee: Avgift: + After Fee: Efter avgift: + Change: Växel: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Om denna är aktiverad men växeladressen är tom eller felaktig kommer växeln att sändas till en nygenererad adress. + Custom change address Specialväxeladress + Transaction Fee: Transaktionsavgift: + Choose... Välj... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings Fäll ihop avgiftsinställningarna + per kilobyte per kilobyte - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Om den anpassad avgiften är satt till 1000 satoshi och transaktionen bara är 250 byte, betalar "per kilobyte" bara 250 satoshi i avgift, medans "totalt minst" betalar 1000 satoshi. För transaktioner större än en kilobyte betalar både per kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Om den anpassad avgiften är satt till 1000 satoshi och transaktionen bara är 250 byte, betalar "per kilobyte" bara 250 satoshi i avgift, medans "totalt minst" betalar 1000 satoshi. För transaktioner större än en kilobyte betalar både per kilobyte. + Hide Göm - total at least - totalt minst - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Att betala endast den minsta avgiften är bara bra så länge det är mindre transaktionsvolym än utrymme i blocken. Men tänk på att det kan hamna i en aldrig bekräftar transaktion när det finns mer efterfrågan på raven transaktioner än nätverket kan bearbeta. + (read the tooltip) (läs verktygstips) + Recommended: Rekommenderad: + Custom: Anpassad: + (Smart fee not initialized yet. This usually takes a few blocks...) (Smartavgiften är inte initierad än. Detta tar vanligen några block...) - normal - normal + + Request Replace-By-Fee + - fast - snabb + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Skicka till flera mottagare samtidigt + Add &Recipient Lägg till &mottagare + Clear all fields of the form. Rensa alla formulärfälten + Dust: Damm: + Confirmation time target: Bekräftelsestidsmål: + Clear &All Rensa &alla + Balance: Balans: + Confirm the send action Bekräfta sändordern + S&end &Skicka + Copy quantity Kopiera kvantitet + Copy amount Kopiera belopp + Copy fee Kopiera avgift + Copy after fee Kopiera efter avgift + Copy bytes Kopiera byte + Copy dust Kopiera damm + Copy change Kopiera växel + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 till %2 + Are you sure you want to send? Är du säker på att du vill skicka? + added as transaction fee adderad som transaktionsavgift + Total Amount %1 Totalt belopp %1 + or eller + Confirm send coins Bekräfta skickade mynt + The recipient address is not valid. Please recheck. Mottagarens adress är ogiltig. Kontrollera igen. + The amount to pay must be larger than 0. Det betalade beloppet måste vara större än 0. + The amount exceeds your balance. Värdet överstiger ditt saldo. + The total exceeds your balance when the %1 transaction fee is included. Totalvärdet överstiger ditt saldo när transaktionsavgiften %1 är pålagd. + Duplicate address found: addresses should only be used once each. Duplicerad adress upptäckt: adresser skall endast användas en gång var. + Transaction creation failed! Transaktionen gick inte att skapa! + The transaction was rejected with the following reason: %1 Transaktionen avvisades med följande orsak: %1 + A fee higher than %1 is considered an absurdly high fee. En avgift högre än %1 anses vara en absurd hög avgift. + Payment request expired. Betalningsbegäran löpte ut. - - %n block(s) - %n block%n block - + Pay only the required fee of %1 Betala endast den nödvändiga avgiften på %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address Varning: Felaktig Ravenadress + Warning: Unknown change address Varning: Okänd växeladress + Confirm custom change address Bekräfta anpassad växlingsadress + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Den adress du valt för växel ingår inte i denna plånbok. Eventuella eller alla pengar i din plånbok kan skickas till den här adressen. Är du säker? + (no label) (Ingen etikett) @@ -2207,82 +5499,108 @@ Var vänlig och försök igen. SendCoinsEntry + + + A&mount: &Belopp: - Pay &To: - Betala &Till: - - + &Label: &Etikett: + Choose previously used address Välj tidigare använda adresser + This is a normal payment. Detta är en normal betalning. + The Raven address to send the payment to Ravenadress att sända betalning till + Alt+A Alt+A + Paste address from clipboard Klistra in adress från Urklipp + Alt+P Alt+P + + + Remove this entry Radera denna post + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Avgiften dras från beloppet som skickas. Mottagaren kommer att få mindre ravens än du angivit i belopp-fältet. Om flera mottagare valts kommer avgiften delas jämt. + S&ubtract fee from amount S&ubtrahera avgiften från beloppet + Message: Meddelande: + + Send &To: + + + + This is an unauthenticated payment request. Detta är en oautentiserad betalningsbegäran. + + + Send to: + + + + This is an authenticated payment request. Detta är en autentiserad betalningsbegäran. + Enter a label for this address to add it to the list of used addresses Ange en etikett för denna adress att adderas till listan över använda adresser + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Ett meddelande som bifogades raven-URI, vilket lagras med transaktionen som referens. NB: Meddelandet kommer inte att sändas över Ravennätverket. - Pay To: - Betala Till: - - + + Memo: PM: + Enter a label for this address to add it to your address book Ange en etikett för den här adressen och lägg till den i din adressbok @@ -2290,6 +5608,8 @@ Var vänlig och försök igen. SendConfirmationDialog + + Yes Ja @@ -2297,10 +5617,12 @@ Var vänlig och försök igen. ShutdownWindow + %1 is shutting down... %1 stängs av... + Do not shut down the computer until this window disappears. Stäng inte av datorn förrän denna ruta försvinner. @@ -2308,138 +5630,181 @@ Var vänlig och försök igen. SignVerifyMessageDialog + Signatures - Sign / Verify a Message Signaturer - Signera / Verifiera ett Meddelande + &Sign Message &Signera Meddelande + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Du kan underteckna meddelanden/avtal med dina adresser för att bevisa att du kan ta emot ravens som skickats till dem. Var försiktig så du inte undertecknar något oklart eller konstigt, eftersom phishing-angrepp kan försöka få dig att underteckna din identitet till dem. Underteckna endast väldetaljerade meddelanden som du godkänner. + The Raven address to sign the message with Ravenadress att signera meddelandet med + + Choose previously used address Välj tidigare använda adresser + + Alt+A Alt+A + Paste address from clipboard Klistra in adress från Urklipp + Alt+P Alt+P + Enter the message you want to sign here Skriv in meddelandet du vill signera här + Signature Signatur + Copy the current signature to the system clipboard Kopiera signaturen till systemets Urklipp + Sign the message to prove you own this Raven address Signera meddelandet för att bevisa att du äger denna adress + Sign &Message Signera &Meddelande + Reset all sign message fields Rensa alla fält + + Clear &All Rensa &alla + &Verify Message &Verifiera Meddelande - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Ange mottagarens adress, meddelande (kopiera radbrytningar, mellanrum, flikar, etc. exakt) och signatur nedan för att verifiera meddelandet. Undvik att läsa in mera information i signaturen än vad som stod i själva undertecknade meddelandet, för att undvika ett man-in-the-middle-angrepp. Notera att detta endast bevisar att undertecknad tar emot med adressen, det bevisar inte vem som skickat transaktionen! + The Raven address the message was signed with Ravenadressen som meddelandet signerades med + Verify the message to ensure it was signed with the specified Raven address Verifiera meddelandet för att vara säker på att den var signerad med den angivna Raven-adressen + Verify &Message Verifiera &Meddelande + Reset all verify message fields Rensa alla fält - Click "Sign Message" to generate signature - Klicka "Signera Meddelande" för att få en signatur + + Click "Sign Message" to generate signature + Klicka "Signera Meddelande" för att få en signatur + + The entered address is invalid. Den angivna adressen är ogiltig. + + + + Please check the address and try again. Vad god kontrollera adressen och försök igen. + + The entered address does not refer to a key. Den angivna adressen refererar inte till en nyckel. + Wallet unlock was cancelled. Upplåsningen av plånboken avbröts. + Private key for the entered address is not available. Privata nyckel för den angivna adressen är inte tillgänglig. + Message signing failed. Signeringen av meddelandet misslyckades. + Message signed. Meddelande signerat. + The signature could not be decoded. Signaturen kunde inte avkodas. + + Please check the signature and try again. Kontrollera signaturen och försök igen. + The signature did not match the message digest. Signaturen matchade inte meddelandesammanfattningen. + Message verification failed. Meddelandeverifikation misslyckades. + Message verified. Meddelande verifierat. @@ -2447,6 +5812,7 @@ Var vänlig och försök igen. SplashScreen + [testnet] [testnet] @@ -2454,6 +5820,7 @@ Var vänlig och försök igen. TrafficGraphWidget + KB/s KB/s @@ -2461,146 +5828,260 @@ Var vänlig och försök igen. TransactionDesc + Open for %n more block(s) - Öppet för %n mer blockÖppet för %n mer block + + Open until %1 Öppet till %1 + conflicted with a transaction with %1 confirmations konflikt med en transaktion med %1 konfirmationer + %1/offline %1/nerkopplad + 0/unconfirmed, %1 0/obekräftade, %1 + in memory pool i minnespoolen + not in memory pool ej i minnespoolen + abandoned övergiven + %1/unconfirmed %1/obekräftade + %1 confirmations %1 bekräftelser + + Status Status + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + Date Datum + Source Källa + Generated Genererad + + + + + From Från + + unknown okänd + + + + + To Till + + own address egen adress + + + watch-only granska-bara + + label etikett + + + + + + + + + Credit + + + matures in %n more block(s) - mognar om %n mer blockmognar om %n fler block + + not accepted inte accepterad + + + + + Debit Belasta + + Total debit + + + + + Total credit + + + + Transaction fee Transaktionsavgift + + Net amount + + + + + + + Message Meddelande + + Comment Kommentar + + Transaction ID Transaktions-ID + + Transaction total size Transaktionens totala storlek + + + Output index + + + + + Merchant Handlare - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Genererade mynt måste vänta %1 block innan de kan användas. När du skapade detta block sändes det till nätverket för att läggas till i blockkedjan. Om blocket inte kommer in i kedjan kommer dess status att ändras till "accepteras inte" och kommer ej att gå att spendera. Detta kan ibland hända om en annan nod genererar ett block nästan samtidigt som dig. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Genererade mynt måste vänta %1 block innan de kan användas. När du skapade detta block sändes det till nätverket för att läggas till i blockkedjan. Om blocket inte kommer in i kedjan kommer dess status att ändras till "accepteras inte" och kommer ej att gå att spendera. Detta kan ibland hända om en annan nod genererar ett block nästan samtidigt som dig. + + + + Net RVN amount + + Debug information Debug information + Transaction Transaktion + Inputs Inmatningar + Amount Belopp: + + true sant + + false falsk @@ -2608,10 +6089,12 @@ Var vänlig och försök igen. TransactionDescDialog + This pane shows a detailed description of the transaction Den här panelen visar en detaljerad beskrivning av transaktionen + Details for %1 Detaljer för %1 @@ -2619,261 +6102,411 @@ Var vänlig och försök igen. TransactionTableModel + Date Datum + Type Typ + Label Etikett + + + Amount + + + + + Asset + + + Open for %n more block(s) - Öppet för %n mer blockÖppet för %n mer block + + Open until %1 Öppet till %1 + Offline Nerkopplad + Unconfirmed Obekräftade: + Abandoned Övergiven + Confirming (%1 of %2 recommended confirmations) Bekräftar (%1 av %2 bekräftelser) + Confirmed (%1 confirmations) Bekräftad (%1 bekräftelser) + Conflicted Konflikt + Immature (%1 confirmations, will be available after %2) Omogen (%1 bekräftelser, blir tillgänglig efter %2) + This block was not received by any other nodes and will probably not be accepted! Det här blocket togs inte emot av några andra noder och kommer antagligen inte att bli accepterad! + Generated but not accepted Genererad men inte accepterad + Received with Mottagen med + Received from Mottaget från + Sent to Skickad till + Payment to yourself Betalning till dig själv + Mined Genererade + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only granska-bara + (n/a) (n/a) + (no label) (Ingen etikett) + Transaction status. Hover over this field to show number of confirmations. Transaktionsstatus. Håll muspekaren över för att se antal bekräftelser. + Date and time that the transaction was received. Tidpunkt då transaktionen mottogs. + Type of transaction. Transaktionstyp. + Whether or not a watch-only address is involved in this transaction. Anger om granska-bara--adresser är involverade i denna transaktion. + User-defined intent/purpose of the transaction. Användardefinierat syfte/ändamål för transaktionen. + Amount removed from or added to balance. Belopp draget eller tillagt till balans. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Alla + Today Idag + This week Denna vecka + This month Denna månad + Last month Föregående månad + This year Det här året + + Range... + + + + Received with Mottagen med + Sent to Skickad till + To yourself Till dig själv + Mined Genererade + Other Övriga + Enter address or label to search Ange en adress eller etikett att söka efter + Min amount Minsta belopp + + Asset name + + + + Abandon transaction Avbryt transaktionen + Copy address Kopiera adress + Copy label Kopiera etikett + Copy amount Kopiera belopp + Copy transaction ID Kopiera transaktions-ID + Copy raw transaction Kopiera rå transaktion + Copy full transaction details Kopiera alla transaktionsdetaljerna + Edit label Ändra etikett + Show transaction details Visa transaktionsdetaljer + + Browse with: + + + + Export Transaction History Exportera Transaktionshistoriken + Comma separated file (*.csv) Kommaseparerad fil (*.csv) + Confirmed Bekräftad + Watch-only Enbart granskning + Date Datum + Type Typ + Label Etikett + Address Adress + + Asset + + + + ID ID + Exporting Failed Export misslyckades + There was an error trying to save the transaction history to %1. Det inträffade ett fel när transaktionshistoriken skulle sparas till %1. + Exporting Successful Exporteringen lyckades + The transaction history was successfully saved to %1. Transaktionshistoriken sparades utan problem till %1. + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + to till @@ -2881,6 +6514,7 @@ Var vänlig och försök igen. UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Enhet att visa belopp i. Klicka för att välja annan enhet. @@ -2888,6 +6522,7 @@ Var vänlig och försök igen. WalletFrame + No wallet has been loaded. Ingen plånbok har laddats in. @@ -2895,936 +6530,1763 @@ Var vänlig och försök igen. WalletModel + Send Coins Skicka Ravens + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Exportera + Export the data in the current tab to a file Exportera informationen i den nuvarande fliken till en fil + Backup Wallet Säkerhetskopiera Plånbok + Wallet Data (*.dat) Plånboks-data (*.dat) + Backup Failed Säkerhetskopiering misslyckades + There was an error trying to save the wallet data to %1. Det inträffade ett fel när plånbokens data skulle sparas till %1. + Backup Successful Säkerhetskopiering lyckades + The wallet data was successfully saved to %1. Plånbokens data sparades utan problem till %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Inställningar: + Specify data directory Ange katalog för data + Connect to a node to retrieve peer addresses, and disconnect Anslut till en nod för att hämta klientadresser, och koppla från + Specify your own public address Ange din egen publika adress + Accept command line and JSON-RPC commands Tillåt kommandon från kommandotolken och JSON-RPC-kommandon - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Acceptera anslutningar utifrån (förvalt: 1 om ingen -proxy eller -connect/-noconnect) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - Anslut endast till angivna nod(er); -noconnect eller -connect=0 ensam för att inaktivera automatiska anslutningar - - + Distributed under the MIT software license, see the accompanying file %s or %s Distribuerad under MIT mjukvarulicens, se den bifogade filen %s eller %s + If <category> is not supplied or if <category> = 1, output all debugging information. Om <kategori> inte anges eller om <category> = 1, visa all avlusningsinformation. + Prune configured below the minimum of %d MiB. Please use a higher number. Beskärning konfigurerad under miniminivån %d MiB. Vänligen använd ett högre värde. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Beskärning: sista plånbokssynkroniseringen ligger utanför beskuren data. Du måste använda -reindex (ladda ner hela blockkedjan igen eftersom noden beskurits) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Omskanningar kan inte göras i beskuret läge. Du måste använda -reindex vilket kommer ladda ner hela blockkedjan igen. + Error: A fatal internal error occurred, see debug.log for details Fel: Ett kritiskt internt fel uppstod, se debug.log för detaljer + Fee (in %s/kB) to add to transactions you send (default: %s) Avgift (i %s/kB) att lägga till på transaktioner du skickar (förvalt: %s) + Pruning blockstore... Rensar blockstore... + Run in the background as a daemon and accept commands Kör i bakgrunden som tjänst och acceptera kommandon + Unable to start HTTP server. See debug log for details. Kunde inte starta HTTP-server. Se avlusningsloggen för detaljer. + Raven Core Raven Core + The %s developers %s-utvecklarna + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) En avgiftskurs (i %s/kB) som används när det inte finns tillräcklig data för att uppskatta avgiften (förvalt: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) Acceptera vidarebefodrade transaktioner från vitlistade noder även när transaktioner inte vidarebefodras (förvalt: %d) + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 Bind till given adress och lyssna alltid på den. Använd [värd]:port notation för IPv6 + Cannot obtain a lock on data directory %s. %s is probably already running. Kan inte låsa data-mappen %s. %s körs förmodligen redan. - Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup - Ta bort alla plånbokstransaktioner och återskapa bara dom som är en del av blockkedjan genom att ange -rescan vid uppstart + + Cannot provide specific connections and have addrman find outgoing connections at the same. + - Error loading %s: You can't enable HD on a already existing non-HD wallet - Fel vid laddning av %s: Du kan inte aktivera HD på en existerande icke-HD plånbok + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + Ta bort alla plånbokstransaktioner och återskapa bara dom som är en del av blockkedjan genom att ange -rescan vid uppstart + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. Fel vid läsning av %s! Alla nycklar lästes korrekt, men transaktionsdatat eller adressbokens poster kanske saknas eller är felaktiga. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Exekvera kommando när en plånbokstransaktion ändras (%s i cmd är ersatt av TxID) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Extra transaktioner att hålla i minnet för kompakta blockrekonstruktioner (standard: %u) + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) Maximalt tillåten median-peer tidsoffset justering. Lokalt perspektiv av tiden kan bli påverkad av partners, framåt eller bakåt denna tidsrymd. (förvalt: %u sekunder) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Maximal total avgift (i %s) att använda i en plånbokstransaktion eller råa transaktioner. Sätts denna för lågt kan stora transaktioner avbrytas (förvalt: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Vänligen kolla så att din dators datum och tid är korrekt! Om din klocka går fel kommer %s inte att fungera korrekt. + Please contribute if you find %s useful. Visit %s for further information about the software. Var snäll och bidra om du finner %s användbar. Besök %s för mer information om mjukvaran. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Ange antalet skriptkontrolltrådar (%u till %d, 0 = auto, <0 = lämna så många kärnor lediga, förval: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Blockdatabasen innehåller ett block som verkar vara från framtiden. Detta kan vara på grund av att din dators datum och tid är felaktiga. Bygg bara om blockdatabasen om du är säker på att datorns datum och tid är korrekt + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Detta är ett förhandstestbygge - använd på egen risk - använd inte för mining eller handels applikationer + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Kan inte spola tillbaka databasen till obeskärt läge. Du måste ladda ner blockkedjan igen + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Använd UPnP för att mappa den lyssnande porten (förvalt: 1 när lyssning aktiverat och utan -proxy) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times Användarnamn och hashat lösenord för JSON-RPC-anslutningar. Fältet <userpw> kommer i formatet: <USERNAME>:<SALT>$<HASH>. Ett kanoniskt pythonskript finns inkluderat i share/rpcuser. Klienten kopplas sedan normalt med rpcuser=<USERNAME>/rpcpassword=<PASSWORD> par argument. Detta alternativ kan anges flera gånger + Wallet will not create transactions that violate mempool chain limits (default: %u) Plånboken skapar inte transaktioner som bryter mot mempools kedjegränser (förval: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Varning: Nätverket verkar inte vara helt överens! Några miners verkar ha problem. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Varning: Vi verkar inte helt överens med våra peers! Du kan behöva uppgradera, eller andra noder kan behöva uppgradera. - You need to rebuild the database using -reindex-chainstate to change -txindex - Du måste återskapa databasen med -reindex-chainstate för att ändra -txindex + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + %d of last 100 blocks have unexpected version + + + + %s corrupt, salvage failed %s är korrupt, räddning misslyckades + -maxmempool must be at least %d MB -maxmempool måste vara minst %d MB + <category> can be: <category> Kan vara: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string Lägg till kommentar till user-agent-strängen + Attempt to recover private keys from a corrupt wallet on startup Försök att rädda privata nycklar från en korrupt plånbok vid uppstart + Block creation options: Block skapande inställningar: - Cannot resolve -%s address: '%s' - Kan inte matcha -%s adress: '%s' + + Cannot resolve -%s address: '%s' + Kan inte matcha -%s adress: '%s' + + Chain selection options: + + + + Change index out of range Förändringsindexet utom räckhåll + Connection options: Anslutningsalternativ: + Copyright (C) %i-%i Copyright (C) %i-%i + Corrupted block database detected Korrupt blockdatabas har upptäckts + Debugging/Testing options: Avlusnings/Test-alternativ: + Do not load the wallet and disable wallet RPC calls Ladda inte plånboken och stäng av RPC-anrop till plånboken + Do you want to rebuild the block database now? Vill du bygga om blockdatabasen nu? + Enable publish hash block in <address> Aktivera publicering av hashblock i <adress> + Enable publish hash transaction in <address> Aktivera publicering av hashtransaktion i <adress> + Enable publish raw block in <address> Aktivera publicering av råa block i <adress> + Enable publish raw transaction in <address> Aktivera publicering av råa transaktioner i <adress> + Enable transaction replacement in the memory pool (default: %u) Aktivera byte av transaktioner i minnespoolen (förvalt: %u) + Error initializing block database Fel vid initiering av blockdatabasen + Error initializing wallet database environment %s! Fel vid initiering av plånbokens databasmiljö %s! + Error loading %s Fel vid inläsning av %s + Error loading %s: Wallet corrupted Fel vid inläsningen av %s: Plånboken är koruppt + Error loading %s: Wallet requires newer version of %s Fel vid inläsningen av %s: Plånboken kräver en senare version av %s - Error loading %s: You can't disable HD on a already existing HD wallet - Fel vid laddning av %s: Du kan inte avaktivera HD på en redan existerande HD plånbok - - + Error loading block database Fel vid inläsning av blockdatabasen + Error opening block database Fel vid öppning av blockdatabasen + Error: Disk space is low! Fel: Hårddiskutrymme är lågt! + Failed to listen on any port. Use -listen=0 if you want this. Misslyckades att lyssna på någon port. Använd -listen=0 om du vill detta. + Importing... Importerar... + Incorrect or no genesis block found. Wrong datadir for network? Felaktig eller inget genesisblock hittades. Fel datadir för nätverket? + Initialization sanity check failed. %s is shutting down. Initieringschecken fallerade. %s stängs av. - Invalid -onion address: '%s' - Ogiltig -onion adress:'%s' + + Invalid amount for -%s=<amount>: '%s' + Ogiltigt belopp för -%s=<belopp>:'%s' - Invalid amount for -%s=<amount>: '%s' - Ogiltigt belopp för -%s=<belopp>:'%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - Ogiltigt belopp för -fallbackfee=<belopp>: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + Ogiltigt belopp för -fallbackfee=<belopp>: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) Håll minnespoolen över transaktioner under <n> megabyte (förvalt: %u) + + Loading P2P addresses... + + + + Loading banlist... Laddar svarta listan... + Location of the auth cookie (default: data dir) Plats för authcookie (förvalt: datamapp) + Not enough file descriptors available. Inte tillräckligt med filbeskrivningar tillgängliga. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Anslut enbart till noder i nätverket <net> (IPv4, IPv6 eller onion) + Print this help message and exit Visa denna hjälptext och avsluta + Print version and exit Visa version och avsluta + Prune cannot be configured with a negative value. Beskärning kan inte konfigureras med ett negativt värde. + Prune mode is incompatible with -txindex. Beskärningsläge är inkompatibel med -txindex. + Rebuild chain state and block index from the blk*.dat files on disk Återskapa blockkedjans status och index från blk*.dat filer på disken + Rebuild chain state from the currently indexed blocks Återskapa blockkedjans status från aktuella indexerade block + + Replaying blocks... + + + + Rewinding blocks... Spolar tillbaka blocken... + Set database cache size in megabytes (%d to %d, default: %d) Sätt databasens cachestorlek i megabyte (%d till %d, förvalt: %d) - Set maximum block size in bytes (default: %d) - Sätt maximal blockstorlek i byte (förvalt: %d) - - + Specify wallet file (within data directory) Ange plånboksfil (inom datakatalogen) + The source code is available from %s. Källkoden är tillgänglig från %s. + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. Det går inte att binda till %s på den här datorn. %s är förmodligen redan igång. + Unsupported argument -benchmark ignored, use -debug=bench. Argumentet -benchmark stöds inte och ignoreras, använd -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Argumentet -debugnet stöds inte och ignoreras, använd -debug=net. + Unsupported argument -tor found, use -onion. Argumentet -tor hittades men stöds inte, använd -onion. + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) Använd UPnP för att mappa den lyssnande porten (förvalt: %u) + Use the test chain Använd testkedjan + User Agent comment (%s) contains unsafe characters. Kommentaren i användaragent (%s) innehåller osäkra tecken. + Verifying blocks... Verifierar block... - Verifying wallet... - Verifierar plånboken... - - + Wallet %s resides outside data directory %s Plånbok %s ligger utanför datakatalogen %s + Wallet debugging/testing options: Plånbokens Avlusnings/Testnings optioner: + Wallet needed to be rewritten: restart %s to complete Plånboken behöver sparas om: Starta om %s för att fullfölja + Wallet options: Plånboksinställningar: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Tillåt JSON-RPC-anslutningar från specifik källa. Tillåtna <ip> är enkel IP (t.ex 1.2.3.4), en nätverk/nätmask (t.ex. 1.2.3.4/255.255.255.0) eller ett nätverk/CIDR (t.ex. 1.2.3.4/24). Detta alternativ anges flera gånger + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Bind till given adress och vitlista klienter som ansluter till den. Använd [värd]:port notation för IPv6 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Bind till angiven adress för att lyssna på JSON-RPC-anslutningar. Använd [värd]:port-format for IPv6. Detta alternativ kan anges flera gånger (förvalt: bind till alla gränssnitt) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Skapa nya filer med systemets förvalda rättigheter, istället för umask 077 (bara effektivt med avaktiverad plånboks funktionalitet) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Upptäck egna IP adresser (standard: 1 vid lyssning ingen -externalip eller -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Fel: Avlyssning av inkommande anslutningar misslyckades (Avlyssningen returnerade felkod %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Exekvera kommando när ett relevant meddelande är mottagen eller när vi ser en väldigt lång förgrening (%s i cmd är utbytt med ett meddelande) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Avgifter (i %s/kB) mindre än detta betraktas som nollavgift för vidarebefordran, mining och transaktionsskapande (förvalt: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Om paytxfee inte är satt, inkludera tillräcklig avgift så att transaktionen börjar att konfirmeras inom n blocks (förvalt: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - Otillåtet belopp för -maxtxfee=<belopp>: '%s' (måste åtminstånde vara minrelay avgift %s för att förhindra stoppade transkationer) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + Otillåtet belopp för -maxtxfee=<belopp>: '%s' (måste åtminstånde vara minrelay avgift %s för att förhindra stoppade transkationer) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximal storlek på data i databärartransaktioner som vi reläar och bryter (förvalt: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Slumpa autentiseringen för varje proxyanslutning. Detta möjliggör Tor ström-isolering (förvalt: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Sätt den maximala storleken av hög-prioriterade/låg-avgifts transaktioner i byte (förvalt: %d) - - + The transaction amount is too small to send after the fee has been deducted Transaktionen är för liten att skicka efter det att avgiften har dragits - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - Använd hierarkisk deterministisk nyckel generering (HD) efter BIP32. Har bara effekt under plånbokens skapande/första användning. - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway Vitlistade klienter kan inte bli DoS-bannade och deras transaktioner reläas alltid, även om dom redan är i mempoolen, användbart för t.ex en gateway + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Du måste bygga om databasen genom att använda -reindex för att återgå till obeskärt läge. Detta kommer att ladda ner hela blockkedjan. + (default: %u) (förvalt: %u) + Accept public REST requests (default: %u) Acceptera publika REST förfrågningar (förvalt: %u) + Automatically create Tor hidden service (default: %d) Skapa automatiskt dold tjänst i Tor (förval: %d) + Connect through SOCKS5 proxy Anslut genom SOCKS5 proxy + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Fel vid läsning från databas, avslutar. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Importera block från extern blk000??.dat-fil vid uppstart + Information Information - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - Ogiltigt belopp för -paytxfee=<belopp>:'%s' (måste vara minst %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + Ogiltigt belopp för -paytxfee=<belopp>:'%s' (måste vara minst %s) - Invalid netmask specified in -whitelist: '%s' - Ogiltig nätmask angiven i -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' + Ogiltig nätmask angiven i -whitelist: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) Håll som mest <n> oanslutningsbara transaktioner i minnet (förvalt: %u) - Need to specify a port with -whitebind: '%s' - Port måste anges med -whitelist: '%s' + + Need to specify a port with -whitebind: '%s' + Port måste anges med -whitelist: '%s' + Node relay options: Nodreläalternativ: + RPC server options: RPC-serveralternativ: + Reducing -maxconnections from %d to %d, because of system limitations. Minskar -maxconnections från %d till %d, på grund av systembegränsningar. + Rescan the block chain for missing wallet transactions on startup Sök i blockkedjan efter saknade plånbokstransaktioner vid uppstart + Send trace/debug info to console instead of debug.log file Skicka trace-/debuginformation till terminalen istället för till debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Sänd transaktioner som nollavgiftstransaktioner om möjligt (förvalt: %u) - - + Show all debugging options (usage: --help -help-debug) Visa alla avlusningsalternativ (använd: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Krymp debug.log filen vid klient start (förvalt: 1 vid ingen -debug) + Signing transaction failed Signering av transaktion misslyckades + The transaction amount is too small to pay the fee Transaktionen är för liten för att betala avgiften + This is experimental software. Detta är experimentmjukvara. + Tor control port password (default: empty) Lösenord för Tor-kontrollport (förval: inget) + Tor control port to use if onion listening enabled (default: %s) Tor-kontrollport att använda om onion är aktiverat (förval: %s) + Transaction amount too small Transaktions belopp för liten + Transaction too large for fee policy Transaktionen är för stor för avgiftspolicyn + Transaction too large Transaktionen är för stor + Unable to bind to %s on this computer (bind returned error %s) Det går inte att binda till %s på den här datorn (bind returnerade felmeddelande %s) + Upgrade wallet to latest format on startup Uppgradera plånbok till senaste formatet vid uppstart + Username for JSON-RPC connections Användarnamn för JSON-RPC-anslutningar + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Varning + Warning: unknown new rules activated (versionbit %i) Varning: okända nya regler aktiverade (versionsbit %i) + Whether to operate in a blocks only mode (default: %u) Ska allt göras i endast block-läge (förval: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Töm plånboken på alla transaktioner... + ZeroMQ notification options: ZeroMQ-alternativ för notiser: + Password for JSON-RPC connections Lösenord för JSON-RPC-anslutningar + Execute command when the best block changes (%s in cmd is replaced by block hash) Exekvera kommando när det bästa blocket ändras (%s i cmd är utbytt av blockhash) + Allow DNS lookups for -addnode, -seednode and -connect Tillåt DNS-sökningar för -addnode, -seednode och -connect - Loading addresses... - Laddar adresser... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = spara tx metadata t.ex. kontoägare och betalningsbegäransinformation, 2 = släng tx metadata) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee är väldigt högt satt! Så höga avgifter kan komma att betalas för en enstaka transaktion. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) Håll inte transaktioner i minnespoolen längre än <n> timmar (förvalt: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Samma antal byte per sigop i transaktioner som vi reläar och bryter (förvalt: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Avgifter (i %s/kB) mindre än detta anses vara nollavgifter vid skapande av transaktion (standard: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Vidarebefordra alltid transaktioner från vitlistade noder även om de bryter mot den lokala reläpolicyn (förvalt: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) Hur grundlig blockverifikationen vid -checkblocks är (0-4, förvalt: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Upprätthåll ett fullständigt transaktionsindex, som används av getrawtransaction rpc-anrop (förval: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Antal sekunder att hindra klienter som missköter sig från att ansluta (förvalt: %u) + Output debugging information (default: %u, supplying <category> is optional) Skriv ut avlusningsinformation (förvalt: %u, att ange <category> är frivilligt) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Sök efter klientadresser med DNS sökningen, om det finns otillräckligt med adresser (förvalt: 1 om inte -connect/-noconnect) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + Support filtering of blocks and transaction with bloom filters (default: %u) Stöd filtrering av block och transaktioner med bloomfilter (standard: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. Detta är transaktionsavgiften du kan komma att betala om uppskattad avgift inte finns tillgänglig. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Denna produkten innehåller mjukvara utvecklad av OpenSSL Project för användning i OpenSSL Toolkit %s och kryptografisk mjukvara utvecklad av Eric Young samt UPnP-mjukvara skriven av Thomas Bernard. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Total längd på strängen för nätverksversion (%i) överskrider maxlängden (%i). Minska numret eller storleken på uacomments. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Försöker hålla utgående trafik under givet mål (i MiB per 24 timmar), 0 = ingen gräns (förvalt: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Argumentet -socks hittades och stöds inte. Det är inte längre möjligt att sätta SOCKS-version längre, bara SOCKS5-proxy stöds. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Argumentet -whitelistalwaysrelay stöds inte utan ignoreras, använd -whitelistrelay och/eller -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Använd separat SOCKS5 proxy för att nå kollegor via dolda tjänster i Tor (förvalt: -%s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Varning: Okända blockversioner bryts! Det är möjligt att okända regler används + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Varning: Plånboksfilen var korrupt, datat har räddats! Den ursprungliga %s har sparas som %s i %s. Om ditt saldo eller transaktioner är felaktiga bör du återställa från en säkerhetskopia. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s är satt väldigt högt! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (förvalt: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Sök alltid efter klientadresser med DNS sökningen (förvalt: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Hur många block att kontrollera vid uppstart (förvalt: %u, 0 = alla) + Include IP addresses in debug output (default: %u) Inkludera IP-adresser i debugutskrift (förvalt: %u) - Invalid -proxy address: '%s' - Ogiltig -proxy adress: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) Lyssna på JSON-RPC-anslutningar på <port> (förval: %u eller testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Lyssna efter anslutningar på <port> (förvalt: %u eller testnet: %u) + Maintain at most <n> connections to peers (default: %u) Ha som mest <n> anslutningar till andra klienter (förvalt: %u) + Make the wallet broadcast transactions Gör så att plånboken sänder ut transaktionerna + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Maximal mottagningsbuffert per anslutning, <n>*1000 byte (förvalt: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Maximal sändningsbuffert per anslutning, <n>*1000 byte (förvalt: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Skriv ut tidsstämpel i avlusningsinformationen (förvalt: %u) + Relay and mine data carrier transactions (default: %u) Reläa och bearbeta databärartransaktioner (förvalt: %u) + Relay non-P2SH multisig (default: %u) Reläa icke-P2SH multisig (förvalt: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) Sätt storleken på nyckelpoolen till <n> (förvalt: %u) + Set maximum BIP141 block weight (default: %d) Sätt maximal BIP141 blockvikt (förvalt: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Ange antalet trådar för att hantera RPC anrop (förvalt: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Ange konfigurationsfil (förvalt: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Ange timeout för uppkoppling i millisekunder (minimum:1, förvalt: %d) + Specify pid file (default: %s) Ange pid-fil (förvalt: %s) + Spend unconfirmed change when sending transactions (default: %u) Spendera okonfirmerad växel när transaktioner sänds (förvalt: %u) + Starting network threads... Startar nätverkstrådar... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Plånboken undviker att betala mindre än lägsta reläavgift. + This is the minimum transaction fee you pay on every transaction. Det här är minimum avgiften du kommer betala för varje transaktion. + This is the transaction fee you will pay if you send a transaction. Det här är transaktionsavgiften du kommer betala om du skickar en transaktion. + Threshold for disconnecting misbehaving peers (default: %u) Tröskelvärde för att koppla ifrån klienter som missköter sig (förvalt: %u) + Transaction amounts must not be negative Transaktionens belopp får ej vara negativ + Transaction has too long of a mempool chain Transaktionen har för lång mempool-kedja + Transaction must have at least one recipient Transaktionen måste ha minst en mottagare - Unknown network specified in -onlynet: '%s' - Okänt nätverk som anges i -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + Okänt nätverk som anges i -onlynet: '%s' + + + Insufficient funds Otillräckligt med ravens + Loading block index... Laddar blockindex... - Add a node to connect to and attempt to keep the connection open - Lägg till en nod att koppla upp mot och försök att hålla anslutningen öppen - - + Loading wallet... Laddar plånbok... + Cannot downgrade wallet Kan inte nedgradera plånboken - Cannot write default address - Kan inte skriva standardadress - - + Rescanning... Söker igen... - Done loading - Klar med laddning - - + Error Fel diff --git a/src/qt/locale/raven_ta.ts b/src/qt/locale/raven_ta.ts index 10bf11a220..9d22a1e509 100644 --- a/src/qt/locale/raven_ta.ts +++ b/src/qt/locale/raven_ta.ts @@ -1,735 +1,8290 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address ஒரு புதிய முகவரியை உருவாக்கு + &New &புதிய + + Copy the currently selected address to the system clipboard + + + + &Copy &நகல் + C&lose &மூடு + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + &Export &ஏற்றுமதி + &Delete &அழி + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + Sending addresses முகவரிகள் அனுப்பப்படுகின்றன + Receiving addresses முகவரிகள் பெறப்படுகின்றன - + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address முகவரி - - - AskPassphraseDialog - - - BanTableModel - IP/Netmask - IP/Netmask + + (no label) + - + - RavenGUI + AskPassphraseDialog - &Overview - &கண்ணோட்டம் + + Passphrase Dialog + - &Transactions - &பரிவர்த்தனைகள் + + Enter passphrase + - E&xit - &வெளியேறு + + New passphrase + - Quit application - விலகு + + Repeat new passphrase + - About &Qt - &Qt-ஐ பற்றி + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - &Options... - &விருப்பங்கள்... + + Encrypt wallet + - &Encrypt Wallet... - &என்க்ரிப்ட் பணப்பை... + + This operation needs your wallet passphrase to unlock the wallet. + - Open &URI... - &URI-ஐ திற + + Unlock wallet + - &Verify message... - &செய்தியை சரிசெய்... + + This operation needs your wallet passphrase to decrypt the wallet. + - Raven - Raven + + Decrypt wallet + - Wallet - பணப்பை + + Change passphrase + - &Send - &அனுப்பு + + Enter the old passphrase and new passphrase to the wallet. + - &Receive - &பெறு + + Confirm wallet encryption + - &Show / Hide - &காட்டு/மறை + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &File - &கோப்பு + + Are you sure you wish to encrypt your wallet? + - &Settings - &அமைப்பு + + + Wallet encrypted + - &Help - &உதவி + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - %1 behind - %1 பின்னால் + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - Error - தவறு + + + + + Wallet encryption failed + - Warning - எச்சரிக்கை + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - Information - தகவல் + + + The supplied passphrases do not match. + - Date: %1 - - தேதி: %1 - + + Wallet unlock failed + - Amount: %1 - - தொகை: %1 - + + + + The passphrase entered for the wallet decryption was incorrect. + - Type: %1 - - வகை: %1 - + + Wallet decryption failed + - Address: %1 - - முகவரி: %1 - + + Wallet passphrase was successfully changed. + - Sent transaction - அனுப்பிய பரிவர்த்தனை + + + Warning: The Caps Lock key is on! + - + - CoinControlDialog + AssetControlDialog + + Asset Selection + + + + Quantity: - அளவு + + + + + Bytes: + + Amount: - விலை: + + + + + Dust: + + Fee: - கட்டணம்: + + After Fee: - கட்டணத்திறகுப் பின்: + + Change: - மாற்று: + - Amount - விலை + + (un)select all + - Date - தேதி + + Tree mode + - Confirmations - உறுதிப்படுத்தல்கள் + + List mode + - Confirmed - உறுதியாக + + View assets that you have the ownership asset for + - - - EditAddressDialog - - - FreespaceChecker - name - பெயர் + + View Administrator Assets + - - - HelpMessageDialog - - - Intro - Welcome - நல்வரவு + + Asset + - Error - தவறு + + Amount + - - - ModalOverlay - Form - படிவம் + + Received with label + - Hide - மறை + + Received with address + - - - OpenURIDialog - Open URI - URI-ஐ திற + + Date + - URI: - URI: + + Confirmations + - - - OptionsDialog - Options - விருப்பத்தேர்வு + + Confirmed + - &Main - &தலைமை + + Copy address + - MB - MB + + Copy label + - &Network - &பிணையம் + + + Copy amount + - W&allet - &பணப்பை + + Copy transaction ID + - Expert - வல்லுநர் + + Lock unspent + - IPv4 - IPv4 + + Unlock unspent + - IPv6 - IPv6 + + Copy quantity + - Tor - Tor + + Copy fee + - &Window - &சாளரம் + + Copy after fee + - &Display - &காட்டு + + Copy bytes + - &OK - &சரி + + Copy dust + - &Cancel - &ரத்து + + Copy change + - default - இயல்புநிலை + + (%1 locked) + - none - none + + yes + - - - OverviewPage - Form - படிவம் + + no + - Available: - கிடைக்ககூடிய: + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Pending: - நிலுவையில்: + + Can vary +/- %1 satoshi(s) per input. + - Immature: - முதிராத: + + + (no label) + - Balances - மீதி + + change from %1 (%2) + - Total: - மொத்தம்: + + (change) + - - - PaymentServer - + - PeerTableModel + AssetTableModel - User Agent - பயனர் முகவர் + + Name + - + + + Quantity + + + - QObject + AssetsDialog - Amount - விலை + + + Send Coins + - %1 d - %1 d + + Asset Control Features + - %1 h - %1 h + + Inputs... + - %1 s - %1 s + + automatically selected + - N/A - N/A + + Insufficient funds! + - %1 ms - %1 ms + + Quantity: + - %1 and %2 - %1 மற்றும் %2 + + Bytes: + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - N/A + + Amount: + - Client version - வாடிக்கையாளர் பதிப்பு + + Dust: + - &Information - &தகவல் + + Fee: + - Network - பிணையம் + + After Fee: + - Name - பெயர் + + Change: + - Memory Pool - நினைவக குளம் + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Memory usage - நினைவக பயன்பாடு + + Custom change address + - Sent - அனுப்பிய + + Transaction Fee: + - Direction - திசை + + Choose... + - Version - பதிப்பு + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - User Agent - பயனர் முகவர் + + Warning: Fee estimation is currently not possible. + - Ping Time - பிங் நேரம் + + collapse fee-settings + - &Open - &திற + + Hide + - &Console - &பணியகம் + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - &Clear - &வழுநீக்கு + + per kilobyte + - Totals - மொத்தம் + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - In: - உள்ளே: + + (read the tooltip) + - Out: - வெளியே: + + Recommended: + - 1 &hour - 1 &மணி + + Custom: + - 1 &day - 1 &நாள் + + (Smart fee not initialized yet. This usually takes a few blocks...) + - 1 &week - 1 &வாரம் + + Confirmation time target: + - 1 &year - 1 &ஆண்டு + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - %1 B - %1 B + + Request Replace-By-Fee + - %1 KB - %1 KB + + Confirm the send action + - %1 MB - %1 MB + + S&end + - %1 GB - %1 GB + + Clear all fields of the form. + - via %1 - via %1 + + Clear &All + - never - ஒருபோதும் + + Transfer to multiple recipients at once + - Inbound - உள்வரும் + + Add &Recipient + - Outbound - வெளி செல்லும் + + Balance: + - Yes - ஆம் + + Copy quantity + - No - மறு + + Copy amount + - Unknown - அறியப்படாத + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - ReceiveCoinsDialog + AssignQualifier - &Amount: - &தொகை: + + Frame + - &Label: - &சிட்டை: + + Select Type: + - &Message: - &செய்தி: + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + Clear - நீக்கு + - Show - காண்பி + + Submit + - Remove - நீக்கு + + Assign Qualifier + - - - ReceiveRequestDialog - QR Code - QR குறியீடு + + Remove Qualifier + - Copy &URI - நகலை &URI + + Data has been validated, You can now submit the qualifier request + - Copy &Address - நகலை விலாசம் + + Must have a qualifier asset selected + - &Save Image... - &படத்தை சேமி... + + Address already has the qualifier assigned to it + - Address - முகவரி + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + - + - RecentRequestsTableModel - + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + + + - SendCoinsDialog + CoinControlDialog + + Coin Selection + + + + Quantity: அளவு + + Bytes: + + + + Amount: - விலை + விலை: + Fee: கட்டணம்: + + Dust: + + + + After Fee: கட்டணத்திறகுப் பின்: + Change: மாற்று: - Choose... - தேர்ந்தெடு... + + (un)select all + - Hide - மறை + + Tree mode + - normal - இயல்பான + + List mode + - fast - வேகமாக + + Amount + விலை - Balance: - மீதி: + + Received with label + - S&end - &அனுப்பு + + Received with address + - - - SendCoinsEntry - A&mount: - &தொகை: + + Date + தேதி - &Label: - &சிட்டை: + + Confirmations + உறுதிப்படுத்தல்கள் - Alt+A - Alt+A + + Confirmed + உறுதியாக - Alt+P - Alt+P + + Copy address + - Message: - செய்தி: + + Copy label + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Alt+A - Alt+A + + + Copy amount + - Alt+P - Alt+P + + Copy transaction ID + - Signature - கையொப்பம் + + Lock unspent + - - - SplashScreen - - - TrafficGraphWidget - KB/s - KB/s + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView + CreateAssetDialog - Address - முகவரி + + Coin Control Features + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Raven Core - Raven மையம் + + Inputs... + - (default: %u) - (default: %u) + + automatically selected + - Information - தகவல் + + Insufficient funds! + - Warning - எச்சரிக்கை + + + Quantity: + - (default: %s) - (default: %s) + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + பெயர் + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + நல்வரவு + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + தவறு + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + படிவம் + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + மறை + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + URI-ஐ திற + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + விருப்பத்தேர்வு + + + + &Main + &தலைமை + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + &பிணையம் + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + &பணப்பை + + + + Expert + வல்லுநர் + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &சாளரம் + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &காட்டு + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &சரி + + + + &Cancel + &ரத்து + + + + default + இயல்புநிலை + + + + none + none + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + படிவம் + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + கிடைக்ககூடிய: + + + + Your current spendable balance + + + + + Pending: + நிலுவையில்: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + முதிராத: + + + + Mined balance that has not yet matured + + + + + Total: + மொத்தம்: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + பயனர் முகவர் + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + விலை + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + %1 d + + + + %1 h + %1 h + + + + %1 m + + + + + + %1 s + %1 s + + + + None + + + + + N/A + N/A + + + + %1 ms + %1 ms + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 மற்றும் %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + வாடிக்கையாளர் பதிப்பு + + + + &Information + &தகவல் + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + பிணையம் + + + + Name + பெயர் + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + நினைவக குளம் + + + + Current number of transactions + + + + + Memory usage + நினைவக பயன்பாடு + + + + &Reset + + + + + + Received + + + + + + Sent + அனுப்பிய + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + திசை + + + + Version + பதிப்பு + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + பயனர் முகவர் + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + பிங் நேரம் + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + &திற + + + + &Console + &பணியகம் + + + + &Network Traffic + + + + + Totals + மொத்தம் + + + + In: + உள்ளே: + + + + Out: + வெளியே: + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1 &மணி + + + + 1 &day + 1 &நாள் + + + + 1 &week + 1 &வாரம் + + + + 1 &year + 1 &ஆண்டு + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + via %1 + + + + + never + ஒருபோதும் + + + + Inbound + உள்வரும் + + + + Outbound + வெளி செல்லும் + + + + Yes + ஆம் + + + + No + மறு + + + + + Unknown + அறியப்படாத + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + &கண்ணோட்டம் + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + &பரிவர்த்தனைகள் + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &வெளியேறு + + + + Quit application + விலகு + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + &Qt-ஐ பற்றி + + + + Show information about Qt + + + + + &Options... + &விருப்பங்கள்... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + &என்க்ரிப்ட் பணப்பை... + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + &URI-ஐ திற + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + &செய்தியை சரிசெய்... + + + + Raven + Raven + + + + Wallet + பணப்பை + + + + &Send + &அனுப்பு + + + + &Receive + &பெறு + + + + &Show / Hide + &காட்டு/மறை + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + &கோப்பு + + + + &Help + &உதவி + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 பின்னால் + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + தவறு + + + + Warning + எச்சரிக்கை + + + + Information + தகவல் + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + தேதி: %1 + + + + + + Amount: %1 + + தொகை: %1 + + + + + Type: %1 + + வகை: %1 + + + + + Label: %1 + + + + + + Address: %1 + + முகவரி: %1 + + + + + Sent transaction + அனுப்பிய பரிவர்த்தனை + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &தொகை: + + + + &Label: + &சிட்டை: + + + + &Message: + &செய்தி: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + நீக்கு + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + காண்பி + + + + Remove the selected entries from the list + + + + + Remove + நீக்கு + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR குறியீடு + + + + Copy &URI + நகலை &URI + + + + Copy &Address + நகலை விலாசம் + + + + &Save Image... + &படத்தை சேமி... + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + முகவரி + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + அளவு + + + + Bytes: + + + + + Amount: + விலை + + + + Fee: + கட்டணம்: + + + + After Fee: + கட்டணத்திறகுப் பின்: + + + + Change: + மாற்று: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + தேர்ந்தெடு... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + மறை + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + மீதி: + + + + Confirm the send action + + + + + S&end + &அனுப்பு + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &தொகை: + + + + &Label: + &சிட்டை: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + செய்தி: + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + கையொப்பம் + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + KB/s + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + முகவரி + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven மையம் + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + (default: %u) + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + தகவல் + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + எச்சரிக்கை + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + (default: %s) + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error தவறு diff --git a/src/qt/locale/raven_th_TH.ts b/src/qt/locale/raven_th_TH.ts index 56b7bcbece..864d106724 100644 --- a/src/qt/locale/raven_th_TH.ts +++ b/src/qt/locale/raven_th_TH.ts @@ -1,937 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label คลิกขวาเพื่อแก้ไขที่อยู่ หรือป้ายชื่อ + Create a new address สร้างที่อยู่ใหม่ + &New &สร้างใหม่ + Copy the currently selected address to the system clipboard คัดลอกที่อยู่ที่ถูกเลือกไปยัง คลิปบอร์ดของระบบ + &Copy &คัดลอก + C&lose &ปิด + Delete the currently selected address from the list ลบที่อยู่ที่เลือกไว้ในขณะนี้จากรายการ + Export the data in the current tab to a file ส่งออกข้อมูลที่อยู่ในแท็บไปที่ไฟล์ + &Export &ส่งออก + &Delete &ลบ + Choose the address to send coins to เลือกที่อยู่เพื่อส่งเหรียญไปไว้ + Choose the address to receive coins with เลือกที่อยู่เพื่อส่งเหรียญไปไว้ + + C&hoose + + + + Sending addresses ส่งที่อยู่ - + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog ช่องสำหรับ รหัสผ่าน + Enter passphrase ใส่รหัสผ่าน + New passphrase รหัสผา่นใหม่ + Repeat new passphrase กรุณากรอกรหัสผ่านใหม่อีกครั้งหนึ่ง - - - BanTableModel - - IP/Netmask - IP/Netmask (ตัวกรอง IP) - - Banned Until - ห้าม จนถึง + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - - - RavenGUI - Sign &message... - เซ็นต์ชื่อด้วย &ข้อความ... + + Encrypt wallet + - Synchronizing with network... - กำลังทำข้อมูลให้ตรงกันกับเครือข่าย ... + + This operation needs your wallet passphrase to unlock the wallet. + - &Overview - &ภาพรวม + + Unlock wallet + - Node - Node/โหนด + + This operation needs your wallet passphrase to decrypt the wallet. + - Show general overview of wallet - แสดงภาพรวมทั่วไปของกระเป๋าเงิน + + Decrypt wallet + - &Transactions - &การทำรายการ + + Change passphrase + - Browse transaction history - เรียกดูประวัติการทำธุรกรรม + + Enter the old passphrase and new passphrase to the wallet. + - E&xit - &ออก + + Confirm wallet encryption + - Quit application - ออกจากโปรแกรม + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + - &About %1 - &เกี่ยวกับ %1 + + Are you sure you wish to encrypt your wallet? + - Show information about %1 - แสดงข้อมูล เกี่ยวกับ %1 + + + Wallet encrypted + - About &Qt - เกี่ยวกับ &Qt + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + - Show information about Qt - แสดงข้อมูล เกี่ยวกับ Qt + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + - &Options... - &ตัวเลือก... + + + + + Wallet encryption failed + - Modify configuration options for %1 - ปรับปรุง ข้อมูลการตั้งค่าตัวเลือก สำหรับ %1 + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + - &Encrypt Wallet... - &กระเป๋าเงินเข้ารหัส + + + The supplied passphrases do not match. + - &Backup Wallet... - &สำรองกระเป๋าเงิน... + + Wallet unlock failed + - &Change Passphrase... - &เปลี่ยนรหัสผ่าน... + + + + The passphrase entered for the wallet decryption was incorrect. + - &Sending addresses... - &ที่เก็บเงิน ที่จะส่ง raven + + Wallet decryption failed + - &Receiving addresses... - &ที่เก็บเงิน ที่จะรับ raven + + Wallet passphrase was successfully changed. + - Open &URI... - เปิด &URI + + + Warning: The Caps Lock key is on! + + + + AssetControlDialog - Reindexing blocks on disk... - กำลังทำดัชนี ที่เก็บบล็อก ใหม่ ในดิสก์... + + Asset Selection + - Send coins to a Raven address - ส่ง coins ไปยัง ที่เก็บ Raven + + Quantity: + - Backup wallet to another location - สำรอง กระเป๋าเงินไปยัง ที่เก็บอื่น + + Bytes: + - Change the passphrase used for wallet encryption - เปลี่ยนรหัสผ่านที่ใช้สำหรับการเข้ารหัสกระเป๋าเงิน + + Amount: + - &Debug window - &หน้าต่าง Debug + + Dust: + - Open debugging and diagnostic console - เปิด แผลงควบคุม debugging และ diagnostic + + Fee: + - &Verify message... - &ยืนยันข้อความ... + + After Fee: + - Raven - Raven + + Change: + - Wallet - กระเป๋าเงิน + + (un)select all + - &Send - &ส่ง + + Tree mode + - &Receive - &รับ + + List mode + - &Show / Hide - &แสดง / ซ่อน + + View assets that you have the ownership asset for + - Show or hide the main Window - แสดง หรือ ซ่อน หน้าหลัก + + View Administrator Assets + - Encrypt the private keys that belong to your wallet - เข้ารหัส private keys/ รหัสส่วนตัว สำหรับกระเป๋าเงินของท่าน + + Asset + - Sign messages with your Raven addresses to prove you own them - เซ็นชื่อด้วยข้อความ ที่เก็บ Raven เพื่อแสดงว่าท่านเป็นเจ้าของ raven นี้จริง + + Amount + - Verify messages to ensure they were signed with specified Raven addresses - ตรวจสอบ ข้อความ เพื่อให้แน่ใจว่า การเซ็นต์ชื่อ ด้วยที่เก็บ Raven แล้ว + + Received with label + - &File - &ไฟล์ + + Received with address + - &Settings - &การตั้งค่า + + Date + - &Help - &ช่วยเหลือ + + Confirmations + - Tabs toolbar - แถบเครื่องมือ + + Confirmed + - Request payments (generates QR codes and raven: URIs) - เรียกเก็บ การชำระเงิน (สร้าง QR codes และ raven: URIs) + + Copy address + - Show the list of used sending addresses and labels - แสดงรายการ ที่เก็บเงินที่จะส่ง raven ออก และป้ายชื่อ ที่ใช้ไปแล้ว + + Copy label + - Show the list of used receiving addresses and labels - แสดงรายการ ที่เก็บเงินที่จะรับ raven เข้า และป้ายชื่อ ที่ใช้ไปแล้ว + + + Copy amount + - Open a raven: URI or payment request - เปิด raven: URI หรือ การเรียกเก็บเงิน (การเรียกให้ชำระเงิน) + + Copy transaction ID + - &Command-line options - &ตัวเลือก Command-line - - - %n active connection(s) to Raven network - %n ช่องการเชื่อมต่อที่ใช้งานได้ เพื่อเชื่อมกับเครือข่าย Raven + + Lock unspent + - Indexing blocks on disk... - การกำลังสร้างดัชนีของบล็อก ในดิสก์... + + Unlock unspent + - Processing blocks on disk... - กำลังดำเนินการกับบล็อกในดิสก์... - - - Processed %n block(s) of transaction history. - %n บล็อกในประวัติรายการ ได้รับการดำเนินการเรียบร้อยแล้ว + + Copy quantity + - %1 behind - %1 ตามหลัง + + Copy fee + - Last received block was generated %1 ago. - บล็อกสุดท้ายที่ได้รับ สร้างขึ้นเมื่อ %1 มาแล้ว + + Copy after fee + - Transactions after this will not yet be visible. - รายการหลังจากนี้ จะไม่แสดงให้เห็น + + Copy bytes + - Error - ข้อผิดพลาด + + Copy dust + - Warning - คำเตือน + + Copy change + - Information - ข้อมูล + + (%1 locked) + - Up to date - ทันสมัย + + yes + - Show the %1 help message to get a list with possible Raven command-line options - แสดง %1 ข้อความช่วยเหลือ เพื่อแสดงรายการ ตัวเลือกที่เป็นไปได้สำหรับ Raven command-line + + no + - %1 client - %1 ลูกค้า + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - Catching up... - กำลังตามให้ทัน... + + Can vary +/- %1 satoshi(s) per input. + - Date: %1 - - วันที่: %1 - + + + (no label) + - Amount: %1 - - จำนวน: %1 - + + change from %1 (%2) + - Type: %1 - - ชนิด: %1 - + + (change) + + + + AssetTableModel - Label: %1 - - ป้ายชื่อ: %1 - + + Name + - Address: %1 - - ที่อยู่: %1 - + + Quantity + + + + AssetsDialog - Sent transaction - รายการที่ส่ง + + + Send Coins + - Incoming transaction - การทำรายการขาเข้า + + Asset Control Features + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - ระเป๋าเงินถูก <b>เข้ารหัส</b> และในขณะนี้ <b>ปลดล็อคแล้ว</b> + + Inputs... + - Wallet is <b>encrypted</b> and currently <b>locked</b> - กระเป๋าเงินถูก <b>เข้ารหัส</b> และในปัจจุบัน <b>ล็อค </b> + + automatically selected + - - - CoinControlDialog - Coin Selection - การเลือก Coin + + Insufficient funds! + + Quantity: - จำนวน: + + Bytes: - ไบต์: + + Amount: - จำนวน: + - Fee: - ค่าธรรมเนียม: + + Dust: + - Dust: - เศษ: + + Fee: + + After Fee: - ส่วนที่เหลือจากค่าธรรมเนียม: + + Change: - เงินทอน: + - (un)select all - (ไม่)เลือกทั้งหมด + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Tree mode - โหมดแบบต้นไม้ + + Custom change address + - List mode - โหมดแบบรายการ + + Transaction Fee: + - Amount - จำนวน + + Choose... + - Received with label - รับโดยป้ายชื่อ (label) + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Received with address - รับโดยที่เก็บ + + Warning: Fee estimation is currently not possible. + - Date - วันที่ + + collapse fee-settings + - Confirmations - การยืนยัน + + Hide + - Confirmed - ยืนยันแล้ว + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - EditAddressDialog - Edit Address - แก้ไขที่อยู่ + + per kilobyte + - &Label - &ป้ายชื่อ + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - The label associated with this address list entry - รายการแสดง ป้ายชื่อที่เกี่ยวข้องกับที่เก็บนี้ + + (read the tooltip) + - The address associated with this address list entry. This can only be modified for sending addresses. - ที่เก็บที่เกี่ยวข้องกับ ที่เก็บที่แสดงรายการนี้ การปรับปรุงนี้ทำได้สำหรับ ที่เก็บเงินที่จะใช่ส่งเงิน เท่านั้น + + Recommended: + - &Address - &ที่เก็บ + + Custom: + - - - FreespaceChecker - A new data directory will be created. + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask (ตัวกรอง IP) + + + + Banned Until + ห้าม จนถึง + + + + CoinControlDialog + + + Coin Selection + การเลือก Coin + + + + Quantity: + จำนวน: + + + + Bytes: + ไบต์: + + + + Amount: + จำนวน: + + + + Fee: + ค่าธรรมเนียม: + + + + Dust: + เศษ: + + + + After Fee: + ส่วนที่เหลือจากค่าธรรมเนียม: + + + + Change: + เงินทอน: + + + + (un)select all + (ไม่)เลือกทั้งหมด + + + + Tree mode + โหมดแบบต้นไม้ + + + + List mode + โหมดแบบรายการ + + + + Amount + จำนวน + + + + Received with label + รับโดยป้ายชื่อ (label) + + + + Received with address + รับโดยที่เก็บ + + + + Date + วันที่ + + + + Confirmations + การยืนยัน + + + + Confirmed + ยืนยันแล้ว + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + แก้ไขที่อยู่ + + + + &Label + &ป้ายชื่อ + + + + The label associated with this address list entry + รายการแสดง ป้ายชื่อที่เกี่ยวข้องกับที่เก็บนี้ + + + + The address associated with this address list entry. This can only be modified for sending addresses. + ที่เก็บที่เกี่ยวข้องกับ ที่เก็บที่แสดงรายการนี้ การปรับปรุงนี้ทำได้สำหรับ ที่เก็บเงินที่จะใช่ส่งเงิน เท่านั้น + + + + &Address + &ที่เก็บ + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. ไดเร็กทอรี่ใหม่ที่ใช้เก็บข้อมูลจะถูกสร้างขึ้นมา - name - ชื่อ + + name + ชื่อ + + + + Directory already exists. Add %1 if you intend to create a new directory here. + ไดเร็กทอรี่มีอยู่แล้ว ใส่เพิ่ม %1 หากท่านต้องการสร้างไดเร็กทอรี่ใหม่ที่นี่ + + + + Path already exists, and is not a directory. + พาธ มีอยู่แล้ว พาธนี่ไม่ใช่ไดเร็กทอรี่ + + + + Cannot create data directory here. + ไม่สามารถสร้างไดเร็กทอรี่ข้อมูลที่นี่ + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + เวอร์ชั่น + + + + + (%1-bit) + (%1-บิท) + + + + About %1 + เกี่ยวกับ %1 + + + + Command-line options + ตัวเลือก Command-line + + + + Usage: + วิธีใช้งาน: + + + + command-line options + ตัวเลือก command-line + + + + UI Options: + ตัวเลือก UI: + + + + Choose data directory on startup (default: %u) + เลือกไดเร็กทอรี่ข้อมูลตั้งแต่เริ่มต้นสตาร์ทอัพ (ค่าเริ่มต้น: %u) + + + + Set language, for example "de_DE" (default: system locale) + ตั้งค่าภาษา ยกตัวอย่าง "de_DE" (ค่าเริ่มต้น: ภาษาท้องถิ่นของระบบ) + + + + Start minimized + เริ่มต้นมินิไมซ์ + + + + Set SSL root certificates for payment request (default: -system-) + ตั้งค่า SSL root certificates สำหรับเรียกการชำระเงิน (ค่าเริ่มต้น: -system-) + + + + Show splash screen on startup (default: %u) + แสดง splash screen ตอนเริ่มต้น (ค่าเริ่มต้น: %u) + + + + Reset all settings changed in the GUI + รีเซตการเปลี่ยนการตั้งค่าทั้งหมดใน GUI + + + + Intro + + + Welcome + ยินดีต้อนรับ + + + + Welcome to %1. + ยินดีต้องรับสู่ %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + นี่เป็นการรันโปรแกรมครั้งแรก ท่านสามารถเลือก ว่าจะเก็บข้อมูลไว้ที่ %1 + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + ใช้ไดเร็กทอรี่ข้อมูล ที่เป็นค่าเริ่มต้น + + + + Use a custom data directory: + ใช้ไดเร็กทอรี่ข้อมูลที่ตั้งค่าเอง: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + ข้อผิดพลาด: ไดเร็กทอรี่ข้อมูลที่ต้องการ "%1" ไม่สามารถสร้างได้ + + + + Error + ข้อผิดพลาด + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + รูป + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + เปิด URI + + + + Open payment request from URI or file + เปิด การเรียกการชำระเงิน จาก URI หรือ ไฟล์ + + + + URI: + URI: + + + + Select payment request file + เลือก ไฟล์การเรียกการชำระเงิน + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + ตัวเลือก + + + + &Main + &หลัก + + + + Automatically start %1 after logging in to the system. + เริ่มต้นอัตโนมัติ %1 หลังจาก ล็อกอิน เข้าสู่ระบบแล้ว + + + + &Start %1 on system login + &เริ่ม %1 ในการล็อกอินระบบ + + + + Size of &database cache + ขนาดของ &database cache + + + + MB + MB + + + + Number of script &verification threads + จำนวนของสคริปท์ &verification threads + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP แอดเดส ของ proxy (เช่น IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + มินิไมซ์แอพ แทนการออกจากแอพพลิเคชั่น เมื่อวินโดว์ได้รับการปิด เมื่อเลือกตัวเลือกนี้ แอพพลิเคชั่น จะถูกปิด ก็ต่อเมื่อ มีการเลือกเมนู Exit/ออกจากระบบ เท่านั้น + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + URL แบบอื่น (ยกตัวอย่าง เอ็กพลอเลอร์บล็อก) ที่อยู่ใน เมนูรายการ ลำดับ %s ใน URL จะถูกเปลี่ยนด้วย รายการแฮช URL ที่เป็นแบบหลายๆอัน จะถูกแยก โดย เครื่องหมายเส้นบาร์ตั้ง | + + + + Active command-line options that override above options: + ตัวเลือก command-line แอกทีฟอยู่นี้ จะแทนที่ ตัวเลือกด้านบนนี้: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + รีเซต ไคลเอ็นออพชั่น กลับไปเป็นค่าเริ่มต้น + + + + &Reset Options + &รีเซต ออพชั่น + + + + &Network + &เน็ตเวิร์ก + + + + (0 = auto, <0 = leave that many cores free) + (0 = อัตโนมัติ, <0 = ปล่อย คอร์ อิสระ) + + + + W&allet + กระเ&ป๋าเงิน + + + + Expert + ผู้เชี่ยวชาญ + + + + Enable coin &control features + เปิดใช้ coin & รูปแบบการควบคุม + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + หากท่านไม่เปิดใช้ การใช้เงินทอนที่ยังไม่ยืนยัน เงินทอนจากการทำรายการจะไม่สามารถใช้ได้ จนกว่ารายการที่ทำการ จะได้รับการยืนยันหนึ่งครั้ง และจะกระทบการคำนวณยอดคงเหลือของท่านด้วย + + + + &Spend unconfirmed change + &ใช้เงินทอนที่ยังไม่ยืนยัน + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + เปิด Raven ไคล์เอ็นท์พอร์ต/client port บน router โดยอัตโนมัติ วิธีนี้ใช้ได้เมื่อ router สนับสนุน UPnP และสถานะเปิดใช้งาน + + + + Map port using &UPnP + จองพอร์ต โดยใช้ &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + เชื่อมต่อกับ Raven เน็ตเวิร์ก ผ่านพร็อกซี่แบบ SOCKS5 + + + + &Connect through SOCKS5 proxy (default proxy): + &เชื่อมต่อผ่าน พร็อกซี่ SOCKS5 (พร็อกซี่เริ่มต้น): + + + + + Proxy &IP: + พร็อกซี่ &IP: + + + + + &Port: + &พอร์ต + + + + + Port of the proxy (e.g. 9050) + พอร์ตของพร็อกซี่ (ตัวอย่าง 9050) + + + + Used for reaching peers via: + ใช้ในการเข้าถึงอีกฝ่ายหนึ่ง peer โดย: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + เชื่อมต่อกับ เครือข่าย Raven ผ่านทาง พร้อกซี่ SOCKS5 แยกต่างหาก สำหรับ Tor เซอร์วิส + + + + &Window + &วันโดว์ + + + + Show only a tray icon after minimizing the window. + แสดงเทรย์ไอคอน หลังมืนิไมส์วินโดว์ เท่านั้น + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + รูป + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + จำนวน + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 และ %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + เซ็นต์ชื่อด้วย &ข้อความ... + + + + Synchronizing with network... + กำลังทำข้อมูลให้ตรงกันกับเครือข่าย ... + + + + &Overview + &ภาพรวม + + + + Node + Node/โหนด + + + + Show general overview of wallet + แสดงภาพรวมทั่วไปของกระเป๋าเงิน + + + + &Transactions + &การทำรายการ + + + + Browse transaction history + เรียกดูประวัติการทำธุรกรรม + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &ออก + + + + Quit application + ออกจากโปรแกรม + + + + &About %1 + &เกี่ยวกับ %1 + + + + Show information about %1 + แสดงข้อมูล เกี่ยวกับ %1 + + + + About &Qt + เกี่ยวกับ &Qt + + + + Show information about Qt + แสดงข้อมูล เกี่ยวกับ Qt + + + + &Options... + &ตัวเลือก... + + + + Modify configuration options for %1 + ปรับปรุง ข้อมูลการตั้งค่าตัวเลือก สำหรับ %1 + + + + &Encrypt Wallet... + &กระเป๋าเงินเข้ารหัส + + + + &Backup Wallet... + &สำรองกระเป๋าเงิน... + + + + &Change Passphrase... + &เปลี่ยนรหัสผ่าน... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &ที่เก็บเงิน ที่จะส่ง raven + + + + &Receiving addresses... + &ที่เก็บเงิน ที่จะรับ raven + + + + Open &URI... + เปิด &URI + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + กำลังทำดัชนี ที่เก็บบล็อก ใหม่ ในดิสก์... + + + + Send coins to a Raven address + ส่ง coins ไปยัง ที่เก็บ Raven + + + + Backup wallet to another location + สำรอง กระเป๋าเงินไปยัง ที่เก็บอื่น + + + + Change the passphrase used for wallet encryption + เปลี่ยนรหัสผ่านที่ใช้สำหรับการเข้ารหัสกระเป๋าเงิน + + + + Open debugging and diagnostic console + เปิด แผลงควบคุม debugging และ diagnostic + + + + &Verify message... + &ยืนยันข้อความ... + + + + Raven + Raven + + + + Wallet + กระเป๋าเงิน + + + + &Send + &ส่ง + + + + &Receive + &รับ + + + + &Show / Hide + &แสดง / ซ่อน + + + + Show or hide the main Window + แสดง หรือ ซ่อน หน้าหลัก + + + + Encrypt the private keys that belong to your wallet + เข้ารหัส private keys/ รหัสส่วนตัว สำหรับกระเป๋าเงินของท่าน + + + + Sign messages with your Raven addresses to prove you own them + เซ็นชื่อด้วยข้อความ ที่เก็บ Raven เพื่อแสดงว่าท่านเป็นเจ้าของ raven นี้จริง + + + + Verify messages to ensure they were signed with specified Raven addresses + ตรวจสอบ ข้อความ เพื่อให้แน่ใจว่า การเซ็นต์ชื่อ ด้วยที่เก็บ Raven แล้ว + + + + &File + &ไฟล์ + + + + &Help + &ช่วยเหลือ + + + + Request payments (generates QR codes and raven: URIs) + เรียกเก็บ การชำระเงิน (สร้าง QR codes และ raven: URIs) + + + + Show the list of used sending addresses and labels + แสดงรายการ ที่เก็บเงินที่จะส่ง raven ออก และป้ายชื่อ ที่ใช้ไปแล้ว + + + + Show the list of used receiving addresses and labels + แสดงรายการ ที่เก็บเงินที่จะรับ raven เข้า และป้ายชื่อ ที่ใช้ไปแล้ว + + + + Open a raven: URI or payment request + เปิด raven: URI หรือ การเรียกเก็บเงิน (การเรียกให้ชำระเงิน) + + + + &Command-line options + &ตัวเลือก Command-line + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + การกำลังสร้างดัชนีของบล็อก ในดิสก์... + + + + Processing blocks on disk... + กำลังดำเนินการกับบล็อกในดิสก์... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 ตามหลัง + + + + Last received block was generated %1 ago. + บล็อกสุดท้ายที่ได้รับ สร้างขึ้นเมื่อ %1 มาแล้ว + + + + Transactions after this will not yet be visible. + รายการหลังจากนี้ จะไม่แสดงให้เห็น + + + + Error + ข้อผิดพลาด + + + + Warning + คำเตือน + + + + Information + ข้อมูล + + + + Up to date + ทันสมัย + + + + Show the %1 help message to get a list with possible Raven command-line options + แสดง %1 ข้อความช่วยเหลือ เพื่อแสดงรายการ ตัวเลือกที่เป็นไปได้สำหรับ Raven command-line + + + + %1 client + %1 ลูกค้า + + + + Connecting to peers... + + + + + Catching up... + กำลังตามให้ทัน... + + + + Date: %1 + + วันที่: %1 + + + + + + Amount: %1 + + จำนวน: %1 + + + + + Type: %1 + + ชนิด: %1 + + + + + Label: %1 + + ป้ายชื่อ: %1 + + + + + Address: %1 + + ที่อยู่: %1 + + + + + Sent transaction + รายการที่ส่ง + + + + Incoming transaction + การทำรายการขาเข้า + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + ระเป๋าเงินถูก <b>เข้ารหัส</b> และในขณะนี้ <b>ปลดล็อคแล้ว</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + กระเป๋าเงินถูก <b>เข้ารหัส</b> และในปัจจุบัน <b>ล็อค </b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + &ชื่อ: + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + ส่งเหรียญ + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + จำนวน: + + + + Bytes: + ไบต์: + + + + Amount: + จำนวน: + + + + Fee: + ค่าธรรมเนียม: + + + + After Fee: + ส่วนที่เหลือจากค่าธรรมเนียม: + + + + Change: + เงินทอน: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + เศษ: + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + &ชื่อ: + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + ตัวเลือก: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + ข้อมูล + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + คำเตือน + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Directory already exists. Add %1 if you intend to create a new directory here. - ไดเร็กทอรี่มีอยู่แล้ว ใส่เพิ่ม %1 หากท่านต้องการสร้างไดเร็กทอรี่ใหม่ที่นี่ + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Path already exists, and is not a directory. - พาธ มีอยู่แล้ว พาธนี่ไม่ใช่ไดเร็กทอรี่ + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Cannot create data directory here. - ไม่สามารถสร้างไดเร็กทอรี่ข้อมูลที่นี่ + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - - - HelpMessageDialog - version - เวอร์ชั่น + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - (%1-bit) - (%1-บิท) + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - About %1 - เกี่ยวกับ %1 + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - Command-line options - ตัวเลือก Command-line + + %s is set very high! + - Usage: - วิธีใช้งาน: + + ' doesn't exist in the database + - command-line options - ตัวเลือก command-line + + ' has already been used + - UI Options: - ตัวเลือก UI: + + ' is not a valid character in the expression: + - Choose data directory on startup (default: %u) - เลือกไดเร็กทอรี่ข้อมูลตั้งแต่เริ่มต้นสตาร์ทอัพ (ค่าเริ่มต้น: %u) + + ' the amount trying to reissue is to large + - Set language, for example "de_DE" (default: system locale) - ตั้งค่าภาษา ยกตัวอย่าง "de_DE" (ค่าเริ่มต้น: ภาษาท้องถิ่นของระบบ) + + (default: %s) + - Start minimized - เริ่มต้นมินิไมซ์ + + A space separated list of 12-words used to import a bip44 wallet + - Set SSL root certificates for payment request (default: -system-) - ตั้งค่า SSL root certificates สำหรับเรียกการชำระเงิน (ค่าเริ่มต้น: -system-) + + Always query for peer addresses via DNS lookup (default: %u) + - Show splash screen on startup (default: %u) - แสดง splash screen ตอนเริ่มต้น (ค่าเริ่มต้น: %u) + + Asset Transfer amounts must be greater than 0 + - Reset all settings changed in the GUI - รีเซตการเปลี่ยนการตั้งค่าทั้งหมดใน GUI + + Asset doesn't exist: + - - - Intro - Welcome - ยินดีต้อนรับ + + Asset must be a qualifier, sub qualifier, or a restricted asset + - Welcome to %1. - ยินดีต้องรับสู่ %1 + + Asset name is not valid + - As this is the first time the program is launched, you can choose where %1 will store its data. - นี่เป็นการรันโปรแกรมครั้งแรก ท่านสามารถเลือก ว่าจะเก็บข้อมูลไว้ที่ %1 + + Asset with this name is already in the mempool + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 จะดาวน์โหลดและเก็บกอปปี้ชุดหนึ่งของ บล็อกเชน Raven ไว้ ข้อมูลขนานอย่างน้อย %2GB จะเก็บไว้ในไดเร็กทอรี่นี้ และข้อมูลจะมีขนาดใหญ่ขึ้นเรื่อยๆ กระเป๋าเงิน จะเก็บไว้ในไดเร็กทอรี่นี้ด้วย + + Done Loading + - Use the default data directory - ใช้ไดเร็กทอรี่ข้อมูล ที่เป็นค่าเริ่มต้น + + Enable publish raw asset messages in <address> + - Use a custom data directory: - ใช้ไดเร็กทอรี่ข้อมูลที่ตั้งค่าเอง: + + Error creating %s: You can't create non-HD wallets with this version. + - Error: Specified data directory "%1" cannot be created. - ข้อผิดพลาด: ไดเร็กทอรี่ข้อมูลที่ต้องการ "%1" ไม่สามารถสร้างได้ + + Error loading wallet %s. -wallet filename must be a regular file. + - Error - ข้อผิดพลาด + + Error loading wallet %s. Duplicate -wallet filename specified. + - - %n GB of free space available - %n GB พื้นที่ว่างบนดิสก์ที่ใช้ได้ + + + Error loading wallet %s. Invalid characters in -wallet filename. + - - (of %n GB needed) - (ต้องการพื้นที่ %n GB) + + + Error not set + - - - ModalOverlay - Form - รูป + + Error writing bip 39 passphrase to database + - - - OpenURIDialog - Open URI - เปิด URI + + Error writing bip 39 vchseed to database + - Open payment request from URI or file - เปิด การเรียกการชำระเงิน จาก URI หรือ ไฟล์ + + Error writing bip 39 words to database + - URI: - URI: + + Every '(' must have a corresponding ')' in the expression: + - Select payment request file - เลือก ไฟล์การเรียกการชำระเงิน + + Failed to extract destination from change script + - - - OptionsDialog - Options - ตัวเลือก + + Failed to find restricted asset change address from inputs + - &Main - &หลัก + + Failed to get asset data from script + - Automatically start %1 after logging in to the system. - เริ่มต้นอัตโนมัติ %1 หลังจาก ล็อกอิน เข้าสู่ระบบแล้ว + + Failed to get verifier string from output: + - &Start %1 on system login - &เริ่ม %1 ในการล็อกอินระบบ + + Failed to load Assets Database + - Size of &database cache - ขนาดของ &database cache + + Flag must be 1 or 0 + - MB - MB + + How many blocks to check at startup (default: %u, 0 = all) + - Number of script &verification threads - จำนวนของสคริปท์ &verification threads + + Include IP addresses in debug output (default: %u) + - Accept connections from outside - ยอมรับ การเชื่อมต่อจากภายนอก + + Init Message Channels - Scanning Asset Transactions + - Allow incoming connections - ยอมให้เชื่อมต่อจากภายนอกได้ + + Insufficient asset funds + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP แอดเดส ของ proxy (เช่น IPv4: 127.0.0.1 / IPv6: ::1) + + Invalid Qualifier Name: + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - มินิไมซ์แอพ แทนการออกจากแอพพลิเคชั่น เมื่อวินโดว์ได้รับการปิด เมื่อเลือกตัวเลือกนี้ แอพพลิเคชั่น จะถูกปิด ก็ต่อเมื่อ มีการเลือกเมนู Exit/ออกจากระบบ เท่านั้น + + Invalid expressions in verifier string: + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - URL แบบอื่น (ยกตัวอย่าง เอ็กพลอเลอร์บล็อก) ที่อยู่ใน เมนูรายการ ลำดับ %s ใน URL จะถูกเปลี่ยนด้วย รายการแฮช URL ที่เป็นแบบหลายๆอัน จะถูกแยก โดย เครื่องหมายเส้นบาร์ตั้ง | + + Invalid parameter: amount must be + - Third party transaction URLs - URI รายการ แบบของเจ้าอื่นๆ + + Invalid parameter: amount must be between + - Active command-line options that override above options: - ตัวเลือก command-line แอกทีฟอยู่นี้ จะแทนที่ ตัวเลือกด้านบนนี้: + + Invalid parameter: asset amount can't be equal to or less than zero. + - Reset all client options to default. - รีเซต ไคลเอ็นออพชั่น กลับไปเป็นค่าเริ่มต้น + + Invalid parameter: asset amount greater than max money: + - &Reset Options - &รีเซต ออพชั่น + + Invalid parameter: asset_name ' + - &Network - &เน็ตเวิร์ก + + Invalid parameter: has_ipfs must be 0 or 1. + - (0 = auto, <0 = leave that many cores free) - (0 = อัตโนมัติ, <0 = ปล่อย คอร์ อิสระ) + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - W&allet - กระเ&ป๋าเงิน + + Invalid parameter: reissuable must be 0 or 1 + - Expert - ผู้เชี่ยวชาญ + + Invalid parameter: reissuable must be 0 + - Enable coin &control features - เปิดใช้ coin & รูปแบบการควบคุม + + Invalid parameter: units must be + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - หากท่านไม่เปิดใช้ การใช้เงินทอนที่ยังไม่ยืนยัน เงินทอนจากการทำรายการจะไม่สามารถใช้ได้ จนกว่ารายการที่ทำการ จะได้รับการยืนยันหนึ่งครั้ง และจะกระทบการคำนวณยอดคงเหลือของท่านด้วย + + Invalid parameter: units must be between 0-8. + - &Spend unconfirmed change - &ใช้เงินทอนที่ยังไม่ยืนยัน + + Invalid syntax: + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - เปิด Raven ไคล์เอ็นท์พอร์ต/client port บน router โดยอัตโนมัติ วิธีนี้ใช้ได้เมื่อ router สนับสนุน UPnP และสถานะเปิดใช้งาน + + Keypool ran out, please call keypoolrefill first + - Map port using &UPnP - จองพอร์ต โดยใช้ &UPnP + + Length is to large. Please use a smaller length + - Connect to the Raven network through a SOCKS5 proxy. - เชื่อมต่อกับ Raven เน็ตเวิร์ก ผ่านพร็อกซี่แบบ SOCKS5 + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - &Connect through SOCKS5 proxy (default proxy): - &เชื่อมต่อผ่าน พร็อกซี่ SOCKS5 (พร็อกซี่เริ่มต้น): + + Listen for connections on <port> (default: %u or testnet: %u) + - Proxy &IP: - พร็อกซี่ &IP: + + Maintain at most <n> connections to peers (default: %u) + - &Port: - &พอร์ต + + Make the wallet broadcast transactions + - Port of the proxy (e.g. 9050) - พอร์ตของพร็อกซี่ (ตัวอย่าง 9050) + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Used for reaching peers via: - ใช้ในการเข้าถึงอีกฝ่ายหนึ่ง peer โดย: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - แสดง หากใช้พร็อกซี่ SOCKS5 ที่เป็นค่าเริ่มต้น เพื่อเข้าถึง peer อีกฝ่าย ผ่านทางเน็ตเวิร์กชนิดนี้ + + Mempool cleared + - IPv4 - IPv4 + + Multiple verifier strings found in transaction + - IPv6 - IPv6 + + Passphrase securing your 12-word mnemonic word-list + - Tor - Tor + + Prepend debug output with timestamp (default: %u) + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - เชื่อมต่อกับ เครือข่าย Raven ผ่านทาง พร้อกซี่ SOCKS5 แยกต่างหาก สำหรับ Tor เซอร์วิส + + Relay and mine data carrier transactions (default: %u) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - ใช้ พร็อกซี่ SOCKS5 แยก เพื่อเข้าถึง peers ผ่าน Tor เซอร์วิสซ่อน: + + Relay non-P2SH multisig (default: %u) + - &Window - &วันโดว์ + + Restricted asset transfer from address that has been frozen + - &Hide the icon from the system tray. - &ซ่อนไอคอน จากเทรย์ระบบ + + Send transactions with full-RBF opt-in enabled (default: %u) + - Hide tray icon - ซ่อนไอคอนเทรย์ + + Set key pool size to <n> (default: %u) + - Show only a tray icon after minimizing the window. - แสดงเทรย์ไอคอน หลังมืนิไมส์วินโดว์ เท่านั้น + + Set maximum BIP141 block weight (default: %d) + - - - OverviewPage - Form - รูป + + Set the Maximum reorg depth (default: %u) + - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - จำนวน + + Set the number of threads to service RPC calls (default: %d) + - %1 and %2 - %1 และ %2 + + Signing asset transaction failed + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - &Label: - &ชื่อ: + + Specify configuration file (default: %s) + - - - ReceiveRequestDialog - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - ส่งเหรียญ + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Quantity: - จำนวน: + + Specify pid file (default: %s) + - Bytes: - ไบต์: + + Spend unconfirmed change when sending transactions (default: %u) + - Amount: - จำนวน: + + Starting network threads... + - Fee: - ค่าธรรมเนียม: + + The symbol: ' + - After Fee: - ส่วนที่เหลือจากค่าธรรมเนียม: + + The verifier string has two operators without a tag between them + - Change: - เงินทอน: + + The wallet will avoid paying less than the minimum relay fee. + - Dust: - เศษ: + + This is the minimum transaction fee you pay on every transaction. + - - - SendCoinsEntry - &Label: - &ชื่อ: + + This is the transaction fee you will pay if you send a transaction. + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - [testnet] - [testnet] + + Threshold for disconnecting misbehaving peers (default: %u) + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - ตัวเลือก: + + Transaction amounts must not be negative + - Information - ข้อมูล + + Transaction has too long of a mempool chain + - Warning - คำเตือน + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error ข้อผิดพลาด diff --git a/src/qt/locale/raven_tr.ts b/src/qt/locale/raven_tr.ts index a59250be0c..d54c59ca89 100644 --- a/src/qt/locale/raven_tr.ts +++ b/src/qt/locale/raven_tr.ts @@ -1,116 +1,141 @@ - - - + AddressBookPage + Right-click to edit address or label - Adres veya etiketi düzenlemek için sağ tıklayınız. + Adres veya etiketi düzenlemek için sağ tıkla + Create a new address Yeni bir adres oluştur + &New &Yeni + Copy the currently selected address to the system clipboard - Seçili adresi panoya kopyala + Seçili adresi sistem panosuna kopyala + &Copy &Kopyala + C&lose K&apat + Delete the currently selected address from the list Seçili adresi listeden sil + Export the data in the current tab to a file - Açık olan sekmedeki verileri bir dosyaya aktar + Mevcut sekmedeki verileri bir dosyaya aktar + &Export &Dışarı aktar + &Delete &Sil + Choose the address to send coins to - Parayı göndermek istediğiniz adresi seçiniz + Coin göndermek istediğiniz adresi seçiniz + Choose the address to receive coins with - Parayı almak istediğiniz adresi seçiniz + Coin almak istediğiniz adresi seçiniz + C&hoose S&eçiniz + Sending addresses - Gönderilen adresler + Gönderim adresleri + Receiving addresses Alım adresleri + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Bunlar ödemeleri göndermek için kullanacağınız Raven adreslerinizdir. Raven yollamadan önce tutarı ve alıcının alım adresini her zaman kontrol ediniz. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Bunlar ödemeleri almak için kullanacağınız Raven adreslerinizdir. Her işlem için yeni bir alım adresi kullanmanız tavsiye edilir. + &Copy Address &Adresi Kopyala + Copy &Label &Etiketi Kopyala + &Edit &Değiştir + Export Address List Adres Listesini Dışarı Aktar + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) + Exporting Failed Dışarı Aktarım Başarısız Oldu + There was an error trying to save the address list to %1. Please try again. - Adres listesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. Lütfen tekrar deneyin. + Adres listesinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. Lütfen tekrar dene. AddressTableModel + Label Etiket + Address Adres + (no label) (etiket yok) @@ -118,2103 +143,5360 @@ AskPassphraseDialog + Passphrase Dialog Parola Diyaloğu + Enter passphrase - Parolayı giriniz + Parolayı gir + New passphrase Yeni parola + Repeat new passphrase - Yeni parolayı tekrarlayınız + Yeni parolayı tekrarla + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Cüzdan için yeni parolayı giriniz.<br/>Lütfen <b>on ya da daha fazla rastgele karakter</b> veya <b>sekiz ya da daha fazla kelime</b> içeren bir parola kullanınız. + Encrypt wallet Cüzdanı şifrele + This operation needs your wallet passphrase to unlock the wallet. Bu eylem cüzdan kilidini açmak için cüzdan parolanızı gerektirir. + Unlock wallet Cüzdan kilidini kaldır + This operation needs your wallet passphrase to decrypt the wallet. Bu eylem, cüzdan şifresini çözmek için cüzdan parolanıza ihtiyaç duyuyor. + Decrypt wallet - Cüzdanın şifrelemesini aç + Cüzdan şifresini çöz + Change passphrase Parola değiştir + Enter the old passphrase and new passphrase to the wallet. Eski ve yeni parolanızı cüzdana giriniz. + Confirm wallet encryption Cüzdan şifrelemesini onayla + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! - Uyarı: Eğer cüzdanınızı şifreler ve parolanızı kaybederseniz <b>TÜM BİTCOİNLERİNİZİ KAYBEDECEKSİNİZ</b>! + Uyarı: Eğer cüzdanınızı şifreler ve parolanızı kaybederseniz <b>TÜM RAVENCOINLERİNİZİ KAYBEDECEKSİNİZ</b>! + Are you sure you wish to encrypt your wallet? Cüzdanınızı şifrelemek istediğinizden emin misiniz? + + Wallet encrypted Cüzdan şifrelendi + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. Şifreleme işleminin bitirilmesi için %1 kapatılacak. Her ne kadar cüzdanınızı şifreleseniz de şifrelemenin ravenlerinizi bilgisayarınıza bulaşan zararlılardan tam olarak koruyamayacağını unutmayın. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ÖNEMLİ: Önceden yapmış olduğunuz cüzdan dosyası yedeklemelerinin yeni oluşturulan şifrelenmiş cüzdan dosyası ile değiştirilmeleri gerekir. Güvenlik nedenleriyle yeni, şifrelenmiş cüzdanı kullanmaya başladığınızda eski şifrelenmemiş cüzdan dosyaları işe yaramaz hale gelecektir. + + + + Wallet encryption failed Cüzdan şifreleme başarısız + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Dahili bir hata yüzünden cüzdan şifrelemesi başarısız oldu. Cüzdanın şifrelenmedi. + + The supplied passphrases do not match. Girilen parolalar birbiriyle eşleşmiyor. + Wallet unlock failed Cüzdan kilidini kaldırma başarısız oldu + + + The passphrase entered for the wallet decryption was incorrect. Cüzdan şifresinin açılması için girilen parola yanlıştı. + Wallet decryption failed Cüzdan şifresinin açılması başarısız oldu + Wallet passphrase was successfully changed. Cüzdan parolası başarılı bir şekilde değiştirildi. + + Warning: The Caps Lock key is on! Uyarı: Caps Lock tuşu etkin durumda! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Ağ Maskesi + + Asset Selection + Asset Seçimi - Banned Until - Şu zamana kadar yasaklı: + + Quantity: + Miktar: - - - RavenGUI - Sign &message... - &İleti imzala... + + Bytes: + Bayt: - Synchronizing with network... - Ağ ile senkronize ediliyor... + + Amount: + Tutar: - &Overview - &Genel bakış + + Dust: + Dust: - Node - Düğüm + + Fee: + Ücret: - Show general overview of wallet - Cüzdana genel bakışı göster + + After Fee: + Ücretten sonra: - &Transactions - &İşlemler + + Change: + Change: - Browse transaction history - İşlem geçmişine gözat + + (un)select all + (un)select all - E&xit - Ç&ık + + Tree mode + Ağaç modu - Quit application - Uygulamadan çık + + List mode + Liste modu - &About %1 - %1 &Hakkında + + View assets that you have the ownership asset for + View assets that you have the ownership asset for - Show information about %1 - %1 hakkında bilgi göster + + View Administrator Assets + View Administrator Assets - About &Qt - &Qt Hakkında + + Asset + Asset - Show information about Qt - Qt hakkında bilgi göster + + Amount + Amount - &Options... - &Seçenekler... + + Received with label + Received with label - Modify configuration options for %1 - %1 için yapılandırma ayarlarını değiştir + + Received with address + Received with address - &Encrypt Wallet... - &Cüzdanı Şifrele... + + Date + Date - &Backup Wallet... - &Cüzdanı Yedekle... + + Confirmations + Confirmations - &Change Passphrase... - &Parolayı Değiştir... + + Confirmed + Confirmed - &Sending addresses... - &Gönderme adresleri... + + Copy address + Copy address - &Receiving addresses... - &Alma adresleri... + + Copy label + Copy label - Open &URI... - &URI Aç... + + + Copy amount + Copy amount - Click to disable network activity. - Ağ etkinliğini devre dışı bırakmak için tıklayın. + + Copy transaction ID + Copy transaction ID - Network activity disabled. - Ağ etkinliği devre dışı bırakılmış. + + Lock unspent + Lock unspent - Click to enable network activity again. - Ağ etkinliğini yeniden etkinleştirmek için tıklayın. + + Unlock unspent + Unlock unspent - Syncing Headers (%1%)... - Üstbilgiler Senkronize Ediliyor (%1%)... + + Copy quantity + Copy quantity - Reindexing blocks on disk... - Diskteki bloklar yeniden indeksleniyor... + + Copy fee + Copy fee - Send coins to a Raven address - Bir raven adresine raven gönder + + Copy after fee + Copy after fee - Backup wallet to another location - Cüzdanı diğer bir konumda yedekle + + Copy bytes + Copy bytes - Change the passphrase used for wallet encryption - Cüzdan şifrelemesi için kullanılan parolayı değiştir + + Copy dust + Copy dust - &Debug window - &Hata ayıklama penceresi + + Copy change + Copy change - Open debugging and diagnostic console - Hata ayıklama ve teşhis penceresini aç + + (%1 locked) + (%1 locked) - &Verify message... - İletiyi &kontrol et... + + yes + yes - Raven - Raven + + no + no - Wallet - Cüzdan + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + This label turns red if any recipient receives an amount smaller than the current dust threshold. - &Send - &Gönder + + Can vary +/- %1 satoshi(s) per input. + Can vary +/- %1 satoshi(s) per input. - &Receive - &Al + + + (no label) + (no label) - &Show / Hide - &Göster / Gizle + + change from %1 (%2) + change from %1 (%2) - Show or hide the main Window - Ana pencereyi göster ya da gizle + + (change) + (change) + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Cüzdanınıza ait özel anahtarları şifreleyin + + Name + Name - Sign messages with your Raven addresses to prove you own them - İletileri adreslerin size ait olduğunu ispatlamak için Raven adresleri ile imzala + + Quantity + Quantity + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Belirtilen Raven adresleri ile imzalandıklarından emin olmak için iletileri kontrol et + + + Send Coins + Send Coins - &File - &Dosya + + Asset Control Features + Asset Control Features - &Settings - &Ayarlar + + Inputs... + Inputs... - &Help - &Yardım + + automatically selected + automatically selected - Tabs toolbar - Sekme araç çubuğu + + Insufficient funds! + Insufficient funds! - Request payments (generates QR codes and raven: URIs) - Ödeme talep et (QR kodu ve raven URI'si oluşturur) + + Quantity: + Quantity: - Show the list of used sending addresses and labels - Kullanılmış gönderme adresleri ve etiketlerin listesini göster + + Bytes: + Bytes: - Show the list of used receiving addresses and labels - Kullanılmış alım adresleri ve etiketlerin listesini göster + + Amount: + Amount: - Open a raven: URI or payment request - Bir raven: bağlantısı ya da ödeme talebi aç + + Dust: + Dust: - &Command-line options - &Komut satırı seçenekleri + + Fee: + Fee: - - %n active connection(s) to Raven network - Raven şebekesine %n faal bağlantı + + + After Fee: + After Fee: - Indexing blocks on disk... - Bloklar diske indeksleniyor... + + Change: + Change: - Processing blocks on disk... - Bloklar diske işleniyor... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - - Processed %n block(s) of transaction history. - Muamele tarihçesinden %n blok işlendi. + + + Custom change address + Custom change address - %1 behind - %1 geride + + Transaction Fee: + Transaction Fee: - Last received block was generated %1 ago. - Son alınan blok %1 önce oluşturulmuştu. + + Choose... + Choose... - Transactions after this will not yet be visible. - Bundan sonraki işlemler henüz görüntülenemez. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - Error - Hata + + Warning: Fee estimation is currently not possible. + Warning: Fee estimation is currently not possible. - Warning - Uyarı + + collapse fee-settings + collapse fee-settings - Information - Bilgi + + Hide + Hide - Up to date - Güncel + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Show the %1 help message to get a list with possible Raven command-line options - Olası Raven komut satırı seçeneklerinin listesini görmek için %1 yardım mesajını göster + + per kilobyte + per kilobyte - %1 client - %1 istemci + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Connecting to peers... - Eşlere bağlanılıyor... + + (read the tooltip) + (read the tooltip) - Catching up... - Aralık kapatılıyor... + + Recommended: + Recommended: - Date: %1 - - Tarih: %1 - + + Custom: + Custom: - Amount: %1 - - Tutar: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smart fee not initialized yet. This usually takes a few blocks...) - Type: %1 - - Tür: %1 - + + Confirmation time target: + Confirmation time target: - Label: %1 - - Etiket: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - Address: %1 - - Adres: %1 - + + Request Replace-By-Fee + Request Replace-By-Fee - Sent transaction - İşlem gönderildi + + Confirm the send action + Confirm the send action - Incoming transaction - Gelen işlem + + S&end + S&end - HD key generation is <b>enabled</b> - HD anahtar oluşturma <b>etkin</b> + + Clear all fields of the form. + Clear all fields of the form. - HD key generation is <b>disabled</b> - HD anahtar oluşturma <b>devre dışı</b> + + Clear &All + Clear &All - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açıktır</b> + + Transfer to multiple recipients at once + Transfer to multiple recipients at once - Wallet is <b>encrypted</b> and currently <b>locked</b> - Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> + + Add &Recipient + Add &Recipient - A fatal error occurred. Raven can no longer continue safely and will quit. - Ölümcül bir hata oluştu. Raven yazılımı artık güvenli bir şekilde çalışmaya devam edemediği için kapatılacaktır. + + Balance: + Balance: - - - CoinControlDialog - Coin Selection - Raven Seçimi + + Copy quantity + Copy quantity - Quantity: - Miktar: + + Copy amount + Copy amount - Bytes: - Bayt: + + Copy fee + Copy fee + + Copy after fee + Copy after fee + + + + Copy bytes + Copy bytes + + + + Copy dust + Copy dust + + + + Copy change + Copy change + + + + %1 (%2 blocks) + %1 (%2 blocks) + + + + + + + %1 to %2 + %1 to %2 + + + + Are you sure you want to send? + Göndermek istediğine emin misin? + + + + added as transaction fee + added as transaction fee + + + + Confirm send assets + Confirm send assets + + + + The recipient address is not valid. Please recheck. + The recipient address is not valid. Please recheck. + + + + The amount to pay must be larger than 0. + The amount to pay must be larger than 0. + + + + The amount exceeds your balance. + The amount exceeds your balance. + + + + The total exceeds your balance when the %1 transaction fee is included. + The total exceeds your balance when the %1 transaction fee is included. + + + + Duplicate address found: addresses should only be used once each. + Duplicate address found: addresses should only be used once each. + + + + Transaction creation failed! + Transaction creation failed! + + + + The transaction was rejected with the following reason: %1 + The transaction was rejected with the following reason: %1 + + + + A fee higher than %1 is considered an absurdly high fee. + A fee higher than %1 is considered an absurdly high fee. + + + + Payment request expired. + Payment request expired. + + + + Pay only the required fee of %1 + Pay only the required fee of %1 + + + + Estimated to begin confirmation within %n block(s). + Estimated to begin confirmation within %n block.Estimated to begin confirmation within %n blocks. + + + + Warning: Invalid Raven address + Warning: Invalid Raven address + + + + Warning: Unknown change address + Warning: Unknown change address + + + + Confirm custom change address + Confirm custom change address + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + (no label) + (no label) + + + + AssignQualifier + + + Frame + Frame + + + + Select Type: + Select Type: + + + + Select Qualifier: + Select Qualifier: + + + + Address: + Address: + + + + IPFS / Hash: + IPFS / Hash: + + + + Custom Change Address + Custom Change Address + + + + Check + Check + + + + Clear + Clear + + + + Submit + Submit + + + + Assign Qualifier + Assign Qualifier + + + + Remove Qualifier + Remove Qualifier + + + + Data has been validated, You can now submit the qualifier request + Data has been validated, You can now submit the qualifier request + + + + Must have a qualifier asset selected + Must have a qualifier asset selected + + + + Address already has the qualifier assigned to it + Address already has the qualifier assigned to it + + + + Address doesn't have the qualifier, so we can't remove it + Address doesn't have the qualifier, so we can't remove it + + + + Unable to preform action at this time + Unable to preform action at this time + + + + BanTableModel + + + IP/Netmask + IP/Ağ Maskesi + + + + Banned Until + Şu zamana kadar yasaklı: + + + + CoinControlDialog + + + Coin Selection + Raven Seçimi + + + + Quantity: + Miktar: + + + + Bytes: + Bayt: + + + Amount: Tutar: + Fee: Ücret: + Dust: Toz: + After Fee: Ücretten sonra: + Change: Para üstü: + (un)select all tümünü seç(me) + Tree mode Ağaç kipi + List mode Liste kipi + Amount Tutar + Received with label Şu etiketle alındı + Received with address Şu adresle alındı + Date Tarih + Confirmations Doğrulamalar + Confirmed Doğrulandı + Copy address Adres kopyala + Copy label Etiket kopyala + + Copy amount Tutarı kopyala + Copy transaction ID - İşlem ID'sini kopyala + İşlem ID'sini kopyala + Lock unspent Harcanmamışı kilitle + Unlock unspent Harcanmamışın kilidini aç + Copy quantity Miktarı kopyala + Copy fee Ücreti kopyala + Copy after fee Ücretten sonrasını kopyala + Copy bytes Baytları kopyala + Copy dust Tozu kopyala + Copy change Para üstünü kopyala + (%1 locked) (%1 kilitlendi) + yes evet + no hayır + This label turns red if any recipient receives an amount smaller than the current dust threshold. Eğer herhangi bir alıcı mevcut toz eşiğinden daha düşük bir tutar alırsa bu etiket kırmızıya dönüşür. + Can vary +/- %1 satoshi(s) per input. Girdi başına +/- %1 satoshi değişebilir. + + (no label) (etiket yok) + change from %1 (%2) %1 ögesinden para üstü (%2) + (change) (para üstü) - EditAddressDialog + CreateAssetDialog - Edit Address - Adresi düzenle + + Coin Control Features + Coin Control Features - &Label - &Etiket + + Inputs... + Inputs... - The label associated with this address list entry - Bu adres listesi girdisi ile ilişkili etiket + + automatically selected + automatically selected - The address associated with this address list entry. This can only be modified for sending addresses. - Bu adres listesi girdisi ile ilişkili adres. Sadece gönderme adresleri için değiştirilebilir. + + Insufficient funds! + Insufficient funds! - &Address - &Adres + + + Quantity: + Quantity: - New receiving address - Yeni alım adresi + + Bytes: + Bytes: - New sending address - Yeni gönderi adresi + + Amount: + Amount: - Edit receiving address - Alım adresini düzenle + + Dust: + Dust: - Edit sending address - Gönderi adresini düzenle + + Fee: + Fee: - The entered address "%1" is not a valid Raven address. - Girilen "%1" adresi geçerli bir Raven adresi değildir. + + After Fee: + After Fee: - The entered address "%1" is already in the address book. - Girilen "%1" adresi zaten adres defterinde mevcuttur. + + Change: + Change: - Could not unlock wallet. - Cüzdan kilidi açılamadı. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - New key generation failed. - Yeni anahtar oluşturulması başarısız oldu. + + Custom change address + Custom change address - - - FreespaceChecker - A new data directory will be created. - Yeni bir veri klasörü oluşturulacaktır. + + Name: + Name: - name - isim + + A-Z 0-9 and . or _ as the second character + A-Z 0-9 and . or _ as the second character - Directory already exists. Add %1 if you intend to create a new directory here. - Klasör zaten mevcuttur. Burada yeni bir klasör oluşturmak istiyorsanız, %1 ekleyiniz. + + The name of the asset you would like to create + The name of the asset you would like to create - Path already exists, and is not a directory. - Erişim yolu zaten mevcuttur ve klasör değildir. + + Check Availabilty + Check Availabilty - Cannot create data directory here. - Burada veri klasörü oluşturulamaz. + + Address: + Address: - - - HelpMessageDialog - version - sürüm + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. - (%1-bit) - (%1-bit) + + Verifier String: + Verifier String: - About %1 - %1 Hakkında + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true - Command-line options - Komut satırı seçenekleri + + Warning: + Warning: - Usage: - Kullanım: + + The number of assets that will be created + The number of assets that will be created - command-line options - komut satırı seçenekleri + + Units: + Units: - UI Options: - Arayüz Seçenekleri: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) - Choose data directory on startup (default: %u) - Başlangıçta veri klasörü seç (varsayılan: %u) + + e.g. 1 + e.g. 1 - Set language, for example "de_DE" (default: system locale) - Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + + If the owner of this asset will be able to issue more assets in the future + If the owner of this asset will be able to issue more assets in the future - Start minimized - Küçültülmüş olarak başlat + + Reissuable + Reissuable - Set SSL root certificates for payment request (default: -system-) - Ödeme talebi için SSL kök sertifikalarını belirle (varsayılan: -system-) + + Does this asset have an ipfs hash to go with it + Does this asset have an ipfs hash to go with it - Show splash screen on startup (default: %u) - Başlatıldığında başlangıç ekranını göster (varsayılan: %u) + + Add IPFS/Txid Hash + Add IPFS/Txid Hash - Reset all settings changed in the GUI - Grafik arayüzde yapılan tüm seçenek değişikliklerini sıfırla + + The ipfs/txid hash that contains information about the asset + The ipfs/txid hash that contains information about the asset - - - Intro - Welcome - Hoş geldiniz + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) - Welcome to %1. - %1'a hoş geldiniz. + + ERROR TEXT + ERROR TEXT - As this is the first time the program is launched, you can choose where %1 will store its data. - Bu programın ilk kez başlatılmasından dolayı %1 yazılımının verilerini nerede saklayacağını seçebilirsiniz. + + Transaction Fee: + Transaction Fee: - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1, Raven blok zincirinin bir kopyasını indirecek ve saklayacaktır. Bu klasörde en az %2 GB veri saklanacak ve bu zamanla artacaktır. Cüzdan da bu klasörde saklanacaktır. + + Choose... + Choose... - Use the default data directory - Varsayılan veri klasörünü kullan + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - Use a custom data directory: - Özel bir veri klasörü kullan: + + Warning: Fee estimation is currently not possible. + Warning: Fee estimation is currently not possible. - Error: Specified data directory "%1" cannot be created. - Hata: belirtilen "%1" veri klasörü oluşturulamaz. + + collapse fee-settings + collapse fee-settings - Error - Hata + + Hide + Hide - - %n GB of free space available - %n GB boş alan mevcuttur + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - - (of %n GB needed) - (gereken %n GB alandan) + + + per kilobyte + per kilobyte - - - ModalOverlay - Form - Form + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Son işlemler henüz görünmeyebilir ve bu nedenle cüzdanınızın bakiyesi yanlış olabilir. Bu bilgiler, aşağıda detaylandırıldığı gibi, cüzdanınız raven ağı ile senkronizasyonunu tamamladığında doğru olacaktır. + + (read the tooltip) + (read the tooltip) - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Henüz görüntülenmeyen işlemlerden etkilenen ravenleri harcama girişiminde bulunmak ağ tarafından kabul edilmeyecektir. + + Recommended: + Recommended: - Number of blocks left - Kalan blok sayısı + + C&ustom: + C&ustom: - Unknown... - Bilinmiyor... + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smart fee not initialized yet. This usually takes a few blocks...) - Last block time - Son blok zamanı + + Confirmation time target: + Confirmation time target: - Progress - İlerleme + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - Progress increase per hour - Saat başı ilerleme artışı + + Request Replace-By-Fee + Request Replace-By-Fee - calculating... - hesaplanıyor... + + Create Asset + Create Asset - Estimated time left until synced - Senkronize edilene kadar kalan tahmini süre + + Clear + Clear - Hide - Gizle + + Balance: + Balance: - Unknown. Syncing Headers (%1)... - Bilinmeyen. Üstbilgiler Senkronize Ediliyor (%1)... + + 123.456 RVN + 123.456 RVN - - - OpenURIDialog - Open URI - URI Aç + + Copy quantity + Copy quantity - Open payment request from URI or file - Dosyadan veya URI'den ödeme talebi aç + + Copy amount + Copy amount - URI: - URI: + + Copy fee + Copy fee - Select payment request file - Ödeme talebi dosyasını seç + + Copy after fee + Copy after fee - Select payment request file to open - Açılacak ödeme talebi dosyasını seç + + Copy bytes + Copy bytes - - - OptionsDialog - Options - Seçenekler + + Copy dust + Copy dust - &Main - &Genel + + Copy change + Copy change - Automatically start %1 after logging in to the system. - Sistemde oturum açıldığında %1 programını otomatik olarak başlat. + + %1 (%2 blocks) + %1 (%2 blocks) - &Start %1 on system login - &Açılışta %1 açılsın + + Main Asset + Main Asset - Size of &database cache - &Veritabanı önbelleğinin boyutu + + Sub Asset + Sub Asset - MB - MB + + Unique Asset + Unique Asset - Number of script &verification threads - İş parçacıklarını &denetleme betiği sayısı + + Messaging Channel Asset + Messaging Channel Asset - Accept connections from outside - Dışarıdan gelen bağlantıları kabul et + + Qualifier Asset + Qualifier Asset - Allow incoming connections - Gelen bağlantılara izin ver + + Sub Qualifier Asset + Sub Qualifier Asset - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Vekil sunucusunun IP adresi (mesela IPv4: 127.0.0.1 / IPv6: ::1) + + Restricted Asset + Restricted Asset - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. + + Asset Type + Asset Type - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - İşlemler sekmesinde bağlam menüsü unsurları olarak görünen üçüncü taraf bağlantıları (mesela bir blok tarayıcısı). URL'deki %s, işlem hash değeri ile değiştirilecektir. Birden çok bağlantılar düşey çubuklar | ile ayrılacaktır. + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters - Third party transaction URLs - Üçüncü parti işlem URL'leri + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters - Active command-line options that override above options: - Yukarıdaki seçeneklerin yerine geçen etkin komut satırı seçenekleri: + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash - Reset all client options to default. - İstemcinin tüm seçeneklerini varsayılan değerlere geri al. + + + + Warning: Invalid Raven address + Warning: Invalid Raven address - &Reset Options - Seçenekleri &Sıfırla + + Warning: Restricted Assets Reissuance requires an address + Warning: Restricted Assets Reissuance requires an address - &Network - &Ağ + + Valid Asset + Valid Asset - (0 = auto, <0 = leave that many cores free) - (0 = otomatik, <0 = bu kadar çekirdeği kullanma) + + Invalid: Asset name already in use + Invalid: Asset name already in use - W&allet - &Cüzdan + + Error: Asset Database not in sync + Error: Asset Database not in sync - Expert - Gelişmiş + + + %1 to %2 + %1 to %2 - Enable coin &control features - Para &kontrolü özelliklerini etkinleştir + + Are you sure you want to send? + Are you sure you want to send? - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Doğrulanmamış para üstünü harcamayı devre dışı bırakırsanız, bir işlemin para üstü bu işlem için en az bir doğrulama olana dek harcanamaz. Bu, aynı zamanda bakiyenizin nasıl hesaplandığını da etkiler. + + added as transaction fee + added as transaction fee - &Spend unconfirmed change - Doğrulanmamış para üstünü &harca + + Total Amount %1 + Total Amount %1 - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Yönlendiricide Raven istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. + + or + or - Map port using &UPnP - Portları &UPnP kullanarak haritala + + Confirm send assets + Confirm send assets - Connect to the Raven network through a SOCKS5 proxy. - Raven ağına bir SOCKS5 vekil sunucusu aracılığıyla bağlan. + + Invalid: + Invalid: - &Connect through SOCKS5 proxy (default proxy): - SOCKS5 vekil sunucusu aracılığıyla &bağlan (varsayılan vekil sunucusu): + + Copy + Copy - Proxy &IP: - Vekil &IP: + + Transaction ID Copied + Transaction ID Copied - &Port: - &Port: + + Asset transaction sent to network: + Asset transaction sent to network: - - Port of the proxy (e.g. 9050) - Vekil sunucunun portu (mesela 9050) + + + Estimated to begin confirmation within %n block(s). + Estimated to begin confirmation within %n block.Estimated to begin confirmation within %n blocks. - Used for reaching peers via: - Eşlere ulaşmak için kullanılır, şu üzerinden: + + Warning: Unknown change address + Warning: Unknown change address - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Bu ağ türü yoluyla eşlere bağlanmak için belirtilen varsayılan SOCKS5 vekil sunucusunun kullanılıp kullanılmadığını gösterir. + + Confirm custom change address + Confirm custom change address - IPv4 - IPv4 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - IPv6 - IPv6 + + (no label) + (no label) - Tor - Tor + + Pay only the required fee of %1 + Pay only the required fee of %1 + + + EditAddressDialog - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Raven ağına gizli Tor servisleri için ayrı bir SOCKS5 vekil sunucusu aracılığıyla bağlan. + + Edit Address + Adresi düzenle - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Eşlere gizli Tor servisleri ile ulaşmak için ayrı SOCKS5 vekil sunucusu kullan: + + &Label + &Etiket - &Window - &Pencere + + The label associated with this address list entry + Bu adres listesi girdisi ile ilişkili etiket - &Hide the icon from the system tray. - Simgeyi görev çubuğundan &gizle + + The address associated with this address list entry. This can only be modified for sending addresses. + Bu adres listesi girdisi ile ilişkili adres. Sadece gönderme adresleri için değiştirilebilir. - Hide tray icon - Görev çubuğu simgesini gizle + + &Address + &Adres - Show only a tray icon after minimizing the window. - Küçültüldükten sonra sadece tepsi simgesi göster. + + New receiving address + Yeni alım adresi - &Minimize to the tray instead of the taskbar - İşlem çubuğu yerine sistem çekmecesine &küçült + + New sending address + Yeni gönderi adresi - M&inimize on close - Kapatma sırasında k&üçült + + Edit receiving address + Alım adresini düzenle - &Display - &Görünüm + + Edit sending address + Gönderi adresini düzenle - User Interface &language: - Kullanıcı arayüzü &lisanı: + + The entered address "%1" is not a valid Raven address. + Girilen "%1" adresi geçerli bir Raven adresi değildir. - The user interface language can be set here. This setting will take effect after restarting %1. - Kullanıcı arayüzünün dili burada belirtilebilir. Bu ayar %1 tekrar başlatıldığında etkinleşecektir. + + The entered address "%1" is already in the address book. + Girilen "%1" adresi zaten adres defterinde mevcuttur. - &Unit to show amounts in: - Tutarı göstermek için &birim: + + Could not unlock wallet. + Cüzdan kilidi açılamadı. - Choose the default subdivision unit to show in the interface and when sending coins. - Raven gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. + + New key generation failed. + Yeni anahtar oluşturulması başarısız oldu. + + + FreespaceChecker - Whether to show coin control features or not. - Para kontrol özelliklerinin gösterilip gösterilmeyeceğini ayarlar. + + A new data directory will be created. + Yeni bir veri klasörü oluşturulacaktır. - &OK - &Tamam + + name + isim - &Cancel - &İptal + + Directory already exists. Add %1 if you intend to create a new directory here. + Klasör zaten mevcuttur. Burada yeni bir klasör oluşturmak istiyorsanız, %1 ekleyiniz. - default - varsayılan + + Path already exists, and is not a directory. + Erişim yolu zaten mevcuttur ve klasör değildir. - none - boş + + Cannot create data directory here. + Burada veri klasörü oluşturulamaz. + + + FreezeAddress - Confirm options reset - Seçeneklerin sıfırlanmasını teyit et + + Frame + Frame - Client restart required to activate changes. - Değişikliklerin uygulanması için istemcinin yeniden başlatılması lazımdır. + + Restricted Asset: + Restricted Asset: - Client will be shut down. Do you want to proceed? - İstemci kapanacaktır. Devam etmek istiyor musunuz? + + Address: + Address: - This change would require a client restart. - Bu değişiklik istemcinin tekrar başlatılmasını gerektirir. + + Custom Change Address + Custom Change Address - The supplied proxy address is invalid. - Girilen vekil sunucu adresi geçersizdir. + + IPFS / Hash: + IPFS / Hash: - - - OverviewPage - Form - Form + + Single Address Options + Single Address Options - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Görüntülenen bilgiler güncel olmayabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak Raven ağı ile senkronize olur ancak bu işlem henüz tamamlanmamıştır. + + Global Options + Global Options - Watch-only: - Sadece-izlenen: + + Free&ze trading on this address + Free&ze trading on this address - Available: - Mevcut: + + Unfreeze tradin&g on this address + Unfreeze tradin&g on this address - Your current spendable balance - Güncel harcanabilir bakiyeniz + + Freeze all &trading for the selected restricted asset + Freeze all &trading for the selected restricted asset - Pending: - Beklemede: + + &Unfreeze all trading for the selected restricted asset + &Unfreeze all trading for the selected restricted asset - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Henüz doğrulanmamış ve harcanabilir bakiyeye eklenmemiş işlemlerin toplamı + + Check + Check - Immature: - Olgunlaşmamış: + + Clear + Clear - Mined balance that has not yet matured - Oluşturulan bakiye henüz olgunlaşmamıştır + + Submit + Submit - Balances - Bakiyeler + + Data has been validated, You can now submit the restriction transaction + Data has been validated, You can now submit the restriction transaction - Total: - Toplam: + + Must have a restricted asset selected + - Your current total balance - Güncel toplam bakiyeniz + + Address is already frozen + Address is already frozen - Your current balance in watch-only addresses - Sadece izlenen adreslerdeki güncel bakiyeniz + + Address is not frozen + Address is not frozen - Spendable: - Harcanabilir: + + Restricted asset is already frozen globally + Restricted asset is already frozen globally - Recent transactions - Son işlemler + + Restricted asset is not frozen globally + Restricted asset is not frozen globally - Unconfirmed transactions to watch-only addresses - Sadece izlenen adreslere gelen doğrulanmamış işlemler + + Unable to preform action at this time + Unable to preform action at this time + + + GUIUtil::SyncWarningMessage - Mined balance in watch-only addresses that has not yet matured - Sadece izlenen adreslerin henüz olgunlaşmamış oluşturulan bakiyeleri + + Warning: transaction while syncing wallet! + Warning: transaction while syncing wallet! - Current total balance in watch-only addresses - Sadece izlenen adreslerdeki güncel toplam bakiye + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + - PaymentServer + HelpMessageDialog - Payment request error - Ödeme talebi hatası + + version + sürüm - Cannot start raven: click-to-pay handler - Raven başlatılamadı: tıkla-ve-öde yöneticisi + + + (%1-bit) + (%1-bit) - URI handling - URI yönetimi + + About %1 + %1 Hakkında - Payment request fetch URL is invalid: %1 - Ödeme talebini alma URL'i geçersiz: %1 + + Command-line options + Komut satırı seçenekleri - Invalid payment address %1 - %1 ödeme adresi geçersizdir + + Usage: + Kullanım: - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - URI ayrıştırılamıyor! Bunun nedeni geçersiz bir Raven adresi veya hatalı biçimlendirilmiş URI değişkenleri olabilir. + + command-line options + komut satırı seçenekleri - Payment request file handling - Ödeme talebi dosyası yönetimi + + UI Options: + Arayüz Seçenekleri: + + + + Choose data directory on startup (default: %u) + Başlangıçta veri klasörü seç (varsayılan: %u) + + + + Set language, for example "de_DE" (default: system locale) + Lisan belirt, mesela "de_De" (varsayılan: sistem dili) + + + + Start minimized + Küçültülmüş olarak başlat + + + + Set SSL root certificates for payment request (default: -system-) + Ödeme talebi için SSL kök sertifikalarını belirle (varsayılan: -system-) + + + + Show splash screen on startup (default: %u) + Başlatıldığında başlangıç ekranını göster (varsayılan: %u) + + + + Reset all settings changed in the GUI + Grafik arayüzde yapılan tüm seçenek değişikliklerini sıfırla + + + + Intro + + + Welcome + Hoş geldiniz + + + + Welcome to %1. + %1'a hoş geldiniz. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Bu programın ilk kez başlatılmasından dolayı %1 yazılımının verilerini nerede saklayacağını seçebilirsiniz. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + Use the default data directory + Varsayılan veri klasörünü kullan + + + + Use a custom data directory: + Özel bir veri klasörü kullan: + + + + Raven + Raven + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + Approximately %1 GB of data will be stored in this directory. + Approximately %1 GB of data will be stored in this directory. + + + + %1 will download and store a copy of the Raven block chain. + %1 will download and store a copy of the Raven block chain. + + + + The wallet will also be stored in this directory. + The wallet will also be stored in this directory. + + + + Error: Specified data directory "%1" cannot be created. + Hata: belirtilen "%1" veri klasörü oluşturulamaz. + + + + Error + Hata + + + + %n GB of free space available + %n GB of free space available%n GB of free space available + + + + (of %n GB needed) + (of %n GB needed)(of %n GB needed) + + + + MnemonicDialog + + + HD Wallet Setup + HD Wallet Setup + + + + MnemonicDialog1 + + + HD Wallet Setup + HD Wallet Setup + + + + Select the type of wallet to create. + Select the type of wallet to create. + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + Please choose what you would like to do: + Please choose what you would like to do: + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + Accept + Accept + + + + You are choosing to create a new wallet using new seed words. + You are choosing to create a new wallet using new seed words. + + + + You are choosing to re-create an old wallet using seed words which you know. + You are choosing to re-create an old wallet using seed words which you know. + + + + MnemonicDialog2 + + + New HD Wallet Creation + New HD Wallet Creation + + + + BIP39 Compliant Seed Words: + BIP39 Compliant Seed Words: + + + + Generate New Seed Words + Generate New Seed Words + + + + These 12 generated seed words will be used. + These 12 generated seed words will be used. + + + + Passphrase: + Passphrase: + + + + Enter a Passphrase to protect your seed words (optional). + Enter a Passphrase to protect your seed words (optional). + + + + You may enter an optional Passphrase to protect your seed words. + You may enter an optional Passphrase to protect your seed words. + + + + Warning: + Warning: + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + Accept + Accept + + + + Go Back + Go Back + + + + Words are not valid, please generate new words and try again + Words are not valid, please generate new words and try again + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + Previous HD Wallet Re-creation + + + + BIP39 Compliant Seed Words: + BIP39 Compliant Seed Words: + + + + Enter the 12 seed words from your previous wallet here. + Enter the 12 seed words from your previous wallet here. + + + + Passphrase: + Passphrase: + + + + You will need the Passphrase if your previous wallet used one. + You will need the Passphrase if your previous wallet used one. + + + + Enter the Passphrase from your previous wallet if it used one. + Enter the Passphrase from your previous wallet if it used one. + + + + Warning: + Warning: + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + Accept + Accept + + + + Go Back + Go Back + + + + Words are not valid, please check the words and try again + Words are not valid, please check the words and try again + + + + ModalOverlay + + + Form + Form + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Son işlemler henüz görünmeyebilir ve bu nedenle cüzdanınızın bakiyesi yanlış olabilir. Bu bilgiler, aşağıda detaylandırıldığı gibi, cüzdanınız raven ağı ile senkronizasyonunu tamamladığında doğru olacaktır. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Henüz görüntülenmeyen işlemlerden etkilenen ravenleri harcama girişiminde bulunmak ağ tarafından kabul edilmeyecektir. + + + + Number of blocks left + Kalan blok sayısı + + + + + + Unknown... + Bilinmiyor... + + + + Last block time + Son blok zamanı + + + + Progress + İlerleme + + + + Progress increase per hour + Saat başı ilerleme artışı + + + + + calculating... + hesaplanıyor... + + + + Estimated time left until synced + Senkronize edilene kadar kalan tahmini süre + + + + Hide + Gizle + + + + Unknown. Syncing Headers (%1)... + Bilinmeyen. Üstbilgiler Senkronize Ediliyor (%1)... + + + + MyRestrictedAssetsTableModel + + + Date + Date + + + + Type + Type + + + + Address + Address + + + + Asset Name + Asset Name + + + + Tagged + Tagged + + + + Untagged + Untagged + + + + Frozen + Frozen + + + + Unfrozen + Unfrozen + + + + Other + Other + + + + watch-only + watch-only + + + + (no label) + (no label) + + + + Date and time that the transaction was received. + Date and time that the transaction was received. + + + + Type of transaction. + Type of transaction. + + + + User-defined intent/purpose of the transaction. + User-defined intent/purpose of the transaction. + + + + The asset (or RVN) removed or added to balance. + The asset (or RVN) removed or added to balance. + + + + OpenURIDialog + + + Open URI + URI Aç + + + + Open payment request from URI or file + Dosyadan veya URI'den ödeme talebi aç + + + + URI: + URI: + + + + Select payment request file + Ödeme talebi dosyasını seç + + + + Select payment request file to open + Açılacak ödeme talebi dosyasını seç + + + + OptionsDialog + + + Options + Seçenekler + + + + &Main + &Genel + + + + Automatically start %1 after logging in to the system. + Sistemde oturum açıldığında %1 programını otomatik olarak başlat. + + + + &Start %1 on system login + &Açılışta %1 açılsın + + + + Size of &database cache + &Veritabanı önbelleğinin boyutu + + + + MB + MB + + + + Number of script &verification threads + İş parçacıklarını &denetleme betiği sayısı + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Vekil sunucusunun IP adresi (mesela IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + Hide the icon from the system tray. + Hide the icon from the system tray. + + + + &Hide tray icon + &Hide tray icon + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Pencere kapatıldığında uygulamadan çıkmak yerine uygulamayı küçültür. Bu seçenek etkinleştirildiğinde, uygulama sadece menüden çıkış seçildiğinde kapanacaktır. + + + + &Currency Unit: + &Currency Unit: + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + İşlemler sekmesinde bağlam menüsü unsurları olarak görünen üçüncü taraf bağlantıları (mesela bir blok tarayıcısı). URL'deki %s, işlem hash değeri ile değiştirilecektir. Birden çok bağlantılar düşey çubuklar | ile ayrılacaktır. + + + + Active command-line options that override above options: + Yukarıdaki seçeneklerin yerine geçen etkin komut satırı seçenekleri: + + + + Open the %1 configuration file from the working directory. + Open the %1 configuration file from the working directory. + + + + Open Configuration File + Open Configuration File + + + + Reset all client options to default. + İstemcinin tüm seçeneklerini varsayılan değerlere geri al. + + + + &Reset Options + Seçenekleri &Sıfırla + + + + &Network + &Ağ + + + + (0 = auto, <0 = leave that many cores free) + (0 = otomatik, <0 = bu kadar çekirdeği kullanma) + + + + W&allet + &Cüzdan + + + + Expert + Gelişmiş + + + + Enable coin &control features + Para &kontrolü özelliklerini etkinleştir + + + + Enable fee control features + Enable fee control features + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Doğrulanmamış para üstünü harcamayı devre dışı bırakırsanız, bir işlemin para üstü bu işlem için en az bir doğrulama olana dek harcanamaz. Bu, aynı zamanda bakiyenizin nasıl hesaplandığını da etkiler. + + + + &Spend unconfirmed change + Doğrulanmamış para üstünü &harca + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Yönlendiricide Raven istemci portlarını otomatik olarak açar. Bu, sadece yönlendiricinizin UPnP desteği bulunuyorsa ve etkinse çalışabilir. + + + + Map port using &UPnP + Portları &UPnP kullanarak haritala + + + + Accept connections from outside. + Accept connections from outside. + + + + Allow incomin&g connections + Allow incomin&g connections + + + + Connect to the Raven network through a SOCKS5 proxy. + Raven ağına bir SOCKS5 vekil sunucusu aracılığıyla bağlan. + + + + &Connect through SOCKS5 proxy (default proxy): + SOCKS5 vekil sunucusu aracılığıyla &bağlan (varsayılan vekil sunucusu): + + + + + Proxy &IP: + Vekil &IP: + + + + + &Port: + &Port: + + + + + Port of the proxy (e.g. 9050) + Vekil sunucunun portu (mesela 9050) + + + + Used for reaching peers via: + Eşlere ulaşmak için kullanılır, şu üzerinden: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Raven ağına gizli Tor servisleri için ayrı bir SOCKS5 vekil sunucusu aracılığıyla bağlan. + + + + &Window + &Pencere + + + + Show only a tray icon after minimizing the window. + Küçültüldükten sonra sadece tepsi simgesi göster. + + + + &Minimize to the tray instead of the taskbar + İşlem çubuğu yerine sistem çekmecesine &küçült + + + + M&inimize on close + Kapatma sırasında k&üçült + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Görünüm + + + + User Interface &language: + Kullanıcı arayüzü &lisanı: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + Kullanıcı arayüzünün dili burada belirtilebilir. Bu ayar %1 tekrar başlatıldığında etkinleşecektir. + + + + &Unit to show amounts in: + Tutarı göstermek için &birim: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Raven gönderildiğinde arayüzde gösterilecek varsayılan alt birimi seçiniz. + + + + Whether to show coin control features or not. + Para kontrol özelliklerinin gösterilip gösterilmeyeceğini ayarlar. + + + + &Third party transaction URLs + &Third party transaction URLs + + + + + Reset + Reset + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + IPFS Viewer URL + IPFS Viewer URL + + + + Enable Dark Mode + Enable Dark Mode + + + + &OK + &Tamam + + + + &Cancel + &İptal + + + + default + varsayılan + + + + none + boş + + + + Confirm options reset + Seçeneklerin sıfırlanmasını teyit et + + + + + Client restart required to activate changes. + Değişikliklerin uygulanması için istemcinin yeniden başlatılması lazımdır. + + + + Client will be shut down. Do you want to proceed? + İstemci kapanacaktır. Devam etmek istiyor musunuz? + + + + Configuration options + Configuration options + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + Error + Error + + + + The configuration file could not be opened. + The configuration file could not be opened. + + + + This change would require a client restart. + Bu değişiklik istemcinin tekrar başlatılmasını gerektirir. + + + + The supplied proxy address is invalid. + Girilen vekil sunucu adresi geçersizdir. + + + + OverviewPage + + + Form + Form + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Görüntülenen bilgiler güncel olmayabilir. Bağlantı kurulduğunda cüzdanınız otomatik olarak Raven ağı ile senkronize olur ancak bu işlem henüz tamamlanmamıştır. + + + + Watch-only: + Sadece-izlenen: + + + + Available: + Mevcut: + + + + Your current spendable balance + Güncel harcanabilir bakiyeniz + + + + Pending: + Beklemede: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Henüz doğrulanmamış ve harcanabilir bakiyeye eklenmemiş işlemlerin toplamı + + + + Immature: + Olgunlaşmamış: + + + + Mined balance that has not yet matured + Oluşturulan bakiye henüz olgunlaşmamıştır + + + + Total: + Toplam: + + + + Your current total balance + Güncel toplam bakiyeniz + + + + RVN Balances + RVN Balances + + + + Your current balance in watch-only addresses + Sadece izlenen adreslerdeki güncel bakiyeniz + + + + Spendable: + Harcanabilir: + + + + Asset Balances + Asset Balances + + + + Search + Search + + + + Recent transactions + Son işlemler + + + + Unconfirmed transactions to watch-only addresses + Sadece izlenen adreslere gelen doğrulanmamış işlemler + + + + Mined balance in watch-only addresses that has not yet matured + Sadece izlenen adreslerin henüz olgunlaşmamış oluşturulan bakiyeleri + + + + Current total balance in watch-only addresses + Sadece izlenen adreslerdeki güncel toplam bakiye + + + + Send Asset + Send Asset + + + + Copy Amount + Copy Amount + + + + Copy Name + Copy Name + + + + Copy Hash + Copy Hash + + + + Issue Sub Asset + Issue Sub Asset + + + + Issue Unique Asset + Issue Unique Asset + + + + Reissue Asset + Reissue Asset + + + + Open IPFS in Browser + Open IPFS in Browser + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Ödeme talebi hatası + + + + Cannot start raven: click-to-pay handler + Raven başlatılamadı: tıkla-ve-öde yöneticisi + + + + + + URI handling + URI yönetimi + + + + Payment request fetch URL is invalid: %1 + Ödeme talebini alma URL'i geçersiz: %1 + + + + Invalid payment address %1 + %1 ödeme adresi geçersizdir + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + URI ayrıştırılamıyor! Bunun nedeni geçersiz bir Raven adresi veya hatalı biçimlendirilmiş URI değişkenleri olabilir. + + + + Payment request file handling + Ödeme talebi dosyası yönetimi + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + Ödeme talebi dosyası okunamıyor! Bunun nedeni geçersiz bir ödeme talebi dosyası olabilir. + + + + + + + + + Payment request rejected + Ödeme talebi reddedildi + + + + Payment request network doesn't match client network. + Ödeme talebi ağı, istemci ağıyla eşleşmiyor. + + + + Payment request expired. + Ödeme talebinin geçerlilik süresi bitti. + + + + Payment request is not initialized. + Ödeme talebi başlatılmadı. + + + + Unverified payment requests to custom payment scripts are unsupported. + Özel ödeme betiklerine, doğrulanmamış ödeme talepleri desteklenmez. + + + + + Invalid payment request. + Geçersiz ödeme talebi. + + + + Requested payment amount of %1 is too small (considered dust). + Talep edilen %1 ödeme tutarı çok küçüktür (toz olarak kabul edilir). + + + + Refund from %1 + %1 adresinden geri ödeme + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + %1 ödeme talebi çok büyük (%2 bayt, üst sınır %3 bayt). + + + + Error communicating with %1: %2 + %1 ile iletişimde hata: %2 + + + + Payment request cannot be parsed! + Ödeme talebi ayrıştırılamaz! + + + + Bad response from server %1 + %1 sunucusundan hatalı yanıt + + + + Network request error + Ağ talebi hatası + + + + Payment acknowledged + Ödeme kabul edildi + + + + PeerTableModel + + + User Agent + Kullanıcı Yazılımı + + + + Node/Service + Düğüm/Servis + + + + NodeId + Düğüm ID'si + + + + Ping + Ping + + + + Sent + Sent + + + + Received + Received + + + + QObject + + + Amount + Tutar + + + + Enter a Raven address (e.g. %1) + Bir Raven adresi giriniz (mesela %1) + + + + %1 d + %1 g + + + + %1 h + %1 s + + + + %1 m + %1 d + + + + + %1 s + %1 s + + + + None + Boş + + + + N/A + Mevcut değil + + + + %1 ms + %1 ms + + + + %n second(s) + %n second%n seconds + + + + %n minute(s) + %n minute%n minutes + + + + %n hour(s) + %n hour%n hours + + + + %n day(s) + %n day%n days + + + + + %n week(s) + %n week%n weeks + + + + %1 and %2 + %1 ve %2 + + + + %n year(s) + %n year%n years + + + + %1 B + %1 B + + + + %1 KB + %1 KB + + + + %1 MB + %1 MB + + + + %1 GB + %1 GB + + + + %1 didn't yet exit safely... + %1 henüz güvenli bir şekilde çıkış yapmamıştır... + + + + unknown + unknown + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + Hata: Belirtilen "%1" veri klasörü yoktur. + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + Hata: %1 yapılandırma dosyası ayrıştırılamadı. Sadece anahtar=değer dizimini kullanınız. + + + + Error: %1 + Hata: %1 + + + + QRImageWidget + + + &Save Image... + Resmi ka&ydet... + + + + &Copy Image + Resmi &Kopyala + + + + Save QR Code + QR Kodu Kaydet + + + + PNG Image (*.png) + PNG Resim (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Mevcut değil + + + + Client version + İstemci sürümü + + + + &Information + &Bilgi + + + + Debug window + Hata ayıklama penceresi + + + + General + Genel + + + + Using BerkeleyDB version + Kullanılan BerkeleyDB sürümü + + + + Datadir + Veri konumu + + + + Startup time + Başlama zamanı + + + + Network + + + + + Name + İsim + + + + Number of connections + Bağlantı sayısı + + + + Block chain + Blok zinciri + + + + Current number of blocks + Güncel blok sayısı + + + + Memory Pool + Bellek Alanı + + + + Current number of transactions + Güncel işlem sayısı + + + + Memory usage + Bellek kullanımı + + + + &Reset + &Reset + + + + + Received + Alınan + + + + + Sent + Yollanan + + + + &Peers + &Eşler + + + + Banned peers + Yasaklı eşler + + + + + + Select a peer to view detailed information. + Ayrıntılı bilgi görmek için bir eş seçin. + + + + Whitelisted + Beyaz listedekiler + + + + Direction + Yön + + + + Version + Sürüm + + + + Starting Block + Başlangıç Bloku + + + + Synced Headers + Eşleşmiş Üstbilgiler + + + + Synced Blocks + Eşleşmiş Bloklar + + + + &Wallet Repair + &Wallet Repair + + + + Wallet Repair Options + Wallet Repair Options + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + Wallet Path + Wallet Path + + + + Rescan blockchain files + Rescan blockchain files + + + + Recover transactions + Recover transactions + + + + Rebuild index + Rebuild index + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + Use to recover balance when transactions fail to broadcast to the network. + Use to recover balance when transactions fail to broadcast to the network. + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + Use after importing private keys or restoring a wallet.dat backup. + Use after importing private keys or restoring a wallet.dat backup. + + + + + User Agent + Kullanıcı Yazılımı + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + Güncel veri klasöründen %1 hata ayıklama kütük dosyasını açar. Büyük kütük dosyaları için bu birkaç saniye alabilir. + + + + Decrease font size + Font boyutunu küçült + + + + Increase font size + Yazıtipi boyutunu büyült + + + + Services + Servisler + + + + Ban Score + Yasaklama Skoru + + + + Connection Time + Bağlantı Süresi + + + + Last Send + Son Gönderme + + + + Last Receive + Son Alma + + + + Ping Time + Ping Süresi + + + + The duration of a currently outstanding ping. + Güncel olarak göze çarpan bir ping'in süresi. + + + + Ping Wait + Ping Beklemesi + + + + Min Ping + En Düşük Ping + + + + Time Offset + Saat Farkı + + + + Last block time + Son blok zamanı + + + + &Open + &Aç + + + + &Console + &Konsol + + + + &Network Traffic + &Ağ trafiği + + + + Totals + Toplamlar + + + + In: + İçeri: + + + + Out: + Dışarı: + + + + Debug log file + Hata ayıklama kütük dosyası + + + + Clear console + Konsolu temizle + + + + 1 &hour + 1 &saat + + + + 1 &day + 1 &gün + + + + 1 &week + 1 &hafta + + + + 1 &year + 1 &yıl + + + + &Disconnect + &Bağlantıyı Kes + + + + + + + Ban for + Yasakla + + + + &Unban + &Yasaklamayı Kaldır + + + + Are you sure you want to reindex? + Are you sure you want to reindex? + + + + Confirm reindex + Confirm reindex + + + + Welcome to the %1 RPC console. + %1 RPC konsoluna hoş geldiniz. + + + + Type <b>help</b> for an overview of available commands. + Mevcut komutların listesi için <b>help</b> yazınız. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + Use up and down arrows to navigate history, and %1 to clear screen. + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + Network activity disabled + Ağ etkinliği devre dışı bırakıldı + + + + (node id: %1) + (düğüm kimliği: %1) + + + + via %1 + %1 vasıtasıyla + + + + + never + asla + + + + Inbound + Gelen + + + + Outbound + Giden + + + + Yes + Evet + + + + No + Hayır + + + + + Unknown + Bilinmiyor + + + + RavenGUI + + + Sign &message... + &İleti imzala... + + + + Synchronizing with network... + Ağ ile senkronize ediliyor... + + + + &Overview + &Genel bakış + + + + Node + Düğüm + + + + Show general overview of wallet + Cüzdana genel bakışı göster + + + + &Transactions + &İşlemler + + + + Browse transaction history + İşlem geçmişine gözat + + + + &Create Assets + &Create Assets + + + + + Create new main/sub/unique assets + Create new main/sub/unique assets + + + + &Transfer Assets + &Transfer Assets + + + + + Transfer assets to RVN addresses + Transfer assets to RVN addresses + + + + &Manage Assets + &Manage Assets + + + + Manage assets you are the administrator of + Manage assets you are the administrator of + + + + &Messaging + &Messaging + + + + + Coming Soon + Coming Soon + + + + &Voting + &Voting + + + + &Restricted Assets + &Restricted Assets + + + + + Manage restricted assets + Manage restricted assets + + + + E&xit + Ç&ık + + + + Quit application + Uygulamadan çık + + + + &About %1 + %1 &Hakkında + + + + Show information about %1 + %1 hakkında bilgi göster + + + + About &Qt + &Qt Hakkında + + + + Show information about Qt + Qt hakkında bilgi göster + + + + &Options... + &Seçenekler... + + + + Modify configuration options for %1 + %1 için yapılandırma ayarlarını değiştir + + + + &Encrypt Wallet... + &Cüzdanı Şifrele... + + + + &Backup Wallet... + &Cüzdanı Yedekle... + + + + &Change Passphrase... + &Parolayı Değiştir... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + &Debug Window + + + + &Wallet Repair + &Wallet Repair + + + + Open wallet repair options + Open wallet repair options + + + + &Sending addresses... + &Gönderme adresleri... + + + + &Receiving addresses... + &Alma adresleri... + + + + Open &URI... + &URI Aç... + + + + &Wallet + &Wallet + + + + Ravencoin Market Price + Ravencoin Market Price + + + + Brought to you by binance.com + Brought to you by binance.com + + + + Click to disable network activity. + Ağ etkinliğini devre dışı bırakmak için tıklayın. + + + + Network activity disabled. + Ağ etkinliği devre dışı bırakılmış. + + + + Click to enable network activity again. + Ağ etkinliğini yeniden etkinleştirmek için tıklayın. + + + + Syncing Headers (%1%)... + Üstbilgiler Senkronize Ediliyor (%1%)... + + + + Reindexing blocks on disk... + Diskteki bloklar yeniden indeksleniyor... + + + + Send coins to a Raven address + Bir raven adresine raven gönder + + + + Backup wallet to another location + Cüzdanı diğer bir konumda yedekle + + + + Change the passphrase used for wallet encryption + Cüzdan şifrelemesi için kullanılan parolayı değiştir + + + + Open debugging and diagnostic console + Hata ayıklama ve teşhis penceresini aç + + + + &Verify message... + İletiyi &kontrol et... + + + + Raven + Raven + + + + Wallet + Cüzdan + + + + &Send + &Gönder + + + + &Receive + &Al + + + + &Show / Hide + &Göster / Gizle + + + + Show or hide the main Window + Ana pencereyi göster ya da gizle + + + + Encrypt the private keys that belong to your wallet + Cüzdanınıza ait özel anahtarları şifreleyin + + + + Sign messages with your Raven addresses to prove you own them + İletileri adreslerin size ait olduğunu ispatlamak için Raven adresleri ile imzala + + + + Verify messages to ensure they were signed with specified Raven addresses + Belirtilen Raven adresleri ile imzalandıklarından emin olmak için iletileri kontrol et + + + + &File + &Dosya + + + + &Help + &Yardım + + + + Request payments (generates QR codes and raven: URIs) + Ödeme talep et (QR kodu ve raven URI'si oluşturur) + + + + Show the list of used sending addresses and labels + Kullanılmış gönderme adresleri ve etiketlerin listesini göster + + + + Show the list of used receiving addresses and labels + Kullanılmış alım adresleri ve etiketlerin listesini göster + + + + Open a raven: URI or payment request + Bir raven: bağlantısı ya da ödeme talebi aç + + + + &Command-line options + &Komut satırı seçenekleri + + + + %n active connection(s) to Raven network + %n active connection to Raven network%n active connections to Raven network + + + + Indexing blocks on disk... + Bloklar diske indeksleniyor... + + + + Processing blocks on disk... + Bloklar diske işleniyor... + + + + Processed %n block(s) of transaction history. + Processed %n block of transaction history.Processed %n blocks of transaction history. + + + + %1 behind + %1 geride + + + + Last received block was generated %1 ago. + Son alınan blok %1 önce oluşturulmuştu. + + + + Transactions after this will not yet be visible. + Bundan sonraki işlemler henüz görüntülenemez. + + + + Error + Hata + + + + Warning + Uyarı + + + + Information + Bilgi + + + + Up to date + Güncel + + + + Show the %1 help message to get a list with possible Raven command-line options + Olası Raven komut satırı seçeneklerinin listesini görmek için %1 yardım mesajını göster + + + + %1 client + %1 istemci + + + + Connecting to peers... + Eşlere bağlanılıyor... + + + + Catching up... + Aralık kapatılıyor... + + + + Date: %1 + + Tarih: %1 + + + + + + Amount: %1 + + Tutar: %1 + + + + + Type: %1 + + Tür: %1 + + + + + Label: %1 + + Etiket: %1 + + + + + Address: %1 + + Adres: %1 + + + + + Sent transaction + İşlem gönderildi + + + + Incoming transaction + Gelen işlem + + + + + Assets not yet active + Assets not yet active + + + + Restricted Assets not yet active + Restricted Assets not yet active + + + + HD key generation is <b>enabled</b> + HD anahtar oluşturma <b>etkin</b> + + + + HD key generation is <b>disabled</b> + HD anahtar oluşturma <b>devre dışı</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilidi açıktır</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Cüzdan <b>şifrelenmiştir</b> ve şu anda <b>kilitlidir</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Ölümcül bir hata oluştu. Raven yazılımı artık güvenli bir şekilde çalışmaya devam edemediği için kapatılacaktır. + + + + ReceiveCoinsDialog + + + &Amount: + &Tutar: + + + + &Label: + &Etiket: + + + + &Message: + &İleti: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Daha önce kullanılmış bir alım adresini kullan. Adresleri tekrar kullanmak güvenlik ve gizlilik sorunları doğurur. Bunu, daha önce yaptığınız bir talebi tekrar oluşturmak durumu dışında kullanmayınız. + + + + R&euse an existing receiving address (not recommended) + &Hâlihazırda bulunan bir alım adresini kullan (önerilmez) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir ileti. Not: Bu ileti ödeme ile birlikte Raven ağı üzerinden gönderilmeyecektir. + + + + + An optional label to associate with the new receiving address. + Yeni alım adresi ile ilişkili, seçiminize dayalı etiket. + + + + Use this form to request payments. All fields are <b>optional</b>. + Ödeme talep etmek için bu formu kullanın. Tüm alanlar <b>seçime dayalıdır</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Seçiminize dayalı talep edilecek tutar. Belli bir tutar talep etmemek için bunu boş bırakın veya sıfır değerini kullanın. + + + + Clear all fields of the form. + Formdaki tüm alanları temizle. + + + + Clear + Temizle + + + + Requested payments history + Talep edilen ödemelerin tarihçesi + + + + &Request payment + Ödeme &talep et + + + + Show the selected request (does the same as double clicking an entry) + Seçilen talebi göster (bir unsura çift tıklamakla aynı anlama gelir) + + + + Show + Göster + + + + Remove the selected entries from the list + Seçilen unsurları listeden kaldır + + + + Remove + Kaldır + + + + Copy URI + URI'yi kopyala + + + + Copy label + Etiket kopyala + + + + Copy message + İletiyi kopyala + + + + Copy amount + Tutarı kopyala + + + + ReceiveRequestDialog + + + QR Code + QR Kodu + + + + Copy &URI + &URI'yi kopyala + + + + Copy &Address + &Adresi kopyala + + + + &Save Image... + Resmi ka&ydet... + + + + Request payment to %1 + %1 unsuruna ödeme talep et + + + + Payment information + Ödeme bilgisi + + + + URI + URI + + + + Address + Adres + + + + Amount + Tutar + + + + Label + Etiket + + + + Message + İleti + + + + Resulting URI too long, try to reduce the text for label / message. + Sonuç URI çok uzun, etiket ya da ileti metnini kısaltmayı deneyiniz. + + + + Error encoding URI into QR Code. + URI'nin QR koduna kodlanmasında hata oluştu. + + + RecentRequestsTableModel - Payment request file cannot be read! This can be caused by an invalid payment request file. - Ödeme talebi dosyası okunamıyor! Bunun nedeni geçersiz bir ödeme talebi dosyası olabilir. + + Date + Tarih - Payment request rejected - Ödeme talebi reddedildi + + Label + Etiket - Payment request network doesn't match client network. - Ödeme talebi ağı, istemci ağıyla eşleşmiyor. + + Message + İleti - Payment request expired. - Ödeme talebinin geçerlilik süresi bitti. + + (no label) + (etiket yok) - Payment request is not initialized. - Ödeme talebi başlatılmadı. + + (no message) + (ileti yok) - Unverified payment requests to custom payment scripts are unsupported. - Özel ödeme betiklerine, doğrulanmamış ödeme talepleri desteklenmez. + + (no amount requested) + (tutar talep edilmedi) - Invalid payment request. - Geçersiz ödeme talebi. + + Requested + Talep edilen + + + ReissueAssetDialog - Requested payment amount of %1 is too small (considered dust). - Talep edilen %1 ödeme tutarı çok küçüktür (toz olarak kabul edilir). + + Coin Control Features + Coin Control Features - Refund from %1 - %1 adresinden geri ödeme + + Inputs... + Inputs... - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - %1 ödeme talebi çok büyük (%2 bayt, üst sınır %3 bayt). + + automatically selected + automatically selected - Error communicating with %1: %2 - %1 ile iletişimde hata: %2 + + Insufficient funds! + Insufficient funds! - Payment request cannot be parsed! - Ödeme talebi ayrıştırılamaz! + + + Quantity: + Quantity: - Bad response from server %1 - %1 sunucusundan hatalı yanıt + + Bytes: + Bytes: - Network request error - Ağ talebi hatası + + Amount: + Amount: - Payment acknowledged - Ödeme kabul edildi + + Dust: + Dust: - - - PeerTableModel - User Agent - Kullanıcı Yazılımı + + Fee: + Fee: - Node/Service - Düğüm/Servis + + After Fee: + After Fee: - NodeId - Düğüm ID'si + + Change: + Change: - Ping - Ping + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - - - QObject - Amount - Tutar + + Custom change address + Custom change address - Enter a Raven address (e.g. %1) - Bir Raven adresi giriniz (mesela %1) + + + Reissue Asset + Reissue Asset - %1 d - %1 g + + Select an asset to reissue: + Select an asset to reissue: - %1 h - %1 s + + Address: + Address: - %1 m - %1 d + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. - %1 s - %1 s + + Verifier String: + Verifier String: - None - Boş + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this - N/A - Mevcut değil + + Warning: + Warning: - %1 ms - %1 ms + + The number of assets that will be created + The number of assets that will be created - - %n second(s) - %n saniye + + + Unit: + Unit: - - %n minute(s) - %n dakika + + + e.g. 1.00000000 + e.g. 1.00000000 - - %n hour(s) - %n saat + + + If the owner of this asset will be able to issue more assets in the future + If the owner of this asset will be able to issue more assets in the future - - %n day(s) - %n gün + + + Reissuable + Reissuable - - %n week(s) - %n hafta + + + Change IPFS/Txid Hash + Change IPFS/Txid Hash - %1 and %2 - %1 ve %2 + + The ipfs/txid hash that contains information about the asset + The ipfs/txid hash that contains information about the asset - - %n year(s) - %n yıl + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) - %1 didn't yet exit safely... - %1 henüz güvenli bir şekilde çıkış yapmamıştır... + + ERROR TEXT + ERROR TEXT - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - Hata: Belirtilen "%1" veri klasörü yoktur. + + Current Asset Settings + Current Asset Settings - Error: Cannot parse configuration file: %1. Only use key=value syntax. - Hata: %1 yapılandırma dosyası ayrıştırılamadı. Sadece anahtar=değer dizimini kullanınız. + + Updated Asset Settings + Updated Asset Settings - Error: %1 - Hata: %1 + + Transaction Fee: + Transaction Fee: - - - QRImageWidget - &Save Image... - Resmi ka&ydet... + + Choose... + Choose... - &Copy Image - Resmi &Kopyala + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. - Save QR Code - QR Kodu Kaydet + + Warning: Fee estimation is currently not possible. + Warning: Fee estimation is currently not possible. - PNG Image (*.png) - PNG Resim (*.png) + + collapse fee-settings + collapse fee-settings - - - RPCConsole - N/A - Mevcut değil + + Hide + Hide - Client version - İstemci sürümü + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - &Information - &Bilgi + + per kilobyte + per kilobyte - Debug window - Hata ayıklama penceresi + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. - General - Genel + + (read the tooltip) + (read the tooltip) - Using BerkeleyDB version - Kullanılan BerkeleyDB sürümü + + Recommended: + Recommended: - Datadir - Veri konumu + + Cus&tom: + Cus&tom: - Startup time - Başlama zamanı + + (Smart fee not initialized yet. This usually takes a few blocks...) + (Smart fee not initialized yet. This usually takes a few blocks...) - Network - + + Confirmation time target: + Confirmation time target: - Name - İsim + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). - Number of connections - Bağlantı sayısı + + Request Replace-By-Fee + Request Replace-By-Fee - Block chain - Blok zinciri + + Clear + Clear - Current number of blocks - Güncel blok sayısı + + Balance: + Balance: - Memory Pool - Bellek Alanı + + 123.456 RVN + 123.456 RVN - Current number of transactions - Güncel işlem sayısı + + Copy quantity + Copy quantity - Memory usage - Bellek kullanımı + + Copy amount + Copy amount - Received - Alınan + + Copy fee + Copy fee - Sent - Yollanan + + Copy after fee + Copy after fee - &Peers - &Eşler + + Copy bytes + Copy bytes - Banned peers - Yasaklı eşler + + Copy dust + Copy dust - Select a peer to view detailed information. - Ayrıntılı bilgi görmek için bir eş seçin. + + Copy change + Copy change - Whitelisted - Beyaz listedekiler + + Select an asset to reissue.. + Select an asset to reissue.. - Direction - Yön + + Select the asset you want to reissue. + Select the asset you want to reissue. - Version - Sürüm + + %1 (%2 blocks) + %1 (%2 blocks) - Starting Block - Başlangıç Bloku + + Cost + Cost - Synced Headers - Eşleşmiş Üstbilgiler + + Asset data couldn't be found + Asset data couldn't be found - Synced Blocks - Eşleşmiş Bloklar + + Quantity is to large. Max is 21,000,000,000 + Quantity is to large. Max is 21,000,000,000 - User Agent - Kullanıcı Yazılımı + + Invalid Raven Destination Address + Invalid Raven Destination Address - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - Güncel veri klasöründen %1 hata ayıklama kütük dosyasını açar. Büyük kütük dosyaları için bu birkaç saniye alabilir. + + Warning: Restricted Assets Issuance requires an address + Warning: Restricted Assets Issuance requires an address - Decrease font size - Font boyutunu küçült + + + Warning: Invalid Raven address + Warning: Invalid Raven address - Increase font size - Yazıtipi boyutunu büyült + + + Yes + Yes - Services - Servisler + + No + No - Ban Score - Yasaklama Skoru + + + Name + Name - Connection Time - Bağlantı Süresi + + + Total Quantity + Total Quantity - Last Send - Son Gönderme + + + Units + Units - Last Receive - Son Alma + + + Can Reisssue + Can Reisssue - Ping Time - Ping Süresi + + + + IPFS Hash + IPFS Hash - The duration of a currently outstanding ping. - Güncel olarak göze çarpan bir ping'in süresi. + + + + Txid Hash + Txid Hash - Ping Wait - Ping Beklemesi + + Verifier String + Verifier String - Min Ping - En Düşük Ping + + + Current Verifier String + Current Verifier String - Time Offset - Saat Farkı + + Please select a asset from the menu to display the assets current settings + Please select a asset from the menu to display the assets current settings - Last block time - Son blok zamanı + + Please select a asset from the menu to display the assets updated settings + Please select a asset from the menu to display the assets updated settings - &Open - &Aç + + Current Quantity + Current Quantity - &Console - &Konsol + + Current Units + Current Units - &Network Traffic - &Ağ trafiği + + Can Reissue + Can Reissue - &Clear - &Temizle + + Unknown data hash type + Unknown data hash type - Totals - Toplamlar + + Only IPFS Hashes allowed until RIP5 is activated + Only IPFS Hashes allowed until RIP5 is activated - In: - İçeri: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters - Out: - Dışarı: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters - Debug log file - Hata ayıklama kütük dosyası + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + %1 to %2 + %1 to %2 - Clear console - Konsolu temizle + + Are you sure you want to send? + Are you sure you want to send? - 1 &hour - 1 &saat + + added as transaction fee + added as transaction fee - 1 &day - 1 &gün + + Total Amount %1 + Total Amount %1 - 1 &week - 1 &hafta + + or + or - 1 &year - 1 &yıl + + Confirm reissue assets + Confirm reissue assets - &Disconnect - &Bağlantıyı Kes + + Copy + Copy - Ban for - Yasakla + + Transaction ID Copied + Transaction ID Copied - &Unban - &Yasaklamayı Kaldır + + Asset transaction sent to network: + Asset transaction sent to network: + + + + Estimated to begin confirmation within %n block(s). + Estimated to begin confirmation within %n block.Estimated to begin confirmation within %n blocks. - Welcome to the %1 RPC console. - %1 RPC konsoluna hoş geldiniz. + + Warning: Unknown change address + Warning: Unknown change address - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Tarihçede gezinmek için aşağı ve yukarı ok tuşlarını kullanınız, <b>Ctrl-L</b> ile de ekranı temizleyebilirsiniz. + + Confirm custom change address + Confirm custom change address - Type <b>help</b> for an overview of available commands. - Mevcut komutların listesi için <b>help</b> yazınız. + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - UYARI: Raven dolandırıcılarının çok fazla etkin olduğu zamanlarda, dolandırıcılar bazı kullanıcılara buraya komutlar yazmalarını söylerek onların cüzdanlarındaki ravenleri çalmışlardır. Bir komutun sonuçlarını tam olarak anlamadan bu konsolu kullanmayın. + + (no label) + (no label) - Network activity disabled - Ağ etkinliği devre dışı bırakıldı + + Pay only the required fee of %1 + Pay only the required fee of %1 + + + RestrictedAssetsDialog - %1 B - %1 B + + Send Coins + Send Coins - %1 KB - %1 KB + + Asset Balances + Asset Balances - %1 MB - %1 MB + + + Search + Search - %1 GB - %1 GB + + Address List + Address List - (node id: %1) - (düğüm kimliği: %1) + + Balance: + Balance: - via %1 - %1 vasıtasıyla + + + Failed to create a change address + Failed to create a change address - never - asla + + Failed to generate the correct transaction. Please try again + Failed to generate the correct transaction. Please try again - Inbound - Gelen + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> - Outbound - Giden + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> - Yes - Evet + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> - No - Hayır + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> - Unknown - Bilinmiyor + + + added as transaction fee + added as transaction fee - - - ReceiveCoinsDialog - &Amount: - &Tutar: + + + Total Amount %1 + Total Amount %1 - &Label: - &Etiket: + + + or + or - &Message: - &İleti: + + Confirm adding restriction + Confirm adding restriction - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Daha önce kullanılmış bir alım adresini kullan. Adresleri tekrar kullanmak güvenlik ve gizlilik sorunları doğurur. Bunu, daha önce yaptığınız bir talebi tekrar oluşturmak durumu dışında kullanmayınız. + + Confirm removing resetricton + Confirm removing resetricton - R&euse an existing receiving address (not recommended) - &Hâlihazırda bulunan bir alım adresini kullan (önerilmez) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + Adding qualifier <b>%1</b> to address <b>%2</b><br> - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Talep açıldığında gösterilecek, isteğinize dayalı, ödeme talebi ile ilişkilendirilecek bir ileti. Not: Bu ileti ödeme ile birlikte Raven ağı üzerinden gönderilmeyecektir. + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + Removing qualifier <b>%1</b> from address <b>%2</b><br> - An optional label to associate with the new receiving address. - Yeni alım adresi ile ilişkili, seçiminize dayalı etiket. + + Confirm adding qualifier + Confirm adding qualifier - Use this form to request payments. All fields are <b>optional</b>. - Ödeme talep etmek için bu formu kullanın. Tüm alanlar <b>seçime dayalıdır</b>. + + Confirm removing qualifier + Confirm removing qualifier + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - Seçiminize dayalı talep edilecek tutar. Belli bir tutar talep etmemek için bunu boş bırakın veya sıfır değerini kullanın. + + This is an asset payment + This is an asset payment - Clear all fields of the form. - Formdaki tüm alanları temizle. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Clear - Temizle + + + + Memo: + Memo: - Requested payments history - Talep edilen ödemelerin tarihçesi + + Amount: + Amount: - &Request payment - Ödeme &talep et + + Enter a label for this address to add it to the list of used addresses + Enter a label for this address to add it to the list of used addresses - Show the selected request (does the same as double clicking an entry) - Seçilen talebi göster (bir unsura çift tıklamakla aynı anlama gelir) + + &Label: + &Label: - Show - Göster + + Asset: + Asset: - Remove the selected entries from the list - Seçilen unsurları listeden kaldır + + The Raven address to send the payment to + The Raven address to send the payment to - Remove - Kaldır + + Choose previously used address + Choose previously used address - Copy URI - URI'yi kopyala + + Alt+A + Alt+A - Copy label - Etiket kopyala + + Paste address from clipboard + Paste address from clipboard - Copy message - İletiyi kopyala + + Alt+P + Alt+P - Copy amount - Tutarı kopyala + + + + Remove this entry + Remove this entry - - - ReceiveRequestDialog - QR Code - QR Kodu + + Message: + Message: - Copy &URI - &URI'yi kopyala + + Transfer &To: + - Copy &Address - &Adresi kopyala + + Transfer Administrator Asset + Transfer Administrator Asset - &Save Image... - Resmi ka&ydet... + + Put a IPFS or Txid hash here to be sent with the asset transfer + Put a IPFS or Txid hash here to be sent with the asset transfer - Request payment to %1 - %1 unsuruna ödeme talep et + + This is an unauthenticated payment request. + This is an unauthenticated payment request. - Payment information - Ödeme bilgisi + + + Transfer to: + Transfer to: - URI - URI + + + A&mount: + A&mount: - Address - Adres + + This is an authenticated payment request. + This is an authenticated payment request. - Amount - Tutar + + Enter a label for this address to add it to your address book + Enter a label for this address to add it to your address book - Label - Etiket + + Select to view administrator assets to transfer + Select to view administrator assets to transfer - Message - İleti + + + Select an asset to transfer + Select an asset to transfer - Resulting URI too long, try to reduce the text for label / message. - Sonuç URI çok uzun, etiket ya da ileti metnini kısaltmayı deneyiniz. + + Memos can only be added once RIP5 is voted in + Memos can only be added once RIP5 is voted in - Error encoding URI into QR Code. - URI'nin QR koduna kodlanmasında hata oluştu. + + This restricted asset has been frozen globally. No transfers can be sent on the network. + This restricted asset has been frozen globally. No transfers can be sent on the network. - - - RecentRequestsTableModel - Date - Tarih + + Failed to get asset metadata for: + Failed to get asset metadata for: - Label - Etiket + + The transaction in which the asset was issued must be mined into a block before you can transfer it + The transaction in which the asset was issued must be mined into a block before you can transfer it - Message - İleti + + Failed to get asset outpoints from database + Failed to get asset outpoints from database - (no label) - (etiket yok) + + Selected Balance + Selected Balance - (no message) - (ileti yok) + + Wallet Balance + Wallet Balance - (no amount requested) - (tutar talep edilmedi) + + Select an administrator asset to transfer + Select an administrator asset to transfer - Requested - Talep edilen + + Warning: Transferring administrator asset + Warning: Transferring administrator asset SendCoinsDialog + + Send Coins Raven yolla + Coin Control Features Para kontrolü özellikleri + Inputs... Girdiler... + automatically selected otomatik seçilmiş + Insufficient funds! Yetersiz fon! + Quantity: Miktar: + Bytes: Bayt: + Amount: Tutar: + Fee: Ücret: + After Fee: Ücretten sonra: + Change: Para üstü: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Bu etkinleştirildiyse fakat para üstü adresi boş ya da geçersizse para üstü yeni oluşturulan bir adrese gönderilecektir. + Custom change address Özel para üstü adresi + Transaction Fee: İşlem ücreti: + Choose... Seç... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + Warning: Fee estimation is currently not possible. + Warning: Fee estimation is currently not possible. + + + collapse fee-settings ücret-ayarlarını-küçült + per kilobyte kilobayt başı - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Eğer özel ücret 1000 satoşi olarak ayarlandıysa ve işlem sadece 250 baytsa, "kilobayt başı" ücret olarak sadece 250 satoşi öder ve "toplam asgari" 1000 satoşi öder. Bir kilobayttan yüksek işlemler için ikisi de kilobayt başı ödeme yapar. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Eğer özel ücret 1000 satoşi olarak ayarlandıysa ve işlem sadece 250 baytsa, "kilobayt başı" ücret olarak sadece 250 satoşi öder ve "toplam asgari" 1000 satoşi öder. Bir kilobayttan yüksek işlemler için ikisi de kilobayt başı ödeme yapar. + Hide Gizle - total at least - toplam asgari - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Gerekli olan en az ücreti ödemek, bloklarda boşluktan daha az işlem hacmi olduğu sürece bir sorun çıkarmaz. Fakat ağın işleyecebileceğinden daha çok raven işlemi talebi olduğunda bunun asla doğrulanmayan bir işlem olabileceğinin farkında olmalısınız. + (read the tooltip) (bilgi balonunu oku) + Recommended: Tavsiye edilen: + Custom: Özel: + (Smart fee not initialized yet. This usually takes a few blocks...) (Zeki ücret henüz başlatılmadı. Bu genelde birkaç blok alır...) - normal - normal + + Request Replace-By-Fee + Request Replace-By-Fee - fast - çabuk + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + Send to multiple recipients at once Birçok alıcıya aynı anda gönder + Add &Recipient &Alıcı ekle + Clear all fields of the form. Formdaki tüm alanları temizle. + Dust: Toz: + Confirmation time target: Doğrulama süresi hedefi: + Clear &All Tümünü &temizle + Balance: Bakiye: + Confirm the send action Yollama etkinliğini teyit ediniz + S&end G&önder + Copy quantity Miktarı kopyala + Copy amount Tutarı kopyala + Copy fee Ücreti kopyala + Copy after fee Ücretten sonrasını kopyala + Copy bytes Baytları kopyala + Copy dust Tozu kopyala + Copy change Para üstünü kopyala + + %1 (%2 blocks) + %1 (%2 blocks) + + + + + + %1 to %2 %1 ögesinden %2 unsuruna + Are you sure you want to send? Göndermek istediğinizden emin misiniz? + added as transaction fee işlem ücreti olarak eklendi + Total Amount %1 Toplam Tutar %1 + or veya + Confirm send coins Raven gönderimini onaylayın + The recipient address is not valid. Please recheck. Alıcı adresi geçerli değildir. Lütfen tekrar kontrol ediniz. + The amount to pay must be larger than 0. - Ödeyeceğiniz tutarın 0'dan yüksek olması gerekir. + Ödeyeceğiniz tutarın 0'dan yüksek olması gerekir. + The amount exceeds your balance. Tutar bakiyenizden yüksektir. + The total exceeds your balance when the %1 transaction fee is included. Toplam, %1 işlem ücreti eklendiğinde bakiyenizi geçmektedir. + Duplicate address found: addresses should only be used once each. Tekrarlayan adres bulundu: adresler sadece bir kez kullanılmalıdır. + Transaction creation failed! İşlem oluşturma başarısız! + The transaction was rejected with the following reason: %1 İşlem şu nedenden dolayı reddedildi: %1 + A fee higher than %1 is considered an absurdly high fee. %1 tutarından yüksek bir ücret saçma derecede yüksek bir ücret olarak kabul edilir. + Payment request expired. Ödeme talebinin geçerlilik süresi bitti. - - %n block(s) - %n blok - + Pay only the required fee of %1 Sadece asgari ücret olan %1 tutarını öde + + + Estimated to begin confirmation within %n block(s). + Estimated to begin confirmation within %n block.Estimated to begin confirmation within %n blocks. + + Warning: Invalid Raven address Uyarı: geçersiz Raven adresi + Warning: Unknown change address Uyarı: Bilinmeyen para üstü adresi + Confirm custom change address Özel para üstü adresini onayla + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? Para üstü için seçtiğiniz adres bu cüzdanın bir parçası değil. Cüzdanınızdaki bir miktar veya tüm para bu adrese gönderilebilir. Emin misiniz? + (no label) (etiket yok) @@ -2222,82 +5504,108 @@ SendCoinsEntry + + + A&mount: T&utar: - Pay &To: - &Şu adrese öde: - - + &Label: &Etiket: + Choose previously used address Önceden kullanılmış adres seç + This is a normal payment. Bu, normal bir ödemedir. + The Raven address to send the payment to Ödemenin yollanacağı Raven adresi + Alt+A Alt+A + Paste address from clipboard Panodan adres yapıştır + Alt+P Alt+P + + + Remove this entry Bu ögeyi kaldır + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Ücret yollanan tutardan alınacaktır. Alıcı tutar alanına girdiğinizden daha az raven alacaktır. Eğer birden çok alıcı seçiliyse ücret eşit olarak bölünecektir. + S&ubtract fee from amount Ücreti tutardan düş + Message: İleti: + + Send &To: + + + + This is an unauthenticated payment request. Bu, kimliği doğrulanmamış bir ödeme talebidir. + + + Send to: + Send to: + + + This is an authenticated payment request. Bu, kimliği doğrulanmış bir ödeme talebidir. + Enter a label for this address to add it to the list of used addresses Kullanılmış adres listesine eklemek için bu adrese bir etiket girin + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. - Referans için raven: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj Raven ağı üzerinden gönderilmeyecektir. - - - Pay To: - Şu adrese öde: + Referans için raven: URI'siyle iliştirilmiş işlemle birlikte depolanacak bir ileti. Not: Bu mesaj Raven ağı üzerinden gönderilmeyecektir. + + Memo: Not: + Enter a label for this address to add it to your address book Adres defterinize eklemek için bu adrese bir etiket giriniz @@ -2305,6 +5613,8 @@ SendConfirmationDialog + + Yes Evet @@ -2312,10 +5622,12 @@ ShutdownWindow + %1 is shutting down... %1 kapanıyor... + Do not shut down the computer until this window disappears. Bu pencere kalkıncaya dek bilgisayarı kapatmayınız. @@ -2323,138 +5635,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message İmzalar - İleti İmzala / Kontrol et + &Sign Message İleti &imzala + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Adreslerinize yollanan ravenleri alabileceğiniz ispatlamak için adreslerinizle iletiler/anlaşmalar imzalayabilirsiniz. Oltalama saldırılarının kimliğinizi imzanızla elde etmeyi deneyebilecekleri için belirsiz ya da rastgele hiçbir şey imzalamamaya dikkat ediniz. Sadece ayrıntılı açıklaması olan ve tümüne katıldığınız ifadeleri imzalayınız. + The Raven address to sign the message with İletinin imzalanmasında kullanılacak Raven adresi + + Choose previously used address Önceden kullanılmış adres seç + + Alt+A Alt+A + Paste address from clipboard Panodan adres yapıştır + Alt+P Alt+P + Enter the message you want to sign here İmzalamak istediğiniz iletiyi burada giriniz + Signature İmza + Copy the current signature to the system clipboard Güncel imzayı sistem panosuna kopyala + Sign the message to prove you own this Raven address Bu Raven adresinin sizin olduğunu ispatlamak için iletiyi imzalayın + Sign &Message &İletiyi imzala + Reset all sign message fields Tüm ileti alanlarını sıfırla + + Clear &All Tümünü &temizle + &Verify Message İletiyi &kontrol et - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Alıcının adresini, iletiyi (satır sonları, boşluklar, sekmeler vs. karakterleri tam olarak kopyaladığınızdan emin olunuz) ve imzayı aşağıya giriniz. Bir ortadaki adam saldırısı tarafından kandırılmaya engel olmak için imzadan, imzalı iletinin içeriğini aşan bir anlam çıkarmamaya dikkat ediniz. Bunun sadece imzalayan tarafın adres ile alım yapabildiğini ispatladığını ve herhangi bir işlemin gönderi tarafını kanıtlayamayacağını unutmayınız! + The Raven address the message was signed with İletinin imzalanmasında kullanılan Raven adresi + Verify the message to ensure it was signed with the specified Raven address Belirtilen Raven adresi ile imzalandığını doğrulamak için iletiyi kontrol et + Verify &Message &İletiyi kontrol et + Reset all verify message fields Tüm ileti kontrolü alanlarını sıfırla - Click "Sign Message" to generate signature - İmzayı oluşturmak için "İletiyi İmzala"ya tıklayın + + Click "Sign Message" to generate signature + İmzayı oluşturmak için "İletiyi İmzala"ya tıklayın + + The entered address is invalid. Girilen adres geçersizdir. + + + + Please check the address and try again. Lütfen adresi kontrol edip tekrar deneyiniz. + + The entered address does not refer to a key. Girilen adres herhangi bir anahtara işaret etmemektedir. + Wallet unlock was cancelled. Cüzdan kilidinin açılması iptal edildi. + Private key for the entered address is not available. Girilen adres için özel anahtar mevcut değildir. + Message signing failed. İleti imzalaması başarısız oldu. + Message signed. İleti imzalandı. + The signature could not be decoded. İmzanın kodu çözülemedi. + + Please check the signature and try again. Lütfen imzayı kontrol edip tekrar deneyiniz. + The signature did not match the message digest. İmza iletinin özeti ile eşleşmedi. + Message verification failed. İleti doğrulaması başarısız oldu. + Message verified. İleti doğrulandı. @@ -2462,6 +5817,7 @@ SplashScreen + [testnet] [testnet] @@ -2469,6 +5825,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2476,174 +5833,260 @@ TransactionDesc + Open for %n more block(s) - %n taneden daha fazla blok için açık + Open for %n more blockOpen for %n more blocks + Open until %1 %1 değerine dek açık + conflicted with a transaction with %1 confirmations %1 doğrulamalı bir işlem ile çelişti + %1/offline %1/çevrim dışı + 0/unconfirmed, %1 0/doğrulanmamış, %1 + in memory pool bellek alanında + not in memory pool bellek alanında değil + abandoned terk edilmiş + %1/unconfirmed %1/doğrulanmadı + %1 confirmations %1 doğrulama + + Status Durum + + , has not been successfully broadcast yet , henüz başarılı bir şekilde yayınlanmadı + + , broadcast through %n node(s) - , %n düğüm aracılığıyla yayınlandı + , broadcast through %n node, broadcast through %n nodes + + Date Tarih + Source Kaynak + Generated Oluşturuldu + + + + + From Gönderen + + unknown bilinmiyor + + + + + To Alıcı + + own address kendi adresiniz + + + watch-only sadece-izlenen + + label etiket + + + + + + + Credit Alınan Tutar + matures in %n more block(s) - %n ek blok sonrasında olgunlaşacak + matures in %n more blockmatures in %n more blocks + not accepted kabul edilmedi + + + + + Debit Çekilen Tutar + Total debit Toplam çekilen tutar + Total credit Toplam alınan tutar + Transaction fee İşlem ücreti + Net amount Net tutar + + + + Message İleti + + Comment Yorum + + Transaction ID - İşlem ID'si + İşlem ID'si + + Transaction total size İşlemin toplam boyutu + + Output index Çıktı indeksi + + Merchant Tüccar - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. - Oluşturulan raven'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + Oluşturulan raven'lerin harcanabilmelerinden önce %1 blok beklemeleri gerekmektedir. Bu blok, oluşturduğunuzda, blok zincirine eklenmesi için ağda yayınlandı. Zincire eklenmesi başarısız olursa, durumu "kabul edilmedi" olarak değiştirilecek ve harcanamayacaktır. Bu, bazen başka bir düğüm sizden birkaç saniye önce ya da sonra blok oluşturursa meydana gelebilir. + + + + Net RVN amount + Net RVN amount + Debug information Hata ayıklama bilgisi + Transaction İşlem + Inputs Girdiler + Amount Tutar + + true doğru + + false yanlış @@ -2651,10 +6094,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Bu pano işlemin ayrıntılı açıklamasını gösterir + Details for %1 %1 için ayrıntılar @@ -2662,269 +6107,411 @@ TransactionTableModel + Date Tarih + Type Tür + Label Etiket + + + Amount + Amount + + + + Asset + Asset + + Open for %n more block(s) - %n taneden daha fazla blok için açık + Open for %n more blockOpen for %n more blocks + Open until %1 %1 değerine dek açık + Offline Çevrim dışı + Unconfirmed Doğrulanmamış + Abandoned Terk edilmiş + Confirming (%1 of %2 recommended confirmations) Doğrulanıyor (%1 kere doğrulandı, önerilen doğrulama sayısı %2) + Confirmed (%1 confirmations) Doğrulandı (%1 doğrulama) + Conflicted Uyuşmadı + Immature (%1 confirmations, will be available after %2) Olgunlaşmamış (%1 doğrulama, %2 doğrulama sonra kullanılabilir olacaktır) + This block was not received by any other nodes and will probably not be accepted! Bu blok başka hiçbir düğüm tarafından alınmamıştır ve muhtemelen kabul edilmeyecektir! + Generated but not accepted Oluşturuldu ama kabul edilmedi + Received with Şununla alındı + Received from Alındığı kişi + Sent to Gönderildiği adres + Payment to yourself Kendinize ödeme + Mined Madenden çıkarılan + + Asset Issued + Asset Issued + + + + Asset Reissued + Asset Reissued + + + + Assets Received + Assets Received + + + + Assets Sent + Assets Sent + + + watch-only sadece-izlenen + (n/a) (mevcut değil) + (no label) (etiket yok) + Transaction status. Hover over this field to show number of confirmations. İşlem durumu. Doğrulama sayısını görüntülemek için fare imlecini bu alanın üzerinde tutunuz. + Date and time that the transaction was received. İşlemin alındığı tarih ve zaman. + Type of transaction. İşlemin türü. + Whether or not a watch-only address is involved in this transaction. Bu işleme sadece-izlenen bir adresin dahil edilip, edilmediği. + User-defined intent/purpose of the transaction. İşlemin kullanıcı tanımlı amacı. + Amount removed from or added to balance. Bakiyeden kaldırılan ya da bakiyeye eklenen tutar. + + + The asset (or RVN) removed or added to balance. + The asset (or RVN) removed or added to balance. + TransactionView + + All Hepsi + Today Bugün + This week Bu hafta + This month Bu ay + Last month Geçen ay + This year Bu yıl + Range... Tarih Aralığı + Received with Şununla alındı + Sent to Gönderildiği adres + To yourself Kendinize + Mined Madenden çıkarılan + Other Diğer + Enter address or label to search Aranacak adres ya da etiket giriniz + Min amount En düşük tutar + + Asset name + Asset name + + + Abandon transaction İşlemden vazgeç + Copy address Adres kopyala + Copy label Etiket kopyala + Copy amount Tutarı kopyala + Copy transaction ID - İşlem ID'sini kopyala + İşlem ID'sini kopyala + Copy raw transaction Ham işlemi kopyala + Copy full transaction details Tüm işlem ayrıntılarını kopyala + Edit label Etiketi düzenle + Show transaction details İşlem ayrıntılarını göster + + Browse with: + Browse with: + + + Export Transaction History İşlem Tarihçesini Dışarı Aktar + Comma separated file (*.csv) Virgülle ayrılmış değerler dosyası (*.csv) + Confirmed Doğrulandı + Watch-only Sadece izlenen + Date Tarih + Type Tür + Label Etiket + Address Adres + + Asset + Asset + + + ID ID + Exporting Failed Dışarı aktarmada hata + There was an error trying to save the transaction history to %1. İşlem tarihçesinin %1 konumuna kaydedilmeye çalışıldığı sırada bir hata meydana geldi. + Exporting Successful Dışarı Aktarma Başarılı + The transaction history was successfully saved to %1. İşlem tarihçesi %1 konumuna başarıyla kaydedildi. + + Asset Issued + Asset Issued + + + + Asset Reissued + Asset Reissued + + + + Asset Received + Asset Received + + + + Asset Sent + Asset Sent + + + + Copy asset name + Copy asset name + + + Range: Tarih Aralığı: + to Alıcı @@ -2932,6 +6519,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Tutarı göstermek için birim. Başka bir birim seçmek için tıklayınız. @@ -2939,6 +6527,7 @@ WalletFrame + No wallet has been loaded. Hiçbir cüzdan yüklenmedi. @@ -2946,968 +6535,1763 @@ WalletModel + Send Coins Raveni Gönder + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export &Dışarı aktar + Export the data in the current tab to a file Mevcut sekmedeki verileri bir dosyaya aktar + Backup Wallet Cüzdanı Yedekle + Wallet Data (*.dat) Cüzdan Verileri (*.dat) + Backup Failed Yedekleme Başarısız Oldu + There was an error trying to save the wallet data to %1. Cüzdan verilerinin %1 konumuna kaydedilmesi sırasında bir hata meydana geldi. + Backup Successful Yedekleme Başarılı + The wallet data was successfully saved to %1. Cüzdan verileri %1 konumuna başarıyla kaydedildi. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Seçenekler: + Specify data directory Veri dizinini belirt + Connect to a node to retrieve peer addresses, and disconnect Eş adresleri elde etmek için bir düğüme bağlan ve ardından bağlantıyı kes + Specify your own public address Kendi genel adresinizi tanımlayın + Accept command line and JSON-RPC commands Komut satırı ve JSON-RPC komutlarını kabul et - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - Dışarıdan gelen bağlantıları kabul et (varsayılan: 1 eğer -proxy veya -connect/-noconnect yoksa) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - -noconnect ile yalnızca belirtilen düğümleri bağlayın veya yalnız otomatik bağlantıları devre dışı bırakmak için -connect=0 kullanın. - - + Distributed under the MIT software license, see the accompanying file %s or %s MIT yazılım lisansı altında dağıtılmıştır, beraberindeki %s ya da %s dosyasına bakınız. + If <category> is not supplied or if <category> = 1, output all debugging information. Eğer <kategori> belirtilmemişse ya da <kategori> = 1 ise, tüm hata ayıklama verilerini çıktı al. + Prune configured below the minimum of %d MiB. Please use a higher number. - Budama, en düşük değer olan %d MiB'den düşük olarak ayarlanmıştır. Lütfen daha yüksek bir sayı kullanınız. + Budama, en düşük değer olan %d MiB'den düşük olarak ayarlanmıştır. Lütfen daha yüksek bir sayı kullanınız. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Budama: son cüzdan eşleşmesi budanmış verilerin ötesine gitmektedir. -reindex kullanmanız gerekmektedir (Budanmış düğüm ise tüm blok zincirini tekrar indirmeniz gerekir.) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Tekrar taramalar budanmış kipte mümkün değildir. Tüm blok zincirini tekrar indirecek olan -reindex seçeneğini kullanmanız gerekecektir. + Error: A fatal internal error occurred, see debug.log for details Hata: Ölümcül dahili bir hata meydana geldi, ayrıntılar için debug.log dosyasına bakınız + Fee (in %s/kB) to add to transactions you send (default: %s) Yolladığınız işlemlere eklenecek ücret (%s/kB olarak) (varsayılan: %s) + Pruning blockstore... Blockstore budanıyor... + Run in the background as a daemon and accept commands Arka planda daemon (servis) olarak çalış ve komutları kabul et + Unable to start HTTP server. See debug log for details. HTTP sunucusu başlatılamadı. Ayrıntılar için debug.log dosyasına bakınız. + Raven Core Raven Çekirdeği + The %s developers %s geliştiricileri + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) Ücret tahmini için yetersiz veri bulunduğunda kullanılacak ücret oranı (%s/kB olarak) (varsayılan: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) İşlemler aktarılmadığında dahi beyaz listedeki eşlerden aktarılan işlemleri kabul et (varsayılan: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Belirtilen adrese bağlan ve daima ondan dinle. IPv6 için [makine]:port yazımını kullanınız + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + Belirtilen adrese bağlan ve daima ondan dinle. IPv6 için [makine]:port yazımını kullanınız + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + %s veri dizininde kilit elde edilemedi. %s muhtemelen hâlihazırda çalışmaktadır. + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - %s veri dizininde kilit elde edilemedi. %s muhtemelen hâlihazırda çalışmaktadır. + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Tüm cüzdan işlemlerini sil ve başlangıçta -rescan ile sadece blok zincirinin parçası olanları geri getir - Error loading %s: You can't enable HD on a already existing non-HD wallet - %s yüklenmesinde hata: zaten var olan ve HD olmayan bir cüzdanda HD etkinleştirilemez. - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. %s dosyasının okunması sırasında bir hata meydana geldi! Tüm anahtarlar doğru bir şekilde okundu, ancak işlem verileri ya da adres defteri ögeleri hatalı veya eksik olabilir. + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Bir cüzdan işlemi değiştiğinde komutu çalıştır (komuttaki %s işlem kimliği ile değiştirilecektir) + Extra transactions to keep in memory for compact block reconstructions (default: %u) Daha küçük boyutlu blok yeniden yapılandırması için fazladan işlemleri bellekte tut. (varsayılan: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) Eğer bu blok zincirde yer alıyorsa onun ve atalarının geçerli olduğunu varsay ve potansiyel olarak onların betik doğrulamasını atla. (Tümünü doğrulamak için 0, varsayılan %s, testnet: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) İzin verilen edilen en yüksek medyan eş zamanı değişiklik sınırının ayarlaması. Zamanın yerel perspektifi bu miktar kadar ileri ya da geri eşler tarafından etkilenebilir. (Varsayılan %u saniye) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) Tek bir cüzdan işleminde ya da ham işlemde kullanılacak en yüksek toplam ücret (%s olarak); bunu çok düşük olarak ayarlamak büyük işlemleri iptal edebilir (varsayılan: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. Lütfen bilgisayarınızın saat ve tarihinin doğru olduğunu kontrol ediniz! Saatinizde gecikme varsa %s doğru şekilde çalışamaz. + Please contribute if you find %s useful. Visit %s for further information about the software. %s programını faydalı buluyorsanız lütfen katkıda bulununuz. Yazılım hakkında daha fazla bilgi için %s adresini ziyaret ediniz. + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) Eski blokları budamayı (silme) etkinleştirerek depolama gereksinimlerini azaltın. Bu belirli blokları silmek için pruneblockchain uzak yordam çağrısına (RPC) izin verir. Eğer bloklar hedef mebibyte boyutuna ulaşırsa eski blokların otomatik olarak budanmasını sağlar. Bu kip, -txindex ve -rescan ile uyumsuzdur. Uyarı: Bu ayarı geri almak, blok zincirinin tamamını yeniden yüklemeyi gerektirir. (varsayılan: 0 = blok budaması devre dışı, 1 = RPC üzerinden manuel budamaya izin verir, >%u = mebibyte olarak belirtilen hedef boyutun altında kalması için blok dosyalarını otomatik olarak budar) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) Blok oluşturmaya dahil olan işlemler için en düşük ücret oranını (%s/kB olarak) ayarla. (varsayılan: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Betik kontrolü iş parçacıklarının sayısını belirler (%u ilâ %d, 0 = otomatik, <0 = bu sayıda çekirdeği kullanma, varsayılan: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Blok veritabanı gelecekten gibi görünen bir blok içermektedir. Bu, bilgisayarınızın saat ve tarihinin yanlış ayarlanmış olmasından kaynaklanabilir. Blok veritabanını sadece bilgisayarınızın tarih ve saatinin doğru olduğundan eminseniz yeniden derleyin. + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications Bu kararlı sürümden önceki bir deneme sürümüdür. - risklerini bilerek kullanma sorumluluğu sizdedir - raven oluşturmak ya da ticari uygulamalar için kullanmayınız + + This is the transaction fee you may discard if change is smaller than dust at this level + This is the transaction fee you may discard if change is smaller than dust at this level + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain Veritabanını çatallama öncesi duruma geri sarmak mümkün değil. Blok zincirini tekrar indirmeniz gerekmektedir + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Dinlenecek portu haritalamak için UPnP kullan (varsayılan: dinlenildiğinde ve -proxy olmadığında 1) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times JSON-RPC bağlantıları için kullanıcı adı ve karmalanmış parola. <userpw> alanı şu biçimdedir: <KULLANICI ADI>:<SALT>$<HASH>. Kanonik bir Python betiği share/rpcuser klasöründe bulunabilir. Ardından istemci normal şekilde rpcuser=<KULLANICI ADI>/rpcpassword=<PAROLA> argüman çiftini kullanarak bağlanabilir. Bu seçenek birden çok kez belirtilebilir. + Wallet will not create transactions that violate mempool chain limits (default: %u) Cüzdan, zincir bellek alanı limitlerini ihlal eden işlem oluşturmayacak. (varsayılan: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. Uyarı: Ağ üyeleri aralarında tamamen anlaşmış gibi gözükmüyor! Bazı madenciler sorun yaşıyor gibi görünmektedir. + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. Uyarı: Ağ eşlerimizle tamamen anlaşamamışız gibi görünüyor! Güncelleme yapmanız gerekebilir ya da diğer düğümlerin güncelleme yapmaları gerekebilir. - You need to rebuild the database using -reindex-chainstate to change -txindex - -txindex'i değiştirmek için veritabanını -reindex-chainstate kullanarak tekrar inşa etmeniz gerekmektedir + + Whether to save the mempool on shutdown and load on restart (default: %u) + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + %d of last 100 blocks have unexpected version + %d of last 100 blocks have unexpected version + %s corrupt, salvage failed %s bozuk, geri kazanım başarısız oldu + -maxmempool must be at least %d MB -maxmempool en az %d MB olmalıdır + <category> can be: <kategori> şunlar olabilir: + + Accept connections from outside (default: 1 if no -proxy or -connect) + Accept connections from outside (default: 1 if no -proxy or -connect) + + + Append comment to the user agent string Kullanıcı aracı zincirine yorumu ekle + Attempt to recover private keys from a corrupt wallet on startup Başlangıçta bozuk bir cüzdandan özel anahtarları geri kazanmayı dene + Block creation options: Blok oluşturma seçenekleri: - Cannot resolve -%s address: '%s' - Çözümlenemedi - %s adres: '%s' + + Cannot resolve -%s address: '%s' + Çözümlenemedi - %s adres: '%s' + Chain selection options: Blok zinciri seçim ayarları: + Change index out of range Aralık dışında değişiklik indeksi + Connection options: Bağlantı seçenekleri: + Copyright (C) %i-%i Telif hakkı (C) %i-%i + Corrupted block database detected Bozuk blok veritabanı tespit edildi + Debugging/Testing options: Hata ayıklama/deneme seçenekleri: + Do not load the wallet and disable wallet RPC calls Cüzdanı yükleme ve cüzdan RPC çağrılarını devre dışı bırak + Do you want to rebuild the block database now? Blok veritabanını şimdi yeniden inşa etmek istiyor musunuz? + Enable publish hash block in <address> Blok karma değerinin <adres>te yayınlanmasını etkinleştir + Enable publish hash transaction in <address> Karma değer işleminin <adres>te yayınlanmasını etkinleştir + Enable publish raw block in <address> Ham blokun <adres>te yayınlanmasını etkinleştir + Enable publish raw transaction in <address> Ham işlemin <adres>te yayınlanmasını etkinleştir + Enable transaction replacement in the memory pool (default: %u) Bellek alanında işlem değiştirmeyi etkinleştir (varsayılan: %u) + Error initializing block database Blok veritabanını başlatılırken bir hata meydana geldi + Error initializing wallet database environment %s! %s cüzdan veritabanı ortamının başlatılmasında hata meydana geldi! + Error loading %s %s unsurunun yüklenmesinde hata oluştu + Error loading %s: Wallet corrupted %s unsurunun yüklenmesinde hata oluştu: bozuk cüzdan + Error loading %s: Wallet requires newer version of %s %s unsurunun yüklenmesinde hata oluştu: cüzdan %s programının yeni bir sürümüne ihtiyaç duyuyor - Error loading %s: You can't disable HD on a already existing HD wallet - %s yüklenmesinde hata: zaten var olan HD bir cüzdanda HD devre dışı bırakılamaz. - - + Error loading block database Blok veritabanının yüklenmesinde hata + Error opening block database Blok veritabanının açılışı sırasında hata + Error: Disk space is low! Hata: Disk alanı düşük! + Failed to listen on any port. Use -listen=0 if you want this. Herhangi bir portun dinlenmesi başarısız oldu. Bunu istiyorsanız -listen=0 seçeneğini kullanınız. + Importing... İçe aktarılıyor... + Incorrect or no genesis block found. Wrong datadir for network? Yanlış ya da bulunamamış doğuş bloğu. Ağ için yanlış veri klasörü mü? + Initialization sanity check failed. %s is shutting down. Başlatma sınaması başarısız oldu. %s kapatılıyor. - Invalid -onion address: '%s' - Geçersiz -onion adresi: '%s' + + Invalid amount for -%s=<amount>: '%s' + -%s=<tutar> için geçersiz tutar: '%s' - Invalid amount for -%s=<amount>: '%s' - -%s=<tutar> için geçersiz tutar: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + Invalid amount for -discardfee=<amount>: '%s' - Invalid amount for -fallbackfee=<amount>: '%s' - -fallbackfee=<tutar> için geçersiz tutar: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + -fallbackfee=<tutar> için geçersiz tutar: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) İşlem bellek alanını <n> megabayttan düşük tut (varsayılan: %u) + + Loading P2P addresses... + Loading P2P addresses... + + + Loading banlist... Yasaklama listesi yükleniyor... + Location of the auth cookie (default: data dir) auth çerezinin konumu (varsayılan: veri klasörü) + Not enough file descriptors available. Kafi derecede dosya tanımlayıcıları mevcut değil. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Sadece <net> ağındaki düğümlere bağlan (ipv4, ipv6 veya onion) + Print this help message and exit Bu yardım mesajını yaz ve çık + Print version and exit Sürümü yaz ve çık + Prune cannot be configured with a negative value. Budama negatif bir değerle yapılandırılamaz. + Prune mode is incompatible with -txindex. Budama kipi -txindex ile uyumsuzdur. + Rebuild chain state and block index from the blk*.dat files on disk Zincir durumu ve blok indeksini diskteki blk*.dat dosyalarından yeniden derle + Rebuild chain state from the currently indexed blocks Zincir durumunu güncel olarak indekslenen bloklardan yeniden derle + + Replaying blocks... + Replaying blocks... + + + Rewinding blocks... Bloklar geri sarılıyor... + Set database cache size in megabytes (%d to %d, default: %d) Veritabanı önbellek boyutunu megabayt olarak belirt (%d ilâ %d, varsayılan: %d) - Set maximum block size in bytes (default: %d) - En yüksek blok boyutunu bayt olarak ayarla (varsayılan: %d) - - + Specify wallet file (within data directory) Cüzdan dosyası belirtiniz (veri klasörünün içinde) + The source code is available from %s. Kaynak kod şuradan elde edilebilir: %s. + + Transaction fee and change calculation failed + Transaction fee and change calculation failed + + + Unable to bind to %s on this computer. %s is probably already running. Bu bilgisayarda %s unsuruna bağlanılamadı. %s muhtemelen hâlihazırda çalışmaktadır. + Unsupported argument -benchmark ignored, use -debug=bench. Desteklenmeyen -benchmark argümanı görmezden gelindi, -debug=bench kullanınız. + Unsupported argument -debugnet ignored, use -debug=net. Desteklenmeyen -debugnet argümanı görmezden gelindi, debug=net kullanınız. + Unsupported argument -tor found, use -onion. Deskteklenmeyen -tor argümanı bulundu, -onion kullanınız. + + Unsupported logging category %s=%s. + Unsupported logging category %s=%s. + + + + Upgrading UTXO database + Upgrading UTXO database + + + Use UPnP to map the listening port (default: %u) Dinleme portunu haritalamak için UPnP kullan (varsayılan: %u) + Use the test chain Test blok zincirini kullan + User Agent comment (%s) contains unsafe characters. Kullanıcı Aracı açıklaması (%s) güvensiz karakterler içermektedir. + Verifying blocks... Bloklar kontrol ediliyor... - Verifying wallet... - Cüzdan kontrol ediliyor... - - + Wallet %s resides outside data directory %s %s cüzdan %s veri klasörünün dışında bulunuyor + Wallet debugging/testing options: Cüzdan hata ayıklama/test etme seçenekleri: + Wallet needed to be rewritten: restart %s to complete Cüzdanın tekrar yazılması gerekiyordu: işlemi tamamlamak için %s programını yeniden başlatınız + Wallet options: Cüzdan seçenekleri: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Belirtilen kaynaktan JSON-RPC bağlantılarını kabul et. Bir <ip> için geçerli olanlar şunlardır: IP adresi (mesela 1.2.3.4), bir ağ/ağ maskesi (örneğin 1.2.3.4/255.255.255.0) ya da bir ağ/CIDR (mesela 1.2.3.4/24). Bu seçenek birden fazla kez belirtilebilir + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 Belirtilen adrese bağlan ve ona bağlanan eşleri beyaz listeye al. IPv6 için [makine]:port imlasını kullanınız - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Belirtilen adrese bağlan ve JSON RPC bağlantıları için dinlemeye geç. IPv6 için [makine]:port imlasını kullanınız. Bu seçenek birden çok kez belirtilebilir (varsayılan: tüm arayüzlere bağlan) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Yeni dosyaları umask 077 yerine varsayılan izinlerle oluştur (sadece devre dışı cüzdan işlevselliği ile etkilidir) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Kendi IP adreslerini keşfet (varsayılan: dinlenildiğinde ve -externalip ya da -proxy yoksa 1) + Error: Listening for incoming connections failed (listen returned error %s) Hata: İçeri gelen bağlantıların dinlenmesi başarısız oldu (dinleme %s hatasını verdi) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) İlgili bir uyarı alındığında ya da gerçekten uzun bir çatallama gördüğümüzde komutu çalıştır (komuttaki %s mesaj ile değiştirilir) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Bundan düşük ücretler (%s/kB olarak) aktarma, oluşturma ve işlem yaratma için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Eğer paytxfee ayarlanmadıysa kafi derecede ücret ekleyin ki işlemler teyite vasati n blok içinde başlasın (varsayılan: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - -maxtxfee=<tutar> için geçersiz tutar: '%s' (Sıkışmış işlemleri önlemek için en az %s değerinde en düşük aktarım ücretine eşit olmalıdır) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<tutar> için geçersiz tutar: '%s' (Sıkışmış işlemleri önlemek için en az %s değerinde en düşük aktarım ücretine eşit olmalıdır) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Aktardığımız ve oluşturduğumuz veri taşıyıcı işlemlerindeki en yüksek veri boyutu (varsayılan: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) Her vekil bağlantısı için kimlik verilerini rastgele yap. Bu, Tor akış izolasyonunu etkinleştirir (varsayılan: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Yüksek öncelikli/düşük ücretli işlemlerin en yüksek boyutunu bayt olarak ayarla (varsayılan: %d) - - + The transaction amount is too small to send after the fee has been deducted Bu işlem, tutar düşüldükten sonra göndermek için çok düşük - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - BIP32'den sonra hiyerarşik determinist (HD) anahtar üretimini kullan. Sadece cüzdan oluşturulmasında/ilk başlamada etkiye sahiptir. - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Beyaz listeye alınan eşler DoS yasaklamasına uğramazlar ve işlemleri zaten mempool'da olsalar da daima aktarılır, bu mesela bir geçit için kullanışlıdır + Beyaz listeye alınan eşler DoS yasaklamasına uğramazlar ve işlemleri zaten mempool'da olsalar da daima aktarılır, bu mesela bir geçit için kullanışlıdır + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Budama olmayan kipe dönmek için veritabanını -reindex ile tekrar derlemeniz gerekir. Bu, tüm blok zincirini tekrar indirecektir + (default: %u) (varsayılan: %u) + Accept public REST requests (default: %u) Herkese açık REST taleplerini kabul et (varsayılan: %u) + Automatically create Tor hidden service (default: %d) Otomatik olarak gizli Tor servisi oluştur (varsayılan: %d) + Connect through SOCKS5 proxy SOCKS5 vekil sunucusu vasıtasıyla bağlan + + Error loading %s: You can't disable HD on an already existing HD wallet + Error loading %s: You can't disable HD on an already existing HD wallet + + + Error reading from database, shutting down. Veritabanından okumada hata, kapatılıyor. + + Error upgrading chainstate database + Error upgrading chainstate database + + + Imports blocks from external blk000??.dat file on startup Başlangıçta harici blk000??.dat dosyasından blokları içe aktarır + Information Bilgi - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - -paytxfee=<tutar>:'%s' unsurunda geçersiz tutar (asgari %s olması lazımdır) + + Invalid -onion address or hostname: '%s' + Invalid -onion address or hostname: '%s' + + + + Invalid -proxy address or hostname: '%s' + Invalid -proxy address or hostname: '%s' + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + -paytxfee=<tutar>:'%s' unsurunda geçersiz tutar (asgari %s olması lazımdır) - Invalid netmask specified in -whitelist: '%s' - -whitelist: '%s' unsurunda geçersiz bir ağ maskesi belirtildi + + Invalid netmask specified in -whitelist: '%s' + -whitelist: '%s' unsurunda geçersiz bir ağ maskesi belirtildi + Keep at most <n> unconnectable transactions in memory (default: %u) Hafızada en çok <n> bağlanılamaz işlem tut (varsayılan: %u) - Need to specify a port with -whitebind: '%s' - -whitebind: '%s' ile bir port belirtilmesi lazımdır + + Need to specify a port with -whitebind: '%s' + -whitebind: '%s' ile bir port belirtilmesi lazımdır + Node relay options: Düğüm aktarma seçenekleri: + RPC server options: RPC sunucu seçenekleri: + Reducing -maxconnections from %d to %d, because of system limitations. Sistem sınırlamaları sebebiyle -maxconnections %d değerinden %d değerine düşürülmüştür. + Rescan the block chain for missing wallet transactions on startup Başlangıçta blok zincirini eksik cüzdan işlemleri için tekrar tara + Send trace/debug info to console instead of debug.log file İzleme/hata ayıklama verilerini debug.log dosyası yerine konsola gönder - Send transactions as zero-fee transactions if possible (default: %u) - İşlemleri mümkünse ücretsiz olarak gönder (varsayılan: %u) - - + Show all debugging options (usage: --help -help-debug) Tüm hata ayıklama seçeneklerini göster (kullanımı: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) İstemci başlatıldığında debug.log dosyasını küçült (varsayılan: -debug bulunmadığında 1) + Signing transaction failed İşlemin imzalanması başarısız oldu + The transaction amount is too small to pay the fee İşlemdeki raven tutarı ücreti ödemek için çok düşük + This is experimental software. Bu, deneysel bir yazılımdır. + Tor control port password (default: empty) Tor kontrol portu parolası (varsayılan: boş) + Tor control port to use if onion listening enabled (default: %s) Eğer onion dinlemesi etkinse kullanılacak Tor kontrol portu (varsayılan: %s) + Transaction amount too small İşlem tutarı çok düşük + Transaction too large for fee policy Ücret politikası için işlem çok büyük + Transaction too large İşlem çok büyük + Unable to bind to %s on this computer (bind returned error %s) Bu bilgisayarda %s ögesine bağlanılamadı (bağlanma %s hatasını verdi) + Upgrade wallet to latest format on startup Başlangıçta cüzdanı en yeni biçime güncelle + Username for JSON-RPC connections JSON-RPC bağlantıları için kullanıcı ismi + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + Verifying wallet(s)... + + + Warning Uyarı + Warning: unknown new rules activated (versionbit %i) Uyarı: bilinmeyen yeni kurallar etkinleştirilmiştir (versionbit %i) + Whether to operate in a blocks only mode (default: %u) Sadece blok kipinde çalışılıp çalışılmayacağı (varsayılan: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Cüzdandaki tüm işlemler kaldırılıyor... + ZeroMQ notification options: ZeroMQ bildirim seçenekleri: + Password for JSON-RPC connections JSON-RPC bağlantıları için parola + Execute command when the best block changes (%s in cmd is replaced by block hash) En iyi blok değiştiğinde komutu çalıştır (komut için %s parametresi blok hash değeri ile değiştirilecektir) + Allow DNS lookups for -addnode, -seednode and -connect -addnode, -seednode ve -connect için DNS aramalarına izin ver - Loading addresses... - Adresler yükleniyor... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = tx meta verilerini tut mesela hesap sahibi ve ödeme talebi bilgileri, 2 = tx meta verilerini at) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. -maxtxfee çok yüksek bir değere ayarlanmış! Bu denli yüksek ücretler tek bir işlemde ödenebilir. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) İşlemleri bellek alanında <n> saatten fazla tutma (varsayılan: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) Oluşturma ve aktarma işlemlerinde sigop başına eşdeğer bayt (varsayılan: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Bundan düşük ücretler (%s/kB olarak) işlem oluşturulması için sıfır değerinde ücret olarak kabul edilir (varsayılan: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) Yerel aktarma politikasını ihlal etseler bile beyaz listedeki eşlerden gelen işlemlerin aktarılmasını zorla (varsayılan: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) - -checkblocks'un blok kontrolünün ne kadar kapsamlı olacağı (0 ilâ 4, varsayılan: %u) + -checkblocks'un blok kontrolünün ne kadar kapsamlı olacağı (0 ilâ 4, varsayılan: %u) + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) İşlemlerin tamamının indeksini tut, getrawtransaction rpc çağrısı tarafından kullanılır (varsayılan: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Aksaklık gösteren eşlerle terkar bağlantıyı engelleme süresi, saniye olarak (varsayılan: %u) + Output debugging information (default: %u, supplying <category> is optional) Hata ayıklama bilgisini dök (varsayılan: %u, <kategori> sağlanması seçime dayalıdır) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - Adres sayısı azaldıysa DNS sorgulamasıyla eş adresleri ara (varsayılan: 1 -connect/-noconnect kullanılmadıysa) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) Ham işlemin serileştirilmesini ayarlar veya blok non-verbose, non-segwit(0) veya segwit(1) kipinde onaltılık değeri döndürür (default: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Blokların ve işlemlerin bloom filtreleri ile süzülmesini destekle (varsayılan: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. İşlem ücret tahminleri mevcut olmadığında ödeyebileceğiniz işlem ücreti budur. + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. Bu ürün OpenSSL Projesi tarafından geliştirilen OpenSSL araç takımınında kullanılmak üzere yazılan yazılımları %s Eric Young tarafından yazılmış şifreleme yazılımını ve Thomas Bernard tarafından yazılmış UPnP yazılımını içerir. + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Ağ sürümü zincirinin toplam boyutu (%i) en yüksek boyutu geçmektedir (%i). Kullanıcı aracı açıklamasının sayısı veya boyutunu azaltınız. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Giden trafiği belirtilen hedefin altında tutmaya çalışır (24 saat başı MiB olarak), 0 = sınırsız (varsayılan: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Desteklenmeyen -socks argümanı bulundu. SOCKS sürümünün ayarlanması artık mümkün değildir, sadece SOCKS5 vekilleri desteklenmektedir. + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. Desteklenmeyen argüman -whitelistalwaysrelay görmezden gelindi, -whitelistrelay ve/veya -whitelistforcerelay kullanın. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) Eşlere gizli Tor servisleri ile ulaşmak için ayrı SOCKS5 vekil sunucusu kullan (varsayılan: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect Uyarı: Bilinmeyen blok sürümü oluşturulmaya çalışılıyor. Bilinmeyen kuralların işlemesi mümkündür. + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. Uyarı: wallet.dat bozuk, veriler geri kazanıldı! Özgün %s, %s olarak %s klasörüne kaydedildi; bakiyeniz ya da işlemleriniz yanlışsa bir yedeklemeden tekrar yüklemeniz gerekir. + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. Beyaz listeye eklenen eşler verilen IP adresinden (ör. 1.2.3.4) veya CIDR ağından (ör. 1.2.3.0/24) bağlanabilir. Değerler birden çok kez kullanılabilir. + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s çok yüksek ayarlanmış! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (varsayılan: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Eş adresleri sorgulaması için daima DNS aramasını kullan (varsayılan: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + Error loading wallet %s. -wallet filename must be a regular file. + + + + Error loading wallet %s. Duplicate -wallet filename specified. + Error loading wallet %s. Duplicate -wallet filename specified. + + + + Error loading wallet %s. Invalid characters in -wallet filename. + Error loading wallet %s. Invalid characters in -wallet filename. + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Başlangıçta kontrol edilecek blok sayısı (varsayılan: %u, 0 = hepsi) + Include IP addresses in debug output (default: %u) Hata ayıklama çıktısına IP adreslerini dahil et (varsayılan: %u) - Invalid -proxy address: '%s' - Geçersiz -proxy adresi: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first - Keypool tükendi, lütfen önce keypoolrefill'i çağırın + Keypool tükendi, lütfen önce keypoolrefill'i çağırın + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) JSON-RPC bağlantılarını <port> üzerinde dinle (varsayılan: %u veya tesnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) Bağlantılar için dinlenecek <port> (varsayılan: %u ya da testnet: %u) + Maintain at most <n> connections to peers (default: %u) Eşler ile en çok <n> adet bağlantı kur (varsayılan: %u) + Make the wallet broadcast transactions Cüzdanın işlemleri yayınlamasını sağla + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) Her bağlantı için en yüksek alım tamponu, <n>*1000 bayt (varsayılan: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) Her bağlantı için çok gönderme tamponu, <n>*1000 bayt (varsayılan: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) Hata ayıklama verilerinin önüne zaman damgası ekle (varsayılan: %u) + Relay and mine data carrier transactions (default: %u) Veri taşıyıcı işlemleri oluştur ve aktar (varsayılan: %u) + Relay non-P2SH multisig (default: %u) P2SH olmayan çoklu imzaları aktar (varsayılan: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) İşlemleri full-RBF opt-in ile gönder etkinleştirildi (default: %u) + Set key pool size to <n> (default: %u) Anahtar alan boyutunu <n> değerine ayarla (varsayılan: %u) + Set maximum BIP141 block weight (default: %d) En yüksek BIP141 blok ağırlığını ayarla (varsayılan: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Hizmet RCP aramaları iş parçacığı sayısını belirle (varsayılan: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Yapılandırma dosyası belirtiniz (varsayılan: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Bağlantı zaman aşım süresini milisaniye olarak belirt (en düşüki: 1, varsayılan: %d) + Specify pid file (default: %s) Pid dosyası belirtiniz (varsayılan: %s) + Spend unconfirmed change when sending transactions (default: %u) Gönderme işlemlerinde doğrulanmamış para üstünü harca (varsayılan: %u) + Starting network threads... Ağ iş parçacıkları başlatılıyor... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Cüzdan en az aktarma ücretinden daha az ödeme yapmaktan sakınacaktır. + This is the minimum transaction fee you pay on every transaction. Bu her işlemde ödeceğiniz en düşük işlem ücretidir. + This is the transaction fee you will pay if you send a transaction. Eğer bir gönderme işlemi yaparsanız bu ödeyeceğiniz işlem ücretidir. + Threshold for disconnecting misbehaving peers (default: %u) Aksaklık gösteren eşlerle bağlantıyı kesme sınırı (varsayılan: %u) + Transaction amounts must not be negative İşlem tutarı negatif olmamalıdır + Transaction has too long of a mempool chain İşlem çok uzun bir mempool zincirine sahip + Transaction must have at least one recipient İşlemin en az bir alıcısı olması gerekir - Unknown network specified in -onlynet: '%s' - -onlynet için bilinmeyen bir ağ belirtildi: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + -onlynet için bilinmeyen bir ağ belirtildi: '%s' + + + Insufficient funds Yetersiz bakiye + Loading block index... Blok indeksi yükleniyor... - Add a node to connect to and attempt to keep the connection open - Bağlanılacak düğüm ekle ve bağlantıyı sürekli açık tutmaya çalış - - + Loading wallet... Cüzdan yükleniyor... + Cannot downgrade wallet Cüzdan eski biçime geri alınamaz - Cannot write default address - Varsayılan adres yazılamadı - - + Rescanning... Yeniden taranıyor... - Done loading - Yükleme tamamlandı - - + Error Hata diff --git a/src/qt/locale/raven_tr_TR.ts b/src/qt/locale/raven_tr_TR.ts index 984d906f81..93dee41050 100644 --- a/src/qt/locale/raven_tr_TR.ts +++ b/src/qt/locale/raven_tr_TR.ts @@ -1,177 +1,8288 @@ - - - + AddressBookPage + Right-click to edit address or label Adresi veya etiketi düzenlemek için sağ tıklayın + Create a new address Yeni adres oluştur + &New &Yeni + Copy the currently selected address to the system clipboard Seçili adresi panoya kopyala + &Copy &Kopyala + C&lose K&apat + Delete the currently selected address from the list Seçili adresi listeden sil + Export the data in the current tab to a file Seçili sekmedeki veriyi dosya olarak dışa aktar + &Export &Dışa Aktar + &Delete &Sil - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog - - - BanTableModel - - - RavenGUI - &Receiving addresses... - Alış adresleri + + Passphrase Dialog + - - - CoinControlDialog - - - EditAddressDialog - &Label - Etiket + + Enter passphrase + - &Address - Adres + + New passphrase + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Copy &Address - &Adresi Kopyala + + Repeat new passphrase + - - - RecentRequestsTableModel - - - SendCoinsDialog - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - WalletModel - + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + - WalletView - + AssetTableModel + + + Name + + + + + Quantity + + + - raven-core - + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + Etiket + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Adres + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + Alış adresleri + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + &Adresi Kopyala + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_uk.ts b/src/qt/locale/raven_uk.ts index 8e7e34f68e..58cfc1d7fe 100644 --- a/src/qt/locale/raven_uk.ts +++ b/src/qt/locale/raven_uk.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label Клікніть правою кнопкою для редагування адреси або мітки + Create a new address Створити нову адресу + &New &Нова + Copy the currently selected address to the system clipboard Копіювати виділену адресу в буфер обміну + &Copy &Копіювати + C&lose З&акрити + Delete the currently selected address from the list Вилучити вибрані адреси з переліку + Export the data in the current tab to a file Експортувати дані з поточної вкладки в файл + &Export &Експорт... + &Delete &Видалити + Choose the address to send coins to Оберіть адресу для відправки монет + Choose the address to receive coins with Оберіть адресу для отримання монет + C&hoose О&брати + Sending addresses Адреса відправлення + Receiving addresses Адреса отримання + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. Це ваші адреси Raven для надсилання платежів. Завжди перевіряйте суму та адресу одержувача перед відправленням монет. + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. Це ваші адреси Raven для отримання платежів. Для кожної транзакції рекомендується використовувати нову адресу одержувача. + &Copy Address &Скопіювати адресу + Copy &Label Зкопіювати&Створити мітку + &Edit &Редагувати + Export Address List Експотувати список адрес + Comma separated file (*.csv) Файли (*.csv) розділеі комами + Exporting Failed Експортування пройшло не успішно + There was an error trying to save the address list to %1. Please try again. Виникла помилка при спрбі збереження списку адрес %1. Будь-ласка, спробувати пізніше. @@ -103,14 +125,17 @@ AddressTableModel + Label Мітка + Address Адреса + (no label) (немає мітки) @@ -118,1831 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog Діалог введення паролю + Enter passphrase Введіть пароль + New passphrase Новий пароль + Repeat new passphrase Повторіть пароль + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. Введіть нову кодову фразу для гаманця.<br/>Будь ласка, використовуйте кодові фрази що містять <b> щонайменше десять випадкових символів </b> або <b> щонайменше вісім слів </b>. + Encrypt wallet Зашифрувати гаманець + This operation needs your wallet passphrase to unlock the wallet. Ця операція потребує пароль для розблокування гаманця. + Unlock wallet Розблокувати гаманець + This operation needs your wallet passphrase to decrypt the wallet. Ця операція потребує пароль для розшифрування гаманця. + Decrypt wallet Дешифрувати гаманець + Change passphrase Змінити пароль + Enter the old passphrase and new passphrase to the wallet. Введіть старий пароль та новий пароль до гаманця. + Confirm wallet encryption Підтвердіть шифрування гаманця + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! УВАГА: Якщо ви зашифруєте гаманець і забудете пароль, ви <b>ВТРАТИТЕ ВСІ СВОЇ БІТКОІНИ</b>! + Are you sure you wish to encrypt your wallet? Ви дійсно хочете зашифрувати свій гаманець? + + Wallet encrypted Гаманець зашифровано + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. - %1 буде закрито зараз, щоб завершити процес шифрування. Пам'ятайте, що шифрування гаманця не може повністю захистити ваші біткойни від крадіжки шкідливими програмами, у випадку якщо ваш комп'ютер буде інфіковано. + %1 буде закрито зараз, щоб завершити процес шифрування. Пам'ятайте, що шифрування гаманця не може повністю захистити ваші біткойни від крадіжки шкідливими програмами, у випадку якщо ваш комп'ютер буде інфіковано. + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. ВАЖЛИВО: Всі попередні резервні копії, які ви зробили з вашого файлу гаманця повинні бути замінені новоствореним, зашифрованим файлом гаманця. З міркувань безпеки, попередні резервні копії незашифрованого файла гаманця стануть непридатними одразу ж, як тільки ви почнете використовувати новий, зашифрований гаманець. + + + + Wallet encryption failed Не вдалося зашифрувати гаманець + Wallet encryption failed due to an internal error. Your wallet was not encrypted. Виникла помилка під час шифрування гаманця. Ваш гаманець не було зашифровано. + + The supplied passphrases do not match. Введені паролі не співпадають. + Wallet unlock failed Не вдалося розблокувати гаманець + + + The passphrase entered for the wallet decryption was incorrect. Введений пароль є невірним. + Wallet decryption failed Не вдалося розшифрувати гаманець + Wallet passphrase was successfully changed. Пароль було успішно змінено. + + Warning: The Caps Lock key is on! Увага: Ввімкнено Caps Lock! - BanTableModel + AssetControlDialog - IP/Netmask - IP/Маска підмережі + + Asset Selection + - Banned Until - Заблоковано До + + Quantity: + - - - RavenGUI - Sign &message... - &Підписати повідомлення... + + Bytes: + - Synchronizing with network... - Синхронізація з мережею... + + Amount: + - &Overview - &Огляд + + Dust: + - Node - Вузол + + Fee: + - Show general overview of wallet - Показати стан гаманця + + After Fee: + - &Transactions - &Транзакції + + Change: + - Browse transaction history - Переглянути історію транзакцій + + (un)select all + - E&xit - &Вихід + + Tree mode + - Quit application - Вийти + + List mode + - &About %1 - П&ро %1 + + View assets that you have the ownership asset for + - Show information about %1 - Показати інформацію про %1 + + View Administrator Assets + - About &Qt - &Про Qt + + Asset + - Show information about Qt - Показати інформацію про Qt + + Amount + - &Options... - &Параметри... + + Received with label + - Modify configuration options for %1 - Редагувати параметри для %1 + + Received with address + - &Encrypt Wallet... - &Шифрування гаманця... + + Date + - &Backup Wallet... - &Резервне копіювання гаманця... + + Confirmations + - &Change Passphrase... - Змінити парол&ь... + + Confirmed + - &Sending addresses... - Адреси для &відправлення... + + Copy address + - &Receiving addresses... - Адреси для &отримання... + + Copy label + - Open &URI... - Відкрити &URI + + + Copy amount + - Click to disable network activity. - Натисніть, щоб вимкнути активність мережі. + + Copy transaction ID + - Network activity disabled. - Мережева активність вимкнена. + + Lock unspent + - Click to enable network activity again. - Натисніть, щоб знову активувати мережеву активність. + + Unlock unspent + - Syncing Headers (%1%)... - Синхронізація заголовків (%1%)... + + Copy quantity + - Reindexing blocks on disk... - Переіндексація блоків на диску ... + + Copy fee + - Send coins to a Raven address - Відправити монети на вказану адресу + + Copy after fee + - Backup wallet to another location - Резервне копіювання гаманця в інше місце + + Copy bytes + - Change the passphrase used for wallet encryption - Змінити пароль, який використовується для шифрування гаманця + + Copy dust + - &Debug window - В&ікно зневадження + + Copy change + - Open debugging and diagnostic console - Відкрити консоль зневадження і діагностики + + (%1 locked) + - &Verify message... - П&еревірити повідомлення... + + yes + - Raven - Raven + + no + - Wallet - Гаманець + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - &Відправити + + Can vary +/- %1 satoshi(s) per input. + - &Receive - &Отримати + + + (no label) + - &Show / Hide - Показа&ти / Приховати + + change from %1 (%2) + - Show or hide the main Window - Показує або приховує головне вікно + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - Зашифрувати закриті ключі, що знаходяться у вашому гаманці + + Name + - Sign messages with your Raven addresses to prove you own them - Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Raven-адресою + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - Перевірте повідомлення для впевненості, що воно підписано вказаною Raven-адресою + + + Send Coins + - &File - &Файл + + Asset Control Features + - &Settings - &Налаштування + + Inputs... + - &Help - &Довідка + + automatically selected + - Tabs toolbar - Панель вкладок + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - Створити запит платежу (генерує QR-код та raven: URI) + + Quantity: + - Show the list of used sending addresses and labels - Показати список адрес і міток, що були використані для відправлення + + Bytes: + - Show the list of used receiving addresses and labels - Показати список адрес і міток, що були використані для отримання + + Amount: + - Open a raven: URI or payment request - Відкрити raven: URI чи запит платежу + + Dust: + - &Command-line options - П&араметри командного рядка + + Fee: + - - %n active connection(s) to Raven network - %n активне з'єднання з мережею Raven%n активні з'єднання з мережею Raven%n активних з'єднань з мережею Raven + + + After Fee: + - Indexing blocks on disk... - Індексація блоків на диску ... + + Change: + - Processing blocks on disk... - Обробка блоків на диску... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - Оброблено %n блок історії транзакцій.Оброблено %n блоки історії транзакцій.Оброблено %n блоків історії транзакцій. + + + Custom change address + - %1 behind - %1 тому + + Transaction Fee: + - Last received block was generated %1 ago. - Останній отриманий блок було згенеровано %1 тому. + + Choose... + - Transactions after this will not yet be visible. - Пізніші транзакції не буде видно. + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - Помилка + + Warning: Fee estimation is currently not possible. + - Warning - Попередження + + collapse fee-settings + - Information - Інформація + + Hide + - Up to date - Синхронізовано + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - Показати довідку %1 для отримання переліку можливих параметрів командного рядка. + + per kilobyte + - %1 client - %1 клієнт + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - Підключення до вузлів... + + (read the tooltip) + - Catching up... - Синхронізується... + + Recommended: + - Date: %1 - - Дата: %1 - + + Custom: + - Amount: %1 - - Кількість: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - Тип: %1 - + + Confirmation time target: + - Label: %1 - - Мітка: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - Адреса: %1 - + + Request Replace-By-Fee + - Sent transaction - Надіслані транзакції + + Confirm the send action + - Incoming transaction - Отримані транзакції + + S&end + - HD key generation is <b>enabled</b> - Генерація HD ключа <b>увімкнена</b> + + Clear all fields of the form. + - HD key generation is <b>disabled</b> - Генерація HD ключа<b>вимкнена</b> + + Clear &All + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - <b>Зашифрований</b> гаманець <b>розблоковано</b> + + Transfer to multiple recipients at once + - Wallet is <b>encrypted</b> and currently <b>locked</b> - <b>Зашифрований</b> гаманець <b>заблоковано</b> + + Add &Recipient + - A fatal error occurred. Raven can no longer continue safely and will quit. - Сталася фатальна помилка. Помилки не сумісні з подальщою роботою. Гаманець буде закрито. + + Balance: + - - - CoinControlDialog - Coin Selection - Вибір Монет + + Copy quantity + - Quantity: - Кількість: + + Copy amount + - Bytes: - Байтів: + + Copy fee + - Amount: - Сума: + + Copy after fee + - Fee: - Комісія: + + Copy bytes + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Маска підмережі + + + + Banned Until + Заблоковано До + + + + CoinControlDialog + + + Coin Selection + Вибір Монет + + + + Quantity: + Кількість: + + + + Bytes: + Байтів: + + + + Amount: + Сума: + + + + Fee: + Комісія: + + + Dust: Пил: + After Fee: Після комісії: + Change: Решта: + (un)select all Вибрати/зняти всі + Tree mode Деревом + List mode Списком + Amount Кількість + Received with label Отримано з позначкою + Received with address Отримано з адресою + Date Дата + Confirmations Підтверджень + Confirmed Підтверджені + Copy address Скопіювати адресу + Copy label Скопіювати мітку + + Copy amount Скопіювати суму + Copy transaction ID Скопіювати ID транзакції + Lock unspent Заблокувати + Unlock unspent Розблокувати + Copy quantity Скопіювати кількість + Copy fee Скопіювати комісію + Copy after fee Скопіювати після комісії + Copy bytes Скопіювати байти + Copy dust Скопіювати інше + Copy change Скопіювати решту + (%1 locked) (%1 заблоковано) + yes так + no ні + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + Can vary +/- %1 satoshi(s) per input. Може відрізнятися на +/- %1 сатоші за введені + + (no label) немає мітки + change from %1 (%2) решта з %1 (%2) + (change) (решта) - EditAddressDialog + CreateAssetDialog - Edit Address - Редагувати адресу + + Coin Control Features + - &Label - &Мітка + + Inputs... + - The label associated with this address list entry - Мітка, пов'язана з цим записом списку адрес + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - Адреса, пов'язана з цим записом списку адрес. Це поле може бути модифіковане лише для адрес відправлення. + + Insufficient funds! + - &Address - &Адреса + + + Quantity: + - New receiving address - Нова адреса для отримання + + Bytes: + - New sending address - Нова адреса для відправлення + + Amount: + - Edit receiving address - Редагувати адресу для отримання + + Dust: + - Edit sending address - Редагувати адресу для відправлення + + Fee: + - The entered address "%1" is not a valid Raven address. - Введена адреса "%1" не є адресою в мережі Raven. + + After Fee: + - The entered address "%1" is already in the address book. - Введена адреса «%1» вже присутня в адресній книзі. + + Change: + - Could not unlock wallet. - Неможливо розблокувати гаманець. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - Не вдалося згенерувати нові ключі. + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - Буде створено новий каталог даних. + + Name: + - name - назва + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - Каталог вже існує. Додайте %1, якщо ви мали намір створити там новий каталог. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - Шлях вже існує і не є каталогом. + + Check Availabilty + - Cannot create data directory here. - Тут неможливо створити каталог даних. + + Address: + - - - HelpMessageDialog - version - версії + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1-бітний) + + Verifier String: + - About %1 - Про %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - Параметри командного рядка + + Warning: + - Usage: - Використання: + + The number of assets that will be created + - command-line options - параметри командного рядка + + Units: + - UI Options: - Параметри інтерфейсу: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - Обирати каталог даних під час запуску (типово: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - Встановити мову (наприклад: "de_DE") (типово: системна) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - Запускати згорнутим + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - Вказати кореневі SSL-сертифікати для запиту платежу (типово: -системні-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - Показувати заставку під час запуску (типово: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - Скинути налаштування, які було змінено через графічний інтерфейс користувача + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - Вітання + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - Ласкаво просимо до %1. + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - Оскільки це перший запуск програми, ви можете обрати де %1 буде зберігати дані. + + Transaction Fee: + - Use the default data directory - Використовувати типовий каталог даних + + Choose... + - Use a custom data directory: - Використовувати свій каталог даних: + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error: Specified data directory "%1" cannot be created. - Помилка: неможливо створити обраний каталог даних «%1». + + Warning: Fee estimation is currently not possible. + - Error - Помилка + + collapse fee-settings + - - %n GB of free space available - Доступно %n ГБ вільного просторуДоступно %n ГБ вільного просторуДоступно %n ГБ вільного простору + + + Hide + - - (of %n GB needed) - (в той час, як необхідно %n ГБ)(в той час, як необхідно %n ГБ)(в той час, як необхідно %n ГБ) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - Форма + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - Нещодавні транзакції ще не відображаються, тому баланс вашого гаманця може бути неточним. Ця інформація буде вірною після того, як ваш гаманець завершить синхронізацію з мережею біткойн, врахровуйте показники нижче. + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - Спроба видправити біткойни, які ще не відображаються, не буде прийнята мережею. + + (read the tooltip) + - Number of blocks left - Залишилося блоків + + Recommended: + - Unknown... - Невідомо... + + C&ustom: + - Last block time - Час останнього блоку + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - Прогрес + + Confirmation time target: + - Progress increase per hour - Прогрес за годину + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - рахування... + + Request Replace-By-Fee + - Estimated time left until synced - Орієнтовний час до кінця синхронізації + + Create Asset + - Hide - Приховати + + Clear + - Unknown. Syncing Headers (%1)... - Невідомо. Синхронізація заголовків (%1%)... + + Balance: + - + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + - OpenURIDialog + EditAddressDialog - Open URI - Відкрити URI + + Edit Address + Редагувати адресу - Open payment request from URI or file - Відкрити запит платежу з URI або файлу + + &Label + &Мітка - URI: - URI: + + The label associated with this address list entry + Мітка, пов'язана з цим записом списку адрес - Select payment request file - Виберіть файл запиту платежу + + The address associated with this address list entry. This can only be modified for sending addresses. + Адреса, пов'язана з цим записом списку адрес. Це поле може бути модифіковане лише для адрес відправлення. - Select payment request file to open - Виберіть файл запиту платежу + + &Address + &Адреса + + + + New receiving address + Нова адреса для отримання + + + + New sending address + Нова адреса для відправлення + + + + Edit receiving address + Редагувати адресу для отримання + + + + Edit sending address + Редагувати адресу для відправлення + + + + The entered address "%1" is not a valid Raven address. + Введена адреса "%1" не є адресою в мережі Raven. + + + + The entered address "%1" is already in the address book. + Введена адреса «%1» вже присутня в адресній книзі. + + + + Could not unlock wallet. + Неможливо розблокувати гаманець. + + + + New key generation failed. + Не вдалося згенерувати нові ключі. - OptionsDialog + FreespaceChecker - Options - Параметри + + A new data directory will be created. + Буде створено новий каталог даних. - &Main - &Головні + + name + назва - &Start %1 on system login - &Запускати %1 при вході в систему + + Directory already exists. Add %1 if you intend to create a new directory here. + Каталог вже існує. Додайте %1, якщо ви мали намір створити там новий каталог. - Size of &database cache - Розмір &кешу бази даних + + Path already exists, and is not a directory. + Шлях вже існує і не є каталогом. - MB - МБ + + Cannot create data directory here. + Тут неможливо створити каталог даних. + + + FreezeAddress - Number of script &verification threads - Кількість потоків &сценарію перевірки + + Frame + - Accept connections from outside - Приймати підключення ззовні + + Restricted Asset: + - Allow incoming connections - Дозволити вхідні з’єднання + + Address: + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - IP-адреса проксі-сервера (наприклад IPv4: 127.0.0.1 / IPv6: ::1) + + Custom Change Address + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - Згортати замість закриття. Якщо ця опція включена, програма закриється лише після вибору відповідного пункту в меню. + + IPFS / Hash: + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - Сторонні URL (наприклад, block explorer), що з'являться на вкладці транзакцій у вигляді пункту контекстного меню. %s в URL буде замінено на хеш транзакції. Для відокремлення URLів використовуйте вертикальну риску |. + + Single Address Options + - Third party transaction URLs - Сторонні URL транзакцій + + Global Options + - Active command-line options that override above options: - Активовані параметри командного рядка, що перекривають вищевказані параметри: + + Free&ze trading on this address + - Reset all client options to default. - Скинути всі параметри клієнта на типові. + + Unfreeze tradin&g on this address + - &Reset Options - С&кинути параметри + + Freeze all &trading for the selected restricted asset + - &Network - &Мережа + + &Unfreeze all trading for the selected restricted asset + - (0 = auto, <0 = leave that many cores free) - (0 = автоматично, <0 = вказує кількість вільних ядер) + + Check + - W&allet - Г&аманець + + Clear + - Expert - Експерт + + Submit + - Enable coin &control features - Ввімкнути &керування входами + + Data has been validated, You can now submit the restriction transaction + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - Якщо вимкнути витрату непідтвердженої решти, то решту від транзакції не можна буде використати, допоки ця транзакція не матиме хоча б одне підтвердження. Це також впливає на розрахунок балансу. + + Must have a restricted asset selected + - &Spend unconfirmed change - &Витрачати непідтверджену решту + + Address is already frozen + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. + + Address is not frozen + - Map port using &UPnP - Відображення порту через &UPnP + + Restricted asset is already frozen globally + - Connect to the Raven network through a SOCKS5 proxy. - Підключення до мережі Raven через SOCKS5 проксі. + + Restricted asset is not frozen globally + - &Connect through SOCKS5 proxy (default proxy): - &Підключення через SOCKS5 проксі (проксі за замовчуванням): + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + версії + + + + + (%1-bit) + (%1-бітний) + + + + About %1 + Про %1 + + + + Command-line options + Параметри командного рядка + + + + Usage: + Використання: + + + + command-line options + параметри командного рядка + + + + UI Options: + Параметри інтерфейсу: + + + + Choose data directory on startup (default: %u) + Обирати каталог даних під час запуску (типово: %u) + + + + Set language, for example "de_DE" (default: system locale) + Встановити мову (наприклад: "de_DE") (типово: системна) + + + + Start minimized + Запускати згорнутим + + + + Set SSL root certificates for payment request (default: -system-) + Вказати кореневі SSL-сертифікати для запиту платежу (типово: -системні-) + + + + Show splash screen on startup (default: %u) + Показувати заставку під час запуску (типово: %u) + + + + Reset all settings changed in the GUI + Скинути налаштування, які було змінено через графічний інтерфейс користувача + + + + Intro + + + Welcome + Вітання + + + + Welcome to %1. + Ласкаво просимо до %1. + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + Оскільки це перший запуск програми, ви можете обрати де %1 буде зберігати дані. + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Використовувати типовий каталог даних + + + + Use a custom data directory: + Використовувати свій каталог даних: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Помилка: неможливо створити обраний каталог даних «%1». + + + + Error + Помилка + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Форма + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + Нещодавні транзакції ще не відображаються, тому баланс вашого гаманця може бути неточним. Ця інформація буде вірною після того, як ваш гаманець завершить синхронізацію з мережею біткойн, врахровуйте показники нижче. + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + Спроба видправити біткойни, які ще не відображаються, не буде прийнята мережею. + + + + Number of blocks left + Залишилося блоків + + + + + + Unknown... + Невідомо... + + + + Last block time + Час останнього блоку + + + + Progress + Прогрес + + + + Progress increase per hour + Прогрес за годину + + + + + calculating... + рахування... + + + + Estimated time left until synced + Орієнтовний час до кінця синхронізації + + + + Hide + Приховати + + + + Unknown. Syncing Headers (%1)... + Невідомо. Синхронізація заголовків (%1%)... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Відкрити URI + + + + Open payment request from URI or file + Відкрити запит платежу з URI або файлу + + + + URI: + URI: + + + + Select payment request file + Виберіть файл запиту платежу + + + + Select payment request file to open + Виберіть файл запиту платежу + + + + OptionsDialog + + + Options + Параметри + + + + &Main + &Головні + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + &Запускати %1 при вході в систему + + + + Size of &database cache + Розмір &кешу бази даних + + + + MB + МБ + + + + Number of script &verification threads + Кількість потоків &сценарію перевірки + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + IP-адреса проксі-сервера (наприклад IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + Згортати замість закриття. Якщо ця опція включена, програма закриється лише після вибору відповідного пункту в меню. + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + Сторонні URL (наприклад, block explorer), що з'являться на вкладці транзакцій у вигляді пункту контекстного меню. %s в URL буде замінено на хеш транзакції. Для відокремлення URLів використовуйте вертикальну риску |. + + + + Active command-line options that override above options: + Активовані параметри командного рядка, що перекривають вищевказані параметри: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + Скинути всі параметри клієнта на типові. + + + + &Reset Options + С&кинути параметри + + + + &Network + &Мережа + + + + (0 = auto, <0 = leave that many cores free) + (0 = автоматично, <0 = вказує кількість вільних ядер) + + + + W&allet + Г&аманець + + + + Expert + Експерт + + + + Enable coin &control features + Ввімкнути &керування входами + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + Якщо вимкнути витрату непідтвердженої решти, то решту від транзакції не можна буде використати, допоки ця транзакція не матиме хоча б одне підтвердження. Це також впливає на розрахунок балансу. + + + + &Spend unconfirmed change + &Витрачати непідтверджену решту + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + Автоматично відкривати порт для клієнту біткоін на роутері. Працює лише якщо ваш роутер підтримує UPnP і ця функція увімкнена. + + + + Map port using &UPnP + Відображення порту через &UPnP + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Підключення до мережі Raven через SOCKS5 проксі. + + + + &Connect through SOCKS5 proxy (default proxy): + &Підключення через SOCKS5 проксі (проксі за замовчуванням): + + + + + Proxy &IP: + &IP проксі: + + + + + &Port: + &Порт: + + + + + Port of the proxy (e.g. 9050) + Порт проксі-сервера (наприклад 9050) + + + + Used for reaching peers via: + Приєднуватися до учасників через: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + Підключатися до мережі Raven через окремий SOCKS5 проксі для прихованих сервісів Tor. + + + + &Window + &Вікно + + + + Show only a tray icon after minimizing the window. + Показувати лише іконку в треї після згортання вікна. + + + + &Minimize to the tray instead of the taskbar + Мінімізувати &у трей + + + + M&inimize on close + Згортати замість закритт&я + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Відображення + + + + User Interface &language: + Мов&а інтерфейсу користувача: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + В&имірювати монети в: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. + + + + Whether to show coin control features or not. + Показати або сховати керування входами. + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &Гаразд + + + + &Cancel + &Скасувати + + + + default + типово + + + + none + відсутні + + + + Confirm options reset + Підтвердження скидання параметрів + + + + + Client restart required to activate changes. + Для застосування змін необхідно перезапустити клієнта. + + + + Client will be shut down. Do you want to proceed? + Клієнт буде вимкнено. Продовжити? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Ця зміна вступить в силу після перезапуску клієнта + + + + The supplied proxy address is invalid. + Невірно вказано адресу проксі. + + + + OverviewPage + + + Form + Форма + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Raven після встановлення підключення, але цей процес ще не завершено. + + + + Watch-only: + Тільки спостереження: + + + + Available: + Наявно: + + + + Your current spendable balance + Ваш поточний підтверджений баланс + + + + Pending: + Очікується: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Сума монет у непідтверджених транзакціях + + + + Immature: + Незрілі: + + + + Mined balance that has not yet matured + Баланс видобутих та ще недозрілих монет + + + + Total: + Всього: + + + + Your current total balance + Ваш поточний сукупний баланс + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Ваш поточний баланс в адресах для спостереження + + + + Spendable: + Доступно: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Останні транзакції + + + + Unconfirmed transactions to watch-only addresses + Непідтверджені транзакції на адреси для спостереження + + + + Mined balance in watch-only addresses that has not yet matured + Баланс видобутих та ще недозрілих монет на адресах для спостереження + + + + Current total balance in watch-only addresses + Поточний сукупний баланс в адресах для спостереження + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + Помилка запиту платежу + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + Обробка URI + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Клієнт користувача + + + + Node/Service + Вузол/Сервіс + + + + NodeId + + + + + Ping + Затримка + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Кількість + + + + Enter a Raven address (e.g. %1) + Введіть адресу Raven (наприклад %1) + + + + %1 d + %1 д + + + + %1 h + %1 г + + + + %1 m + %1 х + + + + + %1 s + %1 с + + + + None + Відсутні + + + + N/A + Н/Д + + + + %1 ms + %1 мс + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 та %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + Помилка: %1 + + + + QRImageWidget + + + &Save Image... + &Зберегти зображення... + + + + &Copy Image + &Копіювати зображення + + + + Save QR Code + Зберегти QR-код + + + + PNG Image (*.png) + Зображення PNG (*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Н/Д + + + + Client version + Версія клієнту + + + + &Information + &Інформація + + + + Debug window + Вікно зневадження + + + + General + Загальна + + + + Using BerkeleyDB version + Використовується BerkeleyDB версії + + + + Datadir + + + + + Startup time + Час запуску + + + + Network + Мережа + + + + Name + Ім’я + + + + Number of connections + Кількість підключень + + + + Block chain + Ланцюг блоків + + + + Current number of blocks + Поточне число блоків + + + + Memory Pool + Пул пам'яті + + + + Current number of transactions + Поточне число транзакцій + + + + Memory usage + Використання пам'яті + + + + &Reset + + + + + + Received + Отримано + + + + + Sent + Відправлено + + + + &Peers + &Учасники + + + + Banned peers + Заблоковані вузли + + + + + + Select a peer to view detailed information. + Виберіть учасника для перегляду детальнішої інформації + + + + Whitelisted + В білому списку + + + + Direction + Напрямок + + + + Version + Версія + + + + Starting Block + Початковий Блок + + + + Synced Headers + Синхронізовані Заголовки + + + + Synced Blocks + Синхронізовані Блоки + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Клієнт користувача + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + Зменшити розмір шрифту + + + + Increase font size + Збільшити розмір шрифту + + + + Services + Сервіси + + + + Ban Score + Очки бану + + + + Connection Time + Час з'єднання + + + + Last Send + Востаннє відправлено + + + + Last Receive + Востаннє отримано + + + + Ping Time + Затримка + + + + The duration of a currently outstanding ping. + Тривалість поточної затримки. + + + + Ping Wait + Поточна Затримка + + + + Min Ping + + + + + Time Offset + Різниця часу + + + + Last block time + Час останнього блоку + + + + &Open + &Відкрити + + + + &Console + &Консоль + + + + &Network Traffic + &Мережевий трафік + + + + Totals + Всього + + + + In: + Вхідних: + + + + Out: + Вихідних: + + + + Debug log file + Файл звіту зневадження + + + + Clear console + Очистити консоль + + + + 1 &hour + 1 &годину + + + + 1 &day + 1 &день + + + + 1 &week + 1 &тиждень + + + + 1 &year + 1 &рік + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Наберіть <b>help</b> для перегляду доступних команд. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + Мережева активність вимкнена. + + + + (node id: %1) + (ІД вузла: %1) + + + + via %1 + через %1 + + + + + never + ніколи + + + + Inbound + Вхідний + + + + Outbound + Вихідний + + + + Yes + Так + + + + No + Ні + + + + + Unknown + Невідома + + + + RavenGUI + + + Sign &message... + &Підписати повідомлення... + + + + Synchronizing with network... + Синхронізація з мережею... + + + + &Overview + &Огляд + + + + Node + Вузол + + + + Show general overview of wallet + Показати стан гаманця + + + + &Transactions + &Транзакції + + + + Browse transaction history + Переглянути історію транзакцій + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + &Вихід + + + + Quit application + Вийти + + + + &About %1 + П&ро %1 + + + + Show information about %1 + Показати інформацію про %1 + + + + About &Qt + &Про Qt + + + + Show information about Qt + Показати інформацію про Qt + + + + &Options... + &Параметри... + + + + Modify configuration options for %1 + Редагувати параметри для %1 + + + + &Encrypt Wallet... + &Шифрування гаманця... + + + + &Backup Wallet... + &Резервне копіювання гаманця... + + + + &Change Passphrase... + Змінити парол&ь... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + Адреси для &відправлення... + + + + &Receiving addresses... + Адреси для &отримання... + + + + Open &URI... + Відкрити &URI + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + Натисніть, щоб вимкнути активність мережі. + + + + Network activity disabled. + Мережева активність вимкнена. + + + + Click to enable network activity again. + Натисніть, щоб знову активувати мережеву активність. + + + + Syncing Headers (%1%)... + Синхронізація заголовків (%1%)... + + + + Reindexing blocks on disk... + Переіндексація блоків на диску ... + + + + Send coins to a Raven address + Відправити монети на вказану адресу + + + + Backup wallet to another location + Резервне копіювання гаманця в інше місце + + + + Change the passphrase used for wallet encryption + Змінити пароль, який використовується для шифрування гаманця + + + + Open debugging and diagnostic console + Відкрити консоль зневадження і діагностики + + + + &Verify message... + П&еревірити повідомлення... + + + + Raven + Raven + + + + Wallet + Гаманець + + + + &Send + &Відправити + + + + &Receive + &Отримати + + + + &Show / Hide + Показа&ти / Приховати + + + + Show or hide the main Window + Показує або приховує головне вікно + + + + Encrypt the private keys that belong to your wallet + Зашифрувати закриті ключі, що знаходяться у вашому гаманці + + + + Sign messages with your Raven addresses to prove you own them + Підтвердіть, що Ви є власником повідомлення підписавши його Вашою Raven-адресою + + + + Verify messages to ensure they were signed with specified Raven addresses + Перевірте повідомлення для впевненості, що воно підписано вказаною Raven-адресою + + + + &File + &Файл + + + + &Help + &Довідка + + + + Request payments (generates QR codes and raven: URIs) + Створити запит платежу (генерує QR-код та raven: URI) + + + + Show the list of used sending addresses and labels + Показати список адрес і міток, що були використані для відправлення + + + + Show the list of used receiving addresses and labels + Показати список адрес і міток, що були використані для отримання + + + + Open a raven: URI or payment request + Відкрити raven: URI чи запит платежу + + + + &Command-line options + П&араметри командного рядка + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + Індексація блоків на диску ... + + + + Processing blocks on disk... + Обробка блоків на диску... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 тому + + + + Last received block was generated %1 ago. + Останній отриманий блок було згенеровано %1 тому. + + + + Transactions after this will not yet be visible. + Пізніші транзакції не буде видно. + + + + Error + Помилка + + + + Warning + Попередження + + + + Information + Інформація + + + + Up to date + Синхронізовано + + + + Show the %1 help message to get a list with possible Raven command-line options + Показати довідку %1 для отримання переліку можливих параметрів командного рядка. + + + + %1 client + %1 клієнт + + + + Connecting to peers... + Підключення до вузлів... + + + + Catching up... + Синхронізується... + + + + Date: %1 + + Дата: %1 + + + + + + Amount: %1 + + Кількість: %1 + + + + + Type: %1 + + Тип: %1 + + + + + Label: %1 + + Мітка: %1 + + + + + Address: %1 + + Адреса: %1 + + + + + Sent transaction + Надіслані транзакції + + + + Incoming transaction + Отримані транзакції + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + Генерація HD ключа <b>увімкнена</b> + + + + HD key generation is <b>disabled</b> + Генерація HD ключа<b>вимкнена</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + <b>Зашифрований</b> гаманець <b>розблоковано</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + <b>Зашифрований</b> гаманець <b>заблоковано</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + Сталася фатальна помилка. Помилки не сумісні з подальщою роботою. Гаманець буде закрито. + + + + ReceiveCoinsDialog + + + &Amount: + &Кількість: + + + + &Label: + &Мітка: + + + + &Message: + &Повідомлення: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Повторно використати одну з адрес. Повторне використання адрес створює ризики безпеки та конфіденційності. Не використовуйте її, окрім як для створення повторного запиту платежу. + + + + R&euse an existing receiving address (not recommended) + По&вторно використати адресу для отримання (не рекомендується) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу Raven. + + + + + An optional label to associate with the new receiving address. + Необов'язкове поле для мітки нової адреси отримувача. + + + + Use this form to request payments. All fields are <b>optional</b>. + Використовуйте цю форму, щоб отримати платежі. Всі поля є <b>необов'язковими</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Необов'язкове поле для суми запиту. Залиште це поле пустим або впишіть нуль, щоб не надсилати у запиті конкретної суми. + + + + Clear all fields of the form. + Очистити всі поля в формі + + + + Clear + Очистити + + + + Requested payments history + Історія запитів платежу + + + + &Request payment + Н&адіслати запит платежу + + + + Show the selected request (does the same as double clicking an entry) + Показати вибраний запит (робить те ж саме, що й подвійний клік по запису) + + + + Show + Показати + + + + Remove the selected entries from the list + Вилучити вибрані записи зі списку + + + + Remove + Вилучити + + + + Copy URI + Скопіювати адресу + + + + Copy label + Скопіювати мітку + + + + Copy message + Скопіювати повідомлення + + + + Copy amount + Скопіювати суму + + + + ReceiveRequestDialog + + + QR Code + QR-Код - Proxy &IP: - &IP проксі: + + Copy &URI + &Скопіювати URI - &Port: - &Порт: + + Copy &Address + Скопіювати &адресу - Port of the proxy (e.g. 9050) - Порт проксі-сервера (наприклад 9050) + + &Save Image... + &Зберегти зображення... - Used for reaching peers via: - Приєднуватися до учасників через: + + Request payment to %1 + - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - Вказує на використання наявного типового проксі SOCKS5, що використувується задля встановлення зв'язку з пірами через мережу такого типу. + + Payment information + Інформація про платіж - IPv4 - IPv4 + + URI + - IPv6 - IPv6 + + Address + Адреса - Tor - Tor + + Amount + Кількість - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - Підключатися до мережі Raven через окремий SOCKS5 проксі для прихованих сервісів Tor. + + Label + Мітка - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - Використовувати окремий SOCKS5-проксі для з'єднання з учасниками через приховані сервіси Tor: + + Message + Повідомлення - &Window - &Вікно + + Resulting URI too long, try to reduce the text for label / message. + - Hide tray icon - Сховати іконку в треї + + Error encoding URI into QR Code. + + + + RecentRequestsTableModel - Show only a tray icon after minimizing the window. - Показувати лише іконку в треї після згортання вікна. + + Date + Дата - &Minimize to the tray instead of the taskbar - Мінімізувати &у трей + + Label + Мітка - M&inimize on close - Згортати замість закритт&я + + Message + Повідомлення - &Display - &Відображення + + (no label) + немає мітки - User Interface &language: - Мов&а інтерфейсу користувача: + + (no message) + (без повідомлення) - &Unit to show amounts in: - В&имірювати монети в: + + (no amount requested) + (без суми) - Choose the default subdivision unit to show in the interface and when sending coins. - Виберіть одиницю вимірювання монет, яка буде відображатись в гаманці та при відправленні. + + Requested + Запрошено + + + ReissueAssetDialog - Whether to show coin control features or not. - Показати або сховати керування входами. + + Coin Control Features + - &OK - &Гаразд + + Inputs... + - &Cancel - &Скасувати + + automatically selected + - default - типово + + Insufficient funds! + - none - відсутні + + + Quantity: + - Confirm options reset - Підтвердження скидання параметрів + + Bytes: + - Client restart required to activate changes. - Для застосування змін необхідно перезапустити клієнта. + + Amount: + - Client will be shut down. Do you want to proceed? - Клієнт буде вимкнено. Продовжити? + + Dust: + - This change would require a client restart. - Ця зміна вступить в силу після перезапуску клієнта + + Fee: + - The supplied proxy address is invalid. - Невірно вказано адресу проксі. + + After Fee: + - - - OverviewPage - Form - Форма + + Change: + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Показана інформація вже може бути застарілою. Ваш гаманець буде автоматично синхронізовано з мережею Raven після встановлення підключення, але цей процес ще не завершено. + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Watch-only: - Тільки спостереження: + + Custom change address + - Available: - Наявно: + + + Reissue Asset + - Your current spendable balance - Ваш поточний підтверджений баланс + + Select an asset to reissue: + - Pending: - Очікується: + + Address: + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Сума монет у непідтверджених транзакціях + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Immature: - Незрілі: + + Verifier String: + - Mined balance that has not yet matured - Баланс видобутих та ще недозрілих монет + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - Balances - Баланси + + Warning: + - Total: - Всього: + + The number of assets that will be created + - Your current total balance - Ваш поточний сукупний баланс + + Unit: + - Your current balance in watch-only addresses - Ваш поточний баланс в адресах для спостереження + + e.g. 1.00000000 + - Spendable: - Доступно: + + If the owner of this asset will be able to issue more assets in the future + - Recent transactions - Останні транзакції + + Reissuable + - Unconfirmed transactions to watch-only addresses - Непідтверджені транзакції на адреси для спостереження + + Change IPFS/Txid Hash + - Mined balance in watch-only addresses that has not yet matured - Баланс видобутих та ще недозрілих монет на адресах для спостереження + + The ipfs/txid hash that contains information about the asset + - Current total balance in watch-only addresses - Поточний сукупний баланс в адресах для спостереження + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - - PaymentServer - Payment request error - Помилка запиту платежу + + ERROR TEXT + - URI handling - Обробка URI + + Current Asset Settings + - - - PeerTableModel - User Agent - Клієнт користувача + + Updated Asset Settings + - Node/Service - Вузол/Сервіс + + Transaction Fee: + - Ping - Затримка + + Choose... + - - - QObject - Amount - Кількість + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Enter a Raven address (e.g. %1) - Введіть адресу Raven (наприклад %1) + + Warning: Fee estimation is currently not possible. + - %1 d - %1 д + + collapse fee-settings + - %1 h - %1 г + + Hide + - %1 m - %1 х + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - %1 s - %1 с + + per kilobyte + - None - Відсутні + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - N/A - Н/Д + + (read the tooltip) + - %1 ms - %1 мс + + Recommended: + - %1 and %2 - %1 та %2 + + Cus&tom: + - - - QObject::QObject - Error: %1 - Помилка: %1 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - - - QRImageWidget - &Save Image... - &Зберегти зображення... + + Confirmation time target: + - &Copy Image - &Копіювати зображення + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Save QR Code - Зберегти QR-код + + Request Replace-By-Fee + - PNG Image (*.png) - Зображення PNG (*.png) + + Clear + - - - RPCConsole - N/A - Н/Д + + Balance: + - Client version - Версія клієнту + + 123.456 RVN + - &Information - &Інформація + + Copy quantity + - Debug window - Вікно зневадження + + Copy amount + - General - Загальна + + Copy fee + - Using BerkeleyDB version - Використовується BerkeleyDB версії + + Copy after fee + - Startup time - Час запуску + + Copy bytes + - Network - Мережа + + Copy dust + - Name - Ім’я + + Copy change + - Number of connections - Кількість підключень + + Select an asset to reissue.. + - Block chain - Ланцюг блоків + + Select the asset you want to reissue. + - Current number of blocks - Поточне число блоків + + %1 (%2 blocks) + - Memory Pool - Пул пам'яті + + Cost + - Current number of transactions - Поточне число транзакцій + + Asset data couldn't be found + - Memory usage - Використання пам'яті + + Quantity is to large. Max is 21,000,000,000 + - Received - Отримано + + Invalid Raven Destination Address + - Sent - Відправлено + + Warning: Restricted Assets Issuance requires an address + - &Peers - &Учасники + + + Warning: Invalid Raven address + - Banned peers - Заблоковані вузли + + + Yes + - Select a peer to view detailed information. - Виберіть учасника для перегляду детальнішої інформації + + No + - Whitelisted - В білому списку + + + Name + + + + + + Total Quantity + - Direction - Напрямок + + + Units + - Version - Версія + + + Can Reisssue + - Starting Block - Початковий Блок + + + + IPFS Hash + - Synced Headers - Синхронізовані Заголовки + + + + Txid Hash + - Synced Blocks - Синхронізовані Блоки + + Verifier String + - User Agent - Клієнт користувача + + + Current Verifier String + - Decrease font size - Зменшити розмір шрифту + + Please select a asset from the menu to display the assets current settings + - Increase font size - Збільшити розмір шрифту + + Please select a asset from the menu to display the assets updated settings + - Services - Сервіси + + Current Quantity + - Ban Score - Очки бану + + Current Units + - Connection Time - Час з'єднання + + Can Reissue + - Last Send - Востаннє відправлено + + Unknown data hash type + - Last Receive - Востаннє отримано + + Only IPFS Hashes allowed until RIP5 is activated + - Ping Time - Затримка + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - The duration of a currently outstanding ping. - Тривалість поточної затримки. + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Ping Wait - Поточна Затримка + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Time Offset - Різниця часу + + + %1 to %2 + - Last block time - Час останнього блоку + + Are you sure you want to send? + - &Open - &Відкрити + + added as transaction fee + - &Console - &Консоль + + Total Amount %1 + - &Network Traffic - &Мережевий трафік + + or + - &Clear - &Очистити + + Confirm reissue assets + - Totals - Всього + + Copy + - In: - Вхідних: + + Transaction ID Copied + - Out: - Вихідних: + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Debug log file - Файл звіту зневадження + + Warning: Unknown change address + - Clear console - Очистити консоль + + Confirm custom change address + - 1 &hour - 1 &годину + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - 1 &day - 1 &день + + (no label) + - 1 &week - 1 &тиждень + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - 1 &year - 1 &рік + + Send Coins + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Використовуйте стрілки вгору вниз для навігації по історії, і <b>Ctrl-L</b> для очищення екрана. + + Asset Balances + - Type <b>help</b> for an overview of available commands. - Наберіть <b>help</b> для перегляду доступних команд. + + + Search + - Network activity disabled - Мережева активність вимкнена. + + Address List + - %1 B - %1 Б + + Balance: + - %1 KB - %1 КБ + + + Failed to create a change address + - %1 MB - %1 МБ + + Failed to generate the correct transaction. Please try again + - %1 GB - %1 ГБ + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - (node id: %1) - (ІД вузла: %1) + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - via %1 - через %1 + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - never - ніколи + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Inbound - Вхідний + + + added as transaction fee + - Outbound - Вихідний + + + Total Amount %1 + - Yes - Так + + + or + - No - Ні + + Confirm adding restriction + - Unknown - Невідома + + Confirm removing resetricton + - - - ReceiveCoinsDialog - &Amount: - &Кількість: + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - &Label: - &Мітка: + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - &Message: - &Повідомлення: + + Confirm adding qualifier + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Повторно використати одну з адрес. Повторне використання адрес створює ризики безпеки та конфіденційності. Не використовуйте її, окрім як для створення повторного запиту платежу. + + Confirm removing qualifier + + + + SendAssetsEntry - R&euse an existing receiving address (not recommended) - По&вторно використати адресу для отримання (не рекомендується) + + This is an asset payment + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - Необов'язкове повідомлення на додаток до запиту платежу, котре буде показане під час відкриття запиту. Примітка: Це повідомлення не буде відправлено з платежем через мережу Raven. + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - An optional label to associate with the new receiving address. - Необов'язкове поле для мітки нової адреси отримувача. + + + + Memo: + - Use this form to request payments. All fields are <b>optional</b>. - Використовуйте цю форму, щоб отримати платежі. Всі поля є <b>необов'язковими</b>. + + Amount: + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Необов'язкове поле для суми запиту. Залиште це поле пустим або впишіть нуль, щоб не надсилати у запиті конкретної суми. + + Enter a label for this address to add it to the list of used addresses + - Clear all fields of the form. - Очистити всі поля в формі + + &Label: + - Clear - Очистити + + Asset: + - Requested payments history - Історія запитів платежу + + The Raven address to send the payment to + - &Request payment - Н&адіслати запит платежу + + Choose previously used address + - Show the selected request (does the same as double clicking an entry) - Показати вибраний запит (робить те ж саме, що й подвійний клік по запису) + + Alt+A + - Show - Показати + + Paste address from clipboard + - Remove the selected entries from the list - Вилучити вибрані записи зі списку + + Alt+P + - Remove - Вилучити + + + + Remove this entry + - Copy URI - Скопіювати адресу + + Message: + - Copy label - Скопіювати мітку + + Transfer &To: + - Copy message - Скопіювати повідомлення + + Transfer Administrator Asset + - Copy amount - Скопіювати суму + + Put a IPFS or Txid hash here to be sent with the asset transfer + - - - ReceiveRequestDialog - QR Code - QR-Код + + This is an unauthenticated payment request. + - Copy &URI - &Скопіювати URI + + + Transfer to: + - Copy &Address - Скопіювати &адресу + + + A&mount: + - &Save Image... - &Зберегти зображення... + + This is an authenticated payment request. + - Payment information - Інформація про платіж + + Enter a label for this address to add it to your address book + - Address - Адреса + + Select to view administrator assets to transfer + - Amount - Кількість + + + Select an asset to transfer + - Label - Мітка + + Memos can only be added once RIP5 is voted in + - Message - Повідомлення + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - Дата + + Failed to get asset metadata for: + - Label - Мітка + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - Повідомлення + + Failed to get asset outpoints from database + - (no label) - немає мітки + + Selected Balance + - (no message) - (без повідомлення) + + Wallet Balance + - (no amount requested) - (без суми) + + Select an administrator asset to transfer + - Requested - Запрошено + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins Відправити + Coin Control Features Керування монетами + Inputs... Входи... + automatically selected вибираються автоматично + Insufficient funds! Недостатньо коштів! + Quantity: Кількість: + Bytes: Байтів: + Amount: Сума: + Fee: Комісія: + After Fee: Після комісії: + Change: Решта: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. Якщо це поле активовано, але адреса для решти відсутня або некоректна, то решта буде відправлена на новостворену адресу. + Custom change address Вказати адресу для решти + Transaction Fee: Комісія за передачу: + Choose... Виберіть... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings згорнути налаштування оплат + per kilobyte за кілобайт - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - Якщо комісія встановлюється в 1000 сатоші і розмір транзакції лише 250 байтів, то опція "за кілобайт" встановлює комісію в 250 сатоші, в той час, як "всього щонайменше" - в 1000 сатоші. Для транзакцій більших за кілобайт в обох випадках буде знято комісію за кілобайт. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + Якщо комісія встановлюється в 1000 сатоші і розмір транзакції лише 250 байтів, то опція "за кілобайт" встановлює комісію в 250 сатоші, в той час, як "всього щонайменше" - в 1000 сатоші. Для транзакцій більших за кілобайт в обох випадках буде знято комісію за кілобайт. + Hide Приховати - total at least - всього щонайменше - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. Оплата тільки мінімальної комісії є прийнятною, допоки обсяг транзакцій є меншим простору в блоках. Але майте на увазі, що це може анулювати транзакцію, якщо попит на Raven транзакції стане більшим, ніж мережа зможе обробити. + (read the tooltip) (читати підказки) + Recommended: Рекомендовано: + Custom: Змінено: + (Smart fee not initialized yet. This usually takes a few blocks...) (Розумну оплату ще не ініціалізовано. Це, зазвичай, триває кілька блоків...) - normal - звичайний + + Request Replace-By-Fee + - fast - швидкий + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once Відправити на декілька адрес + Add &Recipient Дод&ати одержувача + Clear all fields of the form. Очистити всі поля в формі + Dust: Пил: + Confirmation time target: Час підтвердження: - Clear &All - Очистити &все + + Clear &All + Очистити &все + + + + Balance: + Баланс: + + + + Confirm the send action + Підтвердити відправлення + + + + S&end + &Відправити + + + + Copy quantity + Скопіювати кількість + + + + Copy amount + Скопіювати суму + + + + Copy fee + Скопіювати комісію + + + + Copy after fee + Скопіювати після комісії + + + + Copy bytes + Скопіювати байти + + + + Copy dust + Скопіювати інше + + + + Copy change + Скопіювати решту + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + - Balance: - Баланс: + + Duplicate address found: addresses should only be used once each. + - Confirm the send action - Підтвердити відправлення + + Transaction creation failed! + - S&end - &Відправити + + The transaction was rejected with the following reason: %1 + - Copy quantity - Скопіювати кількість + + A fee higher than %1 is considered an absurdly high fee. + - Copy amount - Скопіювати суму + + Payment request expired. + - Copy fee - Скопіювати комісію + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + - Copy after fee - Скопіювати після комісії + + Warning: Invalid Raven address + - Copy bytes - Скопіювати байти + + Warning: Unknown change address + - Copy dust - Скопіювати інше + + Confirm custom change address + - Copy change - Скопіювати решту + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + (no label) немає мітки @@ -1950,82 +5498,108 @@ SendCoinsEntry + + + A&mount: &Кількість: - Pay &To: - &Отримувач: - - + &Label: &Мітка: + Choose previously used address Обрати ранiш використовувану адресу + This is a normal payment. Це звичайний платіж. + The Raven address to send the payment to Адреса Raven для відправлення платежу + Alt+A Alt+A + Paste address from clipboard Вставити адресу + Alt+P Alt+P + + + Remove this entry Видалити цей запис + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. Комісію буде знято зі вказаної суми. До отримувача надійде менше біткоінів, ніж було вказано в полі кількості. Якщо ж отримувачів декілька - комісію буде розподілено між ними. + S&ubtract fee from amount В&ідняти комісію від суми + Message: Повідомлення: + + Send &To: + + + + This is an unauthenticated payment request. Цей запит платежу не є автентифікованим. + + + Send to: + + + + This is an authenticated payment request. Цей запит платежу є автентифікованим. + Enter a label for this address to add it to the list of used addresses Введіть мітку для цієї адреси для додавання її в список використаних адрес + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. Повідомлення, що було додане до raven:URI та буде збережено разом з транзакцією для довідки. Примітка: Це повідомлення не буде відправлено в мережу Raven. - Pay To: - Отримувач: - - + + Memo: Нотатка: + Enter a label for this address to add it to your address book Введіть мітку для цієї адреси для додавання її в адресну книгу @@ -2033,6 +5607,8 @@ SendConfirmationDialog + + Yes Так @@ -2040,6 +5616,12 @@ ShutdownWindow + + %1 is shutting down... + + + + Do not shut down the computer until this window disappears. Не вимикайте комп’ютер до зникнення цього вікна. @@ -2047,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message Підписи - Підпис / Перевірка повідомлення + &Sign Message &Підписати повідомлення + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. Ви можете підписувати повідомлення/угоди своїми адресами, щоб довести можливість отримання біткоінів, що будуть надіслані на них. Остерігайтеся підписувати будь-що нечітке чи неочікуване, так як за допомогою фішинг-атаки вас можуть спробувати ввести в оману для отримання вашого підпису під чужими словами. Підписуйте лише чіткі твердження, з якими ви повністю згодні. + The Raven address to sign the message with Адреса Raven для підпису цього повідомлення + + Choose previously used address Обрати ранiш використовувану адресу + + Alt+A Alt+A + Paste address from clipboard Вставити адресу + Alt+P Alt+P + Enter the message you want to sign here Введіть повідомлення, яке ви хочете підписати тут + Signature Підпис + Copy the current signature to the system clipboard Копіювати поточну сигнатуру до системного буферу обміну + Sign the message to prove you own this Raven address Підпишіть повідомлення щоб довести, що ви є власником цієї адреси + Sign &Message &Підписати повідомлення + Reset all sign message fields Скинути всі поля підпису повідомлення + + Clear &All Очистити &все + &Verify Message П&еревірити повідомлення - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! Введіть нижче адресу отримувача, повідомлення (впевніться, що ви точно скопіювали символи завершення рядка, табуляцію, пробіли тощо) та підпис для перевірки повідомлення. Впевніться, що в підпис не було додано зайвих символів: це допоможе уникнути атак типу «людина посередині». Зауважте, що це лише засвідчує можливість отримання транзакцій підписувачем, але не в стані підтвердити джерело жодної транзакції! + The Raven address the message was signed with Адреса Raven, якою було підписано це повідомлення + Verify the message to ensure it was signed with the specified Raven address Перевірте повідомлення для впевненості, що воно підписано вказаною Raven-адресою + Verify &Message Пере&вірити повідомлення + Reset all verify message fields Скинути всі поля перевірки повідомлення - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature Натисніть кнопку «Підписати повідомлення», для отримання підпису + + The entered address is invalid. Введена адреса не співпадає. + + + + Please check the address and try again. Будь ласка, перевірте адресу та спробуйте ще. + + The entered address does not refer to a key. Введена адреса не відноситься до ключа. + Wallet unlock was cancelled. Розблокування гаманця було скасоване. + Private key for the entered address is not available. Приватний ключ для введеної адреси недоступний. + Message signing failed. Не вдалося підписати повідомлення. + Message signed. Повідомлення підписано. + The signature could not be decoded. Підпис не можливо декодувати. + + Please check the signature and try again. Будь ласка, перевірте підпис та спробуйте ще. + The signature did not match the message digest. Підпис не збігається з хешем повідомлення. + Message verification failed. Не вдалося перевірити повідомлення. + Message verified. Повідомлення перевірено. @@ -2186,6 +5811,7 @@ SplashScreen + [testnet] [тестова мережа] @@ -2193,117 +5819,268 @@ TrafficGraphWidget + KB/s КБ/с TransactionDesc + + + Open for %n more block(s) + + + Open until %1 Відкрито до %1 + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + Status Статут + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + Date Дата + Source Джерело + Generated Згенеровано + + + + + From Від + + unknown невідомо + + + + + To Отримувач + + own address Власна адреса + + + + watch-only + + + + + label мітка + + + + + + + Credit Кредит + + + matures in %n more block(s) + + + not accepted не прийнято + + + + + Debit Дебет + Total debit Загальний дебет + Total credit Загальний кредит + Transaction fee Комісія за транзакцію + Net amount Загальна сума + + + + Message Повідомлення + + Comment Коментар + + Transaction ID ID транзакції + + Transaction total size Розмір транзакції + + + Output index + + + + + Merchant Продавець + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + Transaction Транзакція + Inputs Входи + Amount Кількість + + true вірний + + false хибний @@ -2311,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction Даний діалог показує детальну статистику по вибраній транзакції + Details for %1 Інформація по %1 @@ -2322,960 +6101,2191 @@ TransactionTableModel + Date Дата + Type Тип + Label Мітка + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + Open until %1 Відкрито до %1 + Offline Поза мережею + Unconfirmed Не підтверджено + Abandoned Відкинуті + Confirming (%1 of %2 recommended confirmations) Підтверджується (%1 з %2 рекомендованих підтверджень) + Confirmed (%1 confirmations) Підтверджено (%1 підтверджень) + Conflicted Суперечить + Immature (%1 confirmations, will be available after %2) Повністтю не підтверджено (%1 підтверджень, будуть доступні після %2) + This block was not received by any other nodes and will probably not be accepted! Цей блок не був отриманий жодними іншими вузлами і, ймовірно, не буде прийнятий! + Generated but not accepted Згенеровано (не підтверджено) + Received with Отримано з + Received from Отримано від + Sent to Відправлені на + Payment to yourself Відправлено собі + Mined Добуті + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + (no label) немає мітки + Transaction status. Hover over this field to show number of confirmations. Статус транзакції. Наведіть вказівник на це поле, щоб показати кількість підтверджень. + Date and time that the transaction was received. Дата і час, коли транзакцію було отримано. + Type of transaction. Тип транзакції. + + Whether or not a watch-only address is involved in this transaction. + + + + User-defined intent/purpose of the transaction. Визначений користувачем намір чи мета транзакції. + Amount removed from or added to balance. Сума, додана чи знята з балансу. + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All Всі + Today Сьогодні + This week На цьому тижні + This month Цього місяця + Last month Минулого місяця + This year Цього року + Range... Діапазон від: + Received with Отримано з + Sent to Відправлені на + To yourself Відправлені собі + Mined Добуті + Other Інше + Enter address or label to search Введіть адресу чи мітку для пошуку + Min amount Мінімальна сума + + Asset name + + + + Abandon transaction Відмовитися від транзакції + Copy address Скопіювати адресу + Copy label Скопіювати мітку + Copy amount Скопіювати суму + Copy transaction ID Скопіювати ID транзакції + Copy raw transaction Скопіювати RAW транзакцію + Copy full transaction details Скопіювати повні деталі транзакції + Edit label Редагувати мітку + Show transaction details Показати деталі транзакції + + Browse with: + + + + Export Transaction History Експортувати історію транзакцій + Comma separated file (*.csv) Файли (*.csv) розділеі комами + Confirmed Підтверджено + Watch-only Тільки спостереження: + Date Дата + Type Тип + Label Мітка + Address Адреса + + Asset + + + + ID Ідентифікатор + Exporting Failed Експортування пройшло не успішно - + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. Одиниця виміру монет. Натисніть для вибору іншої. WalletFrame - + + + No wallet has been loaded. + + + WalletModel - + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + WalletView + &Export &Експорт + Export the data in the current tab to a file Експортувати дані з поточної вкладки в файл + Backup Wallet Зробити резервне копіювання гаманця + Wallet Data (*.dat) Данi гаманця (*.dat) + Backup Failed Помилка резервного копіювання + + There was an error trying to save the wallet data to %1. + + + + Backup Successful Резервну копію створено успішно + The wallet data was successfully saved to %1. Дані гаманця успішно збережено в %1. + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: Параметри: + Specify data directory Вкажіть робочий каталог + Connect to a node to retrieve peer addresses, and disconnect - Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись + Підключитись до вузла, щоб отримати список адрес інших учасників та від'єднатись + Specify your own public address Вкажіть вашу власну публічну адресу + Accept command line and JSON-RPC commands Приймати команди із командного рядка та команди JSON-RPC + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. Якщо <category> не задано, або ж якщо <category> = 1, виводить всю налагоджувальну інформацію. + Prune configured below the minimum of %d MiB. Please use a higher number. Встановлений розмір ланцюжка блоків є замалим (меншим за %d МіБ). Будь ласка, виберіть більше число. + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) Операція відсікання: остання синхронізація вмісту гаманцю не обмежується діями над скороченими данними. Вам необхідно зробити переіндексацію -reindex (заново завантажити веcь ланцюжок блоків в разі появи скороченого ланцюга) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. Неможливо провести повторне сканування зі скороченим ланцюжком. Вам необхідно використати -reindex для завантаження повного ланцюжка блоків. + Error: A fatal internal error occurred, see debug.log for details Помилка: Сталася фатальна помилка (детальніший опис наведено в debug.log) + Fee (in %s/kB) to add to transactions you send (default: %s) Комісія (в %s/КБ), що додаватиметься до вихідних транзакцій (типово: %s) + Pruning blockstore... Скорочення кількості блоків... + Run in the background as a daemon and accept commands Запустити в фоновому режимі (як демон) та приймати команди + Unable to start HTTP server. See debug log for details. Неможливо запустити HTTP-сервер. Детальніший опис наведено в журналі зневадження. + Raven Core Raven Core + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 - Прив'язатися до даної адреси та прослуховувати її. Використовуйте запис виду [хост]:порт для IPv6 + Прив'язатися до даної адреси та прослуховувати її. Використовуйте запис виду [хост]:порт для IPv6 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup Видалити всі транзакції гаманця та відновити ті, що будуть знайдені під час запуску за допомогою -rescan + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) Виконати команду, коли транзакція гаманця зміниться (замість %s в команді буде підставлено ідентифікатор транзакції) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) Встановити кількість потоків скрипту перевірки (від %u до %d, 0 = автоматично, <0 = вказує кількість вільних ядер, типово: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct Схоже, що база даних блоків містить блок з майбутнього. Це може статися із-за некоректно встановленої дати та/або часу. Перебудовуйте базу даних блоків лише тоді, коли ви переконані, що встановлено правильну дату і час + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) Використовувати UPnP для відображення порту, що прослуховується (типово: 1 при прослуховуванні та за відсутності -proxy) + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + -maxmempool must be at least %d MB -maxmempool має бути не менше %d МБ + <category> can be: <category> може бути: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + Block creation options: Опції створення блоку: + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + Connection options: - Параметри з'єднання: + Параметри з'єднання: + Copyright (C) %i-%i Всі права збережено. %i-%i + Corrupted block database detected Виявлено пошкоджений блок бази даних + Debugging/Testing options: Параметри тестування/налагодження: + Do not load the wallet and disable wallet RPC calls Не завантажувати гаманець та вимкнути звернення до нього через RPC + Do you want to rebuild the block database now? Ви хочете перебудувати базу даних блоків зараз? + Enable publish hash block in <address> Дозволено введення хеш блоку в рядок <address> + Enable publish hash transaction in <address> Дозволено введення хеш транзакції в рядок <address> + Enable publish raw block in <address> Дозволено введення RAW блоку в рядок <address> + Enable publish raw transaction in <address> Дозволено введення RAW транзакції в рядок <address> + + Enable transaction replacement in the memory pool (default: %u) + + + + Error initializing block database Помилка ініціалізації бази даних блоків + Error initializing wallet database environment %s! Помилка ініціалізації середовища бази даних гаманця %s! + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + Error loading block database Помилка завантаження бази даних блоків + Error opening block database Помилка відкриття блоку бази даних + Error: Disk space is low! Помилка: Мало вільного місця на диску! + Failed to listen on any port. Use -listen=0 if you want this. Не вдалося слухати на жодному порту. Використовуйте -listen=0, якщо ви хочете цього. + Importing... Імпорт... + Incorrect or no genesis block found. Wrong datadir for network? Початковий блок некоректний/відсутній. Чи правильно вказано каталог даних для обраної мережі? - Invalid -onion address: '%s' - Помилка в адресі -onion: «%s» + + Initialization sanity check failed. %s is shutting down. + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + Keep the transaction memory pool below <n> megabytes (default: %u) - Утримувати розмір пам'яті для пулу транзакцій меншим за <n> мегабайтів (типово: %u) + Утримувати розмір пам'яті для пулу транзакцій меншим за <n> мегабайтів (типово: %u) + + + + Loading P2P addresses... + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + Not enough file descriptors available. Бракує доступних дескрипторів файлів. + Only connect to nodes in network <net> (ipv4, ipv6 or onion) Підключатися тільки до вузлів в мережі <net> (ipv4, ipv6 або onion) + Print this help message and exit Надрукувати це довідкове повідомлення та вийти + Print version and exit Версія для друку і виходу + Prune cannot be configured with a negative value. - Розмір скороченого ланцюжка блоків не може бути від'ємним. + Розмір скороченого ланцюжка блоків не може бути від'ємним. + Prune mode is incompatible with -txindex. Використання скороченого ланцюжка блоків несумісне з параметром -txindex. + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + Rewinding blocks... Відтворення блоків... + Set database cache size in megabytes (%d to %d, default: %d) Встановити розмір кешу бази даних в мегабайтах (від %d до %d, типово: %d) - Set maximum block size in bytes (default: %d) - Встановити максимальний розмір блоку у байтах (типово: %d) - - + Specify wallet file (within data directory) Вкажіть файл гаманця (в межах каталогу даних) + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + Unsupported argument -benchmark ignored, use -debug=bench. Параметр -benchmark не підтримується та буде проігноровано; використовуйте -debug=bench. + Unsupported argument -debugnet ignored, use -debug=net. Параметр -debugnet не підтримується та буде проігноровано; використовуйте -debug=net. - Unsupported argument -tor found, use -onion. - Параметр -tor не підтримується; використовуйте -onion. + + Unsupported argument -tor found, use -onion. + Параметр -tor не підтримується; використовуйте -onion. + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + Use UPnP to map the listening port (default: %u) Використовувати UPnP для відображення порту, що прослуховується (типово: %u) + + Use the test chain + + + + User Agent comment (%s) contains unsafe characters. Коментар до Клієнта Користувача (%s) містить небезпечні символи. + Verifying blocks... Перевірка блоків... - Verifying wallet... - Перевірка гаманця... - - + Wallet %s resides outside data directory %s Гаманець %s знаходиться поза каталогом даних %s + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + Wallet options: Параметри гаманця: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times Дозволити підключення по протоколу JSON-RPC зі вказаного джерела. Правильною для <ip> є окрема IP-адреса (наприклад, 1.2.3.4), IP-адреса та маска підмережі (наприклад, 1.2.3.4/255.255.255.0) або CIDR-адреса (наприклад, 1.2.3.4/24). Цей параметр можна вказувати декілька разів. + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 - Прив'язатися до даної адреси та вносити до білого списку учасників, що під'єднуються до неї. Використовуйте запис виду [хост]:порт для IPv6 - - - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - Прив'язатися до даної адреси для прослуховування JSON-RPC підключень. Використовуйте запис виду [хост]:порт для IPv6. Цей параметр можна вказувати декілька разів (типово: прив'язуватися до всіх інтерфейсів) + Прив'язатися до даної адреси та вносити до білого списку учасників, що під'єднуються до неї. Використовуйте запис виду [хост]:порт для IPv6 + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) Створювати нові файли з типовими для системи атрибутами доступу замість маски 077 (діє тільки при вимкненому гаманці) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) Визначити власні IP-адреси (типово: 1 при прослуховуванні та за відсутності -externalip або -proxy) + Error: Listening for incoming connections failed (listen returned error %s) Помилка: Не вдалося налаштувати прослуховування вхідних підключень (listen повернув помилку: %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) Виконати команду при надходженні важливого сповіщення або при спостереженні тривалого розгалуження ланцюжка (замість %s буде підставлено повідомлення) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) Комісії (в %s/kB), що менші за вказану, вважатимуться нульовими для зміни, аналізу та створення транзакцій (типово: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) Якщо параметр paytxfee не встановлено, включити комісію для отримання перших підтверджень транзакцій протягом n блоків (типово: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) Неприпустима сума для -maxtxfee = <amount>: «%s» ( плата повинна бути, принаймні %s, щоб запобігти зависанню транзакцій) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Максимальний розмір даних в транзакціях носіїв даних, що ми передаємо і добуваємо (за замовчуванням: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) - Надавати випадкові дані доступу для кожного проксі-з'єднання. Це дозволяє ввімкнути ізоляцію потоків Tor'у (типово: %u) - - - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - Встановити максимальний розмір транзакцій з високим пріоритетом та низькою комісією (в байтах) (типово: %d) + Надавати випадкові дані доступу для кожного проксі-з'єднання. Це дозволяє ввімкнути ізоляцію потоків Tor'у (типово: %u) + The transaction amount is too small to send after the fee has been deducted Залишок від суми транзакції зі сплатою комісії занадто малий + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway - Учасники, що знаходяться в білому списку, не можуть бути заблоковані за DoS та їхні транзакції завжди ретранслюватимуться (навіть якщо вони є в пам'яті), що може бути корисним, наприклад, для шлюзу + Учасники, що знаходяться в білому списку, не можуть бути заблоковані за DoS та їхні транзакції завжди ретранслюватимуться (навіть якщо вони є в пам'яті), що може бути корисним, наприклад, для шлюзу + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain Вам необхідно перебудувати базу даних з використанням -reindex для завантаження повного ланцюжка блоків. + (default: %u) (типово: %u) + Accept public REST requests (default: %u) Приймати публічні REST-запити (типово: %u) + Automatically create Tor hidden service (default: %d) - Автоматичне з'єднання з прихованим сервісом Tor (типово: %d) + Автоматичне з'єднання з прихованим сервісом Tor (типово: %d) + Connect through SOCKS5 proxy Підключитись через SOCKS5-проксі + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. Помилка читання бази даних, припиняю роботу. + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup Спочатку імпортує блоки з зовнішнього файлу blk000??.dat + Information Інформація - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) Вказано некоректну суму для параметру -paytxfee: «%s» (повинно бути щонайменше %s) - Invalid netmask specified in -whitelist: '%s' + + Invalid netmask specified in -whitelist: '%s' Вказано неправильну маску підмережі для -whitelist: «%s» + Keep at most <n> unconnectable transactions in memory (default: %u) - Утримувати в пам'яті щонайбільше <n> транзакцій, що споживають невідомі входи (типово: %u) + Утримувати в пам'яті щонайбільше <n> транзакцій, що споживають невідомі входи (типово: %u) - Need to specify a port with -whitebind: '%s' + + Need to specify a port with -whitebind: '%s' Необхідно вказати порт для -whitebind: «%s» + Node relay options: Параметри вузла ретрансляції: + RPC server options: Параметри сервера RPC: + Reducing -maxconnections from %d to %d, because of system limitations. Зменшення значення -maxconnections з %d до %d із-за обмежень системи. + Rescan the block chain for missing wallet transactions on startup Спочатку переглянте ланцюжок блоків на наявність втрачених транзакцій гаманця + Send trace/debug info to console instead of debug.log file Відсилати налагоджувальну інформацію на консоль, а не у файл debug.log - Send transactions as zero-fee transactions if possible (default: %u) - Не сплачувати комісію за надсилання транзакцій, якщо це можливо (типово: %u) - - + Show all debugging options (usage: --help -help-debug) Показати всі налагоджувальні параметри (використання: --help -help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) Стискати файл debug.log під час старту клієнта (типово: 1 коли відсутній параметр -debug) + Signing transaction failed Підписання транзакції не вдалося + The transaction amount is too small to pay the fee Неможливо сплатити комісію із-за малої суми транзакції + This is experimental software. Це програмне забезпечення є експериментальним. + Tor control port password (default: empty) Пароль управління порт протоколом Tor (типово: empty) + Tor control port to use if onion listening enabled (default: %s) Скористайтесь управлінням порт протоколом Tor, в разі перехоплення обміну цибулевої маршрутизації (типово: %s) + Transaction amount too small Сума транзакції занадто мала + Transaction too large for fee policy Транзакція занадто велика для правил комісії + Transaction too large Транзакція занадто велика + Unable to bind to %s on this computer (bind returned error %s) - Неможливо прив'язатися до %s на цьому комп'ютері (bind повернув помилку: %s) + Неможливо прив'язатися до %s на цьому комп'ютері (bind повернув помилку: %s) + Upgrade wallet to latest format on startup Спочатку оновіть гаманець до останньої версії + Username for JSON-RPC connections - Ім'я користувача для JSON-RPC-з'єднань + Ім'я користувача для JSON-RPC-з'єднань + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning Попередження + + Warning: unknown new rules activated (versionbit %i) + + + + Whether to operate in a blocks only mode (default: %u) Чи слід працювати в режимі тільки блоки (типово: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... Видалення всіх транзакцій з гаманця... + ZeroMQ notification options: Параметри сповіщень ZeroMQ: + Password for JSON-RPC connections - Пароль для JSON-RPC-з'єднань + Пароль для JSON-RPC-з'єднань + Execute command when the best block changes (%s in cmd is replaced by block hash) - Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) + Виконати команду, коли з'явиться новий блок (%s в команді змінюється на хеш блоку) + Allow DNS lookups for -addnode, -seednode and -connect Дозволити пошук в DNS для команд -addnode, -seednode та -connect - Loading addresses... - Завантаження адрес... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = утримувати метадані транзакцій (до яких відноситься інформація про власника рахунку та запити платежів), 2 - відкинути) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. Встановлено дуже велике значення -maxtxfee! Такі великі комісії можуть бути сплачені окремою транзакцією. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) - Не тримати транзакції в пам'яті довше <n> годин (типово: %u) + Не тримати транзакції в пам'яті довше <n> годин (типово: %u) + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) Комісії (в %s/kB), що менші за вказану, вважатимуться нульовими для створення транзакцій (типово: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) Рівень ретельності перевірки блоків (0-4, типово: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) Утримувати повний індекс транзакцій (використовується RPC-викликом getrawtransaction) (типово: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) Час в секундах, протягом якого відключені учасники з поганою поведінкою не зможуть підключитися (типово: %u) + Output debugging information (default: %u, supplying <category> is optional) - Виводити налагоджувальну інформацію (типово: %u, вказання <category> необов'язкове) + Виводити налагоджувальну інформацію (типово: %u, вказання <category> необов'язкове) + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) Фільтрація блоків та транзакцій з допомогою фільтрів Блума (типово: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. Загальна довжина рядку мережевої версії (%i) перевищує максимально допустиму (%i). Зменшіть число чи розмір коментарів клієнта користувача. + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) Намагається зберегти вихідний трафік відповідно до зданого значення (в MIB за 24 години), 0 = без обмежень (типово: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. Параметр -socks не підтримується. Можливість вказувати версію SOCKS було видалено, так як підтримується лише SOCKS5. + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) - Використовувати окремий SOCKS5-проксі для з'єднання з учасниками через приховані сервіси Tor (типово: %s) + Використовувати окремий SOCKS5-проксі для з'єднання з учасниками через приховані сервіси Tor (типово: %s) + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (типово: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) Завжди дізнаватися адреси учасників через DNS (типово: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) Скільки блоків перевіряти під час запуску (типово: %u, 0 = всі) + Include IP addresses in debug output (default: %u) Включити IP-адреси до налагоджувального виводу (типово: %u) - Invalid -proxy address: '%s' - Помилка в адресі проксі-сервера: «%s» + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) - Прослуховувати <port> для JSON-RPC з'єднань (типово: %u, для тестової мережі: %u) + Прослуховувати <port> для JSON-RPC з'єднань (типово: %u, для тестової мережі: %u) + Listen for connections on <port> (default: %u or testnet: %u) - Чекати на з'єднання на <port> (типово: %u, для тестової мережі: %u) + Чекати на з'єднання на <port> (типово: %u, для тестової мережі: %u) + Maintain at most <n> connections to peers (default: %u) - Підтримувати щонайбільше <n> з'єднань з учасниками (типово: %u) + Підтримувати щонайбільше <n> з'єднань з учасниками (типово: %u) + Make the wallet broadcast transactions Дозволити гаманцю розповсюджувати транзакції + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) - Максимальний розмір вхідного буферу на одне з'єднання, <n>*1000 байтів (типово: %u) + Максимальний розмір вхідного буферу на одне з'єднання, <n>*1000 байтів (типово: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) - Максимальний розмір вихідного буферу на одне з'єднання, <n>*1000 байтів (типово: %u) + Максимальний розмір вихідного буферу на одне з'єднання, <n>*1000 байтів (типово: %u) + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + Prepend debug output with timestamp (default: %u) Доповнювати налагоджувальний вивід відміткою часу (типово: %u) + Relay and mine data carrier transactions (default: %u) Ретранслювати та створювати транзакції носіїв даних (типово: %u) + Relay non-P2SH multisig (default: %u) Ретранслювати не-P2SH транзакції з мультипідписом (типово: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) Надіслати транзакції з увімкненням full-RBF opt-in (типово: %u) + Set key pool size to <n> (default: %u) Встановити розмір пулу ключів <n> (типово: %u) + Set maximum BIP141 block weight (default: %d) Встановити максимальний розмір блоку BIP141 (за замовчуванням: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) Встановити число потоків для обслуговування викликів RPC (типово: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) Вказати файл конфігурації (типово: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) Вказати тайм-аут підключення в мілісекундах (щонайменше: 1, типово: %d) + Specify pid file (default: %s) Вказати pid-файл (типово: %s) + Spend unconfirmed change when sending transactions (default: %u) Витрачати непідтверджену решту при відправленні транзакцій (типово: %u) + Starting network threads... Запуск мережевих потоків... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. Гаманець не не переведе кошти якщо комісія менше мінімальної плати за транзакцію. + This is the minimum transaction fee you pay on every transaction. Це мінімальна плата за транзакцію, яку ви сплачуєте за кожну операцію. + This is the transaction fee you will pay if you send a transaction. Це транзакційна комісія, яку ви сплатите, якщо будете надсилати транзакцію. + Threshold for disconnecting misbehaving peers (default: %u) Поріг відключення учасників з поганою поведінкою (типово: %u) + Transaction amounts must not be negative Сума транзакції занадто мала (зменьшіть комісію, якщо можливо) + Transaction has too long of a mempool chain У транзакції занадто довгий ланцюг + Transaction must have at least one recipient У транзакції повинен бути щонайменше один одержувач - Unknown network specified in -onlynet: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' Невідома мережа вказана в -onlynet: «%s» + Insufficient funds Недостатньо коштів + Loading block index... Завантаження індексу блоків... - Add a node to connect to and attempt to keep the connection open - Додати вузол до підключення і лишити його відкритим - - + Loading wallet... Завантаження гаманця... + Cannot downgrade wallet Не вдається понизити версію гаманця - Cannot write default address - Неможливо записати типову адресу - - + Rescanning... Сканування... - Done loading - Завантаження завершене - - + Error Помилка diff --git a/src/qt/locale/raven_ur_PK.ts b/src/qt/locale/raven_ur_PK.ts index fc2458a67a..989165b657 100644 --- a/src/qt/locale/raven_ur_PK.ts +++ b/src/qt/locale/raven_ur_PK.ts @@ -1,251 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label پتہ تبدیل کرے کے لیے دائیاں کلک کریں + Create a new address نیا ایڈریس بنائیں + &New نیا + Copy the currently selected address to the system clipboard سلیکٹڈ پتے کو کمپوٹر کی عارضی جگہ رکھیں + &Copy نقل + C&lose بند + Delete the currently selected address from the list سلیکٹڈ پتے کو مٹائیں + Export the data in the current tab to a file موجودہ ڈیٹا کو فائیل میں محفوظ کریں + &Export برآمد + &Delete مٹا + Choose the address to send coins to کوئین وصول کرنے والے کا پتہ + Choose the address to receive coins with کوئین وصول کرنے والے کا پتہ + C&hoose چننا - + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel + + Label + + + + Address پتہ - + + + (no label) + + + AskPassphraseDialog + + Passphrase Dialog + + + + Enter passphrase پاس فریز داخل کریں + New passphrase نیا پاس فریز + Repeat new passphrase نیا پاس فریز دہرائیں - - - BanTableModel - - - RavenGUI - Error - نقص + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + - + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - CoinControlDialog + AssetControlDialog + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + Amount: - رقم: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + Amount - رقم + + + + + Received with label + + + + + Received with address + + Date - تاریخ + - - - EditAddressDialog - &Label - چٹ + + Confirmations + - &Address - پتہ + + Confirmed + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - نقص + + Copy address + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - Amount - رقم + + Copy label + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Copy &Address - کاپی پتہ + + + Copy amount + - Address - پتہ + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + - + - RecentRequestsTableModel - + AssetTableModel + + + Name + + + + + Quantity + + + - SendCoinsDialog + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + Insufficient funds! - ناکافی فنڈز + + + + + Quantity: + + + Bytes: + + + + Amount: - رقم: + - Balance: - بیلنس: + + Dust: + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - Address - پتہ + + Fee: + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Insufficient funds - ناکافی فنڈز + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + رقم: + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + رقم + + + + Received with label + + + + + Received with address + + + + + Date + تاریخ + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + چٹ + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + پتہ + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + نقص + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + رقم + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + نقص + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + کاپی پتہ + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + پتہ + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + ناکافی فنڈز + + + + Quantity: + + + + + Bytes: + + + + + Amount: + رقم: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + بیلنس: + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + پتہ + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + ناکافی فنڈز + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error نقص diff --git a/src/qt/locale/raven_uz@Cyrl.ts b/src/qt/locale/raven_uz@Cyrl.ts index d76b6c76c8..b8d9229ee4 100644 --- a/src/qt/locale/raven_uz@Cyrl.ts +++ b/src/qt/locale/raven_uz@Cyrl.ts @@ -1,1263 +1,8286 @@ - - - + AddressBookPage + Right-click to edit address or label Манзил ёки ёрлиқни таҳрирлаш учун икки марта босинг + Create a new address Янги манзил яратинг + &New &Янги + Copy the currently selected address to the system clipboard Жорий танланган манзилни тизим вақтинчалик хотирасига нусха кўчиринг + &Copy &Нусха олиш + C&lose &Ёпиш + Delete the currently selected address from the list Жорий танланган манзилни рўйхатдан ўчириш + Export the data in the current tab to a file Жорий ички ойна ичидаги маълумотларни файлга экспорт қилиш + &Export &Экспорт + &Delete &Ўчириш - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog + Passphrase Dialog Махфий сўз ойнаси + Enter passphrase Махфий сузни киритинг + New passphrase Янги махфий суз + Repeat new passphrase Янги махфий сузни такрорланг - - - BanTableModel - + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - RavenGUI + AssetControlDialog - Sign &message... - &Хабар ёзиш... + + Asset Selection + - Synchronizing with network... - Тармоқ билан синхронланмоқда... + + Quantity: + - &Overview - &Кўриб чиқиш + + Bytes: + - Node - Улам + + Amount: + - Show general overview of wallet - Ҳамённинг умумий кўринишини кўрсатиш + + Dust: + - &Transactions - &Пул ўтказмалари + + Fee: + - Browse transaction history - Пул ўтказмалари тарихини кўриш + + After Fee: + - E&xit - Ч&иқиш + + Change: + - Quit application - Иловадан чиқиш + + (un)select all + - About &Qt - &Qt ҳақида + + Tree mode + - Show information about Qt - Qt ҳақидаги маълумотларни кўрсатиш + + List mode + - &Options... - &Мосламалар... + + View assets that you have the ownership asset for + - &Encrypt Wallet... - Ҳамённи &кодлаш... + + View Administrator Assets + - &Backup Wallet... - Ҳамённи &заҳиралаш... + + Asset + - &Change Passphrase... - Махфий сўзни &ўзгартириш... + + Amount + - &Sending addresses... - &Жўнатилувчи манзиллар... + + Received with label + - &Receiving addresses... - &Қабул қилувчи манзиллар... + + Received with address + - Open &URI... - Интернет манзилни очиш + + Date + - Reindexing blocks on disk... - Дискдаги блоклар қайта индексланмоқда... + + Confirmations + - Send coins to a Raven address - Тангаларни Raven манзилига жўнатиш + + Confirmed + - Backup wallet to another location - Ҳамённи бошқа манзилга заҳиралаш + + Copy address + - Change the passphrase used for wallet encryption - Паролни ўзгартириш ҳамённи кодлашда фойдаланилади + + Copy label + - &Debug window - &Носозликни ҳал қилиш ойнаси + + + Copy amount + - Open debugging and diagnostic console - Носозликни ҳал қилиш ва ташхис терминали + + Copy transaction ID + - &Verify message... - Хабарни &тасдиқлаш... + + Lock unspent + - Raven - Raven + + Unlock unspent + - Wallet - Ҳамён + + Copy quantity + - &Send - &Жўнатиш + + Copy fee + - &Receive - &Қабул қилиш + + Copy after fee + - &Show / Hide - &Кўрсатиш / Яшириш + + Copy bytes + - Show or hide the main Window - Асосий ойнани кўрсатиш ёки яшириш + + Copy dust + - Encrypt the private keys that belong to your wallet - Ҳамёнингизга тегишли махфий калитларни кодлаш + + Copy change + - Sign messages with your Raven addresses to prove you own them - Raven манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг + + (%1 locked) + - Verify messages to ensure they were signed with specified Raven addresses - Хабарларни махсус Raven манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг + + yes + - &File - &Файл + + no + - &Settings - & Созламалар + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Help - &Ёрдам + + Can vary +/- %1 satoshi(s) per input. + - Tabs toolbar - Ички ойналар асбоблар панели + + + (no label) + - Request payments (generates QR codes and raven: URIs) - Тўловлар (QR кодлари ва raven ёрдамида яратишлар: URI’лар) сўраш + + change from %1 (%2) + + + + + (change) + + + + + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Сони: + + + + Bytes: + Байт: + + + + Amount: + Миқдори: + + + + Fee: + Солиқ: + + + + Dust: + Ахлат қутиси: + + + + After Fee: + Солиқдан сўнг: + + + + Change: + Ўзгартириш: + + + + (un)select all + барчасини танаш (бекор қилиш) + + + + Tree mode + Дарахт усулида + + + + List mode + Рўйхат усулида + + + + Amount + Миқдори + + + + Received with label + + + + + Received with address + + + + + Date + Сана + + + + Confirmations + Тасдиқлашлар + + + + Confirmed + Тасдиқланди + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Манзилларни таҳрирлаш + + + + &Label + &Ёрлик + + + + The label associated with this address list entry + Ёрлиқ ушбу манзилар рўйхати ёзуви билан боғланган + + + + The address associated with this address list entry. This can only be modified for sending addresses. + Манзил ушбу манзиллар рўйхати ёзуви билан боғланган. Уни фақат жўнатиладиган манзиллар учун ўзгартирса бўлади. + + + + &Address + &Манзил + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + Янги маълумотлар директорияси яратилади. + + + + name + номи + + + + Directory already exists. Add %1 if you intend to create a new directory here. + Директория аллақачон мавжуд. Агар бу ерда янги директория яратмоқчи бўлсангиз, %1 қўшинг. + + + + Path already exists, and is not a directory. + Йўл аллақачон мавжуд. У директория эмас. + + + + Cannot create data directory here. + Маълумотлар директориясини бу ерда яратиб бўлмайди.. + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + версияси + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + Буйруқлар сатри мосламалари + + + + Usage: + Фойдаланиш: + + + + command-line options + буйруқлар қатори орқали мослаш + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Хуш келибсиз + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Стандарт маълумотлар директориясидан фойдаланиш + + + + Use a custom data directory: + Бошқа маълумотлар директориясида фойдаланинг: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + Хато: кўрсатилган "%1" маълумотлар директориясини яратиб бўлмайди. + + + + Error + Хатолик + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Шакл + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + Сўнгги блок вақти + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + URI ни очиш + + + + Open payment request from URI or file + URL файлдан тўлов сўровларини очиш + + + + URI: + URI: + + + + Select payment request file + Тўлов сўрови файлини танлаш + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Танламалар + + + + &Main + &Асосий + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + &Маълумотлар базаси кеши + + + + MB + МБ + + + + Number of script &verification threads + Мавзуларни &тўғрилаш скрипти миқдори + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Прокси IP манзили (масалан: IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + Тармоқ + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + Ҳамён + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Прокси &IP рақами: + + + + + &Port: + &Порт: + + + + + Port of the proxy (e.g. 9050) + Прокси порти (e.g. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + &Ойна + + + + Show only a tray icon after minimizing the window. + Ойна йиғилгандан сўнг фақат трэй нишончаси кўрсатилсин. + + + + &Minimize to the tray instead of the taskbar + Манзиллар панели ўрнига трэйни &йиғиш + + + + M&inimize on close + Ёпишда й&иғиш + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Кўрсатиш + + + + User Interface &language: + Фойдаланувчи интерфейси &тили: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + Миқдорларни кўрсатиш учун &қисм: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Бекор қилиш + + + + default + стандарт + + + + none + йўқ + + + + Confirm options reset + Тасдиқлаш танловларини рад қилиш + + + + + Client restart required to activate changes. + Ўзгаришлар амалга ошиши учун мижозни қайта ишга тушириш талаб қилинади. + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + Ушбу ўзгариш мижозни қайтадан ишга туширишни талаб қилади. + + + + The supplied proxy address is invalid. + Келтирилган прокси манзили ишламайди. + + + + OverviewPage + + + Form + Шакл + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг Raven тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади. + + + + Watch-only: + Фақат кўришга + + + + Available: + Мавжуд: + + + + Your current spendable balance + Жорий сарфланадиган балансингиз + + + + Pending: + Кутилмоқда: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + Жами ўтказмалар ҳозиргача тасдиқланган ва сафланадиган баланс томонга ҳали ҳам ҳисобланмади + + + + Immature: + Тайёр эмас: + + + + Mined balance that has not yet matured + Миналаштирилган баланс ҳалигача тайёр эмас + + + + Total: + Жами: + + + + Your current total balance + Жорий умумий балансингиз + + + + RVN Balances + + + + + Your current balance in watch-only addresses + Жорий балансингиз фақат кўринадиган манзилларда + + + + Spendable: + Сарфланадиган: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + Сўнгги пул ўтказмалари + + + + Unconfirmed transactions to watch-only addresses + Тасдиқланмаган ўтказмалар-фақат манзилларини кўриш + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + Жорий умумий баланс фақат кўринадиган манзилларда + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + Фойдаланувчи вакил + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Миқдори + + + + Enter a Raven address (e.g. %1) + Raven манзилини киритинг (масалан. %1) + + + + %1 d + + + + + %1 h + + + + + %1 m + %1 д + + + + + %1 s + %1 с + + + + None + Йўқ + + + + N/A + Тўғри келмайди + + + + %1 ms + %1 мс + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 ва %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + Тўғри келмайди + + + + Client version + Мижоз номи + + + + &Information + &Маълумот + + + + Debug window + Тузатиш ойнаси + + + + General + Асосий + + + + Using BerkeleyDB version + Фойдаланилаётган BerkeleyDB версияси + + + + Datadir + + + + + Startup time + Бошланиш вақти + + + + Network + Тармоқ + + + + Name + Ном + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + &Уламлар + + + + Banned peers + + + + + + + Select a peer to view detailed information. + Батафсил маълумотларни кўриш учун уламни танланг. + + + + Whitelisted + + + + + Direction + Йўналиш + + + + Version + Версия + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + Фойдаланувчи вакил + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + Хизматлар + + + + Ban Score + Тезликни бан қилиш + + + + Connection Time + Уланиш вақти + + + + Last Send + Сўнгги жўнатилган + + + + Last Receive + Сўнгги қабул қилинган + + + + Ping Time + Ping вақти + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + Сўнгги блок вақти + + + + &Open + &Очиш + + + + &Console + &Терминал + + + + &Network Traffic + &Тармоқ трафиги + + + + Totals + Жами + + + + In: + Ичига: + + + + Out: + Ташқарига: + + + + Debug log file + Тузатиш журнали файли + + + + Clear console + Терминални тозалаш + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Мавжуд буйруқларни кўриш учун <b>help</b> деб ёзинг. + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + %1 орқали + + + + + never + ҳеч қачон + + + + Inbound + Ички йўналиш + + + + Outbound + Ташқи йўналиш + + + + Yes + Ҳа + + + + No + Йўқ + + + + + Unknown + Номаълум + + + + RavenGUI + + + Sign &message... + &Хабар ёзиш... + + + + Synchronizing with network... + Тармоқ билан синхронланмоқда... + + + + &Overview + &Кўриб чиқиш + + + + Node + Улам + + + + Show general overview of wallet + Ҳамённинг умумий кўринишини кўрсатиш + + + + &Transactions + &Пул ўтказмалари + + + + Browse transaction history + Пул ўтказмалари тарихини кўриш + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + Ч&иқиш + + + + Quit application + Иловадан чиқиш + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + &Qt ҳақида + + + + Show information about Qt + Qt ҳақидаги маълумотларни кўрсатиш + + + + &Options... + &Мосламалар... + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + Ҳамённи &кодлаш... + + + + &Backup Wallet... + Ҳамённи &заҳиралаш... + + + + &Change Passphrase... + Махфий сўзни &ўзгартириш... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Жўнатилувчи манзиллар... + + + + &Receiving addresses... + &Қабул қилувчи манзиллар... + + + + Open &URI... + Интернет манзилни очиш + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Дискдаги блоклар қайта индексланмоқда... + + + + Send coins to a Raven address + Тангаларни Raven манзилига жўнатиш + + + + Backup wallet to another location + Ҳамённи бошқа манзилга заҳиралаш + + + + Change the passphrase used for wallet encryption + Паролни ўзгартириш ҳамённи кодлашда фойдаланилади + + + + Open debugging and diagnostic console + Носозликни ҳал қилиш ва ташхис терминали + + + + &Verify message... + Хабарни &тасдиқлаш... + + + + Raven + Raven + + + + Wallet + Ҳамён + + + + &Send + &Жўнатиш + + + + &Receive + &Қабул қилиш + + + + &Show / Hide + &Кўрсатиш / Яшириш + + + + Show or hide the main Window + Асосий ойнани кўрсатиш ёки яшириш + + + + Encrypt the private keys that belong to your wallet + Ҳамёнингизга тегишли махфий калитларни кодлаш + + + + Sign messages with your Raven addresses to prove you own them + Raven манзилидан унинг эгаси эканлигингизни исботлаш учун хабарлар ёзинг + + + + Verify messages to ensure they were signed with specified Raven addresses + Хабарларни махсус Raven манзилларингиз билан ёзилганлигига ишонч ҳосил қилиш учун уларни тасдиқланг + + + + &File + &Файл + + + + &Help + &Ёрдам + + + + Request payments (generates QR codes and raven: URIs) + Тўловлар (QR кодлари ва raven ёрдамида яратишлар: URI’лар) сўраш + + + + Show the list of used sending addresses and labels + Фойдаланилган жўнатилган манзиллар ва ёрлиқлар рўйхатини кўрсатиш + + + + Show the list of used receiving addresses and labels + Фойдаланилган қабул қилинган манзиллар ва ёрлиқлар рўйхатини кўрсатиш + + + + Open a raven: URI or payment request + Raven’ни очиш: URI ёки тўлов сўрови + + + + &Command-line options + &Буйруқлар сатри мосламалари + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 орқада + + + + Last received block was generated %1 ago. + Сўнги қабул қилинган блок %1 олдин яратилган. + + + + Transactions after this will not yet be visible. + Бундан кейинги пул ўтказмалари кўринмайдиган бўлади. + + + + Error + Хатолик + + + + Warning + Диққат + + + + Information + Маълумот + + + + Up to date + Янгиланган + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Банд қилинмоқда... + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + Жўнатилган операция + + + + Incoming transaction + Кирувчи операция + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Ҳамён <b>кодланган</b> ва вақтинча <b>қулфдан чиқарилган</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Ҳамён <b>кодланган</b> ва вақтинча <b>қулфланган</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + &Миқдор: + + + + &Label: + &Ёрлиқ: + + + + &Message: + &Хабар: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + Олдинги фойдаланилган қабул қилинган манзиллардан биридан қайта фойдаланилсин. Хавсизлик ва махфийлик муаммолар мавжуд манзиллардан қайта фойдаланилмоқда. Бундан тўлов сўров қайта яратилмагунича фойдаланманг. + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + Янги қабул қилинаётган манзил билан боғланган танланадиган ёрлиқ. + + + + Use this form to request payments. All fields are <b>optional</b>. + Ушбу сўровдан тўловларни сўраш учун фойдаланинг. Барча майдонлар <b>мажбурий эмас</b>. + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + Хоҳланган миқдор сўрови. Кўрсатилган миқдорни сўраш учун буни бўш ёки ноль қолдиринг. + + + + Clear all fields of the form. + Шаклнинг барча майдончаларини тозалаш + + + + Clear + Тозалаш + + + + Requested payments history + Сўралган тўлов тарихи + + + + &Request payment + Тўловни &сўраш + + + + Show the selected request (does the same as double clicking an entry) + Танланган сўровни кўрсатиш (икки марта босилганда ҳам бир хил амал бажарилсин) + + + + Show + Кўрсатиш + + + + Remove the selected entries from the list + Танланганларни рўйхатдан ўчириш + + + + Remove + Ўчириш + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Коди + + + + Copy &URI + + + + + Copy &Address + Нусҳалаш & Манзил + + + + &Save Image... + Расмни &сақлаш + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Тангаларни жунат + + + + Coin Control Features + Танга бошқаруви ҳусусиятлари + + + + Inputs... + + + + + automatically selected + автоматик тарзда танланган + + + + Insufficient funds! + Кам миқдор + + + + Quantity: + Сони: + + + + Bytes: + Байт: + + + + Amount: + Миқдори: + + + + Fee: + Солиқ: + + + + After Fee: + Солиқдан сўнг: + + + + Change: + Ўзгартириш: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + Агар бу фаоллаштирилса, аммо ўзгартирилган манзил бўл ёки нотўғри бўлса, ўзгариш янги яратилган манзилга жўнатилади. + + + + Custom change address + Бошқа ўзгартирилган манзил + + + + Transaction Fee: + Ўтказма тўлови + + + + Choose... + Танлов + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + Хар килобайтига + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + Тавсия этилган + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Бирданига бир нечта қабул қилувчиларга жўнатиш + + + + Add &Recipient + + + + + Clear all fields of the form. + Шаклнинг барча майдончаларини тозалаш + + + + Dust: + Ахлат қутиси: + + + + Confirmation time target: + + + + + Clear &All + Барчасини & Тозалаш + + + + Balance: + Баланс + + + + Confirm the send action + Жўнатиш амалини тасдиқлаш + + + + S&end + Жў&натиш + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + &Миқдори: + + + + &Label: + &Ёрлиқ: + + + + Choose previously used address + Олдин фойдаланилган манзилни танла + + + + This is a normal payment. + Бу нормал тўлов. + + + + The Raven address to send the payment to + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Клипбоарддан манзилни қўйиш + + + + Alt+P + Alt+P + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + Хабар + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + Олдин фойдаланилган манзилни танла + + + + + Alt+A + Alt+A + + + + Paste address from clipboard + Клипбоарддан манзилни қўйиш + + + + Alt+P + Alt+P + + + + Enter the message you want to sign here + + + + + Signature + Имзо + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + Барчасини & Тозалаш + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + [testnet] + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + Ушбу ойна операциянинг батафсил таърифини кўрсатади + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Танламалар: + + + + Specify data directory + Маълумотлар директориясини кўрсатинг + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + Буйруқлар сатри ва JSON-RPC буйруқларига рози бўлинг + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + Демон сифатида орқа фонда ишга туширинг ва буйруқларга рози бўлинг + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + Уланиш кўрсаткичлари: + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + - Show the list of used sending addresses and labels - Фойдаланилган жўнатилган манзиллар ва ёрлиқлар рўйхатини кўрсатиш + + Specify wallet file (within data directory) + - Show the list of used receiving addresses and labels - Фойдаланилган қабул қилинган манзиллар ва ёрлиқлар рўйхатини кўрсатиш + + The source code is available from %s. + - Open a raven: URI or payment request - Raven’ни очиш: URI ёки тўлов сўрови + + Transaction fee and change calculation failed + - &Command-line options - &Буйруқлар сатри мосламалари + + Unable to bind to %s on this computer. %s is probably already running. + - - %n active connection(s) to Raven network - %n та Raven тармоғига фаол уланиш мавжуд + + + Unsupported argument -benchmark ignored, use -debug=bench. + - %1 behind - %1 орқада + + Unsupported argument -debugnet ignored, use -debug=net. + - Last received block was generated %1 ago. - Сўнги қабул қилинган блок %1 олдин яратилган. + + Unsupported argument -tor found, use -onion. + - Transactions after this will not yet be visible. - Бундан кейинги пул ўтказмалари кўринмайдиган бўлади. + + Unsupported logging category %s=%s. + - Error - Хатолик + + Upgrading UTXO database + - Warning - Диққат + + Use UPnP to map the listening port (default: %u) + - Information - Маълумот + + Use the test chain + - Up to date - Янгиланган + + User Agent comment (%s) contains unsafe characters. + - Catching up... - Банд қилинмоқда... + + Verifying blocks... + - Sent transaction - Жўнатилган операция + + Wallet %s resides outside data directory %s + - Incoming transaction - Кирувчи операция + + Wallet debugging/testing options: + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Ҳамён <b>кодланган</b> ва вақтинча <b>қулфдан чиқарилган</b> + + Wallet needed to be rewritten: restart %s to complete + - Wallet is <b>encrypted</b> and currently <b>locked</b> - Ҳамён <b>кодланган</b> ва вақтинча <b>қулфланган</b> + + Wallet options: + - - - CoinControlDialog - Quantity: - Сони: + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - Bytes: - Байт: + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Amount: - Миқдори: + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - Fee: - Солиқ: + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Dust: - Ахлат қутиси: + + Error: Listening for incoming connections failed (listen returned error %s) + - After Fee: - Солиқдан сўнг: + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - Change: - Ўзгартириш: + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - (un)select all - барчасини танаш (бекор қилиш) + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Tree mode - Дарахт усулида + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - List mode - Рўйхат усулида + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Amount - Миқдори + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - Date - Сана + + The transaction amount is too small to send after the fee has been deducted + - Confirmations - Тасдиқлашлар + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - Confirmed - Тасдиқланди + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - - - EditAddressDialog - Edit Address - Манзилларни таҳрирлаш + + (default: %u) + - &Label - &Ёрлик + + Accept public REST requests (default: %u) + - The label associated with this address list entry - Ёрлиқ ушбу манзилар рўйхати ёзуви билан боғланган + + Automatically create Tor hidden service (default: %d) + - The address associated with this address list entry. This can only be modified for sending addresses. - Манзил ушбу манзиллар рўйхати ёзуви билан боғланган. Уни фақат жўнатиладиган манзиллар учун ўзгартирса бўлади. + + Connect through SOCKS5 proxy + - &Address - &Манзил + + Error loading %s: You can't disable HD on an already existing HD wallet + - - - FreespaceChecker - A new data directory will be created. - Янги маълумотлар директорияси яратилади. + + Error reading from database, shutting down. + - name - номи + + Error upgrading chainstate database + - Directory already exists. Add %1 if you intend to create a new directory here. - Директория аллақачон мавжуд. Агар бу ерда янги директория яратмоқчи бўлсангиз, %1 қўшинг. + + Imports blocks from external blk000??.dat file on startup + - Path already exists, and is not a directory. - Йўл аллақачон мавжуд. У директория эмас. + + Information + Маълумот - Cannot create data directory here. - Маълумотлар директориясини бу ерда яратиб бўлмайди.. + + Invalid -onion address or hostname: '%s' + - - - HelpMessageDialog - version - версияси + + Invalid -proxy address or hostname: '%s' + - (%1-bit) - (%1-bit) + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - Command-line options - Буйруқлар сатри мосламалари + + Invalid netmask specified in -whitelist: '%s' + - Usage: - Фойдаланиш: + + Keep at most <n> unconnectable transactions in memory (default: %u) + - command-line options - буйруқлар қатори орқали мослаш + + Need to specify a port with -whitebind: '%s' + - - - Intro - Welcome - Хуш келибсиз + + Node relay options: + - Use the default data directory - Стандарт маълумотлар директориясидан фойдаланиш + + RPC server options: + - Use a custom data directory: - Бошқа маълумотлар директориясида фойдаланинг: + + Reducing -maxconnections from %d to %d, because of system limitations. + - Error: Specified data directory "%1" cannot be created. - Хато: кўрсатилган "%1" маълумотлар директориясини яратиб бўлмайди. + + Rescan the block chain for missing wallet transactions on startup + - Error - Хатолик + + Send trace/debug info to console instead of debug.log file + - - - ModalOverlay - Form - Шакл + + Show all debugging options (usage: --help -help-debug) + - Last block time - Сўнгги блок вақти + + Shrink debug.log file on client startup (default: 1 when no -debug) + - - - OpenURIDialog - Open URI - URI ни очиш + + Signing transaction failed + - Open payment request from URI or file - URL файлдан тўлов сўровларини очиш + + The transaction amount is too small to pay the fee + - URI: - URI: + + This is experimental software. + - Select payment request file - Тўлов сўрови файлини танлаш + + Tor control port password (default: empty) + - - - OptionsDialog - Options - Танламалар + + Tor control port to use if onion listening enabled (default: %s) + - &Main - &Асосий + + Transaction amount too small + - Size of &database cache - &Маълумотлар базаси кеши + + Transaction too large for fee policy + - MB - МБ + + Transaction too large + - Number of script &verification threads - Мавзуларни &тўғрилаш скрипти миқдори + + Unable to bind to %s on this computer (bind returned error %s) + - Accept connections from outside - Ташқаридан уланишларга рози бўлиш + + Upgrade wallet to latest format on startup + - Allow incoming connections - Кирувчи уланишларга рухсат бериш + + Username for JSON-RPC connections + JSON-RPC уланишлари учун фойдаланувчи номи - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Прокси IP манзили (масалан: IPv4: 127.0.0.1 / IPv6: ::1) + + Valid Verifier + - Third party transaction URLs - Бегона тараф ўтказмалари URL манзиллари + + Variable is not allow in the expression: ' + - &Network - Тармоқ + + Verifier String doesn't exist for asset: + - W&allet - Ҳамён + + Verifier String for asset trasnfer, not found + - Proxy &IP: - Прокси &IP рақами: + + Verifier not found for asset: + - &Port: - &Порт: + + Verifier string can not be empty. To default to true, use "true" + - Port of the proxy (e.g. 9050) - Прокси порти (e.g. 9050) + + Verifier string is empty + - &Window - &Ойна + + Verifier string not found + - Show only a tray icon after minimizing the window. - Ойна йиғилгандан сўнг фақат трэй нишончаси кўрсатилсин. + + Verifying wallet(s)... + - &Minimize to the tray instead of the taskbar - Манзиллар панели ўрнига трэйни &йиғиш + + Warning + Диққат - M&inimize on close - Ёпишда й&иғиш + + Warning: unknown new rules activated (versionbit %i) + - &Display - &Кўрсатиш + + Whether to operate in a blocks only mode (default: %u) + - User Interface &language: - Фойдаланувчи интерфейси &тили: + + You need to rebuild the database using -reindex to change -txindex + - &Unit to show amounts in: - Миқдорларни кўрсатиш учун &қисм: + + Zapping all transactions from wallet... + - &OK - &OK + + ZeroMQ notification options: + - &Cancel - &Бекор қилиш + + Password for JSON-RPC connections + JSON-RPC уланишлари учун парол - default - стандарт + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - none - йўқ + + Allow DNS lookups for -addnode, -seednode and -connect + - Confirm options reset - Тасдиқлаш танловларини рад қилиш + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - Client restart required to activate changes. - Ўзгаришлар амалга ошиши учун мижозни қайта ишга тушириш талаб қилинади. + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - This change would require a client restart. - Ушбу ўзгариш мижозни қайтадан ишга туширишни талаб қилади. + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - The supplied proxy address is invalid. - Келтирилган прокси манзили ишламайди. + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - - - OverviewPage - Form - Шакл + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - Кўрсатилган маълумот эскирган бўлиши мумкин. Ҳамёнингиз алоқа ўрнатилгандан сўнг Raven тармоқ билан автоматик тарзда синхронланади, аммо жараён ҳалигача тугалланмади. + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - Watch-only: - Фақат кўришга + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - Available: - Мавжуд: + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - Your current spendable balance - Жорий сарфланадиган балансингиз + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - Pending: - Кутилмоқда: + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - Жами ўтказмалар ҳозиргача тасдиқланган ва сафланадиган баланс томонга ҳали ҳам ҳисобланмади + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - Immature: - Тайёр эмас: + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Mined balance that has not yet matured - Миналаштирилган баланс ҳалигача тайёр эмас + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Balances - Баланслар + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - Total: - Жами: + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Your current total balance - Жорий умумий балансингиз + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Your current balance in watch-only addresses - Жорий балансингиз фақат кўринадиган манзилларда + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - Spendable: - Сарфланадиган: + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Recent transactions - Сўнгги пул ўтказмалари + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Unconfirmed transactions to watch-only addresses - Тасдиқланмаган ўтказмалар-фақат манзилларини кўриш + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - Current total balance in watch-only addresses - Жорий умумий баланс фақат кўринадиган манзилларда + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - - - PaymentServer - - - PeerTableModel - User Agent - Фойдаланувчи вакил + + Output debugging information (default: %u, supplying <category> is optional) + - - - QObject - Amount - Миқдори + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - Enter a Raven address (e.g. %1) - Raven манзилини киритинг (масалан. %1) + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - %1 m - %1 д + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - %1 s - %1 с + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - None - Йўқ + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - N/A - Тўғри келмайди + + Support filtering of blocks and transaction with bloom filters (default: %u) + - %1 ms - %1 мс + + The default height that is required before rewards are allowed to be sent out + - %1 and %2 - %1 ва %2 + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - N/A - Тўғри келмайди + + This address doesn't contain the correct tags to pass the verifier string check: + - Client version - Мижоз номи + + This is the transaction fee you may pay when fee estimates are not available. + - &Information - &Маълумот + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Debug window - Тузатиш ойнаси + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - General - Асосий + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Using BerkeleyDB version - Фойдаланилаётган BerkeleyDB версияси + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + - Startup time - Бошланиш вақти + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + - Network - Тармоқ + + Unable to reissue asset: unit must be larger than current unit selection + - Name - Ном + + Unable to transfer restricted asset, this restricted asset has been globally frozen + - &Peers - &Уламлар + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + - Select a peer to view detailed information. - Батафсил маълумотларни кўриш учун уламни танланг. + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - Direction - Йўналиш + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - Version - Версия + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - User Agent - Фойдаланувчи вакил + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - Services - Хизматлар + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - Ban Score - Тезликни бан қилиш + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - Connection Time - Уланиш вақти + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - Last Send - Сўнгги жўнатилган + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - Last Receive - Сўнгги қабул қилинган + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - Ping Time - Ping вақти + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Last block time - Сўнгги блок вақти + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - &Open - &Очиш + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - &Console - &Терминал + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - &Network Traffic - &Тармоқ трафиги + + %s is set very high! + - &Clear - &Тозалаш + + ' doesn't exist in the database + - Totals - Жами + + ' has already been used + - In: - Ичига: + + ' is not a valid character in the expression: + - Out: - Ташқарига: + + ' the amount trying to reissue is to large + - Debug log file - Тузатиш журнали файли + + (default: %s) + - Clear console - Терминални тозалаш + + A space separated list of 12-words used to import a bip44 wallet + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Тарихни кўриш учун тепага ва пастга кўрсаткичларидан фойдаланинг, экранни тозалаш учун <b>Ctrl-L</b> тугмалар бирикмасидан фойдаланинг. + + Always query for peer addresses via DNS lookup (default: %u) + - Type <b>help</b> for an overview of available commands. - Мавжуд буйруқларни кўриш учун <b>help</b> деб ёзинг. + + Asset Transfer amounts must be greater than 0 + - %1 B - %1 Б + + Asset doesn't exist: + - %1 KB - %1 КБ + + Asset must be a qualifier, sub qualifier, or a restricted asset + - %1 MB - %1 МБ + + Asset name is not valid + - %1 GB - %1 ГБ + + Asset with this name is already in the mempool + - via %1 - %1 орқали + + Done Loading + - never - ҳеч қачон + + Enable publish raw asset messages in <address> + - Inbound - Ички йўналиш + + Error creating %s: You can't create non-HD wallets with this version. + - Outbound - Ташқи йўналиш + + Error loading wallet %s. -wallet filename must be a regular file. + - Yes - Ҳа + + Error loading wallet %s. Duplicate -wallet filename specified. + - No - Йўқ + + Error loading wallet %s. Invalid characters in -wallet filename. + - Unknown - Номаълум + + Error not set + - - - ReceiveCoinsDialog - &Amount: - &Миқдор: + + Error writing bip 39 passphrase to database + - &Label: - &Ёрлиқ: + + Error writing bip 39 vchseed to database + - &Message: - &Хабар: + + Error writing bip 39 words to database + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - Олдинги фойдаланилган қабул қилинган манзиллардан биридан қайта фойдаланилсин. Хавсизлик ва махфийлик муаммолар мавжуд манзиллардан қайта фойдаланилмоқда. Бундан тўлов сўров қайта яратилмагунича фойдаланманг. + + Every '(' must have a corresponding ')' in the expression: + - An optional label to associate with the new receiving address. - Янги қабул қилинаётган манзил билан боғланган танланадиган ёрлиқ. + + Failed to extract destination from change script + - Use this form to request payments. All fields are <b>optional</b>. - Ушбу сўровдан тўловларни сўраш учун фойдаланинг. Барча майдонлар <b>мажбурий эмас</b>. + + Failed to find restricted asset change address from inputs + - An optional amount to request. Leave this empty or zero to not request a specific amount. - Хоҳланган миқдор сўрови. Кўрсатилган миқдорни сўраш учун буни бўш ёки ноль қолдиринг. + + Failed to get asset data from script + - Clear all fields of the form. - Шаклнинг барча майдончаларини тозалаш + + Failed to get verifier string from output: + - Clear - Тозалаш + + Failed to load Assets Database + - Requested payments history - Сўралган тўлов тарихи + + Flag must be 1 or 0 + - &Request payment - Тўловни &сўраш + + How many blocks to check at startup (default: %u, 0 = all) + - Show the selected request (does the same as double clicking an entry) - Танланган сўровни кўрсатиш (икки марта босилганда ҳам бир хил амал бажарилсин) + + Include IP addresses in debug output (default: %u) + - Show - Кўрсатиш + + Init Message Channels - Scanning Asset Transactions + - Remove the selected entries from the list - Танланганларни рўйхатдан ўчириш + + Insufficient asset funds + - Remove - Ўчириш + + Invalid Qualifier Name: + - - - ReceiveRequestDialog - QR Code - QR Коди + + Invalid expressions in verifier string: + - Copy &Address - Нусҳалаш & Манзил + + Invalid parameter: amount must be + - &Save Image... - Расмни &сақлаш + + Invalid parameter: amount must be between + - - - RecentRequestsTableModel - - - SendCoinsDialog - Send Coins - Тангаларни жунат + + Invalid parameter: asset amount can't be equal to or less than zero. + - Coin Control Features - Танга бошқаруви ҳусусиятлари + + Invalid parameter: asset amount greater than max money: + - automatically selected - автоматик тарзда танланган + + Invalid parameter: asset_name ' + - Insufficient funds! - Кам миқдор + + Invalid parameter: has_ipfs must be 0 or 1. + - Quantity: - Сони: + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Bytes: - Байт: + + Invalid parameter: reissuable must be 0 or 1 + - Amount: - Миқдори: + + Invalid parameter: reissuable must be 0 + - Fee: - Солиқ: + + Invalid parameter: units must be + - After Fee: - Солиқдан сўнг: + + Invalid parameter: units must be between 0-8. + - Change: - Ўзгартириш: + + Invalid syntax: + - If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. - Агар бу фаоллаштирилса, аммо ўзгартирилган манзил бўл ёки нотўғри бўлса, ўзгариш янги яратилган манзилга жўнатилади. + + Keypool ran out, please call keypoolrefill first + - Custom change address - Бошқа ўзгартирилган манзил + + Length is to large. Please use a smaller length + - Transaction Fee: - Ўтказма тўлови + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Choose... - Танлов + + Listen for connections on <port> (default: %u or testnet: %u) + - per kilobyte - Хар килобайтига + + Maintain at most <n> connections to peers (default: %u) + - Recommended: - Тавсия этилган + + Make the wallet broadcast transactions + - normal - Нормал + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - fast - Тезкор + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - Send to multiple recipients at once - Бирданига бир нечта қабул қилувчиларга жўнатиш + + Mempool cleared + - Clear all fields of the form. - Шаклнинг барча майдончаларини тозалаш + + Multiple verifier strings found in transaction + - Dust: - Ахлат қутиси: + + Passphrase securing your 12-word mnemonic word-list + - Clear &All - Барчасини & Тозалаш + + Prepend debug output with timestamp (default: %u) + - Balance: - Баланс + + Relay and mine data carrier transactions (default: %u) + - Confirm the send action - Жўнатиш амалини тасдиқлаш + + Relay non-P2SH multisig (default: %u) + - S&end - Жў&натиш + + Restricted asset transfer from address that has been frozen + - - - SendCoinsEntry - A&mount: - &Миқдори: + + Send transactions with full-RBF opt-in enabled (default: %u) + - Pay &To: - &Тўлов олувчи: + + Set key pool size to <n> (default: %u) + - &Label: - &Ёрлиқ: + + Set maximum BIP141 block weight (default: %d) + - Choose previously used address - Олдин фойдаланилган манзилни танла + + Set the Maximum reorg depth (default: %u) + - This is a normal payment. - Бу нормал тўлов. + + Set the number of threads to service RPC calls (default: %d) + - Alt+A - Alt+A + + Signing asset transaction failed + - Paste address from clipboard - Клипбоарддан манзилни қўйиш + + Specify configuration file (default: %s) + - Alt+P - Alt+P + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Message: - Хабар + + Specify pid file (default: %s) + - Pay To: - Тўлов олувчи: + + Spend unconfirmed change when sending transactions (default: %u) + - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - Choose previously used address - Олдин фойдаланилган манзилни танла + + Starting network threads... + - Alt+A - Alt+A + + The symbol: ' + - Paste address from clipboard - Клипбоарддан манзилни қўйиш + + The verifier string has two operators without a tag between them + - Alt+P - Alt+P + + The wallet will avoid paying less than the minimum relay fee. + - Signature - Имзо + + This is the minimum transaction fee you pay on every transaction. + - Clear &All - Барчасини & Тозалаш + + This is the transaction fee you will pay if you send a transaction. + - - - SplashScreen - [testnet] - [testnet] + + Threshold for disconnecting misbehaving peers (default: %u) + - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - This pane shows a detailed description of the transaction - Ушбу ойна операциянинг батафсил таърифини кўрсатади + + Transaction amounts must not be negative + - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Options: - Танламалар: + + Transaction has too long of a mempool chain + - Specify data directory - Маълумотлар директориясини кўрсатинг + + Transaction must have at least one recipient + - Accept command line and JSON-RPC commands - Буйруқлар сатри ва JSON-RPC буйруқларига рози бўлинг + + Turn off the databasing the messages sent with assets (default: %u) + - Run in the background as a daemon and accept commands - Демон сифатида орқа фонда ишга туширинг ва буйруқларга рози бўлинг + + Unable to generate initial keys + - Raven Core - Raven Core + + Unable to get coin to verify restricted asset transfer from address + - Connection options: - Уланиш кўрсаткичлари: + + Unable to reissue asset: amount must be 0 or larger + - Information - Маълумот + + Unable to reissue asset: asset_name ' + - Username for JSON-RPC connections - JSON-RPC уланишлари учун фойдаланувчи номи + + Unable to reissue asset: reissuable is set to false + - Warning - Диққат + + Unable to reissue asset: reissuable must be 0 or 1 + - Password for JSON-RPC connections - JSON-RPC уланишлари учун парол + + Unable to reissue asset: unit must be between 8 and -1 + - Loading addresses... - Манзиллар юкланмоқда... + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Кам миқдор + Loading block index... Тўсиқ индекси юкланмоқда... + Loading wallet... Ҳамён юкланмоқда... - Rescanning... - Қайта текшириб чиқилмоқда... + + Cannot downgrade wallet + - Done loading - Юклаш тайёр + + Rescanning... + Қайта текшириб чиқилмоқда... + Error Хатолик diff --git a/src/qt/locale/raven_vi.ts b/src/qt/locale/raven_vi.ts index 156049a2d4..e9e95910e1 100644 --- a/src/qt/locale/raven_vi.ts +++ b/src/qt/locale/raven_vi.ts @@ -1,169 +1,8288 @@ - - - + AddressBookPage + + Right-click to edit address or label + + + + Create a new address Tạo một địa chỉ mới + &New Tạo mới + Copy the currently selected address to the system clipboard Sao chép các địa chỉ đã được chọn vào bộ nhớ tạm thời của hệ thống + &Copy Sao chép + + C&lose + + + + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + + &Export + + + + &Delete &Xóa - + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog - - - BanTableModel - - - RavenGUI - + + + Passphrase Dialog + + + + + Enter passphrase + + + + + New passphrase + + + + + Repeat new passphrase + + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - CoinControlDialog + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + Amount: - Số lượng: + - Amount - Số lượng + + Dust: + - - - EditAddressDialog - &Label - Nhãn dữ liệu + + Fee: + - &Address - Địa chỉ + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + Amount - Số lượng + - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Copy &Address - Sao chép địa chỉ + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + - + - RecentRequestsTableModel - + AssetTableModel + + + Name + + + + + Quantity + + + - SendCoinsDialog + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + Amount: - Số lượng: + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + - WalletModel - + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + - WalletView - + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + - raven-core - + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Số lượng: + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + Số lượng + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + Nhãn dữ liệu + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Địa chỉ + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Số lượng + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + + + + + Warning + + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + Sao chép địa chỉ + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + Số lượng: + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + + + + Error + + + \ No newline at end of file diff --git a/src/qt/locale/raven_vi_VN.ts b/src/qt/locale/raven_vi_VN.ts index ea14fcdd78..2cfcc0bd20 100644 --- a/src/qt/locale/raven_vi_VN.ts +++ b/src/qt/locale/raven_vi_VN.ts @@ -1,1081 +1,8291 @@ - - - + AddressBookPage + Right-click to edit address or label Nhấn chuột phải để sửa địa chỉ hoặc nhãn + Create a new address Tạo một địa chỉ mới + &New &Mới + Copy the currently selected address to the system clipboard Copy địa chỉ được chọn vào clipboard + &Copy &Copy + C&lose Đó&ng + Delete the currently selected address from the list Xóa địa chỉ hiện tại từ danh sách + Export the data in the current tab to a file Xuất dữ liệu trong mục hiện tại ra file + &Export X&uất + &Delete &Xó&a + Choose the address to send coins to Chọn địa chỉ để gửi coin đến + Choose the address to receive coins with Chọn địa chỉ để nhận coin + C&hoose Chọn + Sending addresses Địa chỉ gửi đến + Receiving addresses Địa chỉ nhận - + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog - Passphrase Dialog - Hội thoại Passphrase + + Passphrase Dialog + Hội thoại Passphrase + + + + Enter passphrase + Điền passphrase + + + + New passphrase + Passphrase mới + + + + Repeat new passphrase + Điền lại passphrase + + + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + + Encrypt wallet + + + + + This operation needs your wallet passphrase to unlock the wallet. + + + + + Unlock wallet + + + + + This operation needs your wallet passphrase to decrypt the wallet. + + + + + Decrypt wallet + + + + + Change passphrase + + + + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + + + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + + + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/Netmask + + + + Banned Until + Bị cấm đến + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + Lượng: + + + + Bytes: + Bytes: + + + + Amount: + Lượng: + + + + Fee: + Phí: + + + + Dust: + + + + + After Fee: + Sau thuế, phí: + + + + Change: + Thay đổi: + + + + (un)select all + (bỏ)chọn tất cả + + + + Tree mode + Chế độ cây + + + + List mode + Chế độ danh sách + + + + Amount + Lượng + + + + Received with label + + + + + Received with address + + + + + Date + Ngày tháng + + + + Confirmations + Lần xác nhận + + + + Confirmed + Đã xác nhận + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + Thay đổi địa chỉ + + + + &Label + Nhãn + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + Địa chỉ + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + tên + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + version + + + + + (%1-bit) + (%1-bit) + + + + About %1 + + + + + Command-line options + &Tùy chọn dòng lệnh + + + + Usage: + Mức sử dụng + + + + command-line options + tùy chọn dòng lệnh + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + Chọn ngôn ngữ, ví dụ "de_DE" (mặc định: Vị trí hệ thống) + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + Đặt chứng nhận SSL gốc cho yêu cầu giao dịch (mặc định: -hệ thống-) + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + Chào mừng + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + Sử dụng vị trí dữ liệu mặc định + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + Lỗi + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + Form + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + Ẩn + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + Mở URI + + + + Open payment request from URI or file + + + + + URI: + URI: + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + Lựa chọn + + + + &Main + &Chính + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + MB + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + Địa chỉ IP của proxy (ví dụ IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + Kết nối đến máy chủ Raven thông qua SOCKS5 proxy. + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + Proxy &IP: + + + + + &Port: + &Cổng: + + + + + Port of the proxy (e.g. 9050) + Cổng proxy (e.g. 9050) + + + + Used for reaching peers via: + + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + &Hiển thị + + + + User Interface &language: + Giao diện người dùng & ngôn ngữ + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + &OK + + + + &Cancel + &Từ chối + + + + default + mặc định + + + + none + Trống + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + Form + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + Khả dụng + + + + Your current spendable balance + + + + + Pending: + Đang chờ + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + Tổng: + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + User Agent + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + Lượng + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 và %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + $Lưu hình ảnh... + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + Thông tin + + + + Debug window + + + + + General + Nhìn Chung + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + Tên + + + + Number of connections + + + + + Block chain + Block chain + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + Đã gửi + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + User Agent + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + 1&giờ + + + + 1 &day + 1&ngày + + + + 1 &week + 1&tuần + + + + 1 &year + 1&năm + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + Gõ <b>help</b> để xem nhưng câu lệnh có sẵn + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + không bao giờ + + + + Inbound + + + + + Outbound + + + + + Yes + Đồng ý + + + + No + Không + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + Chứ ký & Tin nhắn... + + + + Synchronizing with network... + Đồng bộ hóa với mạng + + + + &Overview + &Tổng quan + + + + Node + Node + + + + Show general overview of wallet + Hiện thỉ thông tin sơ lược chung về Ví + + + + &Transactions + &Giao dịch + + + + Browse transaction history + Duyệt tìm lịch sử giao dịch + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + T&hoát + + + + Quit application + Thoát chương trình + + + + &About %1 + &Thông tin về %1 + + + + Show information about %1 + Hiện thông tin về %1 + + + + About &Qt + Về &Qt + + + + Show information about Qt + Xem thông tin về Qt + + + + &Options... + &Tùy chọn... + + + + Modify configuration options for %1 + Chỉnh sửa thiết đặt tùy chọn cho %1 + + + + &Encrypt Wallet... + &Mã hóa ví tiền + + + + &Backup Wallet... + &Sao lưu ví tiền... + + + + &Change Passphrase... + &Thay đổi mật khẩu... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + &Địa chỉ gửi + + + + &Receiving addresses... + Địa chỉ nhận + + + + Open &URI... + Mở &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + Đánh chỉ số (indexing) lại các khối (blocks) trên ổ đĩa ... + + + + Send coins to a Raven address + Gửi coins đến tài khoản Raven + + + + Backup wallet to another location + Sao lưu ví tiền ở vị trí khác + + + + Change the passphrase used for wallet encryption + Thay đổi cụm mật mã dùng cho mã hoá Ví + + + + Open debugging and diagnostic console + + + + + &Verify message... + &Tin nhắn xác thực + + + + Raven + Raven + + + + Wallet + + + + + &Send + &Gửi + + + + &Receive + &Nhận + + + + &Show / Hide + Ẩn / H&iện + + + + Show or hide the main Window + Hiện hoặc ẩn cửa sổ chính + + + + Encrypt the private keys that belong to your wallet + Mã hoá các khoá bí mật trong Ví của bạn. + + + + Sign messages with your Raven addresses to prove you own them + Dùng địa chỉ Raven của bạn ký các tin nhắn để xác minh những nội dung tin nhắn đó là của bạn. + + + + Verify messages to ensure they were signed with specified Raven addresses + Kiểm tra các tin nhắn để chắc chắn rằng chúng được ký bằng các địa chỉ Raven xác định. + + + + &File + &File + + + + &Help + Trợ &giúp + + + + Request payments (generates QR codes and raven: URIs) + Yêu cầu thanh toán(tạo mã QR và địa chỉ Raven: URLs) + + + + Show the list of used sending addresses and labels + Hiện thỉ danh sách các địa chỉ và nhãn đã dùng để gửi. + + + + Show the list of used receiving addresses and labels + Hiện thỉ danh sách các địa chỉ và nhãn đã dùng để nhận. + + + + Open a raven: URI or payment request + Mở raven:URL hoặc yêu cầu thanh toán + + + + &Command-line options + 7Tùy chọn dòng lệnh + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + %1 chậm trễ + + + + Last received block was generated %1 ago. + Khối (block) cuối cùng nhận được cách đây %1 + + + + Transactions after this will not yet be visible. + Những giao dịch sau đó sẽ không hiện thị. + + + + Error + Lỗi + + + + Warning + Chú ý + + + + Information + Thông tin + + + + Up to date + Đã cập nhật + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + Bắt kịp... + + + + Date: %1 + + Ngày: %1 + + + + + + Amount: %1 + + Số lượng: %1 + + + + + Type: %1 + + Loại: %1 + + + + + Label: %1 + + Nhãn hiệu: %1 + + + + + Address: %1 + + Địa chỉ: %1 + + + + + Sent transaction + Giao dịch đã gửi + + + + Incoming transaction + Giao dịch đang tới + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + Ví tiền <b> đã được mã hóa</b>và hiện <b>đang mở</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + Ví tiền <b> đã được mã hóa</b>và hiện <b>đang khóa</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + Lượng: + + + + &Label: + &Nhãn + + + + &Message: + &Tin nhắn: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + Sử dụng form này để yêu cầu thanh toán. Tất cả các trường <b>không bắt buộc<b> + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + Xóa tất cả các trường trong biểu mẫu + + + + Clear + Xóa + + + + Requested payments history + Lịch sử yêu cầu thanh toán + + + + &Request payment + &Yêu cầu thanh toán + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + Hiển thị + + + + Remove the selected entries from the list + Xóa khỏi danh sách + + + + Remove + Xóa + + + + Copy URI + + + + + Copy label + + + + + Copy message + Copy tin nhắn + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + Copy &URI + + + + Copy &Address + &Copy Địa Chỉ + + + + &Save Image... + $Lưu hình ảnh... + + + + Request payment to %1 + Yêu cầu thanh toán cho %1 + + + + Payment information + Thông tin thanh toán + + + + URI + URI + + + + Address + + + + + Amount + Lượng + + + + Label + + + + + Message + Tin nhắn + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + Lỗi khi encode từ URI thành QR Code + + + + RecentRequestsTableModel + + + Date + + + + + Label + + + + + Message + Tin nhắn + + + + (no label) + + + + + (no message) + (không tin nhắn) + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + Gửi Coins + + + + Coin Control Features + Tính năng Control Coin + + + + Inputs... + Nhập... + + + + automatically selected + Tự động chọn + + + + Insufficient funds! + Không đủ tiền + + + + Quantity: + Lượng: + + + + Bytes: + Bytes: + + + + Amount: + Lượng: + + + + Fee: + Phí: + + + + After Fee: + Sau thuế, phí: + + + + Change: + Thay đổi: + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + Phí giao dịch + + + + Choose... + Chọn... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + Thu gọn fee-settings + + + + per kilobyte + trên KB + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + Ẩn + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + (Đọc hướng dẫn) + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + Gửi đến nhiều người nhận trong một lần + + + + Add &Recipient + Thêm &Người nhận + + + + Clear all fields of the form. + Xóa tất cả các trường trong biểu mẫu + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + Xóa &Tất cả + + + + Balance: + Tài khoản + + + + Confirm the send action + Xác nhận sự gửi + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + %1 đến %2 + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + Tổng cộng %1 + + + + or + hoặc + + + + Confirm send coins + Xác nhận gửi coins + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + Lượng: + + + + &Label: + &Nhãn + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + Đồng ý + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + Xóa &Tất cả + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + Tin nhắn + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + Lượng + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + Gửi Coins + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + Lựa chọn: + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + Raven Core + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + - Enter passphrase - Điền passphrase + + Upgrading UTXO database + - New passphrase - Passphrase mới + + Use UPnP to map the listening port (default: %u) + - Repeat new passphrase - Điền lại passphrase + + Use the test chain + - - - BanTableModel - IP/Netmask - IP/Netmask + + User Agent comment (%s) contains unsafe characters. + - Banned Until - Bị cấm đến + + Verifying blocks... + - - - RavenGUI - Sign &message... - Chứ ký & Tin nhắn... + + Wallet %s resides outside data directory %s + - Synchronizing with network... - Đồng bộ hóa với mạng + + Wallet debugging/testing options: + - &Overview - &Tổng quan + + Wallet needed to be rewritten: restart %s to complete + - Node - Node + + Wallet options: + - Show general overview of wallet - Hiện thỉ thông tin sơ lược chung về Ví + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + - &Transactions - &Giao dịch + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + - Browse transaction history - Duyệt tìm lịch sử giao dịch + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + - E&xit - T&hoát + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + - Quit application - Thoát chương trình + + Error: Listening for incoming connections failed (listen returned error %s) + - &About %1 - &Thông tin về %1 + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + - Show information about %1 - Hiện thông tin về %1 + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + - About &Qt - Về &Qt + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + - Show information about Qt - Xem thông tin về Qt + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + - &Options... - &Tùy chọn... + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + - Modify configuration options for %1 - Chỉnh sửa thiết đặt tùy chọn cho %1 + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + - &Encrypt Wallet... - &Mã hóa ví tiền + + The transaction amount is too small to send after the fee has been deducted + - &Backup Wallet... - &Sao lưu ví tiền... + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + - &Change Passphrase... - &Thay đổi mật khẩu... + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + - &Sending addresses... - &Địa chỉ gửi + + (default: %u) + (mặc định: %u) - &Receiving addresses... - Địa chỉ nhận + + Accept public REST requests (default: %u) + - Open &URI... - Mở &URI... + + Automatically create Tor hidden service (default: %d) + - Reindexing blocks on disk... - Đánh chỉ số (indexing) lại các khối (blocks) trên ổ đĩa ... + + Connect through SOCKS5 proxy + - Send coins to a Raven address - Gửi coins đến tài khoản Raven + + Error loading %s: You can't disable HD on an already existing HD wallet + - Backup wallet to another location - Sao lưu ví tiền ở vị trí khác + + Error reading from database, shutting down. + - Change the passphrase used for wallet encryption - Thay đổi cụm mật mã dùng cho mã hoá Ví + + Error upgrading chainstate database + - &Debug window - &Cửa sổ xử lý lỗi (debug) + + Imports blocks from external blk000??.dat file on startup + - &Verify message... - &Tin nhắn xác thực + + Information + Thông tin - Raven - Raven + + Invalid -onion address or hostname: '%s' + - Wallet - + + Invalid -proxy address or hostname: '%s' + - &Send - &Gửi + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + - &Receive - &Nhận + + Invalid netmask specified in -whitelist: '%s' + - &Show / Hide - Ẩn / H&iện + + Keep at most <n> unconnectable transactions in memory (default: %u) + - Show or hide the main Window - Hiện hoặc ẩn cửa sổ chính + + Need to specify a port with -whitebind: '%s' + - Encrypt the private keys that belong to your wallet - Mã hoá các khoá bí mật trong Ví của bạn. + + Node relay options: + - Sign messages with your Raven addresses to prove you own them - Dùng địa chỉ Raven của bạn ký các tin nhắn để xác minh những nội dung tin nhắn đó là của bạn. + + RPC server options: + - Verify messages to ensure they were signed with specified Raven addresses - Kiểm tra các tin nhắn để chắc chắn rằng chúng được ký bằng các địa chỉ Raven xác định. + + Reducing -maxconnections from %d to %d, because of system limitations. + - &File - &File + + Rescan the block chain for missing wallet transactions on startup + - &Settings - &Thiết lập + + Send trace/debug info to console instead of debug.log file + - &Help - Trợ &giúp + + Show all debugging options (usage: --help -help-debug) + - Tabs toolbar - Thanh công cụ (toolbar) + + Shrink debug.log file on client startup (default: 1 when no -debug) + - Request payments (generates QR codes and raven: URIs) - Yêu cầu thanh toán(tạo mã QR và địa chỉ Raven: URLs) + + Signing transaction failed + - Show the list of used sending addresses and labels - Hiện thỉ danh sách các địa chỉ và nhãn đã dùng để gửi. + + The transaction amount is too small to pay the fee + - Show the list of used receiving addresses and labels - Hiện thỉ danh sách các địa chỉ và nhãn đã dùng để nhận. + + This is experimental software. + - Open a raven: URI or payment request - Mở raven:URL hoặc yêu cầu thanh toán + + Tor control port password (default: empty) + - &Command-line options - 7Tùy chọn dòng lệnh + + Tor control port to use if onion listening enabled (default: %s) + - %1 behind - %1 chậm trễ + + Transaction amount too small + - Last received block was generated %1 ago. - Khối (block) cuối cùng nhận được cách đây %1 + + Transaction too large for fee policy + - Transactions after this will not yet be visible. - Những giao dịch sau đó sẽ không hiện thị. + + Transaction too large + Giao dịch quá lớn - Error - Lỗi + + Unable to bind to %s on this computer (bind returned error %s) + - Warning - Chú ý + + Upgrade wallet to latest format on startup + - Information - Thông tin + + Username for JSON-RPC connections + - Up to date - Đã cập nhật + + Valid Verifier + - Catching up... - Bắt kịp... + + Variable is not allow in the expression: ' + - Date: %1 - - Ngày: %1 - + + Verifier String doesn't exist for asset: + - Amount: %1 - - Số lượng: %1 - + + Verifier String for asset trasnfer, not found + - Type: %1 - - Loại: %1 - + + Verifier not found for asset: + - Label: %1 - - Nhãn hiệu: %1 - + + Verifier string can not be empty. To default to true, use "true" + - Address: %1 - - Địa chỉ: %1 - + + Verifier string is empty + - Sent transaction - Giao dịch đã gửi + + Verifier string not found + - Incoming transaction - Giao dịch đang tới + + Verifying wallet(s)... + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - Ví tiền <b> đã được mã hóa</b>và hiện <b>đang mở</b> + + Warning + Chú ý - Wallet is <b>encrypted</b> and currently <b>locked</b> - Ví tiền <b> đã được mã hóa</b>và hiện <b>đang khóa</b> + + Warning: unknown new rules activated (versionbit %i) + - - - CoinControlDialog - Quantity: - Lượng: + + Whether to operate in a blocks only mode (default: %u) + - Bytes: - Bytes: + + You need to rebuild the database using -reindex to change -txindex + - Amount: - Lượng: + + Zapping all transactions from wallet... + - Fee: - Phí: + + ZeroMQ notification options: + - After Fee: - Sau thuế, phí: + + Password for JSON-RPC connections + - Change: - Thay đổi: + + Execute command when the best block changes (%s in cmd is replaced by block hash) + - (un)select all - (bỏ)chọn tất cả + + Allow DNS lookups for -addnode, -seednode and -connect + - Tree mode - Chế độ cây + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + - List mode - Chế độ danh sách + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + - Amount - Lượng + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + - Date - Ngày tháng + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + - Confirmations - Lần xác nhận + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + - Confirmed - Đã xác nhận + + Error loading %s: You can't enable HD on an already existing non-HD wallet + - - - EditAddressDialog - Edit Address - Thay đổi địa chỉ + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + - &Label - Nhãn + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + - &Address - Địa chỉ + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + - - - FreespaceChecker - name - tên + + How thorough the block verification of -checkblocks is (0-4, default: %u) + - - - HelpMessageDialog - version - version + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + - (%1-bit) - (%1-bit) + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + - Command-line options - &Tùy chọn dòng lệnh + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + - Usage: - Mức sử dụng + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + - command-line options - tùy chọn dòng lệnh + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + - Set language, for example "de_DE" (default: system locale) - Chọn ngôn ngữ, ví dụ "de_DE" (mặc định: Vị trí hệ thống) + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + - Set SSL root certificates for payment request (default: -system-) - Đặt chứng nhận SSL gốc cho yêu cầu giao dịch (mặc định: -hệ thống-) + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + - - - Intro - Welcome - Chào mừng + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + - Use the default data directory - Sử dụng vị trí dữ liệu mặc định + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + - Error - Lỗi + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + - - - ModalOverlay - Form - Form + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + - Hide - Ẩn + + Output debugging information (default: %u, supplying <category> is optional) + - - - OpenURIDialog - Open URI - Mở URI + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + - URI: - URI: + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + - - - OptionsDialog - Options - Lựa chọn + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + - &Main - &Chính + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + - MB - MB + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + - Accept connections from outside - Chấp nhận các kết nối từ bên ngoài + + Support filtering of blocks and transaction with bloom filters (default: %u) + - Allow incoming connections - Cho phép nhận kết nối + + The default height that is required before rewards are allowed to be sent out + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - Địa chỉ IP của proxy (ví dụ IPv4: 127.0.0.1 / IPv6: ::1) + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + - Third party transaction URLs - Phần mềm giao dịch bên thứ ba URLs + + This address doesn't contain the correct tags to pass the verifier string check: + - W&allet - + + This is the transaction fee you may pay when fee estimates are not available. + - Connect to the Raven network through a SOCKS5 proxy. - Kết nối đến máy chủ Raven thông qua SOCKS5 proxy. + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + - Proxy &IP: - Proxy &IP: + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + - &Port: - &Cổng: + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + - Port of the proxy (e.g. 9050) - Cổng proxy (e.g. 9050) + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + - IPv4 - IPv4 + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + - IPv6 - IPv6 + + Verifier string has length greater than 80 after whitespaces and '#' are removed + - &Display - &Hiển thị + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + - User Interface &language: - Giao diện người dùng & ngôn ngữ + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + - &OK - &OK + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + - &Cancel - &Từ chối + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + - default - mặc định + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + - none - Trống + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + - - - OverviewPage - Form - Form + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + - Available: - Khả dụng + + You need to rebuild the database using -reindex-chainstate to change -addressindex + - Pending: - Đang chờ + + You need to rebuild the database using -reindex-chainstate to change -spentindex + - Total: - Tổng: + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + - - - PaymentServer - - - PeerTableModel - User Agent - User Agent + + %s is set very high! + - - - QObject - Amount - Lượng + + ' doesn't exist in the database + - %1 and %2 - %1 và %2 + + ' has already been used + - - - QObject::QObject - - - QRImageWidget - &Save Image... - $Lưu hình ảnh... + + ' is not a valid character in the expression: + - - - RPCConsole - &Information - Thông tin + + ' the amount trying to reissue is to large + - General - Nhìn Chung + + (default: %s) + (mặc định: %s) - Name - Tên + + A space separated list of 12-words used to import a bip44 wallet + - Block chain - Block chain + + Always query for peer addresses via DNS lookup (default: %u) + - Sent - Đã gửi + + Asset Transfer amounts must be greater than 0 + - User Agent - User Agent + + Asset doesn't exist: + - 1 &hour - 1&giờ + + Asset must be a qualifier, sub qualifier, or a restricted asset + - 1 &day - 1&ngày + + Asset name is not valid + - 1 &week - 1&tuần + + Asset with this name is already in the mempool + - 1 &year - 1&năm + + Done Loading + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - Sử dụng phím lên và xuống để di chuyển lịch sử, và <b>Ctrl-L</b> để xóa màn hình + + Enable publish raw asset messages in <address> + - Type <b>help</b> for an overview of available commands. - Gõ <b>help</b> để xem nhưng câu lệnh có sẵn + + Error creating %s: You can't create non-HD wallets with this version. + - %1 B - %1 B + + Error loading wallet %s. -wallet filename must be a regular file. + - %1 KB - %1 KB + + Error loading wallet %s. Duplicate -wallet filename specified. + - %1 MB - %1 MB + + Error loading wallet %s. Invalid characters in -wallet filename. + - %1 GB - %1 GB + + Error not set + - never - không bao giờ + + Error writing bip 39 passphrase to database + - Yes - Đồng ý + + Error writing bip 39 vchseed to database + - No - Không + + Error writing bip 39 words to database + - - - ReceiveCoinsDialog - &Amount: - Lượng: + + Every '(' must have a corresponding ')' in the expression: + - &Label: - &Nhãn + + Failed to extract destination from change script + - &Message: - &Tin nhắn: + + Failed to find restricted asset change address from inputs + - Use this form to request payments. All fields are <b>optional</b>. - Sử dụng form này để yêu cầu thanh toán. Tất cả các trường <b>không bắt buộc<b> + + Failed to get asset data from script + - Clear all fields of the form. - Xóa tất cả các trường trong biểu mẫu + + Failed to get verifier string from output: + - Clear - Xóa + + Failed to load Assets Database + - Requested payments history - Lịch sử yêu cầu thanh toán + + Flag must be 1 or 0 + - &Request payment - &Yêu cầu thanh toán + + How many blocks to check at startup (default: %u, 0 = all) + - Show - Hiển thị + + Include IP addresses in debug output (default: %u) + - Remove the selected entries from the list - Xóa khỏi danh sách + + Init Message Channels - Scanning Asset Transactions + - Remove - Xóa + + Insufficient asset funds + - Copy message - Copy tin nhắn + + Invalid Qualifier Name: + - - - ReceiveRequestDialog - QR Code - QR Code + + Invalid expressions in verifier string: + - Copy &URI - Copy &URI + + Invalid parameter: amount must be + - Copy &Address - &Copy Địa Chỉ + + Invalid parameter: amount must be between + - &Save Image... - $Lưu hình ảnh... + + Invalid parameter: asset amount can't be equal to or less than zero. + - Request payment to %1 - Yêu cầu thanh toán cho %1 + + Invalid parameter: asset amount greater than max money: + - Payment information - Thông tin thanh toán + + Invalid parameter: asset_name ' + - URI - URI + + Invalid parameter: has_ipfs must be 0 or 1. + - Amount - Lượng + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + - Message - Tin nhắn + + Invalid parameter: reissuable must be 0 or 1 + - Error encoding URI into QR Code. - Lỗi khi encode từ URI thành QR Code + + Invalid parameter: reissuable must be 0 + - - - RecentRequestsTableModel - Message - Tin nhắn + + Invalid parameter: units must be + - (no message) - (không tin nhắn) + + Invalid parameter: units must be between 0-8. + - - - SendCoinsDialog - Send Coins - Gửi Coins + + Invalid syntax: + - Coin Control Features - Tính năng Control Coin + + Keypool ran out, please call keypoolrefill first + - Inputs... - Nhập... + + Length is to large. Please use a smaller length + - automatically selected - Tự động chọn + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + - Insufficient funds! - Không đủ tiền + + Listen for connections on <port> (default: %u or testnet: %u) + - Quantity: - Lượng: + + Maintain at most <n> connections to peers (default: %u) + - Bytes: - Bytes: + + Make the wallet broadcast transactions + - Amount: - Lượng: + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + - Fee: - Phí: + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + - After Fee: - Sau thuế, phí: + + Mempool cleared + - Change: - Thay đổi: + + Multiple verifier strings found in transaction + - Transaction Fee: - Phí giao dịch + + Passphrase securing your 12-word mnemonic word-list + - Choose... - Chọn... + + Prepend debug output with timestamp (default: %u) + - collapse fee-settings - Thu gọn fee-settings + + Relay and mine data carrier transactions (default: %u) + - per kilobyte - trên KB + + Relay non-P2SH multisig (default: %u) + - Hide - Ẩn + + Restricted asset transfer from address that has been frozen + - total at least - Tổng cộng ít nhất + + Send transactions with full-RBF opt-in enabled (default: %u) + - (read the tooltip) - (Đọc hướng dẫn) + + Set key pool size to <n> (default: %u) + - normal - Bình thường + + Set maximum BIP141 block weight (default: %d) + - fast - Nhanh + + Set the Maximum reorg depth (default: %u) + - Send to multiple recipients at once - Gửi đến nhiều người nhận trong một lần + + Set the number of threads to service RPC calls (default: %d) + - Add &Recipient - Thêm &Người nhận + + Signing asset transaction failed + - Clear all fields of the form. - Xóa tất cả các trường trong biểu mẫu + + Specify configuration file (default: %s) + - Clear &All - Xóa &Tất cả + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + - Balance: - Tài khoản + + Specify pid file (default: %s) + - Confirm the send action - Xác nhận sự gửi + + Spend unconfirmed change when sending transactions (default: %u) + - %1 to %2 - %1 đến %2 + + Starting network threads... + - Total Amount %1 - Tổng cộng %1 + + The symbol: ' + - or - hoặc + + The verifier string has two operators without a tag between them + - Confirm send coins - Xác nhận gửi coins + + The wallet will avoid paying less than the minimum relay fee. + - - - SendCoinsEntry - A&mount: - Lượng: + + This is the minimum transaction fee you pay on every transaction. + - &Label: - &Nhãn + + This is the transaction fee you will pay if you send a transaction. + - - - SendConfirmationDialog - Yes - Đồng ý + + Threshold for disconnecting misbehaving peers (default: %u) + - - - ShutdownWindow - - - SignVerifyMessageDialog - Clear &All - Xóa &Tất cả + + Transaction amounts must not be negative + - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Message - Tin nhắn + + Transaction has too long of a mempool chain + - Amount - Lượng + + Transaction must have at least one recipient + - - - TransactionDescDialog - - - TransactionTableModel - - - TransactionView - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - Send Coins - Gửi Coins + + Turn off the databasing the messages sent with assets (default: %u) + - - - WalletView - - - raven-core - Options: - Lựa chọn: + + Unable to generate initial keys + - Raven Core - Raven Core + + Unable to get coin to verify restricted asset transfer from address + - (default: %u) - (mặc định: %u) + + Unable to reissue asset: amount must be 0 or larger + - Information - Thông tin + + Unable to reissue asset: asset_name ' + - Transaction too large - Giao dịch quá lớn + + Unable to reissue asset: reissuable is set to false + - Warning - Chú ý + + Unable to reissue asset: reissuable must be 0 or 1 + - Loading addresses... - Đang đọc các địa chỉ... + + Unable to reissue asset: unit must be between 8 and -1 + - (default: %s) - (mặc định: %s) + + Unknown network specified in -onlynet: '%s' + + Insufficient funds Không đủ tiền + Loading block index... Đang đọc block index... + Loading wallet... Đang đọc ví... + Cannot downgrade wallet Không downgrade được ví - Cannot write default address - Không ghi được địa chỉ mặc định - - + Rescanning... Đang quét lại... - Done loading - Đã nạp xong - - + Error Lỗi diff --git a/src/qt/locale/raven_zh.ts b/src/qt/locale/raven_zh.ts index 0d3faf6b6d..7b032306c6 100644 --- a/src/qt/locale/raven_zh.ts +++ b/src/qt/locale/raven_zh.ts @@ -1,207 +1,8286 @@ - - - + AddressBookPage - + + + Right-click to edit address or label + + + + + Create a new address + + + + + &New + + + + + Copy the currently selected address to the system clipboard + + + + + &Copy + + + + + C&lose + + + + + Delete the currently selected address from the list + + + + + Export the data in the current tab to a file + + + + + &Export + + + + + &Delete + + + + + Choose the address to send coins to + + + + + Choose the address to receive coins with + + + + + C&hoose + + + + + Sending addresses + + + + + Receiving addresses + + + + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + + &Copy Address + + + + + Copy &Label + + + + + &Edit + + + + + Export Address List + + + + + Comma separated file (*.csv) + + + + + Exporting Failed + + + + + There was an error trying to save the address list to %1. Please try again. + + + AddressTableModel - + + + Label + + + + + Address + + + + + (no label) + + + AskPassphraseDialog - - - BanTableModel - - - RavenGUI - Error - 错误 + + Passphrase Dialog + - Warning - 警告 + + Enter passphrase + - - - CoinControlDialog - Date - 日期 + + New passphrase + - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - 错误 + + Repeat new passphrase + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - - - QObject::QObject - - - QRImageWidget - - - RPCConsole - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - - - RecentRequestsTableModel - Date - 日期 + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + - - - SendCoinsDialog - Insufficient funds! - 余额不足 + + Encrypt wallet + - Choose... - 选择... + + This operation needs your wallet passphrase to unlock the wallet. + - The recipient address is not valid. Please recheck. - 收款人地址无效,请再次确认。 + + Unlock wallet + - Pay only the required fee of %1 - 仅支付全额的%1 + + This operation needs your wallet passphrase to decrypt the wallet. + - Warning: Invalid Raven address - 警告:比特币地址无效 + + Decrypt wallet + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Date - 日期 + + Change passphrase + - - - TransactionDescDialog - - - TransactionTableModel - Date - 日期 + + Enter the old passphrase and new passphrase to the wallet. + + + + + Confirm wallet encryption + + + + + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! + + + + + Are you sure you wish to encrypt your wallet? + + + + + + Wallet encrypted + + + + + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. + + + + + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. + + + + + + + + Wallet encryption failed + + + + + Wallet encryption failed due to an internal error. Your wallet was not encrypted. + + + + + + The supplied passphrases do not match. + + + + + Wallet unlock failed + - + + + + + The passphrase entered for the wallet decryption was incorrect. + + + + + Wallet decryption failed + + + + + Wallet passphrase was successfully changed. + + + + + + Warning: The Caps Lock key is on! + + + - TransactionView + AssetControlDialog + + + Asset Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + View assets that you have the ownership asset for + + + + + View Administrator Assets + + + + + Asset + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + Date - 日期 + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - - - raven-core - Transaction too large for fee policy - 根据费率标准,本次转账超额 + + Confirmations + - Transaction too large - 超额转账 + + Confirmed + - Warning - 警告 + + Copy address + - Loading addresses... - 正在载入地址... + + Copy label + - Insufficient funds - 余额不足 + + + Copy amount + - Loading wallet... - 正在载入钱包... + + Copy transaction ID + - Rescanning... - 再次扫描... + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + - Done loading - 载入完成 + + (change) + + + + + AssetTableModel + + + Name + + + + + Quantity + + + + + AssetsDialog + + + + Send Coins + + + + + Asset Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Confirm the send action + + + + + S&end + + + + + Clear all fields of the form. + + + + + Clear &All + + + + + Transfer to multiple recipients at once + + + + + Add &Recipient + + + + + Balance: + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + + + + + Banned Until + + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + 日期 + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + 错误 + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + + + + + %1 d + + + + + %1 h + + + + + %1 m + + + + + + %1 s + + + + + None + + + + + N/A + + + + + %1 ms + + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + + + + + PNG Image (*.png) + + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + + + + + Client version + + + + + &Information + + + + + Debug window + + + + + General + + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + + + + + + Sent + + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + + + + + Synchronizing with network... + + + + + &Overview + + + + + Node + + + + + Show general overview of wallet + + + + + &Transactions + + + + + Browse transaction history + + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + + + + + Quit application + + + + + &About %1 + + + + + Show information about %1 + + + + + About &Qt + + + + + Show information about Qt + + + + + &Options... + + + + + Modify configuration options for %1 + + + + + &Encrypt Wallet... + + + + + &Backup Wallet... + + + + + &Change Passphrase... + + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + + + + + &Receiving addresses... + + + + + Open &URI... + + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + + + + + Send coins to a Raven address + + + + + Backup wallet to another location + + + + + Change the passphrase used for wallet encryption + + + + + Open debugging and diagnostic console + + + + + &Verify message... + + + + + Raven + + + + + Wallet + + + + + &Send + + + + + &Receive + + + + + &Show / Hide + + + + + Show or hide the main Window + + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + + + + + &Help + + + + + Request payments (generates QR codes and raven: URIs) + + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + 错误 + + + + Warning + 警告 + + + + Information + + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + + + + + Amount + + + + + Label + + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + 日期 + + + + Label + + + + + Message + + + + + (no label) + + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + 余额不足 + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + 选择... + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + 收款人地址无效,请再次确认。 + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + 仅支付全额的%1 + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + 警告:比特币地址无效 + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + 日期 + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + 日期 + + + + Type + + + + + Label + + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + + + + + Confirmed + + + + + Watch-only + + + + + Date + 日期 + + + + Type + + + + + Label + + + + + Address + + + + + Asset + + + + + ID + + + + + Exporting Failed + + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + + + + + Export the data in the current tab to a file + + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + 根据费率标准,本次转账超额 + + + + Transaction too large + 超额转账 + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + 警告 + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + 余额不足 + + + + Loading block index... + + + + + Loading wallet... + 正在载入钱包... + + + + Cannot downgrade wallet + + + + + Rescanning... + 再次扫描... + Error 错误 diff --git a/src/qt/locale/raven_zh_CN.ts b/src/qt/locale/raven_zh_CN.ts index 25fd2832f4..14b07b4d2c 100644 --- a/src/qt/locale/raven_zh_CN.ts +++ b/src/qt/locale/raven_zh_CN.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label 鼠标右击编辑地址或标签 + Create a new address 创建新地址 + &New 新建(&N) + Copy the currently selected address to the system clipboard 复制当前选中的地址到系统剪贴板 + &Copy 复制(&C) + C&lose 关闭(&l) + Delete the currently selected address from the list 从列表中删除选中的地址 + Export the data in the current tab to a file 导出当前分页里的数据到文件 + &Export 导出(&E) + &Delete 删除(&D) + Choose the address to send coins to 选择要付钱过去的地址 + Choose the address to receive coins with 选择要收钱进来的地址 + C&hoose 选择 + Sending addresses 付款地址 + Receiving addresses 收款地址 + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. 这些是你要付款过去的Raven地址。在付钱之前,务必要检查金额和收款地址是否正确。 + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. 这些是你用来收款的Raven地址。建议在每次交易时,都使用一个新的收款地址。 + &Copy Address 复制地址 + Copy &Label 复制标签 + &Edit 编辑 + Export Address List 导出地址列表 + Comma separated file (*.csv) 逗号分隔文件 (*.csv) + Exporting Failed 导出失败 + There was an error trying to save the address list to %1. Please try again. 存储地址列表到 %1 时发生错误。请再试一次。 @@ -103,14 +125,17 @@ AddressTableModel + Label 标签 + Address 地址 + (no label) (无标签) @@ -118,2085 +143,5356 @@ AskPassphraseDialog + Passphrase Dialog 密码对话框 + Enter passphrase 输入密码 + New passphrase 新密码 + Repeat new passphrase 重复新密码 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. 输入钱包的新密码。<br/>密码请用<b>10 个以上的随机字符</b>,或是<b>8 个以上的字词</b>。 + Encrypt wallet 加密钱包 + This operation needs your wallet passphrase to unlock the wallet. 这个操作需要你的钱包密码来解锁钱包。 + Unlock wallet 解锁钱包 + This operation needs your wallet passphrase to decrypt the wallet. 这个操作需要你的钱包密码来把钱包解密。 + Decrypt wallet 解密钱包 + Change passphrase 修改密码 + Enter the old passphrase and new passphrase to the wallet. 请输入钱包的旧密码和新密码。 + Confirm wallet encryption 确认钱包加密 + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! 警告: 如果把钱包加密后又忘记密码,你就会从此<b>失去其中所有的Raven了</b>! + Are you sure you wish to encrypt your wallet? 你确定要把钱包加密吗? + + Wallet encrypted 钱包已加密 + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 现在要关闭,以完成加密过程。请注意,加密钱包不能完全防止入侵你的电脑的恶意程序偷取钱币。 + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 请改用新产生的有加密的钱包文件,来取代旧钱包文件的备份。为了安全性,当你开始使用新的有加密的钱包后,旧钱包文件的备份就不能再使用了。 + + + + Wallet encryption failed 钱包加密失败 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 因为内部错误导致钱包加密失败。你的钱包还是没加密。 + + The supplied passphrases do not match. - 提供的密码不yi'zhi。 + 提供的密码不yi'zhi。 + Wallet unlock failed 钱包解锁失败 + + + The passphrase entered for the wallet decryption was incorrect. 输入用来解密钱包的密码不正确。 + Wallet decryption failed 钱包解密失败 + Wallet passphrase was successfully changed. 钱包密码修改成功。 + + Warning: The Caps Lock key is on! 警告: 大写字母锁定已开启! - BanTableModel + AssetControlDialog - IP/Netmask - IP/网络掩码 + + Asset Selection + - Banned Until - 在此之前禁止: + + Quantity: + - - - RavenGUI - Sign &message... - 消息签名(&M)... + + Bytes: + - Synchronizing with network... - 正在与网络同步... + + Amount: + - &Overview - 概况(&O) + + Dust: + - Node - 节点 + + Fee: + - Show general overview of wallet - 显示钱包概况 + + After Fee: + - &Transactions - 交易记录(&T) + + Change: + - Browse transaction history - 查看交易历史 + + (un)select all + - E&xit - 退出(&X) + + Tree mode + - Quit application - 退出程序 + + List mode + - &About %1 - 关于 %1 + + View assets that you have the ownership asset for + - Show information about %1 - 显示 %1 相关信息 + + View Administrator Assets + - About &Qt - 关于Qt(&Q) + + Asset + - Show information about Qt - 显示 Qt 相关信息 + + Amount + - &Options... - 选项(&O)... + + Received with label + - Modify configuration options for %1 - 修改%1配置选项 + + Received with address + - &Encrypt Wallet... - 加密钱包(&E)... + + Date + - &Backup Wallet... - 备份钱包(&B)... + + Confirmations + - &Change Passphrase... - 更改密码(&C)... + + Confirmed + - &Sending addresses... - 正在发送地址(&S)... + + Copy address + - &Receiving addresses... - 正在接收地址(&R)... + + Copy label + - Open &URI... - 打开 &URI... + + + Copy amount + - Click to disable network activity. - 点击禁用网络活动。 + + Copy transaction ID + - Network activity disabled. - 网络活动已禁用。 + + Lock unspent + - Click to enable network activity again. - 点击重新开启网络活动。 + + Unlock unspent + - Syncing Headers (%1%)... - 同步区块头 (%1%)... + + Copy quantity + - Reindexing blocks on disk... - 正在为数据块重建索引... + + Copy fee + - Send coins to a Raven address - 向一个Raven地址发送Raven + + Copy after fee + - Backup wallet to another location - 备份钱包到其他文件夹 + + Copy bytes + - Change the passphrase used for wallet encryption - 更改钱包加密口令 + + Copy dust + - &Debug window - 调试窗口(&D) + + Copy change + - Open debugging and diagnostic console - 打开调试和诊断控制台 + + (%1 locked) + - &Verify message... - 验证消息(&V)... + + yes + - Raven - Raven + + no + - Wallet - 钱包 + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - 发送(&S) + + Can vary +/- %1 satoshi(s) per input. + - &Receive - 接收(&R) + + + (no label) + - &Show / Hide - 显示 / 隐藏(&S) + + change from %1 (%2) + - Show or hide the main Window - 显示或隐藏主窗口 + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - 对钱包中的私钥加密 + + Name + - Sign messages with your Raven addresses to prove you own them - 用Raven地址关联的私钥为消息签名,以证明您拥有这个Raven地址 + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - 校验消息,确保该消息是由指定的Raven地址所有者签名的 + + + Send Coins + - &File - 文件(&F) + + Asset Control Features + - &Settings - 设置(&S) + + Inputs... + - &Help - 帮助(&H) + + automatically selected + - Tabs toolbar - 分页工具栏 + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - 请求支付 (生成二维码和 raven: URI) + + Quantity: + - Show the list of used sending addresses and labels - 显示用过的发送地址和标签的列表 + + Bytes: + - Show the list of used receiving addresses and labels - 显示用过的接收地址和标签的列表 + + Amount: + - Open a raven: URI or payment request - 打开一个 raven: URI 或支付请求 + + Dust: + - &Command-line options - 命令行选项(&C) + + Fee: + - - %n active connection(s) to Raven network - %n 个到Raven网络的活动连接 + + + After Fee: + - Indexing blocks on disk... - 正在为数据块建立索引... + + Change: + - Processing blocks on disk... - 正在处理数据块... + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - Processed %n block(s) of transaction history. - 已处理 %n 个交易历史数据块。 + + + Custom change address + - %1 behind - 落后 %1 + + Transaction Fee: + - Last received block was generated %1 ago. - 最新收到的区块产生于 %1。 + + Choose... + - Transactions after this will not yet be visible. - 在此之后的交易尚未可见 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Error - 错误 + + Warning: Fee estimation is currently not possible. + - Warning - 警告 + + collapse fee-settings + - Information - 信息 + + Hide + - Up to date - 已是最新 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Show the %1 help message to get a list with possible Raven command-line options - 显示 %1 帮助信息,获取可用命令行选项列表 + + per kilobyte + - %1 client - %1 客戶 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Connecting to peers... - 正在连接到节点…… + + (read the tooltip) + - Catching up... - 更新中... + + Recommended: + - Date: %1 - - 日期: %1 - + + Custom: + - Amount: %1 - - 金额: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Type: %1 - - 类型: %1 - + + Confirmation time target: + - Label: %1 - - 标签: %1 - + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Address: %1 - - 地址: %1 - + + Request Replace-By-Fee + - Sent transaction - 发送交易 + + Confirm the send action + - Incoming transaction - 流入交易 + + S&end + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 + + Clear &All + - A fatal error occurred. Raven can no longer continue safely and will quit. - 发生严重错误。客户端无法安全地继续运行,即将退出。 + + Transfer to multiple recipients at once + - - - CoinControlDialog - Coin Selection - 选择钱币 + + Add &Recipient + - Quantity: - 总量: + + Balance: + - Bytes: - 字节: + + Copy quantity + - Amount: - 金额: + + Copy amount + - Fee: - 费用: + + Copy fee + - Dust: - 小额: + + Copy after fee + - After Fee: - 加上交易费用后: + + Copy bytes + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP/网络掩码 + + + + Banned Until + 在此之前禁止: + + + + CoinControlDialog + + + Coin Selection + 选择钱币 + + + + Quantity: + 总量: + + + + Bytes: + 字节: + + + + Amount: + 金额: + + + + Fee: + 费用: + + + + Dust: + 小额: + + + + After Fee: + 加上交易费用后: + + + Change: 变更 : + (un)select all (不)全选 + Tree mode 树状模式 + List mode 列表模式 + Amount 金额 + Received with label 按标签收款 + Received with address 按地址收款 + Date 日期 + Confirmations 确认 + Confirmed 已确认 + Copy address 复制地址 + Copy label 复制标签 + + Copy amount 复制金额 + Copy transaction ID 复制交易识别码 + Lock unspent 锁定未花费 + Unlock unspent 解锁未花费 + Copy quantity 复制数目 + Copy fee 复制手续费 + Copy after fee 复制计费后金额 + Copy bytes 复制字节数 + Copy dust 复制零散金额 + Copy change 复制找零金额 + (%1 locked) (锁定 %1 枚) + yes + no + This label turns red if any recipient receives an amount smaller than the current dust threshold. 当任何一个收款金额小于目前的零散金额上限时,文字会变红色。 + Can vary +/- %1 satoshi(s) per input. 每组输入可能有 +/- %1 个 satoshi 的误差。 + + (no label) (无标签) + change from %1 (%2) 找零前是 %1 (%2) + (change) (找零) - EditAddressDialog + CreateAssetDialog - Edit Address - 编辑地址 + + Coin Control Features + - &Label - 标签(&L) + + Inputs... + - The label associated with this address list entry - 与此地址相关的标签项 + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - 该地址已与地址列表中的条目关联,只能被发送地址修改。 + + Insufficient funds! + - &Address - 地址(&A) + + + Quantity: + - New receiving address - 新建收款地址 + + Bytes: + - New sending address - 新建付款地址 + + Amount: + - Edit receiving address - 编辑收款地址 + + Dust: + - Edit sending address - 编辑付款地址 + + Fee: + - The entered address "%1" is not a valid Raven address. - 输入的地址 %1 并不是有效的Raven地址。 + + After Fee: + - The entered address "%1" is already in the address book. - 输入的地址 %1 已经存在地址簿。 + + Change: + - Could not unlock wallet. - 无法将钱包解锁。 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - 产生新的密钥失败了。 + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - 一个新的数据目录将被创建。 + + Name: + - name - 名称 + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - 目录已存在。如果您打算在这里创建一个新目录,添加 %1。 + + The name of the asset you would like to create + - Path already exists, and is not a directory. - 路径已存在,并且不是一个目录。 + + Check Availabilty + - Cannot create data directory here. - 无法在此创建数据目录。 + + Address: + - - - HelpMessageDialog - version - 版本 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1 位) + + Verifier String: + - About %1 - 關於 %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - 命令行选项 + + Warning: + - Usage: - 使用: + + The number of assets that will be created + - command-line options - 命令行选项 + + Units: + - UI Options: - 界面选项: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - 在启动时选择目录(默认%u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - 设置语言, 例如“zh-CN”(默认:系统语言) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - 启动时最小化 + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - 设置付款请求的SSL根证书(默认:-系统-) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - 显示启动画面(默认:%u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - 重置图形界面所有的变更设置 + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - 欢迎 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - -歡迎來到 %1 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - 由于这是第一次启动此程序,您可以选择%1的数据所存储的位置 + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 会下载并存储一份Raven区块链的副本。至少有 %2GB 的数据会存储到这个目录中,并且还会持续增长。另外钱包资料也会储存在这个目录。 + + Choose... + - Use the default data directory - 使用默认的数据目录 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - 使用自定义的数据目录: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - 错误:无法创建 指定的数据目录 "%1" + + collapse fee-settings + - Error - 错误 - - - %n GB of free space available - 有 %n GB 空闲空间 + + Hide + - - (of %n GB needed) - (需要%n GB空间) + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - - - ModalOverlay - Form - 表单 + + per kilobyte + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - 近期交易可能尚未显示,因此当前余额可能不准确。以上信息将在与Raven网络完全同步后更正。详情如下 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - 尝试使用受未可见交易影响的余额将不被网络接受。 + + (read the tooltip) + - Number of blocks left - 剩余区块数量 + + Recommended: + - Unknown... - 未知 + + C&ustom: + - Last block time - 上一数据块时间 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress - 进度 + + Confirmation time target: + - Progress increase per hour - 每小时进度增加 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - calculating... - 正在计算 + + Request Replace-By-Fee + - Estimated time left until synced - 预计剩余同步时间 + + Create Asset + - Hide - 隐藏 + + Clear + - - - OpenURIDialog - Open URI - 打开 URI + + Balance: + - Open payment request from URI or file - 打开来自URI或文件的付款请求 + + 123.456 RVN + - URI: - URI: + + Copy quantity + - Select payment request file - 选择付款请求文件 + + Copy amount + - Select payment request file to open - 选择要打开的付款请求文件 + + Copy fee + - - - OptionsDialog - Options - 选项 + + Copy after fee + - &Main - 主要(&M) + + Copy bytes + - Automatically start %1 after logging in to the system. - 在登入系统后自动启动 %1 + + Copy dust + - &Start %1 on system login - 系统登入时启动 %1 + + Copy change + - Size of &database cache - 数据库缓存大小(&D) + + %1 (%2 blocks) + - MB - MB + + Main Asset + - Number of script &verification threads - 脚本验证线程数(&V) + + Sub Asset + - Accept connections from outside - 接收外部连接 + + Unique Asset + - Allow incoming connections - 允许流入连接 + + Messaging Channel Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - 代理的 IP 地址 (例如 IPv4: 127.0.0.1 / IPv6: ::1) + + Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - 窗口被关闭时最小化而不是退出应用程序。当此选项启用时,应用程序只会在菜单中选择退出时退出。 + + Sub Qualifier Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - 出现在交易的选项卡的上下文菜单项的第三方网址 (例如:区块链接查询) 。 %s的URL被替换为交易哈希。多个的URL需要竖线 | 分隔。 + + Restricted Asset + - Third party transaction URLs - 第三方交易网址 + + Asset Type + - Active command-line options that override above options: - 有效的命令行参数覆盖上述选项: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Reset all client options to default. - 恢复客户端的缺省设置 + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Reset Options - 恢复缺省设置(&R) + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Network - 网络(&N) + + + + Warning: Invalid Raven address + - (0 = auto, <0 = leave that many cores free) - (0 = 自动, <0 = 离开很多免费的核心) + + Warning: Restricted Assets Reissuance requires an address + - W&allet - 钱包(&A) + + Valid Asset + - Expert - 专家 + + Invalid: Asset name already in use + - Enable coin &control features - 启动货币控制功能(&C) + + Error: Asset Database not in sync + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - 如果禁用未确认的零钱,则零钱至少需要1个确认才能使用。同时账户余额计算会受到影响。 + + + %1 to %2 + - &Spend unconfirmed change - 使用未经确认的零钱(&S) + + Are you sure you want to send? + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - 自动在路由器中打开Raven端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。 + + added as transaction fee + - Map port using &UPnP - 使用 &UPnP 映射端口 + + Total Amount %1 + - Connect to the Raven network through a SOCKS5 proxy. - 通过 SOCKS5 代理连接Raven网络。 + + or + - &Connect through SOCKS5 proxy (default proxy): - 通过 SO&CKS5 代理连接(默认代理): + + Confirm send assets + - Proxy &IP: - 代理服务器 &IP: + + Invalid: + - &Port: - 端口(&P): + + Copy + - Port of the proxy (e.g. 9050) - 代理端口(例如 9050) + + Transaction ID Copied + - Used for reaching peers via: - 连接到同伴的方式: + + Asset transaction sent to network: + - - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - 如果默认的SOCKS5代理被用于在该网络下连接同伴,则显示 + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Unknown change address + - IPv6 - IPv6 + + Confirm custom change address + - Tor - Tor + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - 在 Tor 匿名网络下通过不同的 SOCKS5 代理连接Raven网络 + + (no label) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - 通过Tor隐藏服务连接节点时 使用不同的SOCKS5代理 + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - 窗口(&W) + + Edit Address + 编辑地址 - &Hide the icon from the system tray. - 不在通知区显示图标 + + &Label + 标签(&L) - Hide tray icon - 不显示通知区图标 + + The label associated with this address list entry + 与此地址相关的标签项 - Show only a tray icon after minimizing the window. - 最小化窗口后仅显示托盘图标 + + The address associated with this address list entry. This can only be modified for sending addresses. + 该地址已与地址列表中的条目关联,只能被发送地址修改。 - &Minimize to the tray instead of the taskbar - 最小化到托盘(&M) + + &Address + 地址(&A) - M&inimize on close - 单击关闭按钮最小化(&I) + + New receiving address + 新建收款地址 - &Display - 显示(&D) + + New sending address + 新建付款地址 - User Interface &language: - 用户界面语言(&L): + + Edit receiving address + 编辑收款地址 - The user interface language can be set here. This setting will take effect after restarting %1. - 可以在这里设定用户界面的语言。这个设定在重启 %1 后才会生效。 + + Edit sending address + 编辑付款地址 - &Unit to show amounts in: - Raven金额单位(&U): + + The entered address "%1" is not a valid Raven address. + 输入的地址 %1 并不是有效的Raven地址。 - Choose the default subdivision unit to show in the interface and when sending coins. - 选择Raven单位。 + + The entered address "%1" is already in the address book. + 输入的地址 %1 已经存在地址簿。 - Whether to show coin control features or not. - 是否需要交易源地址控制功能。 + + Could not unlock wallet. + 无法将钱包解锁。 - &OK - 确定(&O) + + New key generation failed. + 产生新的密钥失败了。 + + + FreespaceChecker - &Cancel - 取消(&C) + + A new data directory will be created. + 一个新的数据目录将被创建。 - default - 默认 + + name + 名称 - none - + + Directory already exists. Add %1 if you intend to create a new directory here. + 目录已存在。如果您打算在这里创建一个新目录,添加 %1。 - Confirm options reset - 确认恢复缺省设置 + + Path already exists, and is not a directory. + 路径已存在,并且不是一个目录。 - Client restart required to activate changes. - 更改生效需要重启客户端。 + + Cannot create data directory here. + 无法在此创建数据目录。 + + + FreezeAddress - Client will be shut down. Do you want to proceed? - 客户端即将关闭,您想继续吗? + + Frame + - This change would require a client restart. - 此更改需要重启客户端。 + + Restricted Asset: + - The supplied proxy address is invalid. - 提供的代理服务器地址无效。 + + Address: + - - - OverviewPage - Form - 表单 + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - 现在显示的消息可能是过期的。在连接上Raven网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。 + + IPFS / Hash: + - Watch-only: - 查看-只有: + + Single Address Options + - Available: - 可使用的余额: + + Global Options + - Your current spendable balance - 您当前可使用的余额 + + Free&ze trading on this address + - Pending: - 等待中的余额: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 尚未确认的交易总额,未计入当前余额 + + Freeze all &trading for the selected restricted asset + - Immature: - 未成熟的: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - 尚未成熟的挖矿收入余额 + + Check + - Balances - 余额 + + Clear + - Total: - 总额: + + Submit + - Your current total balance - 您当前的总余额 + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - 您当前 观察地址(watch-only address)的余额 + + Must have a restricted asset selected + - Spendable: - 可使用: + + Address is already frozen + - Recent transactions - 最近交易记录 + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - 观察地址(watch-only address)的未确认交易记录 + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - 观察地址(watch-only address)中尚未成熟(matured)的挖矿收入余额: + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - 观察地址(watch-only address)中的当前总余额 + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - 要求付款时发生错误 + + Warning: transaction while syncing wallet! + - Cannot start raven: click-to-pay handler - 无法启动 raven 协议的“ -一键支付”处理器 + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI handling - URI 处理 + + version + 版本 - Payment request fetch URL is invalid: %1 + + + (%1-bit) + (%1 位) + + + + About %1 + 關於 %1 + + + + Command-line options + 命令行选项 + + + + Usage: + 使用: + + + + command-line options + 命令行选项 + + + + UI Options: + 界面选项: + + + + Choose data directory on startup (default: %u) + 在启动时选择目录(默认%u) + + + + Set language, for example "de_DE" (default: system locale) + 设置语言, 例如“zh-CN”(默认:系统语言) + + + + Start minimized + 启动时最小化 + + + + Set SSL root certificates for payment request (default: -system-) + 设置付款请求的SSL根证书(默认:-系统-) + + + + Show splash screen on startup (default: %u) + 显示启动画面(默认:%u) + + + + Reset all settings changed in the GUI + 重置图形界面所有的变更设置 + + + + Intro + + + Welcome + 欢迎 + + + + Welcome to %1. + +歡迎來到 %1 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + 由于这是第一次启动此程序,您可以选择%1的数据所存储的位置 + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + 使用默认的数据目录 + + + + Use a custom data directory: + 使用自定义的数据目录: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + 错误:无法创建 指定的数据目录 "%1" + + + + Error + 错误 + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + 表单 + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + 近期交易可能尚未显示,因此当前余额可能不准确。以上信息将在与Raven网络完全同步后更正。详情如下 + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + 尝试使用受未可见交易影响的余额将不被网络接受。 + + + + Number of blocks left + 剩余区块数量 + + + + + + Unknown... + 未知 + + + + Last block time + 上一数据块时间 + + + + Progress + 进度 + + + + Progress increase per hour + 每小时进度增加 + + + + + calculating... + 正在计算 + + + + Estimated time left until synced + 预计剩余同步时间 + + + + Hide + 隐藏 + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + 打开 URI + + + + Open payment request from URI or file + 打开来自URI或文件的付款请求 + + + + URI: + URI: + + + + Select payment request file + 选择付款请求文件 + + + + Select payment request file to open + 选择要打开的付款请求文件 + + + + OptionsDialog + + + Options + 选项 + + + + &Main + 主要(&M) + + + + Automatically start %1 after logging in to the system. + 在登入系统后自动启动 %1 + + + + &Start %1 on system login + 系统登入时启动 %1 + + + + Size of &database cache + 数据库缓存大小(&D) + + + + MB + MB + + + + Number of script &verification threads + 脚本验证线程数(&V) + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + 代理的 IP 地址 (例如 IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + 窗口被关闭时最小化而不是退出应用程序。当此选项启用时,应用程序只会在菜单中选择退出时退出。 + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + 出现在交易的选项卡的上下文菜单项的第三方网址 (例如:区块链接查询) 。 %s的URL被替换为交易哈希。多个的URL需要竖线 | 分隔。 + + + + Active command-line options that override above options: + 有效的命令行参数覆盖上述选项: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + 恢复客户端的缺省设置 + + + + &Reset Options + 恢复缺省设置(&R) + + + + &Network + 网络(&N) + + + + (0 = auto, <0 = leave that many cores free) + (0 = 自动, <0 = 离开很多免费的核心) + + + + W&allet + 钱包(&A) + + + + Expert + 专家 + + + + Enable coin &control features + 启动货币控制功能(&C) + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 如果禁用未确认的零钱,则零钱至少需要1个确认才能使用。同时账户余额计算会受到影响。 + + + + &Spend unconfirmed change + 使用未经确认的零钱(&S) + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + 自动在路由器中打开Raven端口。只有当您的路由器开启了 UPnP 选项时此功能才有效。 + + + + Map port using &UPnP + 使用 &UPnP 映射端口 + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + 通过 SOCKS5 代理连接Raven网络。 + + + + &Connect through SOCKS5 proxy (default proxy): + 通过 SO&CKS5 代理连接(默认代理): + + + + + Proxy &IP: + 代理服务器 &IP: + + + + + &Port: + 端口(&P): + + + + + Port of the proxy (e.g. 9050) + 代理端口(例如 9050) + + + + Used for reaching peers via: + 连接到同伴的方式: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + 在 Tor 匿名网络下通过不同的 SOCKS5 代理连接Raven网络 + + + + &Window + 窗口(&W) + + + + Show only a tray icon after minimizing the window. + 最小化窗口后仅显示托盘图标 + + + + &Minimize to the tray instead of the taskbar + 最小化到托盘(&M) + + + + M&inimize on close + 单击关闭按钮最小化(&I) + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + 显示(&D) + + + + User Interface &language: + 用户界面语言(&L): + + + + The user interface language can be set here. This setting will take effect after restarting %1. + 可以在这里设定用户界面的语言。这个设定在重启 %1 后才会生效。 + + + + &Unit to show amounts in: + Raven金额单位(&U): + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 选择Raven单位。 + + + + Whether to show coin control features or not. + 是否需要交易源地址控制功能。 + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + 确定(&O) + + + + &Cancel + 取消(&C) + + + + default + 默认 + + + + none + + + + + Confirm options reset + 确认恢复缺省设置 + + + + + Client restart required to activate changes. + 更改生效需要重启客户端。 + + + + Client will be shut down. Do you want to proceed? + 客户端即将关闭,您想继续吗? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + 此更改需要重启客户端。 + + + + The supplied proxy address is invalid. + 提供的代理服务器地址无效。 + + + + OverviewPage + + + Form + 表单 + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + 现在显示的消息可能是过期的。在连接上Raven网络节点后,您的钱包将自动与网络同步,但是这个过程还没有完成。 + + + + Watch-only: + 查看-只有: + + + + Available: + 可使用的余额: + + + + Your current spendable balance + 您当前可使用的余额 + + + + Pending: + 等待中的余额: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 尚未确认的交易总额,未计入当前余额 + + + + Immature: + 未成熟的: + + + + Mined balance that has not yet matured + 尚未成熟的挖矿收入余额 + + + + Total: + 总额: + + + + Your current total balance + 您当前的总余额 + + + + RVN Balances + + + + + Your current balance in watch-only addresses + 您当前 观察地址(watch-only address)的余额 + + + + Spendable: + 可使用: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + 最近交易记录 + + + + Unconfirmed transactions to watch-only addresses + 观察地址(watch-only address)的未确认交易记录 + + + + Mined balance in watch-only addresses that has not yet matured + 观察地址(watch-only address)中尚未成熟(matured)的挖矿收入余额: + + + + Current total balance in watch-only addresses + 观察地址(watch-only address)中的当前总余额 + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + 要求付款时发生错误 + + + + Cannot start raven: click-to-pay handler + 无法启动 raven 协议的“ +一键支付”处理器 + + + + + + URI handling + URI 处理 + + + + Payment request fetch URL is invalid: %1 取得付款请求的 URL 无效: %1 - Invalid payment address %1 - 无效的付款地址 %1 + + Invalid payment address %1 + 无效的付款地址 %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + 无法解析 URI 地址!可能是因为Raven地址无效,或是 URI 参数格式错误。 + + + + Payment request file handling + 处理付款请求文件 + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 无法读取付款请求文件!可能是文件无效造成的。 + + + + + + + + + Payment request rejected + 付款请求已被拒绝 + + + + Payment request network doesn't match client network. + 付款请求的网络类型跟客户端不符。 + + + + Payment request expired. + 付款请求已过期。 + + + + Payment request is not initialized. + 支付请求未成形。 + + + + Unverified payment requests to custom payment scripts are unsupported. + 不支持到自定义付款脚本的未验证付款请求。 + + + + + Invalid payment request. + 无效的支付请求。 + + + + Requested payment amount of %1 is too small (considered dust). + 请求支付的金额 %1 太小(就像尘埃)。 + + + + Refund from %1 + 退款来自 %1 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 支付请求 %1 太大 (%2 字节。只允许 %3 字节)。 + + + + Error communicating with %1: %2 + %1: %2 通讯出错 + + + + Payment request cannot be parsed! + 无法解析 付款请求! + + + + Bad response from server %1 + 来自 %1 服务器的错误响应 + + + + Network request error + 网络请求出错 + + + + Payment acknowledged + 付款已确认 + + + + PeerTableModel + + + User Agent + 用户代理 + + + + Node/Service + 节点/服务 + + + + NodeId + 节点ID + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + 金额 + + + + Enter a Raven address (e.g. %1) + 请输入一个Raven地址 (例如 %1) + + + + %1 d + %1 天 + + + + %1 h + %1 小时 + + + + %1 m + %1 分钟 + + + + + %1 s + %1 秒 + + + + None + + + + + N/A + 不可用 + + + + %1 ms + %1 毫秒 + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 和 %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 尚未安全退出 + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + 错误:指定的数据目录“%1”不存在。 + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 错误:无法解析配置文件:%1。只接受 key=value语法。 + + + + Error: %1 + 错误:%1 + + + + QRImageWidget + + + &Save Image... + 保存图片(&S)... + + + + &Copy Image + 复制图片 + + + + Save QR Code + 保存二维码 + + + + PNG Image (*.png) + PNG 图像(*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + 不可用 + + + + Client version + 客户端版本 + + + + &Information + 信息 + + + + Debug window + 调试窗口 + + + + General + 常规 + + + + Using BerkeleyDB version + 使用的 BerkeleyDB 版本 + + + + Datadir + 数据目录 + + + + Startup time + 启动时间 + + + + Network + 网络 + + + + Name + 姓名 + + + + Number of connections + 连接数 + + + + Block chain + 数据链 + + + + Current number of blocks + 当前数据块数量 + + + + Memory Pool + 资金池 + + + + Current number of transactions + 当前交易数量 + + + + Memory usage + 内存使用 + + + + &Reset + + + + + + Received + 收到 + + + + + Sent + 发送 + + + + &Peers + 同伴(&P) + + + + Banned peers + 节点黑名单 + + + + + + Select a peer to view detailed information. + 选择节点查看详细信息。 + + + + Whitelisted + 白名单 + + + + Direction + 方向 + + + + Version + 版本 + + + + Starting Block + 正在启动数据块 + + + + Synced Headers + 同步区块头 + + + + Synced Blocks + 同步区块链 + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + 用户代理 + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + 缩小文字 + + + + Increase font size + 放大文字 + + + + Services + 服务 + + + + Ban Score + 禁止得分 + + + + Connection Time + 连接时间 + + + + Last Send + 最后发送 + + + + Last Receive + 最后接收 + + + + Ping Time + Ping 时间 + + + + The duration of a currently outstanding ping. + 目前这一次 ping 已经过去的时间。 + + + + Ping Wait + Ping等待 + + + + Min Ping + 最小Ping值 + + + + Time Offset + 时间偏移 + + + + Last block time + 上一数据块时间 + + + + &Open + 打开(&O) + + + + &Console + 控制台(&C) + + + + &Network Traffic + 网络流量(&N) + + + + Totals + 总数 + + + + In: + 输入: + + + + Out: + 输出: + + + + Debug log file + 调试日志文件 + + + + Clear console + 清空控制台 + + + + 1 &hour + 1 小时(&H) + + + + 1 &day + 1 天(&D) + + + + 1 &week + 1 周(&W) + + + + 1 &year + 1 年(&Y) + + + + &Disconnect + (&D)断开 + + + + + + + Ban for + 禁止 + + + + &Unban + 重新允许 + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + 欢迎使用 %1 的 RPC 控制台。 + + + + Type <b>help</b> for an overview of available commands. + 使用 <b>help</b> 命令显示帮助信息。 + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + 网络活动已禁用 + + + + (node id: %1) + (节点ID: %1) + + + + via %1 + 通过 %1 + + + + + never + 从未 + + + + Inbound + 传入 + + + + Outbound + 传出 + + + + Yes + + + + + No + + + + + + Unknown + 未知 + + + + RavenGUI + + + Sign &message... + 消息签名(&M)... + + + + Synchronizing with network... + 正在与网络同步... + + + + &Overview + 概况(&O) + + + + Node + 节点 + + + + Show general overview of wallet + 显示钱包概况 + + + + &Transactions + 交易记录(&T) + + + + Browse transaction history + 查看交易历史 + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + 退出(&X) + + + + Quit application + 退出程序 + + + + &About %1 + 关于 %1 + + + + Show information about %1 + 显示 %1 相关信息 + + + + About &Qt + 关于Qt(&Q) + + + + Show information about Qt + 显示 Qt 相关信息 + + + + &Options... + 选项(&O)... + + + + Modify configuration options for %1 + 修改%1配置选项 + + + + &Encrypt Wallet... + 加密钱包(&E)... + + + + &Backup Wallet... + 备份钱包(&B)... + + + + &Change Passphrase... + 更改密码(&C)... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + 正在发送地址(&S)... + + + + &Receiving addresses... + 正在接收地址(&R)... + + + + Open &URI... + 打开 &URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + 点击禁用网络活动。 + + + + Network activity disabled. + 网络活动已禁用。 + + + + Click to enable network activity again. + 点击重新开启网络活动。 + + + + Syncing Headers (%1%)... + 同步区块头 (%1%)... + + + + Reindexing blocks on disk... + 正在为数据块重建索引... + + + + Send coins to a Raven address + 向一个Raven地址发送Raven + + + + Backup wallet to another location + 备份钱包到其他文件夹 + + + + Change the passphrase used for wallet encryption + 更改钱包加密口令 + + + + Open debugging and diagnostic console + 打开调试和诊断控制台 + + + + &Verify message... + 验证消息(&V)... + + + + Raven + Raven + + + + Wallet + 钱包 + + + + &Send + 发送(&S) + + + + &Receive + 接收(&R) + + + + &Show / Hide + 显示 / 隐藏(&S) + + + + Show or hide the main Window + 显示或隐藏主窗口 + + + + Encrypt the private keys that belong to your wallet + 对钱包中的私钥加密 + + + + Sign messages with your Raven addresses to prove you own them + 用Raven地址关联的私钥为消息签名,以证明您拥有这个Raven地址 + + + + Verify messages to ensure they were signed with specified Raven addresses + 校验消息,确保该消息是由指定的Raven地址所有者签名的 + + + + &File + 文件(&F) + + + + &Help + 帮助(&H) + + + + Request payments (generates QR codes and raven: URIs) + 请求支付 (生成二维码和 raven: URI) + + + + Show the list of used sending addresses and labels + 显示用过的发送地址和标签的列表 + + + + Show the list of used receiving addresses and labels + 显示用过的接收地址和标签的列表 + + + + Open a raven: URI or payment request + 打开一个 raven: URI 或支付请求 + + + + &Command-line options + 命令行选项(&C) + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + 正在为数据块建立索引... + + + + Processing blocks on disk... + 正在处理数据块... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + 落后 %1 + + + + Last received block was generated %1 ago. + 最新收到的区块产生于 %1。 + + + + Transactions after this will not yet be visible. + 在此之后的交易尚未可见 + + + + Error + 错误 + + + + Warning + 警告 + + + + Information + 信息 + + + + Up to date + 已是最新 + + + + Show the %1 help message to get a list with possible Raven command-line options + 显示 %1 帮助信息,获取可用命令行选项列表 + + + + %1 client + %1 客戶 + + + + Connecting to peers... + 正在连接到节点…… + + + + Catching up... + 更新中... + + + + Date: %1 + + 日期: %1 + + + + + + Amount: %1 + + 金额: %1 + + + + + Type: %1 + + 类型: %1 + + + + + Label: %1 + + 标签: %1 + + + + + Address: %1 + + 地址: %1 + + + + + Sent transaction + 发送交易 - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - 无法解析 URI 地址!可能是因为Raven地址无效,或是 URI 参数格式错误。 + + Incoming transaction + 流入交易 - Payment request file handling - 处理付款请求文件 + + + Assets not yet active + - Payment request file cannot be read! This can be caused by an invalid payment request file. - 无法读取付款请求文件!可能是文件无效造成的。 + + Restricted Assets not yet active + - Payment request rejected - 付款请求已被拒绝 + + HD key generation is <b>enabled</b> + - Payment request network doesn't match client network. - 付款请求的网络类型跟客户端不符。 + + HD key generation is <b>disabled</b> + - Payment request expired. - 付款请求已过期。 + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 钱包已被<b>加密</b>,当前为<b>解锁</b>状态 - Payment request is not initialized. - 支付请求未成形。 + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 钱包已被<b>加密</b>,当前为<b>锁定</b>状态 - Unverified payment requests to custom payment scripts are unsupported. - 不支持到自定义付款脚本的未验证付款请求。 + + A fatal error occurred. Raven can no longer continue safely and will quit. + 发生严重错误。客户端无法安全地继续运行,即将退出。 + + + ReceiveCoinsDialog - Invalid payment request. - 无效的支付请求。 + + &Amount: + 总额(&A): - Requested payment amount of %1 is too small (considered dust). - 请求支付的金额 %1 太小(就像尘埃)。 + + &Label: + 标签(&L): - Refund from %1 - 退款来自 %1 + + &Message: + 消息(&M): - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - 支付请求 %1 太大 (%2 字节。只允许 %3 字节)。 + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 重复使用以前用过的接收地址。重用地址有安全和隐私方面的隐患。除非是为重复生成同一项支付请求,否则请不要这样做。 - Error communicating with %1: %2 - %1: %2 通讯出错 + + R&euse an existing receiving address (not recommended) + 重用现有的接收地址(不推荐) - Payment request cannot be parsed! - 无法解析 付款请求! + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + 可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过Raven网络传送。 - Bad response from server %1 - 来自 %1 服务器的错误响应 + + + An optional label to associate with the new receiving address. + 可为新建的收款地址添加一个标签。 - Network request error - 网络请求出错 + + Use this form to request payments. All fields are <b>optional</b>. + 使用此表单要求付款。所有字段都是<b>可选</b>。 - Payment acknowledged - 付款已确认 + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + 可选的请求金额。留空或填零为不要求具体金额。 - - - PeerTableModel - User Agent - 用户代理 + + Clear all fields of the form. + 清除此表单的所有字段。 - Node/Service - 节点/服务 + + Clear + 清除 - NodeId - 节点ID + + Requested payments history + 请求付款的历史 - Ping - + + &Request payment + 请求付款(&R) + + + + Show the selected request (does the same as double clicking an entry) + 显示选中的请求 (双击也可以显示) + + + + Show + 显示 + + + + Remove the selected entries from the list + 从列表中移除选中的条目 + + + + Remove + 移除 + + + + Copy URI + 复制URI + + + + Copy label + 复制标签 + + + + Copy message + 复制消息 + + + + Copy amount + 复制金额 - QObject + ReceiveRequestDialog + + + QR Code + 二维码 + + + + Copy &URI + 复制 URI(&U) + + + Copy &Address + 复制地址(&A) + + + + &Save Image... + 保存图片(&S)... + + + + Request payment to %1 + 请求付款到 %1 + + + + Payment information + 付款信息 + + + + URI + URI + + + + Address + 地址 + + + Amount 金额 - Enter a Raven address (e.g. %1) - 请输入一个Raven地址 (例如 %1) + + Label + 标签 - %1 d - %1 天 + + Message + 消息 - %1 h - %1 小时 + + Resulting URI too long, try to reduce the text for label / message. + URI 太长,请试着精简标签或消息文本。 - %1 m - %1 分钟 + + Error encoding URI into QR Code. + 把 URI 编码成二维码时发生错误。 + + + RecentRequestsTableModel - %1 s - %1 秒 + + Date + 日期 - None - + + Label + 标签 - N/A - 不可用 + + Message + 消息 + + + + (no label) + (无标签) + + + + (no message) + (无消息) + + + + (no amount requested) + (无请求金额) + + + + Requested + 总额 + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + - %1 ms - %1 毫秒 + + Unit: + - - %n second(s) - %n 秒 + + + e.g. 1.00000000 + - - %n minute(s) - %n 分钟 + + + If the owner of this asset will be able to issue more assets in the future + - - %n hour(s) - %n 小时 + + + Reissuable + - - %n day(s) - %n 天 + + + Change IPFS/Txid Hash + - - %n week(s) - %n 周 + + + The ipfs/txid hash that contains information about the asset + - %1 and %2 - %1 和 %2 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - - %n year(s) - %n 年 + + + ERROR TEXT + - %1 didn't yet exit safely... - %1 尚未安全退出 + + Current Asset Settings + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - 错误:指定的数据目录“%1”不存在。 + + Updated Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - 错误:无法解析配置文件:%1。只接受 key=value语法。 + + Transaction Fee: + - Error: %1 - 错误:%1 + + Choose... + - - - QRImageWidget - &Save Image... - 保存图片(&S)... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - &Copy Image - 复制图片 + + Warning: Fee estimation is currently not possible. + - Save QR Code - 保存二维码 + + collapse fee-settings + - PNG Image (*.png) - PNG 图像(*.png) + + Hide + - - - RPCConsole - N/A - 不可用 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Client version - 客户端版本 + + per kilobyte + - &Information - 信息 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Debug window - 调试窗口 + + (read the tooltip) + - General - 常规 + + Recommended: + - Using BerkeleyDB version - 使用的 BerkeleyDB 版本 + + Cus&tom: + - Datadir - 数据目录 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Startup time - 启动时间 + + Confirmation time target: + - Network - 网络 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Name - 姓名 + + Request Replace-By-Fee + - Number of connections - 连接数 + + Clear + - Block chain - 数据链 + + Balance: + - Current number of blocks - 当前数据块数量 + + 123.456 RVN + - Memory Pool - 资金池 + + Copy quantity + - Current number of transactions - 当前交易数量 + + Copy amount + - Memory usage - 内存使用 + + Copy fee + - Received - 收到 + + Copy after fee + - Sent - 发送 + + Copy bytes + - &Peers - 同伴(&P) + + Copy dust + - Banned peers - 节点黑名单 + + Copy change + - Select a peer to view detailed information. - 选择节点查看详细信息。 + + Select an asset to reissue.. + - Whitelisted - 白名单 + + Select the asset you want to reissue. + - Direction - 方向 + + %1 (%2 blocks) + - Version - 版本 + + Cost + - Starting Block - 正在启动数据块 + + Asset data couldn't be found + - Synced Headers - 同步区块头 + + Quantity is to large. Max is 21,000,000,000 + - Synced Blocks - 同步区块链 + + Invalid Raven Destination Address + - User Agent - 用户代理 + + Warning: Restricted Assets Issuance requires an address + - Decrease font size - 缩小文字 + + + Warning: Invalid Raven address + - Increase font size - 放大文字 + + + Yes + - Services - 服务 + + No + - Ban Score - 禁止得分 + + + Name + - Connection Time - 连接时间 + + + Total Quantity + - Last Send - 最后发送 + + + Units + - Last Receive - 最后接收 + + + Can Reisssue + - Ping Time - Ping 时间 + + + + IPFS Hash + - The duration of a currently outstanding ping. - 目前这一次 ping 已经过去的时间。 + + + + Txid Hash + - Ping Wait - Ping等待 + + Verifier String + - Min Ping - 最小Ping值 + + + Current Verifier String + - Time Offset - 时间偏移 + + Please select a asset from the menu to display the assets current settings + - Last block time - 上一数据块时间 + + Please select a asset from the menu to display the assets updated settings + - &Open - 打开(&O) + + Current Quantity + - &Console - 控制台(&C) + + Current Units + - &Network Traffic - 网络流量(&N) + + Can Reissue + - &Clear - 清除(&C) + + Unknown data hash type + - Totals - 总数 + + Only IPFS Hashes allowed until RIP5 is activated + - In: - 输入: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Out: - 输出: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - Debug log file - 调试日志文件 + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Clear console - 清空控制台 + + + %1 to %2 + - 1 &hour - 1 小时(&H) + + Are you sure you want to send? + - 1 &day - 1 天(&D) + + added as transaction fee + - 1 &week - 1 周(&W) + + Total Amount %1 + - 1 &year - 1 年(&Y) + + or + - &Disconnect - (&D)断开 + + Confirm reissue assets + - Ban for - 禁止 + + Copy + - &Unban - 重新允许 + + Transaction ID Copied + - Welcome to the %1 RPC console. - 欢迎使用 %1 的 RPC 控制台。 + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 使用上下方向键浏览历史, <b>Ctrl-L</b>清除屏幕。 + + Warning: Unknown change address + - Type <b>help</b> for an overview of available commands. - 使用 <b>help</b> 命令显示帮助信息。 + + Confirm custom change address + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - 警告: 已有骗子通过要求用户在此输入指令以盗取钱包。不要在没有完全理解命令规范时使用控制台。 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Network activity disabled - 网络活动已禁用 + + (no label) + - %1 B - %1 字节 + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 KB - %1 KB + + Send Coins + - %1 MB - %1 MB + + Asset Balances + - %1 GB - %1 GB + + + Search + - (node id: %1) - (节点ID: %1) + + Address List + - via %1 - 通过 %1 + + Balance: + - never - 从未 + + + Failed to create a change address + - Inbound - 传入 + + Failed to generate the correct transaction. Please try again + - Outbound - 传出 + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - No - + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - 未知 + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - - - ReceiveCoinsDialog - &Amount: - 总额(&A): + + + added as transaction fee + - &Label: - 标签(&L): + + + Total Amount %1 + - &Message: - 消息(&M): + + + or + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - 重复使用以前用过的接收地址。重用地址有安全和隐私方面的隐患。除非是为重复生成同一项支付请求,否则请不要这样做。 + + Confirm adding restriction + - R&euse an existing receiving address (not recommended) - 重用现有的接收地址(不推荐) + + Confirm removing resetricton + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - 可在付款请求上备注一条信息,在打开付款请求时可以看到。注意:该消息不是通过Raven网络传送。 + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional label to associate with the new receiving address. - 可为新建的收款地址添加一个标签。 + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - Use this form to request payments. All fields are <b>optional</b>. - 使用此表单要求付款。所有字段都是<b>可选</b>。 + + Confirm adding qualifier + - An optional amount to request. Leave this empty or zero to not request a specific amount. - 可选的请求金额。留空或填零为不要求具体金额。 + + Confirm removing qualifier + + + + SendAssetsEntry - Clear all fields of the form. - 清除此表单的所有字段。 + + This is an asset payment + - Clear - 清除 + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Requested payments history - 请求付款的历史 + + + + Memo: + + + + + Amount: + - &Request payment - 请求付款(&R) + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - 显示选中的请求 (双击也可以显示) + + &Label: + - Show - 显示 + + Asset: + - Remove the selected entries from the list - 从列表中移除选中的条目 + + The Raven address to send the payment to + - Remove - 移除 + + Choose previously used address + - Copy URI - 复制URI + + Alt+A + - Copy label - 复制标签 + + Paste address from clipboard + - Copy message - 复制消息 + + Alt+P + - Copy amount - 复制金额 + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - 二维码 + + Message: + - Copy &URI - 复制 URI(&U) + + Transfer &To: + - Copy &Address - 复制地址(&A) + + Transfer Administrator Asset + - &Save Image... - 保存图片(&S)... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - 请求付款到 %1 + + This is an unauthenticated payment request. + - Payment information - 付款信息 + + + Transfer to: + - URI - URI + + + A&mount: + - Address - 地址 + + This is an authenticated payment request. + - Amount - 金额 + + Enter a label for this address to add it to your address book + - Label - 标签 + + Select to view administrator assets to transfer + - Message - 消息 + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - URI 太长,请试着精简标签或消息文本。 + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - 把 URI 编码成二维码时发生错误。 + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - 日期 + + Failed to get asset metadata for: + - Label - 标签 + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - 消息 + + Failed to get asset outpoints from database + - (no label) - (无标签) + + Selected Balance + - (no message) - (无消息) + + Wallet Balance + - (no amount requested) - (无请求金额) + + Select an administrator asset to transfer + - Requested - 总额 + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins 发送Raven + Coin Control Features 交易源地址控制功能 + Inputs... 输入... + automatically selected 自动选择 + Insufficient funds! 存款不足! + Quantity: 总量: + Bytes: 字节: + Amount: 金额: + Fee: 费用: + After Fee: 加上交易费用后: + Change: 变更 : + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. 如果激活该选项,但是零钱地址用光或者非法,将会新生成零钱地址,转入零钱。 + Custom change address 自定义零钱地址 + Transaction Fee: 交易费用: + Choose... 选择... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings 收起 费用设置 + per kilobyte 每kb - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. - 如果自定义交易费设置为 1000聪而交易大小只有250字节,则“每千字节" 模式只支付250聪交易费, 而"最少"模式则支付1000聪。 大于1000字节的交易按每千字节付费。 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + 如果自定义交易费设置为 1000聪而交易大小只有250字节,则“每千字节" 模式只支付250聪交易费, 而"最少"模式则支付1000聪。 大于1000字节的交易按每千字节付费。 + Hide 隐藏 - total at least - 最小额 - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. 交易量小时只支付最小交易费是可以的。但是请注意,当交易量大到超出网络可处理时您的交易可能永远无法确认。 + (read the tooltip) (请注意提示信息) + Recommended: 推荐: + Custom: 自定义: + (Smart fee not initialized yet. This usually takes a few blocks...) (智能交易费用 尚未初始化。 需要再下载一些数据块...) - normal - 一般 + + Request Replace-By-Fee + - fast - 快速 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once 一次发送给多个接收者 + Add &Recipient 添加收款人(&R) + Clear all fields of the form. 清除此表单的所有字段。 + Dust: 小额: + + Confirmation time target: + + + + Clear &All 清除所有(&A) + Balance: 余额: + Confirm the send action 确认发送货币 + S&end 发送(&E) + Copy quantity 复制数目 + Copy amount 复制金额 + Copy fee 复制手续费 + Copy after fee 复制计费后金额 + Copy bytes 复制字节数 + Copy dust 复制零散金额 + Copy change 复制找零金额 + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 到 %2 + Are you sure you want to send? 您确定要发出吗? + added as transaction fee 已添加交易费 + Total Amount %1 总金额 %1 + or + Confirm send coins 确认发送货币 + The recipient address is not valid. Please recheck. 接收人地址无效。请重新检查。 + The amount to pay must be larger than 0. 支付金额必须大于0。 + The amount exceeds your balance. 金额超出您的账上余额。 + The total exceeds your balance when the %1 transaction fee is included. 计入 %1 交易费后的金额超出您的账上余额。 + Duplicate address found: addresses should only be used once each. 发现重复地址:每个地址应该只使用一次。 + Transaction creation failed! 交易创建失败! + The transaction was rejected with the following reason: %1 交易因以下原因拒绝:%1 + A fee higher than %1 is considered an absurdly high fee. 超过 %1 的交易费被认为是荒谬的高费率。 + Payment request expired. 付款请求已过期。 - - %n block(s) - %n 个区块 - + Pay only the required fee of %1 只支付必要费用 %1 + Estimated to begin confirmation within %n block(s). - 预计 %n 个数据块后被确认。 + + Warning: Invalid Raven address 警告: Raven地址无效 + Warning: Unknown change address 警告:未知的更改地址 + + Confirm custom change address + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? 你选择的找零地址未被包含在本钱包中,你钱包中的部分或全部金额将被发送至该地址。你确定要这样做吗? + (no label) (无标签) @@ -2204,82 +5500,108 @@ SendCoinsEntry + + + A&mount: 金额(&M) - Pay &To: - 付给(&T): - - + &Label: 标签(&L): + Choose previously used address 选择以前用过的地址 + This is a normal payment. 这是笔正常的支付。 + The Raven address to send the payment to 付款目的地址 + Alt+A Alt+A + Paste address from clipboard 从剪贴板粘贴地址 + Alt+P Alt+P + + + Remove this entry 移除此项 + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. 交易费将从发送总额中扣除。接收人将收到比您在金额框中输入的更少的Raven。如果选中了多个收件人,交易费平分。 + S&ubtract fee from amount 从金额中减去交易费(&U) + Message: 消息: + + Send &To: + + + + This is an unauthenticated payment request. 这是一个未经验证的支付请求。 + + + Send to: + + + + This is an authenticated payment request. 这是一个已经验证的支付请求。 + Enter a label for this address to add it to the list of used addresses 请为此地址输入一个标签以将它加入用过的地址列表 + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. raven:URI 附带的备注信息,将会和交易一起存储,备查。 注意:该消息不会通过Raven网络传输。 - Pay To: - 支付给: - - + + Memo: 便条: + Enter a label for this address to add it to your address book 为这个地址输入一个标签,以便将它添加到您的地址簿 @@ -2287,6 +5609,8 @@ SendConfirmationDialog + + Yes @@ -2294,10 +5618,12 @@ ShutdownWindow + %1 is shutting down... 正在关闭 %1 ... + Do not shut down the computer until this window disappears. 在此窗口消失前不要关闭计算机。 @@ -2305,138 +5631,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message 签名 - 为消息签名/验证签名消息 + &Sign Message 签名消息(&S) + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 您可以用你的地址对消息/协议进行签名,以证明您可以接收发送到该地址的Raven。注意不要对任何模棱两可或者随机的消息进行签名,以免遭受钓鱼式攻击。请确保消息内容准确的表达了您的真实意愿。 + The Raven address to sign the message with 用来对消息签名的地址 + + Choose previously used address 选择以前用过的地址 + + Alt+A Alt+A + Paste address from clipboard 从剪贴板粘贴地址 + Alt+P Alt+P + Enter the message you want to sign here 请输入您要发送的签名消息 + Signature 签名 + Copy the current signature to the system clipboard 复制当前签名至剪切板 + Sign the message to prove you own this Raven address 签名消息,证明这个地址属于您。 + Sign &Message 消息签名(&M) + Reset all sign message fields 清空所有签名消息栏 + + Clear &All 清除所有(&A) + &Verify Message 验证消息(&V) - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! 请在下面输入接收者地址、消息(确保换行符、空格符、制表符等完全相同)和签名以验证消息。请仔细核对签名信息,以提防中间人攻击。请注意,这只是证明接收方签名的地址,它不能证明任何交易! + The Raven address the message was signed with 消息使用的签名地址 + Verify the message to ensure it was signed with the specified Raven address 验证消息,确保消息是由指定的Raven地址签名过的。 + Verify &Message 验证消息签名(&M) + Reset all verify message fields 清空所有验证消息栏 - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature 单击“签名消息“产生签名。 + + The entered address is invalid. 输入的地址非法。 + + + + Please check the address and try again. 请检查地址后重试。 + + The entered address does not refer to a key. 输入的地址没有关联的公私钥对。 + Wallet unlock was cancelled. 钱包解锁动作取消。 + Private key for the entered address is not available. 找不到输入地址关联的私钥。 + Message signing failed. 消息签名失败。 + Message signed. 消息已签名。 + The signature could not be decoded. 签名无法解码。 + + Please check the signature and try again. 请检查签名后重试。 + The signature did not match the message digest. 签名与消息摘要不匹配。 + Message verification failed. 消息验证失败。 + Message verified. 消息验证成功。 @@ -2444,6 +5813,7 @@ SplashScreen + [testnet] [测试网络] @@ -2451,6 +5821,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2458,174 +5829,260 @@ TransactionDesc + Open for %n more block(s) - 再打开 %n 个数据块 + + Open until %1 至 %1 个数据块时开启 + conflicted with a transaction with %1 confirmations 与一个有 %1 个确认的交易冲突 + %1/offline %1 / 离线 + 0/unconfirmed, %1 0/未确认,%1 + in memory pool 在内存池中 + not in memory pool 不在内存池中 + abandoned 已抛弃 + %1/unconfirmed %1/未确认 + %1 confirmations %1 已确认 + + Status 状态 + + , has not been successfully broadcast yet ,未被成功广播 + + , broadcast through %n node(s) - , 通过 %n 个节点广播 + + + Date 日期 + Source + Generated 生成 + + + + + From 来自 + + unknown 未知 + + + + + To + + own address 自己的地址 + + + watch-only 观察地址(watch-only) + + label 标签 + + + + + + + Credit 收入 + matures in %n more block(s) - %n 个数据块后成熟(mature) + + not accepted 未被接受 + + + + + Debit 支出 + Total debit 总收入 + Total credit 总支出 + Transaction fee 交易费 + Net amount 净额 + + + + Message 消息 + + Comment 备注 + + Transaction ID ID + + Transaction total size 交易总大小 + + Output index 输出索引 + + Merchant 商家 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 生成的Raven在可以使用前必须有 %1 个成熟的区块。当您生成了此区块后,它将被广播到网络中以加入区块链。如果它未成功进入区块链,其状态将变更为“不接受”并且不可使用。这可能偶尔会发生,如果另一个节点比你早几秒钟成功生成一个区块。 + + Net RVN amount + + + + Debug information 调试信息 + Transaction 交易 + Inputs 输入 + Amount 金额 + + true + + false @@ -2633,268 +6090,424 @@ TransactionDescDialog + This pane shows a detailed description of the transaction 当前面板显示了交易的详细信息 - + + + Details for %1 + + + TransactionTableModel + Date 日期 + Type 种类 + Label 标签 + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + Open until %1 至 %1 个数据块时开启 + Offline 掉线 + Unconfirmed 未确认的 + + Abandoned + + + + Confirming (%1 of %2 recommended confirmations) 确认中 (推荐 %2个确认,已经有 %1个确认) + Confirmed (%1 confirmations) 已确认 (%1 条确认信息) + Conflicted 冲突的 + Immature (%1 confirmations, will be available after %2) 未成熟 (%1 个确认,将在 %2 个后可用) + This block was not received by any other nodes and will probably not be accepted! 此数据块未被任何其他节点接收,可能不被接受! + Generated but not accepted 已生成但未被接受 + Received with 收款 + Received from 收款来自 + Sent to 付款 + Payment to yourself 付款给自己 + Mined 挖矿所得 + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only 观察地址(watch-only) + (n/a) (不可用) + (no label) (无标签) + Transaction status. Hover over this field to show number of confirmations. 交易状态。 鼠标移到此区域可显示确认项数量。 + Date and time that the transaction was received. 接收到交易的时间 + Type of transaction. 交易类别。 + Whether or not a watch-only address is involved in this transaction. 该交易中是否涉及 观察地址(watch-only address)。 + User-defined intent/purpose of the transaction. 用户定义的该交易的意图/目的。 + Amount removed from or added to balance. 从余额添加或移除的金额。 + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All 全部 + Today 今天 + This week 这星期 + This month 这个月 + Last month 上个月 + This year 今年 + Range... 指定范围... + Received with 收款 + Sent to 付款 + To yourself 给自己 + Mined 挖矿所得 + Other 其它 + Enter address or label to search 输入地址或标签进行搜索 + Min amount 最小金额 + + Asset name + + + + Abandon transaction 放弃交易 + Copy address 复制地址 + Copy label 复制标签 + Copy amount 复制金额 + Copy transaction ID 复制交易识别码 + Copy raw transaction 复制原始交易 + Copy full transaction details 复制所有交易详情 + Edit label 编辑标签 + Show transaction details 显示交易详情 + + Browse with: + + + + Export Transaction History 导出交易历史 + Comma separated file (*.csv) 逗号分隔文件 (*.csv) + Confirmed 已确认 + Watch-only 观察地址(Watch-only) + Date 日期 + Type 种类 + Label 标签 + Address 地址 + + Asset + + + + ID ID + Exporting Failed 导出失败 + There was an error trying to save the transaction history to %1. 导出交易历史到 %1 时发生错误。 + Exporting Successful 导出成功 + The transaction history was successfully saved to %1. 交易历史已成功保存到 %1。 + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: 范围: + to @@ -2902,6 +6515,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. 金额单位。单击选择别的单位。 @@ -2909,6 +6523,7 @@ WalletFrame + No wallet has been loaded. 没有载入钱包。 @@ -2916,752 +6531,1771 @@ WalletModel + Send Coins 发送Raven + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export 导出(&E) + Export the data in the current tab to a file 导出当前分页里的数据到文件 + Backup Wallet 备份钱包 + Wallet Data (*.dat) 钱包文件(*.dat) + Backup Failed 备份失败 + There was an error trying to save the wallet data to %1. 尝试保存钱包数据至 %1 时发生错误。 + Backup Successful 备份成功 + The wallet data was successfully saved to %1. 钱包数据成功保存至 %1 。 + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: 选项: + Specify data directory 指定数据目录 + Connect to a node to retrieve peer addresses, and disconnect 连接一个节点并获取对端地址,然后断开连接 + Specify your own public address 指定您的公共地址 + Accept command line and JSON-RPC commands 接受命令行和 JSON-RPC 命令 + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + If <category> is not supplied or if <category> = 1, output all debugging information. 如果<category>未提供或<category> = 1,输出所有调试信息。 + Prune configured below the minimum of %d MiB. Please use a higher number. 修剪值被设置为低于最小值%d MiB,请使用更大的数值。 + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) 修剪:最后的钱包同步超过了修剪的数据。你需要通过 -reindex (重新下载整个区块链以防修剪节点) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. 无法在开启修剪的状态下重扫描,请使用 -reindex重新下载完整的区块链。 + Error: A fatal internal error occurred, see debug.log for details 错误:发生了致命的内部错误,详情见 debug.log 文件 + Fee (in %s/kB) to add to transactions you send (default: %s) 为付款交易添加交易费 (%s/kB) (默认: %s) + Pruning blockstore... 正在修剪区块存储... + Run in the background as a daemon and accept commands 在后台运行并接受命令 + Unable to start HTTP server. See debug log for details. 无法启动HTTP服务,查看日志获取更多信息 + Raven Core Raven Core + The %s developers %s 开发人员 + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) 当费用估计数据(default: %s)不足时将会启用的费率 (in %s/kB) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) 即使在无关联交易(默认: %d)时也接受来自白名单同行的关联交易 + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 绑定指定的IP地址开始监听。IPv6地址请使用[host]:port 格式 + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup 删除钱包的所有交易记录,且只有用 -rescan参数启动客户端才能重新取回交易记录 + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 当最佳区块变化时执行命令 (命令行中的 %s 会被替换成区块哈希值) + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) 设置脚本验证的程序 (%u 到 %d, 0 = 自动, <0 = 保留自由的核心, 默认值: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct 区块数据库包含未来的交易,这可能是由本机错误的日期时间引起。若确认本机日期时间正确,请重新建立区块数据库。 + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) 使用UPnP暴露本机监听端口(默认:1 当正在监听且不使用代理) + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + -maxmempool must be at least %d MB -maxmempool 最小为%d MB + <category> can be: <category> 可能是: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string 为用户代理字符串附加说明 + + Attempt to recover private keys from a corrupt wallet on startup + + + + Block creation options: 数据块创建选项: - Cannot resolve -%s address: '%s' - 无法解析 - %s 地址: '%s' + + Cannot resolve -%s address: '%s' + 无法解析 - %s 地址: '%s' + + Chain selection options: + + + + + Change index out of range + + + + Connection options: 连接选项: + Copyright (C) %i-%i 版权所有 (C) %i-%i + Corrupted block database detected 检测发现数据块数据库损坏。请使用 -reindex参数重启客户端。 + Debugging/Testing options: 调试/测试选项: + Do not load the wallet and disable wallet RPC calls 不要加载钱包和禁用钱包的 RPC 调用 + Do you want to rebuild the block database now? 你想现在就重建块数据库吗? + Enable publish hash block in <address> 允许在<address>广播哈希区块 + Enable publish hash transaction in <address> 允许在<address>广播哈希交易 + Enable publish raw block in <address> 允许在<address>广播原始区块 + Enable publish raw transaction in <address> 允许在<address>广播原始交易 + Enable transaction replacement in the memory pool (default: %u) 保证内存池中的交易更换(默认:%u) + Error initializing block database 初始化数据块数据库出错 + Error initializing wallet database environment %s! Error initializing wallet database environment %s! + Error loading %s 载入 %s 时发生错误 + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + Error loading block database 导入数据块数据库出错 + Error opening block database 导入数据块数据库出错 + Error: Disk space is low! 错误:磁盘剩余空间低! + Failed to listen on any port. Use -listen=0 if you want this. 监听端口失败。请使用 -listen=0 参数。 + Importing... 导入中... + Incorrect or no genesis block found. Wrong datadir for network? 不正确或没有找到起源区块。网络错误? - Invalid -onion address: '%s' - 无效的 -onion 地址:“%s” + + Initialization sanity check failed. %s is shutting down. + - Invalid amount for -fallbackfee=<amount>: '%s' - -fallbackfee 的无效数额=<amount>: '%s' + + Invalid amount for -%s=<amount>: '%s' + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + -fallbackfee 的无效数额=<amount>: '%s' + + + Keep the transaction memory pool below <n> megabytes (default: %u) 保持交易内存池大小低于<n>MB(默认:%u) + + Loading P2P addresses... + + + + + Loading banlist... + + + + Location of the auth cookie (default: data dir) 认证Cookie的位置 (默认: data目录) + Not enough file descriptors available. 没有足够的文件描述符可用。 + Only connect to nodes in network <net> (ipv4, ipv6 or onion) 只连接 <net>网络中的节点 (ipv4, ipv6 或 onion) + + Print this help message and exit + + + + Print version and exit 打印版本信息并退出 + Prune cannot be configured with a negative value. 修剪不能配置一个负数。 + Prune mode is incompatible with -txindex. 修剪模式与 -txindex 不兼容。 - Set database cache size in megabytes (%d to %d, default: %d) - 设置以MB为单位的数据库缓存大小(%d 到 %d, 默认值: %d) + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + - Set maximum block size in bytes (default: %d) - 设置最大区块大小 (默认: %d,单位字节) + + Rewinding blocks... + + + Set database cache size in megabytes (%d to %d, default: %d) + 设置以MB为单位的数据库缓存大小(%d 到 %d, 默认值: %d) + + + Specify wallet file (within data directory) 指定钱包文件(数据目录内) + The source code is available from %s. 源代码可以在 %s 获得。 + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + Unsupported argument -benchmark ignored, use -debug=bench. 忽略不支持的选项 -benchmark,使用 -debug=bench + Unsupported argument -debugnet ignored, use -debug=net. 忽略不支持的选项 -debugnet,使用 -debug=net。 + Unsupported argument -tor found, use -onion. 忽略不支持的选项 -tor,使用 -oinon + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) 使用UPnp映射监听端口 (默认: %u) + Use the test chain 使用测试链 + User Agent comment (%s) contains unsafe characters. 用户代理评论(%s)包含不安全的字符。 + Verifying blocks... 正在验证区块... - Verifying wallet... - 正在验证钱包... - - + Wallet %s resides outside data directory %s 钱包 %s 在外部的数据目录 %s + Wallet debugging/testing options: 钱包调试/测试选项: + + Wallet needed to be rewritten: restart %s to complete + + + + Wallet options: 钱包选项: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times 允许来自指定地址的 JSON-RPC 连接。 <ip>为单一IP (如: 1.2.3.4), 网络/掩码 (如: 1.2.3.4/255.255.255.0), 网络/CIDR (如: 1.2.3.4/24)。该选项可多次指定。 + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 绑定到指定地址和连接的白名单节点。 IPv6使用 [主机]:端口 格式 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - 绑定到指定地址监听 JSON-RPC连接。 IPv6使用[主机]:端口 格式。该选项可多次指定 (默认: 绑定到所有接口) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) 创建系统默认权限的文件,而不是 umask 077 (只在关闭钱包功能时有效) + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 发现自己的 IP 地址(默认: 监听并且无 -externalip 或 -proxy 时为 1) + Error: Listening for incoming connections failed (listen returned error %s) 错误:监听外部连接失败 (监听返回错误 %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 当收到相关提醒或者我们看到一个长分叉时执行命令(%s 将替换为消息) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) 交易费(in %s/kB)比这更小的在关联、挖掘和生成交易时将被视为零费交易 (默认: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) 如果未设置交易费用,自动添加足够的交易费以确保交易在平均n个数据块内被确认 (默认: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - -maxtxfee=<amount>: '%s' 的金额无效(交易费至少为 %s,以免交易滞留过久) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount>: '%s' 的金额无效(交易费至少为 %s,以免交易滞留过久) + Maximum size of data in data carrier transactions we relay and mine (default: %u) Maximum size of data in data carrier transactions we relay and mine (default: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) 为每个代理连接随机化凭据。这将启用 Tor 流隔离 (默认: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - 设置 高优先级/低交易费 交易的最大字节 (缺省: %d) - - + The transaction amount is too small to send after the fee has been deducted 在交易费被扣除后发送的交易金额太小 + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway 白名单节点不能被DoS banned ,且转发所有来自他们的交易(即便这些交易已经存在于mempool中),常用于网关 + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain 您需要使用 -reindex 重新构建数据库以返回未修剪的模式。这将重新下载整个区块链 + (default: %u) (默认: %u) + Accept public REST requests (default: %u) 接受公共 REST 请求 (默认: %u) + Automatically create Tor hidden service (default: %d) 自动建立Tor隐藏服务 (默认:%d) + Connect through SOCKS5 proxy 通过 SOCKS5 代理连接 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. 读取数据库出错,关闭中。 + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup 启动时从其他来源的 blk000??.dat 文件导入区块 + Information 信息 - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - 无效的金额 -paytxfee=<amount>: '%s' (必须至少为 %s) + + Invalid -onion address or hostname: '%s' + - Invalid netmask specified in -whitelist: '%s' - -whitelist: '%s' 指定的网络掩码无效 + + Invalid -proxy address or hostname: '%s' + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + 无效的金额 -paytxfee=<amount>: '%s' (必须至少为 %s) + + + + Invalid netmask specified in -whitelist: '%s' + -whitelist: '%s' 指定的网络掩码无效 + + + Keep at most <n> unconnectable transactions in memory (default: %u) 内存中最多保留 <n> 笔孤立的交易 (默认: %u) - Need to specify a port with -whitebind: '%s' - -whitebind: '%s' 需要指定一个端口 + + Need to specify a port with -whitebind: '%s' + -whitebind: '%s' 需要指定一个端口 + Node relay options: 节点中继选项: + RPC server options: RPC 服务器选项: + Reducing -maxconnections from %d to %d, because of system limitations. 因为系统的限制,将 -maxconnections 参数从 %d 降到了 %d + Rescan the block chain for missing wallet transactions on startup 重新扫描区块链以查找遗漏的钱包交易 + Send trace/debug info to console instead of debug.log file 跟踪/调试信息输出到控制台,不输出到 debug.log 文件 - Send transactions as zero-fee transactions if possible (default: %u) - 发送时尽可能 不支付交易费用 (默认: %u) - - + Show all debugging options (usage: --help -help-debug) 显示所有调试选项 (用法: --帮助 -帮助调试) + Shrink debug.log file on client startup (default: 1 when no -debug) 客户端启动时压缩debug.log文件(缺省:no-debug模式时为1) + Signing transaction failed 签署交易失败 + The transaction amount is too small to pay the fee 交易金额太小,不足以支付交易费 + This is experimental software. 这是实验性的软件。 + Tor control port password (default: empty) Tor 控制端口密码 (默认值: 空白) + Tor control port to use if onion listening enabled (default: %s) 开启监听 onion 连接时的 Tor 控制端口号 (默认值: %s) + Transaction amount too small 交易量太小 + Transaction too large for fee policy 费用策略的交易太大 + Transaction too large 交易太大 + Unable to bind to %s on this computer (bind returned error %s) 无法在此计算机上绑定 %s (绑定返回错误 %s) + Upgrade wallet to latest format on startup 程序启动时升级钱包到最新格式 + Username for JSON-RPC connections JSON-RPC 连接用户名 + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning 警告 + Warning: unknown new rules activated (versionbit %i) 警告: 不明的交易规则被启用了(versionbit %i) + Whether to operate in a blocks only mode (default: %u) 是否用块方进行 (%u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... 正在消除錢包中的所有交易... + ZeroMQ notification options: ZeroMQ 通知选项: + Password for JSON-RPC connections JSON-RPC 连接密码 + Execute command when the best block changes (%s in cmd is replaced by block hash) 当最佳数据块变化时执行命令 (命令行中的 %s 会被替换成数据块哈希值) + Allow DNS lookups for -addnode, -seednode and -connect 使用 -addnode, -seednode 和 -connect 选项时允许查询DNS - Loading addresses... - 正在加载地址簿... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 = 保留 tx meta data , 如 account owner 和 payment request information, 2 = 不保留 tx meta data) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. 参数 -maxtxfee 设定了很高的金额!这是你一次交易就有可能付出的最高手续费。 + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) 不要让交易留在内存池中超过 <n> 个小时 (默认值: %u) + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) 当产生交易时,如果每千字节 (kB) 的手续费比这个值 (单位是 %s) 低,就视为没支付手续费 (默认值: %s) + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) 数据块验证 严密级别 -checkblocks (0-4, 默认: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) 维护一份完整的交易索引, 用于 getrawtransaction RPC调用 (默认: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) 限制 非礼节点 若干秒内不能连接 (默认: %u) + Output debugging information (default: %u, supplying <category> is optional) 输出调试信息 (默认: %u, 提供 <category> 是可选项) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) 支持用 Bloom 过滤器来过滤区块和交易(默认值: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. 网络版本字符串的总长度 (%i) 超过最大长度 (%i) 了。请减少 uacomment 参数的数目或长度。 + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 尝试保持上传带宽低于(MiB/24h),0=无限制(默认:%d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. 找到不再支持的 -socks 参数。现在只支持 SOCKS5 协议的代理服务器,因此不可以指定 SOCKS 协议版本。 + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. 一个不被支持的参数 -whitelistalwaysrelay 被忽略了。请使用 -whitelistrelay 或者 -whitelistforcerelay. + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) 通过Tor隐藏服务连接节点时 使用不同的SOCKS5代理 (默认: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect 警告: 未知的区块版本被挖掘!未知规则可能已生效 + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (默认: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) 始终通过 DNS 查询节点地址 (默认: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) 启动时检测多少个数据块(默认: %u, 0=所有) + Include IP addresses in debug output (default: %u) 在调试输出中包含IP地址 (默认: %u) - Invalid -proxy address: '%s' - 无效的代理地址:%s + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) 使用 <port>端口监听 JSON-RPC 连接 (默认: %u ; testnet: %u) + Listen for connections on <port> (default: %u or testnet: %u) 使用端口 <port> 监听连接 (默认: %u ; testnet: %u) + Maintain at most <n> connections to peers (default: %u) 保留最多 <n> 条节点连接 (默认: %u) + Make the wallet broadcast transactions 钱包广播事务处理 + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) 每个连接的最大接收缓存,<n>*1000 字节 (默认: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) 每个连接的最大发送缓存,<n>*1000 字节 (默认: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) 输出调试信息时,前面加上时间戳 (默认: %u) + Relay and mine data carrier transactions (default: %u) Relay and mine data carrier transactions (default: %u) + Relay non-P2SH multisig (default: %u) 是否转发 非P2SH格式的多签名交易 (默认: %u) + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + Set key pool size to <n> (default: %u) 设置私钥池大小为 <n> (默认:%u) + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) 设置RPC服务线程数 (默认: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) 指定配置文件 (默认: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) 指定连接超时毫秒数 (最小: 1, 默认: %d) + Specify pid file (default: %s) 指定 pid 文件 (默认: %s) + Spend unconfirmed change when sending transactions (default: %u) 付款时允许使用未确认的零钱 (默认: %u) + Starting network threads... 正在启动网络线程... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + Threshold for disconnecting misbehaving peers (default: %u) 断开 非礼节点的阀值 (默认: %u) - Unknown network specified in -onlynet: '%s' + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' -onlynet 指定的是未知网络:%s + Insufficient funds 金额不足 + Loading block index... 正在加载区块索引... - Add a node to connect to and attempt to keep the connection open - 添加节点并与其保持连接 - - + Loading wallet... 正在加载钱包... + Cannot downgrade wallet 无法降级钱包 - Cannot write default address - 无法写入默认地址 - - + Rescanning... 正在重新扫描... - Done loading - 加载完成 - - + Error 错误 - + \ No newline at end of file diff --git a/src/qt/locale/raven_zh_HK.ts b/src/qt/locale/raven_zh_HK.ts index ac9c3872a4..da5cabe153 100644 --- a/src/qt/locale/raven_zh_HK.ts +++ b/src/qt/locale/raven_zh_HK.ts @@ -1,93 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label 按右擊修改位址或標記 + Create a new address 新增一個位址 + &New 新增 &N + Copy the currently selected address to the system clipboard 複製目前選擇的位址到系統剪貼簿 + &Copy 複製 &C + C&lose 關閉 &l + Delete the currently selected address from the list 把目前選擇的位址從列表中刪除 + Export the data in the current tab to a file 把目前分頁的資料匯出至檔案 + &Export 匯出 &E + &Delete 刪除 &D + Choose the address to send coins to 選擇要付錢過去的地址 + Choose the address to receive coins with 選擇要收錢的地址 + C&hoose 選擇 &h + Sending addresses 付款地址 + Receiving addresses 收款地址 + + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. + + + + + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. + + + + &Copy Address 複製地址 &C + Copy &Label 複製標記 &L + &Edit 編輯 &E + Export Address List 匯出地址清單 + Comma separated file (*.csv) 逗號分隔檔 (*.csv) + Exporting Failed 匯出失敗 + There was an error trying to save the address list to %1. Please try again. 儲存地址列表到 %1 時發生錯誤。請再試一次。 @@ -95,14 +125,17 @@ AddressTableModel + Label 標記 + Address 地址 + (no label) (無標記) @@ -110,568 +143,8145 @@ AskPassphraseDialog + Passphrase Dialog 複雜密碼對話方塊 + Enter passphrase 請輸入密碼 + New passphrase 新密碼 + Repeat new passphrase 重複新密碼 + + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. + + + + Encrypt wallet 加密錢包 + This operation needs your wallet passphrase to unlock the wallet. 這個動作需要你的錢包密碼來將錢包解鎖。 + Unlock wallet 解鎖錢包 + This operation needs your wallet passphrase to decrypt the wallet. 這個動作需要你的錢包密碼來將錢包解密。 + Decrypt wallet 解密錢包 + Change passphrase 更改密碼 + Enter the old passphrase and new passphrase to the wallet. 輸入舊密碼和新密碼至錢包。 + Confirm wallet encryption 確認錢包加密 + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! 警告: 如果你將錢包加密後又忘記密碼,你就會<b>失去所有 Raven 了</b>! + Are you sure you wish to encrypt your wallet? 你確定要把錢包加密嗎? + + Wallet encrypted 錢包已加密 + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 現在要關閉來完成加密程序。請記得將錢包加密不能完全防止你的 Ravens 經被入侵電腦的惡意程式偷取。 + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 請改用新產生的加密錢包檔,來取代所以舊錢包檔的備份。為安全計,當你開始使用新的加密錢包檔後,舊錢包檔的備份就不能再使用了。 + + + + Wallet encryption failed 錢包加密失敗 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 因內部錯誤導致錢包加密失敗,你的錢包尚未加密。 + + The supplied passphrases do not match. 提供的密碼不一致。 + Wallet unlock failed 錢包解鎖失敗 + + + The passphrase entered for the wallet decryption was incorrect. 用來解密錢包的密碼不對。 + Wallet decryption failed 錢包解密失敗 + Wallet passphrase was successfully changed. 錢包密碼已成功更改。 + + Warning: The Caps Lock key is on! 警告: Caps Lock 已啟用! - BanTableModel + AssetControlDialog - IP/Netmask - IP位址/遮罩 + + Asset Selection + - Banned Until - 封鎖至 + + Quantity: + - - - RavenGUI - Sign &message... - 簽署訊息... &m + + Bytes: + - Synchronizing with network... - 與網絡同步中... + + Amount: + - &Overview - 總覽 &O + + Dust: + - Node - 節點 + + Fee: + - Show general overview of wallet - 顯示錢包一般總覽 + + After Fee: + - &Transactions - 交易 &T + + Change: + - Browse transaction history - 瀏覽交易紀錄 + + (un)select all + - E&xit - 結束 &x + + Tree mode + - Quit application - 結束應用程式 + + List mode + - &About %1 - 關於 %1 &A + + View assets that you have the ownership asset for + - Show information about %1 - 顯示 %1 的相關資訊 + + View Administrator Assets + - About &Qt - 關於 Qt &Q + + Asset + - Show information about Qt - 顯示 Qt 相關資訊 + + Amount + - &Options... - 選項... &O + + Received with label + - Modify configuration options for %1 - 修正 %1 的設定選項 + + Received with address + - &Encrypt Wallet... - 加密錢包... &E + + Date + - &Backup Wallet... - 備份錢包... &B + + Confirmations + - &Change Passphrase... - 改變密碼... &C + + Confirmed + - &Sending addresses... - 付款位址... &S + + Copy address + - &Receiving addresses... - 收款位址... &R + + Copy label + - Open &URI... - 開啓網址... &U + + + Copy amount + - Reindexing blocks on disk... - 正在為磁碟區塊重建索引... + + Copy transaction ID + - Send coins to a Raven address - 付款至一個 Raven 位址 + + Lock unspent + - Backup wallet to another location - 把錢包備份到其它地方 + + Unlock unspent + - Change the passphrase used for wallet encryption - 改變錢包加密用的密碼 + + Copy quantity + - &Debug window - 除錯視窗 &D + + Copy fee + - Open debugging and diagnostic console - 開啓除錯和診斷主控台 + + Copy after fee + - &Verify message... - 驗證訊息... &V + + Copy bytes + - Raven - Raven + + Copy dust + - Wallet - 錢包 + + Copy change + - &Send - 付款 &S + + (%1 locked) + - &Receive - 收款 &R + + yes + - &Show / Hide - 顯示 / 隱藏 &S + + no + - Show or hide the main Window - 顯示或隱藏主視窗 + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &File - 檔案 &F + + Can vary +/- %1 satoshi(s) per input. + - &Settings - 設定 &S + + + (no label) + - &Help - 說明 &H + + change from %1 (%2) + - Request payments (generates QR codes and raven: URIs) - 要求付款 (產生QR碼 raven: URIs) + + (change) + + + + AssetTableModel - Indexing blocks on disk... - 正在為磁碟區塊建立索引... + + Name + - Error - 錯誤 + + Quantity + + + + AssetsDialog - Warning - 警告 + + + Send Coins + - Information - 資訊 + + Asset Control Features + - Date: %1 - - 日期: %1 - + + Inputs... + - - - CoinControlDialog - (no label) - (無標記) + + automatically selected + - - - EditAddressDialog - - - FreespaceChecker - - - HelpMessageDialog - - - Intro - Error - 錯誤 + + Insufficient funds! + - - - ModalOverlay - - - OpenURIDialog - - - OptionsDialog - - - OverviewPage - - - PaymentServer - - - PeerTableModel - - - QObject - Enter a Raven address (e.g. %1) - 輸入一個 Raven 位址 (例如 %1) + + Quantity: + - %1 d - %1 日 + + Bytes: + - %1 h - %1 小時 + + Amount: + - %1 m - %1 分 + + Dust: + - %1 s - %1 秒 + + Fee: + - None - 沒有 + + After Fee: + - N/A - N/A + + Change: + - %1 ms - %1 亳秒 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - %n second(s) - %n 秒 + + + Custom change address + - - %n minute(s) - %n 分鐘 + + + Transaction Fee: + - - %n hour(s) - %n 小時 + + + Choose... + - - %n day(s) - %n 日 + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - - %n week(s) - %n 星期 + + + Warning: Fee estimation is currently not possible. + - %1 and %2 - %1 和 %2 + + collapse fee-settings + - - %n year(s) - %n 年 + + + Hide + - - - QObject::QObject - - - QRImageWidget - Save QR Code - 儲存 QR 碼 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - PNG Image (*.png) - PNG 影像(*.png) + + per kilobyte + - - - RPCConsole - N/A - N/A + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - &Information - 資訊 &I + + (read the tooltip) + - Debug window - 除錯視窗 + + Recommended: + - General - 一般 + + Custom: + - Received - 已接收 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Sent - 已送出 + + Confirmation time target: + - Version - 版本 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - - - ReceiveCoinsDialog - - - ReceiveRequestDialog - Address - 地址 + + Request Replace-By-Fee + - Label - 標記 + + Confirm the send action + - - - RecentRequestsTableModel - Label - 標記 + + S&end + - (no label) - (無標記) + + Clear all fields of the form. + - - - SendCoinsDialog - (no label) - (無標記) + + Clear &All + - - - SendCoinsEntry - - - SendConfirmationDialog - - - ShutdownWindow - - - SignVerifyMessageDialog - - - SplashScreen - - - TrafficGraphWidget - - - TransactionDesc - Open until %1 - 開放至 %1 + + Transfer to multiple recipients at once + - - - TransactionDescDialog - - - TransactionTableModel - Label - 標記 + + Add &Recipient + - Open until %1 - 開放至 %1 + + Balance: + - (no label) - (無標記) + + Copy quantity + - - - TransactionView - Comma separated file (*.csv) - 逗號分隔檔 (*.csv) + + Copy amount + - Label - 標記 + + Copy fee + - Address - 地址 + + Copy after fee + - Exporting Failed - 匯出失敗 + + Copy bytes + - - - UnitDisplayStatusBarControl - - - WalletFrame - - - WalletModel - - - WalletView - &Export - 匯出 &E + + Copy dust + - Export the data in the current tab to a file - 把目前分頁的資料匯出至檔案 + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + - + - raven-core + AssignQualifier - Information - 資訊 + + Frame + - Warning - 警告 + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + IP位址/遮罩 + + + + Banned Until + 封鎖至 + + + + CoinControlDialog + + + Coin Selection + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + Dust: + + + + + After Fee: + + + + + Change: + + + + + (un)select all + + + + + Tree mode + + + + + List mode + + + + + Amount + + + + + Received with label + + + + + Received with address + + + + + Date + + + + + Confirmations + + + + + Confirmed + + + + + Copy address + + + + + Copy label + + + + + + Copy amount + + + + + Copy transaction ID + + + + + Lock unspent + + + + + Unlock unspent + + + + + Copy quantity + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + (%1 locked) + + + + + yes + + + + + no + + + + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + + + + + Can vary +/- %1 satoshi(s) per input. + + + + + + (no label) + (無標記) + + + + change from %1 (%2) + + + + + (change) + + + + + CreateAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Name: + + + + + A-Z 0-9 and . or _ as the second character + + + + + The name of the asset you would like to create + + + + + Check Availabilty + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + + + + + Warning: + + + + + The number of assets that will be created + + + + + Units: + + + + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + + + + + e.g. 1 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Does this asset have an ipfs hash to go with it + + + + + Add IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + C&ustom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Create Asset + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + Main Asset + + + + + Sub Asset + + + + + Unique Asset + + + + + Messaging Channel Asset + + + + + Qualifier Asset + + + + + Sub Qualifier Asset + + + + + Restricted Asset + + + + + Asset Type + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + + Warning: Invalid Raven address + + + + + Warning: Restricted Assets Reissuance requires an address + + + + + Valid Asset + + + + + Invalid: Asset name already in use + + + + + Error: Asset Database not in sync + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send assets + + + + + Invalid: + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + EditAddressDialog + + + Edit Address + + + + + &Label + + + + + The label associated with this address list entry + + + + + The address associated with this address list entry. This can only be modified for sending addresses. + + + + + &Address + + + + + New receiving address + + + + + New sending address + + + + + Edit receiving address + + + + + Edit sending address + + + + + The entered address "%1" is not a valid Raven address. + + + + + The entered address "%1" is already in the address book. + + + + + Could not unlock wallet. + + + + + New key generation failed. + + + + + FreespaceChecker + + + A new data directory will be created. + + + + + name + + + + + Directory already exists. Add %1 if you intend to create a new directory here. + + + + + Path already exists, and is not a directory. + + + + + Cannot create data directory here. + + + + + FreezeAddress + + + Frame + + + + + Restricted Asset: + + + + + Address: + + + + + Custom Change Address + + + + + IPFS / Hash: + + + + + Single Address Options + + + + + Global Options + + + + + Free&ze trading on this address + + + + + Unfreeze tradin&g on this address + + + + + Freeze all &trading for the selected restricted asset + + + + + &Unfreeze all trading for the selected restricted asset + + + + + Check + + + + + Clear + + + + + Submit + + + + + Data has been validated, You can now submit the restriction transaction + + + + + Must have a restricted asset selected + + + + + Address is already frozen + + + + + Address is not frozen + + + + + Restricted asset is already frozen globally + + + + + Restricted asset is not frozen globally + + + + + Unable to preform action at this time + + + + + GUIUtil::SyncWarningMessage + + + Warning: transaction while syncing wallet! + + + + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + + HelpMessageDialog + + + version + + + + + + (%1-bit) + + + + + About %1 + + + + + Command-line options + + + + + Usage: + + + + + command-line options + + + + + UI Options: + + + + + Choose data directory on startup (default: %u) + + + + + Set language, for example "de_DE" (default: system locale) + + + + + Start minimized + + + + + Set SSL root certificates for payment request (default: -system-) + + + + + Show splash screen on startup (default: %u) + + + + + Reset all settings changed in the GUI + + + + + Intro + + + Welcome + + + + + Welcome to %1. + + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + + + + + Use a custom data directory: + + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + + + + + Error + 錯誤 + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + + + + + Number of blocks left + + + + + + + Unknown... + + + + + Last block time + + + + + Progress + + + + + Progress increase per hour + + + + + + calculating... + + + + + Estimated time left until synced + + + + + Hide + + + + + Unknown. Syncing Headers (%1)... + + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + + + + + Open payment request from URI or file + + + + + URI: + + + + + Select payment request file + + + + + Select payment request file to open + + + + + OptionsDialog + + + Options + + + + + &Main + + + + + Automatically start %1 after logging in to the system. + + + + + &Start %1 on system login + + + + + Size of &database cache + + + + + MB + + + + + Number of script &verification threads + + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + + + + + Active command-line options that override above options: + + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + + + + + &Reset Options + + + + + &Network + + + + + (0 = auto, <0 = leave that many cores free) + + + + + W&allet + + + + + Expert + + + + + Enable coin &control features + + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + + + + + &Spend unconfirmed change + + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + + + + + Map port using &UPnP + + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + + + + + &Connect through SOCKS5 proxy (default proxy): + + + + + + Proxy &IP: + + + + + + &Port: + + + + + + Port of the proxy (e.g. 9050) + + + + + Used for reaching peers via: + + + + + IPv4 + + + + + IPv6 + + + + + Tor + + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + + + + + &Window + + + + + Show only a tray icon after minimizing the window. + + + + + &Minimize to the tray instead of the taskbar + + + + + M&inimize on close + + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + + + + + User Interface &language: + + + + + The user interface language can be set here. This setting will take effect after restarting %1. + + + + + &Unit to show amounts in: + + + + + Choose the default subdivision unit to show in the interface and when sending coins. + + + + + Whether to show coin control features or not. + + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + + + + + default + + + + + none + + + + + Confirm options reset + + + + + + Client restart required to activate changes. + + + + + Client will be shut down. Do you want to proceed? + + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + + + + + The supplied proxy address is invalid. + + + + + OverviewPage + + + Form + + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + + + + + Watch-only: + + + + + Available: + + + + + Your current spendable balance + + + + + Pending: + + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + + + + + Immature: + + + + + Mined balance that has not yet matured + + + + + Total: + + + + + Your current total balance + + + + + RVN Balances + + + + + Your current balance in watch-only addresses + + + + + Spendable: + + + + + Asset Balances + + + + + Search + + + + + Recent transactions + + + + + Unconfirmed transactions to watch-only addresses + + + + + Mined balance in watch-only addresses that has not yet matured + + + + + Current total balance in watch-only addresses + + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + + + + + Cannot start raven: click-to-pay handler + + + + + + + URI handling + + + + + Payment request fetch URL is invalid: %1 + + + + + Invalid payment address %1 + + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + + + + + Payment request file handling + + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + + + + + + + + + + Payment request rejected + + + + + Payment request network doesn't match client network. + + + + + Payment request expired. + + + + + Payment request is not initialized. + + + + + Unverified payment requests to custom payment scripts are unsupported. + + + + + + Invalid payment request. + + + + + Requested payment amount of %1 is too small (considered dust). + + + + + Refund from %1 + + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + + + + + Error communicating with %1: %2 + + + + + Payment request cannot be parsed! + + + + + Bad response from server %1 + + + + + Network request error + + + + + Payment acknowledged + + + + + PeerTableModel + + + User Agent + + + + + Node/Service + + + + + NodeId + + + + + Ping + + + + + Sent + + + + + Received + + + + + QObject + + + Amount + + + + + Enter a Raven address (e.g. %1) + 輸入一個 Raven 位址 (例如 %1) + + + + %1 d + %1 日 + + + + %1 h + %1 小時 + + + + %1 m + %1 分 + + + + + %1 s + %1 秒 + + + + None + 沒有 + + + + N/A + N/A + + + + %1 ms + %1 亳秒 + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1 和 %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + + + + + Error: %1 + + + + + QRImageWidget + + + &Save Image... + + + + + &Copy Image + + + + + Save QR Code + 儲存 QR 碼 + + + + PNG Image (*.png) + PNG 影像(*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + N/A + + + + Client version + + + + + &Information + 資訊 &I + + + + Debug window + 除錯視窗 + + + + General + 一般 + + + + Using BerkeleyDB version + + + + + Datadir + + + + + Startup time + + + + + Network + + + + + Name + + + + + Number of connections + + + + + Block chain + + + + + Current number of blocks + + + + + Memory Pool + + + + + Current number of transactions + + + + + Memory usage + + + + + &Reset + + + + + + Received + 已接收 + + + + + Sent + 已送出 + + + + &Peers + + + + + Banned peers + + + + + + + Select a peer to view detailed information. + + + + + Whitelisted + + + + + Direction + + + + + Version + 版本 + + + + Starting Block + + + + + Synced Headers + + + + + Synced Blocks + + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + + + + + Decrease font size + + + + + Increase font size + + + + + Services + + + + + Ban Score + + + + + Connection Time + + + + + Last Send + + + + + Last Receive + + + + + Ping Time + + + + + The duration of a currently outstanding ping. + + + + + Ping Wait + + + + + Min Ping + + + + + Time Offset + + + + + Last block time + + + + + &Open + + + + + &Console + + + + + &Network Traffic + + + + + Totals + + + + + In: + + + + + Out: + + + + + Debug log file + + + + + Clear console + + + + + 1 &hour + + + + + 1 &day + + + + + 1 &week + + + + + 1 &year + + + + + &Disconnect + + + + + + + + Ban for + + + + + &Unban + + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + + + + + Type <b>help</b> for an overview of available commands. + + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + + + + + (node id: %1) + + + + + via %1 + + + + + + never + + + + + Inbound + + + + + Outbound + + + + + Yes + + + + + No + + + + + + Unknown + + + + + RavenGUI + + + Sign &message... + 簽署訊息... &m + + + + Synchronizing with network... + 與網絡同步中... + + + + &Overview + 總覽 &O + + + + Node + 節點 + + + + Show general overview of wallet + 顯示錢包一般總覽 + + + + &Transactions + 交易 &T + + + + Browse transaction history + 瀏覽交易紀錄 + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + 結束 &x + + + + Quit application + 結束應用程式 + + + + &About %1 + 關於 %1 &A + + + + Show information about %1 + 顯示 %1 的相關資訊 + + + + About &Qt + 關於 Qt &Q + + + + Show information about Qt + 顯示 Qt 相關資訊 + + + + &Options... + 選項... &O + + + + Modify configuration options for %1 + 修正 %1 的設定選項 + + + + &Encrypt Wallet... + 加密錢包... &E + + + + &Backup Wallet... + 備份錢包... &B + + + + &Change Passphrase... + 改變密碼... &C + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + 付款位址... &S + + + + &Receiving addresses... + 收款位址... &R + + + + Open &URI... + 開啓網址... &U + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + + + + + Network activity disabled. + + + + + Click to enable network activity again. + + + + + Syncing Headers (%1%)... + + + + + Reindexing blocks on disk... + 正在為磁碟區塊重建索引... + + + + Send coins to a Raven address + 付款至一個 Raven 位址 + + + + Backup wallet to another location + 把錢包備份到其它地方 + + + + Change the passphrase used for wallet encryption + 改變錢包加密用的密碼 + + + + Open debugging and diagnostic console + 開啓除錯和診斷主控台 + + + + &Verify message... + 驗證訊息... &V + + + + Raven + Raven + + + + Wallet + 錢包 + + + + &Send + 付款 &S + + + + &Receive + 收款 &R + + + + &Show / Hide + 顯示 / 隱藏 &S + + + + Show or hide the main Window + 顯示或隱藏主視窗 + + + + Encrypt the private keys that belong to your wallet + + + + + Sign messages with your Raven addresses to prove you own them + + + + + Verify messages to ensure they were signed with specified Raven addresses + + + + + &File + 檔案 &F + + + + &Help + 說明 &H + + + + Request payments (generates QR codes and raven: URIs) + 要求付款 (產生QR碼 raven: URIs) + + + + Show the list of used sending addresses and labels + + + + + Show the list of used receiving addresses and labels + + + + + Open a raven: URI or payment request + + + + + &Command-line options + + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + 正在為磁碟區塊建立索引... + + + + Processing blocks on disk... + + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + + + + + Last received block was generated %1 ago. + + + + + Transactions after this will not yet be visible. + + + + + Error + 錯誤 + + + + Warning + 警告 + + + + Information + 資訊 + + + + Up to date + + + + + Show the %1 help message to get a list with possible Raven command-line options + + + + + %1 client + + + + + Connecting to peers... + + + + + Catching up... + + + + + Date: %1 + + 日期: %1 + + + + + + Amount: %1 + + + + + + Type: %1 + + + + + + Label: %1 + + + + + + Address: %1 + + + + + + Sent transaction + + + + + Incoming transaction + + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + + + + + HD key generation is <b>disabled</b> + + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + + + + + ReceiveCoinsDialog + + + &Amount: + + + + + &Label: + + + + + &Message: + + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + + + + + R&euse an existing receiving address (not recommended) + + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + + + + + + An optional label to associate with the new receiving address. + + + + + Use this form to request payments. All fields are <b>optional</b>. + + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + + + + + Clear all fields of the form. + + + + + Clear + + + + + Requested payments history + + + + + &Request payment + + + + + Show the selected request (does the same as double clicking an entry) + + + + + Show + + + + + Remove the selected entries from the list + + + + + Remove + + + + + Copy URI + + + + + Copy label + + + + + Copy message + + + + + Copy amount + + + + + ReceiveRequestDialog + + + QR Code + + + + + Copy &URI + + + + + Copy &Address + + + + + &Save Image... + + + + + Request payment to %1 + + + + + Payment information + + + + + URI + + + + + Address + 地址 + + + + Amount + + + + + Label + 標記 + + + + Message + + + + + Resulting URI too long, try to reduce the text for label / message. + + + + + Error encoding URI into QR Code. + + + + + RecentRequestsTableModel + + + Date + + + + + Label + 標記 + + + + Message + + + + + (no label) + (無標記) + + + + (no message) + + + + + (no amount requested) + + + + + Requested + + + + + ReissueAssetDialog + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Dust: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + + Reissue Asset + + + + + Select an asset to reissue: + + + + + Address: + + + + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + + + + + Verifier String: + + + + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + + + + + Warning: + + + + + The number of assets that will be created + + + + + Unit: + + + + + e.g. 1.00000000 + + + + + If the owner of this asset will be able to issue more assets in the future + + + + + Reissuable + + + + + Change IPFS/Txid Hash + + + + + The ipfs/txid hash that contains information about the asset + + + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + + + + + ERROR TEXT + + + + + Current Asset Settings + + + + + Updated Asset Settings + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + Hide + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + per kilobyte + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Cus&tom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Confirmation time target: + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Request Replace-By-Fee + + + + + Clear + + + + + Balance: + + + + + 123.456 RVN + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + Select an asset to reissue.. + + + + + Select the asset you want to reissue. + + + + + %1 (%2 blocks) + + + + + Cost + + + + + Asset data couldn't be found + + + + + Quantity is to large. Max is 21,000,000,000 + + + + + Invalid Raven Destination Address + + + + + Warning: Restricted Assets Issuance requires an address + + + + + + Warning: Invalid Raven address + + + + + + Yes + + + + + No + + + + + + Name + + + + + + Total Quantity + + + + + + Units + + + + + + Can Reisssue + + + + + + + IPFS Hash + + + + + + + Txid Hash + + + + + Verifier String + + + + + + Current Verifier String + + + + + Please select a asset from the menu to display the assets current settings + + + + + Please select a asset from the menu to display the assets updated settings + + + + + Current Quantity + + + + + Current Units + + + + + Can Reissue + + + + + Unknown data hash type + + + + + Only IPFS Hashes allowed until RIP5 is activated + + + + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + + + + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm reissue assets + + + + + Copy + + + + + Transaction ID Copied + + + + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + Pay only the required fee of %1 + + + + + RestrictedAssetsDialog + + + Send Coins + + + + + Asset Balances + + + + + + Search + + + + + Address List + + + + + Balance: + + + + + + Failed to create a change address + + + + + Failed to generate the correct transaction. Please try again + + + + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + + + + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + + + + + + added as transaction fee + + + + + + Total Amount %1 + + + + + + or + + + + + Confirm adding restriction + + + + + Confirm removing resetricton + + + + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + + + + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + + + + + Confirm adding qualifier + + + + + Confirm removing qualifier + + + + + SendAssetsEntry + + + This is an asset payment + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + + Memo: + + + + + Amount: + + + + + Enter a label for this address to add it to the list of used addresses + + + + + &Label: + + + + + Asset: + + + + + The Raven address to send the payment to + + + + + Choose previously used address + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + Message: + + + + + Transfer &To: + + + + + Transfer Administrator Asset + + + + + Put a IPFS or Txid hash here to be sent with the asset transfer + + + + + This is an unauthenticated payment request. + + + + + + Transfer to: + + + + + + A&mount: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to your address book + + + + + Select to view administrator assets to transfer + + + + + + Select an asset to transfer + + + + + Memos can only be added once RIP5 is voted in + + + + + This restricted asset has been frozen globally. No transfers can be sent on the network. + + + + + Failed to get asset metadata for: + + + + + The transaction in which the asset was issued must be mined into a block before you can transfer it + + + + + Failed to get asset outpoints from database + + + + + Selected Balance + + + + + Wallet Balance + + + + + Select an administrator asset to transfer + + + + + Warning: Transferring administrator asset + + + + + SendCoinsDialog + + + + Send Coins + + + + + Coin Control Features + + + + + Inputs... + + + + + automatically selected + + + + + Insufficient funds! + + + + + Quantity: + + + + + Bytes: + + + + + Amount: + + + + + Fee: + + + + + After Fee: + + + + + Change: + + + + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + + + + + Custom change address + + + + + Transaction Fee: + + + + + Choose... + + + + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + + collapse fee-settings + + + + + per kilobyte + + + + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + + + + Hide + + + + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + + + + + (read the tooltip) + + + + + Recommended: + + + + + Custom: + + + + + (Smart fee not initialized yet. This usually takes a few blocks...) + + + + + Request Replace-By-Fee + + + + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + + + + Send to multiple recipients at once + + + + + Add &Recipient + + + + + Clear all fields of the form. + + + + + Dust: + + + + + Confirmation time target: + + + + + Clear &All + + + + + Balance: + + + + + Confirm the send action + + + + + S&end + + + + + Copy quantity + + + + + Copy amount + + + + + Copy fee + + + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Total Amount %1 + + + + + or + + + + + Confirm send coins + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + (無標記) + + + + SendCoinsEntry + + + + + A&mount: + + + + + &Label: + + + + + Choose previously used address + + + + + This is a normal payment. + + + + + The Raven address to send the payment to + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + + + Remove this entry + + + + + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. + + + + + S&ubtract fee from amount + + + + + Message: + + + + + Send &To: + + + + + This is an unauthenticated payment request. + + + + + + Send to: + + + + + This is an authenticated payment request. + + + + + Enter a label for this address to add it to the list of used addresses + + + + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + + + + + + Memo: + + + + + Enter a label for this address to add it to your address book + + + + + SendConfirmationDialog + + + + Yes + + + + + ShutdownWindow + + + %1 is shutting down... + + + + + Do not shut down the computer until this window disappears. + + + + + SignVerifyMessageDialog + + + Signatures - Sign / Verify a Message + + + + + &Sign Message + + + + + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. + + + + + The Raven address to sign the message with + + + + + + Choose previously used address + + + + + + Alt+A + + + + + Paste address from clipboard + + + + + Alt+P + + + + + Enter the message you want to sign here + + + + + Signature + + + + + Copy the current signature to the system clipboard + + + + + Sign the message to prove you own this Raven address + + + + + Sign &Message + + + + + Reset all sign message fields + + + + + + Clear &All + + + + + &Verify Message + + + + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + + + + The Raven address the message was signed with + + + + + Verify the message to ensure it was signed with the specified Raven address + + + + + Verify &Message + + + + + Reset all verify message fields + + + + + Click "Sign Message" to generate signature + + + + + + The entered address is invalid. + + + + + + + + Please check the address and try again. + + + + + + The entered address does not refer to a key. + + + + + Wallet unlock was cancelled. + + + + + Private key for the entered address is not available. + + + + + Message signing failed. + + + + + Message signed. + + + + + The signature could not be decoded. + + + + + + Please check the signature and try again. + + + + + The signature did not match the message digest. + + + + + Message verification failed. + + + + + Message verified. + + + + + SplashScreen + + + [testnet] + + + + + TrafficGraphWidget + + + KB/s + + + + + TransactionDesc + + + Open for %n more block(s) + + + + + Open until %1 + 開放至 %1 + + + + conflicted with a transaction with %1 confirmations + + + + + %1/offline + + + + + 0/unconfirmed, %1 + + + + + in memory pool + + + + + not in memory pool + + + + + abandoned + + + + + %1/unconfirmed + + + + + %1 confirmations + + + + + + Status + + + + + + , has not been successfully broadcast yet + + + + + + , broadcast through %n node(s) + + + + + + Date + + + + + Source + + + + + Generated + + + + + + + + + From + + + + + + unknown + + + + + + + + + To + + + + + + own address + + + + + + + watch-only + + + + + + label + + + + + + + + + + + Credit + + + + + matures in %n more block(s) + + + + + not accepted + + + + + + + + + Debit + + + + + Total debit + + + + + Total credit + + + + + Transaction fee + + + + + Net amount + + + + + + + + Message + + + + + + Comment + + + + + + Transaction ID + + + + + + Transaction total size + + + + + + Output index + + + + + + Merchant + + + + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + + + Net RVN amount + + + + + Debug information + + + + + Transaction + + + + + Inputs + + + + + Amount + + + + + + true + + + + + + false + + + + + TransactionDescDialog + + + This pane shows a detailed description of the transaction + + + + + Details for %1 + + + + + TransactionTableModel + + + Date + + + + + Type + + + + + Label + 標記 + + + + Amount + + + + + Asset + + + + + Open for %n more block(s) + + + + + Open until %1 + 開放至 %1 + + + + Offline + + + + + Unconfirmed + + + + + Abandoned + + + + + Confirming (%1 of %2 recommended confirmations) + + + + + Confirmed (%1 confirmations) + + + + + Conflicted + + + + + Immature (%1 confirmations, will be available after %2) + + + + + This block was not received by any other nodes and will probably not be accepted! + + + + + Generated but not accepted + + + + + Received with + + + + + Received from + + + + + Sent to + + + + + Payment to yourself + + + + + Mined + + + + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + + watch-only + + + + + (n/a) + + + + + (no label) + (無標記) + + + + Transaction status. Hover over this field to show number of confirmations. + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + Whether or not a watch-only address is involved in this transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + Amount removed from or added to balance. + + + + + The asset (or RVN) removed or added to balance. + + + + + TransactionView + + + + All + + + + + Today + + + + + This week + + + + + This month + + + + + Last month + + + + + This year + + + + + Range... + + + + + Received with + + + + + Sent to + + + + + To yourself + + + + + Mined + + + + + Other + + + + + Enter address or label to search + + + + + Min amount + + + + + Asset name + + + + + Abandon transaction + + + + + Copy address + + + + + Copy label + + + + + Copy amount + + + + + Copy transaction ID + + + + + Copy raw transaction + + + + + Copy full transaction details + + + + + Edit label + + + + + Show transaction details + + + + + Browse with: + + + + + Export Transaction History + + + + + Comma separated file (*.csv) + 逗號分隔檔 (*.csv) + + + + Confirmed + + + + + Watch-only + + + + + Date + + + + + Type + + + + + Label + 標記 + + + + Address + 地址 + + + + Asset + + + + + ID + + + + + Exporting Failed + 匯出失敗 + + + + There was an error trying to save the transaction history to %1. + + + + + Exporting Successful + + + + + The transaction history was successfully saved to %1. + + + + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + + Range: + + + + + to + + + + + UnitDisplayStatusBarControl + + + Unit to show amounts in. Click to select another unit. + + + + + WalletFrame + + + No wallet has been loaded. + + + + + WalletModel + + + Send Coins + + + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + + + + WalletView + + + &Export + 匯出 &E + + + + Export the data in the current tab to a file + 把目前分頁的資料匯出至檔案 + + + + Backup Wallet + + + + + Wallet Data (*.dat) + + + + + Backup Failed + + + + + There was an error trying to save the wallet data to %1. + + + + + Backup Successful + + + + + The wallet data was successfully saved to %1. + + + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + + + + raven-core + + + Options: + + + + + Specify data directory + + + + + Connect to a node to retrieve peer addresses, and disconnect + + + + + Specify your own public address + + + + + Accept command line and JSON-RPC commands + + + + + Distributed under the MIT software license, see the accompanying file %s or %s + + + + + If <category> is not supplied or if <category> = 1, output all debugging information. + + + + + Prune configured below the minimum of %d MiB. Please use a higher number. + + + + + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) + + + + + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. + + + + + Error: A fatal internal error occurred, see debug.log for details + + + + + Fee (in %s/kB) to add to transactions you send (default: %s) + + + + + Pruning blockstore... + + + + + Run in the background as a daemon and accept commands + + + + + Unable to start HTTP server. See debug log for details. + + + + + Raven Core + + + + + The %s developers + + + + + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) + + + + + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) + + + + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + + + + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + + + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup + + + + + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. + + + + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) + + + + + Extra transactions to keep in memory for compact block reconstructions (default: %u) + + + + + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) + + + + + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) + + + + + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) + + + + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + + + + Please contribute if you find %s useful. Visit %s for further information about the software. + + + + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) + + + + + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) + + + + + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) + + + + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + + + + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications + + + + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain + + + + + Use UPnP to map the listening port (default: 1 when listening and no -proxy) + + + + + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times + + + + + Wallet will not create transactions that violate mempool chain limits (default: %u) + + + + + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. + + + + + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. + + + + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + + + + %s corrupt, salvage failed + + + + + -maxmempool must be at least %d MB + + + + + <category> can be: + + + + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + + Append comment to the user agent string + + + + + Attempt to recover private keys from a corrupt wallet on startup + + + + + Block creation options: + + + + + Cannot resolve -%s address: '%s' + + + + + Chain selection options: + + + + + Change index out of range + + + + + Connection options: + + + + + Copyright (C) %i-%i + + + + + Corrupted block database detected + + + + + Debugging/Testing options: + + + + + Do not load the wallet and disable wallet RPC calls + + + + + Do you want to rebuild the block database now? + + + + + Enable publish hash block in <address> + + + + + Enable publish hash transaction in <address> + + + + + Enable publish raw block in <address> + + + + + Enable publish raw transaction in <address> + + + + + Enable transaction replacement in the memory pool (default: %u) + + + + + Error initializing block database + + + + + Error initializing wallet database environment %s! + + + + + Error loading %s + + + + + Error loading %s: Wallet corrupted + + + + + Error loading %s: Wallet requires newer version of %s + + + + + Error loading block database + + + + + Error opening block database + + + + + Error: Disk space is low! + + + + + Failed to listen on any port. Use -listen=0 if you want this. + + + + + Importing... + + + + + Incorrect or no genesis block found. Wrong datadir for network? + + + + + Initialization sanity check failed. %s is shutting down. + + + + + Invalid amount for -%s=<amount>: '%s' + + + + + Invalid amount for -discardfee=<amount>: '%s' + + + + + Invalid amount for -fallbackfee=<amount>: '%s' + + + + + Keep the transaction memory pool below <n> megabytes (default: %u) + + + + + Loading P2P addresses... + + + + + Loading banlist... + + + + + Location of the auth cookie (default: data dir) + + + + + Not enough file descriptors available. + + + + + Only connect to nodes in network <net> (ipv4, ipv6 or onion) + + + + + Print this help message and exit + + + + + Print version and exit + + + + + Prune cannot be configured with a negative value. + + + + + Prune mode is incompatible with -txindex. + + + + + Rebuild chain state and block index from the blk*.dat files on disk + + + + + Rebuild chain state from the currently indexed blocks + + + + + Replaying blocks... + + + + + Rewinding blocks... + + + + + Set database cache size in megabytes (%d to %d, default: %d) + + + + + Specify wallet file (within data directory) + + + + + The source code is available from %s. + + + + + Transaction fee and change calculation failed + + + + + Unable to bind to %s on this computer. %s is probably already running. + + + + + Unsupported argument -benchmark ignored, use -debug=bench. + + + + + Unsupported argument -debugnet ignored, use -debug=net. + + + + + Unsupported argument -tor found, use -onion. + + + + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + + Use UPnP to map the listening port (default: %u) + + + + + Use the test chain + + + + + User Agent comment (%s) contains unsafe characters. + + + + + Verifying blocks... + + + + + Wallet %s resides outside data directory %s + + + + + Wallet debugging/testing options: + + + + + Wallet needed to be rewritten: restart %s to complete + + + + + Wallet options: + + + + + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times + + + + + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 + + + + + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) + + + + + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) + + + + + Error: Listening for incoming connections failed (listen returned error %s) + + + + + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) + + + + + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) + + + + + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) + + + + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + + + + + Maximum size of data in data carrier transactions we relay and mine (default: %u) + + + + + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) + + + + + The transaction amount is too small to send after the fee has been deducted + + + + + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway + + + + + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain + + + + + (default: %u) + + + + + Accept public REST requests (default: %u) + + + + + Automatically create Tor hidden service (default: %d) + + + + + Connect through SOCKS5 proxy + + + + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + + Error reading from database, shutting down. + + + + + Error upgrading chainstate database + + + + + Imports blocks from external blk000??.dat file on startup + + + + + Information + 資訊 + + + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + + + + + Invalid netmask specified in -whitelist: '%s' + + + + + Keep at most <n> unconnectable transactions in memory (default: %u) + + + + + Need to specify a port with -whitebind: '%s' + + + + + Node relay options: + + + + + RPC server options: + + + + + Reducing -maxconnections from %d to %d, because of system limitations. + + + + + Rescan the block chain for missing wallet transactions on startup + + + + + Send trace/debug info to console instead of debug.log file + + + + + Show all debugging options (usage: --help -help-debug) + + + + + Shrink debug.log file on client startup (default: 1 when no -debug) + + + + + Signing transaction failed + + + + + The transaction amount is too small to pay the fee + + + + + This is experimental software. + + + + + Tor control port password (default: empty) + + + + + Tor control port to use if onion listening enabled (default: %s) + + + + + Transaction amount too small + + + + + Transaction too large for fee policy + + + + + Transaction too large + + + + + Unable to bind to %s on this computer (bind returned error %s) + + + + + Upgrade wallet to latest format on startup + + + + + Username for JSON-RPC connections + + + + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + + Warning + 警告 + + + + Warning: unknown new rules activated (versionbit %i) + + + + + Whether to operate in a blocks only mode (default: %u) + + + + + You need to rebuild the database using -reindex to change -txindex + + + + + Zapping all transactions from wallet... + + + + + ZeroMQ notification options: + + + + + Password for JSON-RPC connections + + + + + Execute command when the best block changes (%s in cmd is replaced by block hash) + + + + + Allow DNS lookups for -addnode, -seednode and -connect + + + + + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) + + + + + -maxtxfee is set very high! Fees this large could be paid on a single transaction. + + + + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) + + + + + Equivalent bytes per sigop in transactions for relay and mining (default: %u) + + + + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) + + + + + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) + + + + + How thorough the block verification of -checkblocks is (0-4, default: %u) + + + + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) + + + + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) + + + + + Output debugging information (default: %u, supplying <category> is optional) + + + + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) + + + + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + + Support filtering of blocks and transaction with bloom filters (default: %u) + + + + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + + This is the transaction fee you may pay when fee estimates are not available. + + + + + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. + + + + + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. + + + + + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) + + + + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + + + + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. + + + + + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) + + + + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + + + + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. + + + + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. + + + + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + + %s is set very high! + + + + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + + (default: %s) + + + + + A space separated list of 12-words used to import a bip44 wallet + + + + + Always query for peer addresses via DNS lookup (default: %u) + + + + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + + How many blocks to check at startup (default: %u, 0 = all) + + + + + Include IP addresses in debug output (default: %u) + + + + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + + Keypool ran out, please call keypoolrefill first + + + + + Length is to large. Please use a smaller length + + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) + + + + + Listen for connections on <port> (default: %u or testnet: %u) + + + + + Maintain at most <n> connections to peers (default: %u) + + + + + Make the wallet broadcast transactions + + + + + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) + + + + + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) + + + + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + + Prepend debug output with timestamp (default: %u) + + + + + Relay and mine data carrier transactions (default: %u) + + + + + Relay non-P2SH multisig (default: %u) + + + + + Restricted asset transfer from address that has been frozen + + + + + Send transactions with full-RBF opt-in enabled (default: %u) + + + + + Set key pool size to <n> (default: %u) + + + + + Set maximum BIP141 block weight (default: %d) + + + + + Set the Maximum reorg depth (default: %u) + + + + + Set the number of threads to service RPC calls (default: %d) + + + + + Signing asset transaction failed + + + + + Specify configuration file (default: %s) + + + + + Specify connection timeout in milliseconds (minimum: 1, default: %d) + + + + + Specify pid file (default: %s) + + + + + Spend unconfirmed change when sending transactions (default: %u) + + + + + Starting network threads... + + + + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + + The wallet will avoid paying less than the minimum relay fee. + + + + + This is the minimum transaction fee you pay on every transaction. + + + + + This is the transaction fee you will pay if you send a transaction. + + + + + Threshold for disconnecting misbehaving peers (default: %u) + + + + + Transaction amounts must not be negative + + + + + Transaction has too long of a mempool chain + + + + + Transaction must have at least one recipient + + + + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + + + + + Insufficient funds + + + + + Loading block index... + + + + + Loading wallet... + + + + + Cannot downgrade wallet + + + + + Rescanning... + + Error 錯誤 diff --git a/src/qt/locale/raven_zh_TW.ts b/src/qt/locale/raven_zh_TW.ts index 47e5f1fc96..baaf76bf18 100644 --- a/src/qt/locale/raven_zh_TW.ts +++ b/src/qt/locale/raven_zh_TW.ts @@ -1,101 +1,123 @@ - - - + AddressBookPage + Right-click to edit address or label 右鍵點一下來修改位址或標記 + Create a new address 產生一個新位址 + &New 新增 + Copy the currently selected address to the system clipboard 複製目前選擇的位址到系統剪貼簿 + &Copy 複製 + C&lose 關閉 + Delete the currently selected address from the list 把目前選擇的位址從列表中刪掉 + Export the data in the current tab to a file 把目前分頁的資料匯出存成檔案 + &Export 匯出 + &Delete 刪掉 + Choose the address to send coins to 選擇要付錢過去的位址 + Choose the address to receive coins with 選擇要收錢進來的位址 + C&hoose 選取 + Sending addresses 付款位址 + Receiving addresses 收款位址 + These are your Raven addresses for sending payments. Always check the amount and the receiving address before sending coins. 這些是你要付款過去的 Raven 位址。在付錢之前,務必要檢查金額和收款位址是否正確。 + These are your Raven addresses for receiving payments. It is recommended to use a new receiving address for each transaction. 這些是你用來收款的 Raven 位址。建議在每次交易時,都使用一個新的收款位址。 + &Copy Address 複製位址 + Copy &Label 複製標記 + &Edit 編輯 + Export Address List 匯出位址清單 + Comma separated file (*.csv) 逗點分隔資料檔(*.csv) + Exporting Failed 匯出失敗 + There was an error trying to save the address list to %1. Please try again. 儲存位址列表到 %1 時發生錯誤。請重試一次。 @@ -103,14 +125,17 @@ AddressTableModel + Label 標記 + Address 位址 + (no label) (無標記) @@ -118,2103 +143,5354 @@ AskPassphraseDialog + Passphrase Dialog 密碼對話視窗 + Enter passphrase 請輸入密碼 + New passphrase 新密碼 + Repeat new passphrase 重複新密碼 + Enter the new passphrase to the wallet.<br/>Please use a passphrase of <b>ten or more random characters</b>, or <b>eight or more words</b>. 輸入錢包的新密碼。<br/>密碼請用<b>10 個以上的隨機字元</b>,或是<b>8 個以上的字詞</b>。 + Encrypt wallet 加密錢包 + This operation needs your wallet passphrase to unlock the wallet. 這個動作需要你的錢包密碼來解鎖錢包。 + Unlock wallet 解鎖錢包 + This operation needs your wallet passphrase to decrypt the wallet. 這個動作需要你的錢包密碼來把錢包解密。 + Decrypt wallet 解密錢包 + Change passphrase 改變密碼 + Enter the old passphrase and new passphrase to the wallet. 請輸入錢包的舊密碼和新密碼。 + Confirm wallet encryption 確認錢包加密 + Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR RAVENS</b>! 警告: 如果把錢包加密後又忘記密碼,你就會從此<b>失去其中所有的 Raven 了</b>! + Are you sure you wish to encrypt your wallet? 你確定要把錢包加密嗎? + + Wallet encrypted 錢包已加密 + %1 will close now to finish the encryption process. Remember that encrypting your wallet cannot fully protect your ravens from being stolen by malware infecting your computer. %1 現在要關閉,好完成加密程序。請注意,加密錢包不能完全防止入侵你的電腦的惡意程式偷取錢幣。 + IMPORTANT: Any previous backups you have made of your wallet file should be replaced with the newly generated, encrypted wallet file. For security reasons, previous backups of the unencrypted wallet file will become useless as soon as you start using the new, encrypted wallet. 重要: 請改用新產生有加密的錢包檔,來取代舊錢包檔的備份。為了安全性的理由,當你開始使用新的有加密的錢包後,舊錢包檔的備份就不能再使用了。 + + + + Wallet encryption failed 錢包加密失敗 + Wallet encryption failed due to an internal error. Your wallet was not encrypted. 因為內部錯誤導致錢包加密失敗。你的錢包還是沒加密。 + + The supplied passphrases do not match. 提供的密碼不一樣。 + Wallet unlock failed 錢包解鎖失敗 + + + The passphrase entered for the wallet decryption was incorrect. 輸入要用來解密錢包的密碼不對。 + Wallet decryption failed 錢包解密失敗 + Wallet passphrase was successfully changed. 錢包密碼改成功了。 + + Warning: The Caps Lock key is on! 警告: 大寫字母鎖定作用中! - BanTableModel + AssetControlDialog - IP/Netmask - 網路位址/遮罩 + + Asset Selection + - Banned Until - 禁止期限 + + Quantity: + - - - RavenGUI - Sign &message... - 簽署訊息... + + Bytes: + - Synchronizing with network... - 正在跟網路進行同步... + + Amount: + - &Overview - 總覽 + + Dust: + - Node - 節點 + + Fee: + - Show general overview of wallet - 顯示錢包一般總覽 + + After Fee: + - &Transactions - 交易 + + Change: + - Browse transaction history - 瀏覽交易紀錄 + + (un)select all + - E&xit - 結束 + + Tree mode + - Quit application - 結束應用程式 + + List mode + - &About %1 - 關於%1 + + View assets that you have the ownership asset for + - Show information about %1 - 顯示 %1 的相關資訊 + + View Administrator Assets + - About &Qt - 關於 &Qt + + Asset + - Show information about Qt - 顯示 Qt 相關資訊 + + Amount + - &Options... - 選項... + + Received with label + - Modify configuration options for %1 - 修改 %1 的設定選項 + + Received with address + - &Encrypt Wallet... - 加密錢包... + + Date + - &Backup Wallet... - 備份錢包... + + Confirmations + - &Change Passphrase... - 改變密碼... + + Confirmed + - &Sending addresses... - 付款位址... + + Copy address + - &Receiving addresses... - 收款位址... + + Copy label + - Open &URI... - 開啓 URI... + + + Copy amount + - Click to disable network activity. - 按一下就會不使用網路。 + + Copy transaction ID + - Network activity disabled. - 網路活動關閉了。 + + Lock unspent + - Click to enable network activity again. - 按一下就又會使用網路。 + + Unlock unspent + - Syncing Headers (%1%)... - 正在同步前導資料(%1%)中... + + Copy quantity + - Reindexing blocks on disk... - 正在為磁碟裡的區塊重建索引... + + Copy fee + - Send coins to a Raven address - 付錢給一個 Raven 位址 + + Copy after fee + - Backup wallet to another location - 把錢包備份到其它地方 + + Copy bytes + - Change the passphrase used for wallet encryption - 改變錢包加密用的密碼 + + Copy dust + - &Debug window - 除錯視窗 + + Copy change + - Open debugging and diagnostic console - 開啓除錯和診斷主控台 + + (%1 locked) + - &Verify message... - 驗證訊息... + + yes + - Raven - Raven + + no + - Wallet - 錢包 + + This label turns red if any recipient receives an amount smaller than the current dust threshold. + - &Send - 付款 + + Can vary +/- %1 satoshi(s) per input. + - &Receive - 收款 + + + (no label) + - &Show / Hide - 顯示或隱藏 + + change from %1 (%2) + - Show or hide the main Window - 顯示或隱藏主視窗 + + (change) + + + + AssetTableModel - Encrypt the private keys that belong to your wallet - 把錢包中的密鑰加密 + + Name + - Sign messages with your Raven addresses to prove you own them - 用 Raven 位址簽署訊息來證明位址是你的 + + Quantity + + + + AssetsDialog - Verify messages to ensure they were signed with specified Raven addresses - 驗證訊息是用來確定訊息是用指定的 Raven 位址簽署的 + + + Send Coins + - &File - 檔案 + + Asset Control Features + - &Settings - 設定 + + Inputs... + - &Help - 說明 + + automatically selected + - Tabs toolbar - 分頁工具列 + + Insufficient funds! + - Request payments (generates QR codes and raven: URIs) - 要求付款(產生 QR Code 和 raven 付款協議的資源識別碼: URI) + + Quantity: + - Show the list of used sending addresses and labels - 顯示已使用過的付款位址和標記的清單 + + Bytes: + - Show the list of used receiving addresses and labels - 顯示已使用過的收款位址和標記的清單 + + Amount: + - Open a raven: URI or payment request - 開啓 raven 協議的資源識別碼(URI)或付款要求 + + Dust: + - &Command-line options - 命令列選項 - - - %n active connection(s) to Raven network - %n 個運作中的 Raven 網路連線 + + Fee: + - Indexing blocks on disk... - 正在為磁碟裡的區塊建立索引... + + After Fee: + - Processing blocks on disk... - 正在處理磁碟裡的區塊資料... - - - Processed %n block(s) of transaction history. - 已經處理了 %n 個區塊的交易紀錄。 + + Change: + - %1 behind - 落後 %1 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - Last received block was generated %1 ago. - 最近收到的區塊是在 %1 以前生出來的。 + + Custom change address + - Transactions after this will not yet be visible. - 暫時會看不到在這之後的交易。 + + Transaction Fee: + - Error - 錯誤 + + Choose... + - Warning - 警告 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Information - 資訊 + + Warning: Fee estimation is currently not possible. + - Up to date - 最新狀態 + + collapse fee-settings + - Show the %1 help message to get a list with possible Raven command-line options - 顯示 %1 的說明訊息,來取得可用命令列選項的列表 + + Hide + - %1 client - %1 客戶端軟體 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Connecting to peers... - 正在跟其他節點連線中... + + per kilobyte + - Catching up... - 正在趕進度... + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Date: %1 - - 日期: %1 - + + (read the tooltip) + - Amount: %1 - - 金額: %1 - + + Recommended: + - Type: %1 - - 種類: %1 - + + Custom: + - Label: %1 - - 標記: %1 - + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Address: %1 - - 位址: %1 - + + Confirmation time target: + - Sent transaction - 付款交易 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Incoming transaction - 收款交易 + + Request Replace-By-Fee + - HD key generation is <b>enabled</b> - 產生 HD 金鑰<b>已經啟用</b> + + Confirm the send action + - HD key generation is <b>disabled</b> - 產生 HD 金鑰<b>已經停用</b> + + S&end + - Wallet is <b>encrypted</b> and currently <b>unlocked</b> - 錢包<b>已加密</b>並且<b>解鎖中</b> + + Clear all fields of the form. + - Wallet is <b>encrypted</b> and currently <b>locked</b> - 錢包<b>已加密</b>並且<b>上鎖中</b> + + Clear &All + - A fatal error occurred. Raven can no longer continue safely and will quit. - 發生了致命的錯誤。Raven 軟體沒辦法再繼續安全執行,只好結束。 + + Transfer to multiple recipients at once + - - - CoinControlDialog - Coin Selection - 選擇錢幣 + + Add &Recipient + - Quantity: - 數目: + + Balance: + - Bytes: - 位元組數: + + Copy quantity + - Amount: - 金額: + + Copy amount + - Fee: - 手續費: + + Copy fee + + + Copy after fee + + + + + Copy bytes + + + + + Copy dust + + + + + Copy change + + + + + %1 (%2 blocks) + + + + + + + + %1 to %2 + + + + + Are you sure you want to send? + + + + + added as transaction fee + + + + + Confirm send assets + + + + + The recipient address is not valid. Please recheck. + + + + + The amount to pay must be larger than 0. + + + + + The amount exceeds your balance. + + + + + The total exceeds your balance when the %1 transaction fee is included. + + + + + Duplicate address found: addresses should only be used once each. + + + + + Transaction creation failed! + + + + + The transaction was rejected with the following reason: %1 + + + + + A fee higher than %1 is considered an absurdly high fee. + + + + + Payment request expired. + + + + + Pay only the required fee of %1 + + + + + Estimated to begin confirmation within %n block(s). + + + + + Warning: Invalid Raven address + + + + + Warning: Unknown change address + + + + + Confirm custom change address + + + + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + + + + + (no label) + + + + + AssignQualifier + + + Frame + + + + + Select Type: + + + + + Select Qualifier: + + + + + Address: + + + + + IPFS / Hash: + + + + + Custom Change Address + + + + + Check + + + + + Clear + + + + + Submit + + + + + Assign Qualifier + + + + + Remove Qualifier + + + + + Data has been validated, You can now submit the qualifier request + + + + + Must have a qualifier asset selected + + + + + Address already has the qualifier assigned to it + + + + + Address doesn't have the qualifier, so we can't remove it + + + + + Unable to preform action at this time + + + + + BanTableModel + + + IP/Netmask + 網路位址/遮罩 + + + + Banned Until + 禁止期限 + + + + CoinControlDialog + + + Coin Selection + 選擇錢幣 + + + + Quantity: + 數目: + + + + Bytes: + 位元組數: + + + + Amount: + 金額: + + + + Fee: + 手續費: + + + Dust: 零散錢: + After Fee: 計費後金額: + Change: 找零金額: + (un)select all 全選或全不選 + Tree mode 樹狀模式 + List mode 列表模式 + Amount 金額 + Received with label 收款標記 + Received with address 收款位址 + Date 日期 + Confirmations 確認次數 + Confirmed 已確認 + Copy address 複製位址 + Copy label 複製標記 + + Copy amount 複製金額 + Copy transaction ID 複製交易識別碼 + Lock unspent 鎖定不用 + Unlock unspent 解鎖可用 + Copy quantity 複製數目 + Copy fee 複製手續費 + Copy after fee 複製計費後金額 + Copy bytes 複製位元組數 + Copy dust 複製零散金額 + Copy change 複製找零金額 + (%1 locked) (鎖定 %1 枚) + yes + no + This label turns red if any recipient receives an amount smaller than the current dust threshold. 當任何一個收款金額小於目前的零散金額上限時,文字會變紅色。 + Can vary +/- %1 satoshi(s) per input. 每組輸入可能有 +/- %1 個 satoshi 的誤差。 + + (no label) (無標記) + change from %1 (%2) 找零前是 %1 (%2) + (change) (找零) - EditAddressDialog + CreateAssetDialog - Edit Address - 編輯位址 + + Coin Control Features + - &Label - 標記 + + Inputs... + - The label associated with this address list entry - 跟這個位址簿項目關聯的標記 + + automatically selected + - The address associated with this address list entry. This can only be modified for sending addresses. - 跟這個位址簿項目關聯的位址。只有付款位址能被修改。 + + Insufficient funds! + - &Address - 位址 + + + Quantity: + - New receiving address - 造新的收款位址 + + Bytes: + - New sending address - 造新的付款位址 + + Amount: + - Edit receiving address - 編輯收款位址 + + Dust: + - Edit sending address - 編輯付款位址 + + Fee: + - The entered address "%1" is not a valid Raven address. - 輸入的位址 %1 並不是有效的 Raven 位址。 + + After Fee: + - The entered address "%1" is already in the address book. - 輸入的位址 %1 在位址簿中已經有了。 + + Change: + - Could not unlock wallet. - 沒辦法把錢包解鎖。 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - New key generation failed. - 產生新的密鑰失敗了。 + + Custom change address + - - - FreespaceChecker - A new data directory will be created. - 就要產生新的資料目錄。 + + Name: + - name - 名稱 + + A-Z 0-9 and . or _ as the second character + - Directory already exists. Add %1 if you intend to create a new directory here. - 已經有這個目錄了。如果你要在裡面造出新的目錄的話,請加上 %1. + + The name of the asset you would like to create + - Path already exists, and is not a directory. - 已經有指定的路徑了,並且不是一個目錄。 + + Check Availabilty + - Cannot create data directory here. - 沒辦法在這裡造出資料目錄。 + + Address: + - - - HelpMessageDialog - version - 版本 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - (%1-bit) - (%1 位元) + + Verifier String: + - About %1 - 關於 %1 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank to default to true + - Command-line options - 命令列選項 + + Warning: + - Usage: - 用法: + + The number of assets that will be created + - command-line options - 命令列選項 + + Units: + - UI Options: - 使用介面選項: + + How divisble the assets will be (e.g. 8 = 1.00000000, 2 = 1.00) + - Choose data directory on startup (default: %u) - 啓動時選擇資料目錄(預設值: %u) + + e.g. 1 + - Set language, for example "de_DE" (default: system locale) - 設定語言,比如說 de_DE (預設值: 系統語系) + + If the owner of this asset will be able to issue more assets in the future + - Start minimized - 啓動時縮到最小 + + Reissuable + - Set SSL root certificates for payment request (default: -system-) - 設定付款請求時所使用的 SSL 根憑證(預設值: 系統憑證庫) + + Does this asset have an ipfs hash to go with it + - Show splash screen on startup (default: %u) - 顯示啓動畫面(預設值: %u) + + Add IPFS/Txid Hash + - Reset all settings changed in the GUI - 重置所有在使用界面更改的設定 + + The ipfs/txid hash that contains information about the asset + - - - Intro - Welcome - 歡迎 + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - Welcome to %1. - 歡迎使用 %1。 + + ERROR TEXT + - As this is the first time the program is launched, you can choose where %1 will store its data. - 因為這是程式第一次啓動,你可以選擇 %1 儲存資料的地方。 + + Transaction Fee: + - %1 will download and store a copy of the Raven block chain. At least %2GB of data will be stored in this directory, and it will grow over time. The wallet will also be stored in this directory. - %1 會下載並儲存一份 Raven 區塊鏈的拷貝。至少有 %2GB 的資料會儲存到這個目錄中,並且還會持續增長。另外錢包資料也會儲存在這個目錄。 + + Choose... + - Use the default data directory - 使用預設的資料目錄 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Use a custom data directory: - 使用自訂的資料目錄: + + Warning: Fee estimation is currently not possible. + - Error: Specified data directory "%1" cannot be created. - 錯誤: 無法新增指定的資料目錄: %1 + + collapse fee-settings + - Error - 錯誤 - - - %n GB of free space available - 可用空間尚存 %n GB - - - (of %n GB needed) - (需要 %n GB) + + Hide + - - - ModalOverlay - Form - 表單 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. - 最近的交易可能還看不到,因此錢包餘額可能不正確。在錢包軟體完成跟 raven 網路的同步後,這裡的資訊就會正確。詳情請見下面。 + + per kilobyte + - Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. - 使用還沒顯示出來的交易所影響到的 raven 可能會不被網路所接受。 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - Number of blocks left - 剩餘區塊數 + + (read the tooltip) + - Unknown... - 不明... + + Recommended: + - Last block time - 最近區塊時間 + + C&ustom: + - Progress - 進度 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Progress increase per hour - 每小時進度 + + Confirmation time target: + - calculating... - 正在計算中... + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Estimated time left until synced - 預估完成同步所需時間 + + Request Replace-By-Fee + - Hide - 隱藏 + + Create Asset + - Unknown. Syncing Headers (%1)... - 不明。正在同步前導資料(%1)中... + + Clear + - - - OpenURIDialog - Open URI - 開啓 URI + + Balance: + - Open payment request from URI or file - 從 URI 或檔案開啟付款要求 + + 123.456 RVN + - URI: - URI: + + Copy quantity + - Select payment request file - 選擇付款要求資料檔 + + Copy amount + - Select payment request file to open - 選擇要開啟的付款要求資料檔 + + Copy fee + - - - OptionsDialog - Options - 選項 + + Copy after fee + - &Main - 主要 + + Copy bytes + - Automatically start %1 after logging in to the system. - 在登入系統後自動啓動 %1。 + + Copy dust + - &Start %1 on system login - 系統登入時啟動 %1 + + Copy change + - Size of &database cache - 資料庫快取大小 + + %1 (%2 blocks) + - MB - MB (百萬位元組) + + Main Asset + - Number of script &verification threads - 指令碼驗證執行緒數目 + + Sub Asset + - Accept connections from outside - 接受外來連線 + + Unique Asset + - Allow incoming connections - 接受外來連線 + + Messaging Channel Asset + - IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) - 代理伺服器的網際網路位址(像是 IPv4 的 127.0.0.1 或 IPv6 的 ::1) + + Qualifier Asset + - Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. - 當視窗關閉時,把應用程式縮到最小,而不是結束。當勾選這個選項時,只能夠用選單中的結束來關掉應用程式。 + + Sub Qualifier Asset + - Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. - 在交易頁籤的情境選單出現的第三方網址連結(URL),比如說區塊探索網站。網址中的 %s 會被取代為交易的雜湊值。可以用直線符號 | 來分隔多個連結。 + + Restricted Asset + - Third party transaction URLs - 交易的第三方網址連結 + + Asset Type + - Active command-line options that override above options: - 從命令列取代掉以上設定的選項有: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Reset all client options to default. - 重設所有客戶端軟體選項成預設值。 + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + - &Reset Options - 重設選項 + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - &Network - 網路 + + + + Warning: Invalid Raven address + - (0 = auto, <0 = leave that many cores free) - (0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目) + + Warning: Restricted Assets Reissuance requires an address + - W&allet - 錢包 + + Valid Asset + - Expert - 專家 + + Invalid: Asset name already in use + - Enable coin &control features - 開啟錢幣控制功能 + + Error: Asset Database not in sync + - If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. - 如果你關掉「可以花還沒確認的零錢」,那麼交易中找零的零錢就必須要等交易至少有一次確認後,才能夠使用。這也會影響餘額的計算方式。 + + + %1 to %2 + - &Spend unconfirmed change - 可以花還沒確認的零錢 + + Are you sure you want to send? + - Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. - 自動在路由器上開放 Raven 的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。 + + added as transaction fee + - Map port using &UPnP - 用 &UPnP 設定通訊埠對應 + + Total Amount %1 + - Connect to the Raven network through a SOCKS5 proxy. - 透過 SOCKS5 代理伺服器來連線到 Raven 網路。 + + or + - &Connect through SOCKS5 proxy (default proxy): - 透過 SOCKS5 代理伺服器連線(預設代理伺服器): + + Confirm send assets + - Proxy &IP: - 代理位址: + + Invalid: + - &Port: - 埠號: + + Copy + - Port of the proxy (e.g. 9050) - 代理伺服器的通訊埠(像是 9050) + + Transaction ID Copied + - Used for reaching peers via: - 用來跟其他節點聯絡的中介: + + Asset transaction sent to network: + - - Shows, if the supplied default SOCKS5 proxy is used to reach peers via this network type. - 如果對這種網路類型,有指定用來跟其他節點聯絡的 SOCKS5 代理伺服器的話,就會顯示在這裡。 + + + Estimated to begin confirmation within %n block(s). + - IPv4 - IPv4 + + Warning: Unknown change address + - IPv6 - IPv6 + + Confirm custom change address + - Tor - Tor + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. - 透過另外的 SOCKS5 代理伺服器來連線到 Raven 網路中的 Tor 隱藏服務。 + + (no label) + - Use separate SOCKS5 proxy to reach peers via Tor hidden services: - 用另外的 SOCKS5 代理伺服器,來透過 Tor 隱藏服務跟其他節點聯絡: + + Pay only the required fee of %1 + + + + EditAddressDialog - &Window - 視窗 + + Edit Address + 編輯位址 - &Hide the icon from the system tray. - 不在通知區顯示圖示。 + + &Label + 標記 - Hide tray icon - 不顯示通知區圖示 + + The label associated with this address list entry + 跟這個位址簿項目關聯的標記 - Show only a tray icon after minimizing the window. - 視窗縮到最小後只在通知區顯示圖示。 + + The address associated with this address list entry. This can only be modified for sending addresses. + 跟這個位址簿項目關聯的位址。只有付款位址能被修改。 - &Minimize to the tray instead of the taskbar - 縮到最小到通知區而不是工作列 + + &Address + 位址 - M&inimize on close - 關閉時縮到最小 + + New receiving address + 造新的收款位址 - &Display - 顯示 + + New sending address + 造新的付款位址 - User Interface &language: - 使用界面語言: + + Edit receiving address + 編輯收款位址 - The user interface language can be set here. This setting will take effect after restarting %1. - 可以在這裡設定使用者介面的語言。這個設定在重啓 %1 後才會生效。 + + Edit sending address + 編輯付款位址 - &Unit to show amounts in: - 金額顯示單位: + + The entered address "%1" is not a valid Raven address. + 輸入的位址 %1 並不是有效的 Raven 位址。 - Choose the default subdivision unit to show in the interface and when sending coins. - 選擇操作界面和付款時,預設顯示金額的細分單位。 + + The entered address "%1" is already in the address book. + 輸入的位址 %1 在位址簿中已經有了。 - Whether to show coin control features or not. - 是否要顯示錢幣控制功能。 + + Could not unlock wallet. + 沒辦法把錢包解鎖。 - &OK - + + New key generation failed. + 產生新的密鑰失敗了。 + + + FreespaceChecker - &Cancel - 取消 + + A new data directory will be created. + 就要產生新的資料目錄。 - default - 預設值 + + name + 名稱 - none - + + Directory already exists. Add %1 if you intend to create a new directory here. + 已經有這個目錄了。如果你要在裡面造出新的目錄的話,請加上 %1. - Confirm options reset - 確認重設選項 + + Path already exists, and is not a directory. + 已經有指定的路徑了,並且不是一個目錄。 - Client restart required to activate changes. - 需要重新啟動客戶端軟體來讓改變生效。 + + Cannot create data directory here. + 沒辦法在這裡造出資料目錄。 + + + FreezeAddress - Client will be shut down. Do you want to proceed? - 客戶端軟體就要關掉了。繼續做下去嗎? + + Frame + - This change would require a client restart. - 這項改變需要重新啟動客戶端軟體。 + + Restricted Asset: + - The supplied proxy address is invalid. - 提供的代理伺服器位址無效。 + + Address: + - - - OverviewPage - Form - 表單 + + Custom Change Address + - The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. - 顯示的資訊可能是過期的。跟 Raven 網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 + + IPFS / Hash: + - Watch-only: - 只能看: + + Single Address Options + - Available: - 可用金額: + + Global Options + - Your current spendable balance - 目前可用餘額 + + Free&ze trading on this address + - Pending: - 未定金額: + + Unfreeze tradin&g on this address + - Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance - 還沒被確認的交易的總金額,可用餘額不包含這些金額 + + Freeze all &trading for the selected restricted asset + - Immature: - 未成熟金額: + + &Unfreeze all trading for the selected restricted asset + - Mined balance that has not yet matured - 還沒成熟的開採金額 + + Check + - Balances - 餘額 + + Clear + - Total: - 總金額: + + Submit + - Your current total balance - 目前全部餘額 + + Data has been validated, You can now submit the restriction transaction + - Your current balance in watch-only addresses - 所有只能看位址的目前餘額 + + Must have a restricted asset selected + - Spendable: - 可支配: + + Address is already frozen + - Recent transactions - 最近的交易 + + Address is not frozen + - Unconfirmed transactions to watch-only addresses - 所有只能看位址還沒確認的交易 + + Restricted asset is already frozen globally + - Mined balance in watch-only addresses that has not yet matured - 所有只能看位址還沒成熟的開採金額 + + Restricted asset is not frozen globally + - Current total balance in watch-only addresses - 所有只能看位址的目前全部餘額 + + Unable to preform action at this time + - PaymentServer + GUIUtil::SyncWarningMessage - Payment request error - 要求付款時發生錯誤 + + Warning: transaction while syncing wallet! + - Cannot start raven: click-to-pay handler - 沒辦法啟動 raven 協議的「按就付」處理器 + + You are trying to send a transaction while your wallet is not fully synced. This is not recommended because the transaction might get stuck in your wallet. Are you sure you want to proceed? + +Recommended action: Fully sync your wallet before sending a transaction. + + + + + HelpMessageDialog - URI handling - URI 處理 + + version + 版本 - Payment request fetch URL is invalid: %1 + + + (%1-bit) + (%1 位元) + + + + About %1 + 關於 %1 + + + + Command-line options + 命令列選項 + + + + Usage: + 用法: + + + + command-line options + 命令列選項 + + + + UI Options: + 使用介面選項: + + + + Choose data directory on startup (default: %u) + 啓動時選擇資料目錄(預設值: %u) + + + + Set language, for example "de_DE" (default: system locale) + 設定語言,比如說 de_DE (預設值: 系統語系) + + + + Start minimized + 啓動時縮到最小 + + + + Set SSL root certificates for payment request (default: -system-) + 設定付款請求時所使用的 SSL 根憑證(預設值: 系統憑證庫) + + + + Show splash screen on startup (default: %u) + 顯示啓動畫面(預設值: %u) + + + + Reset all settings changed in the GUI + 重置所有在使用界面更改的設定 + + + + Intro + + + Welcome + 歡迎 + + + + Welcome to %1. + 歡迎使用 %1。 + + + + As this is the first time the program is launched, you can choose where %1 will store its data. + 因為這是程式第一次啓動,你可以選擇 %1 儲存資料的地方。 + + + + When you click OK, %1 will begin to download and process the full %4 block chain (%2GB) starting with the earliest transactions in %3 when %4 initially launched. + + + + + This initial synchronisation is very demanding, and may expose hardware problems with your computer that had previously gone unnoticed. Each time you run %1, it will continue downloading where it left off. + + + + + If you have chosen to limit block chain storage (pruning), the historical data must still be downloaded and processed, but will be deleted afterward to keep your disk usage low. + + + + + Use the default data directory + 使用預設的資料目錄 + + + + Use a custom data directory: + 使用自訂的資料目錄: + + + + Raven + + + + + At least %1 GB of data will be stored in this directory, and it will grow over time. + + + + + Approximately %1 GB of data will be stored in this directory. + + + + + %1 will download and store a copy of the Raven block chain. + + + + + The wallet will also be stored in this directory. + + + + + Error: Specified data directory "%1" cannot be created. + 錯誤: 無法新增指定的資料目錄: %1 + + + + Error + 錯誤 + + + + %n GB of free space available + + + + + (of %n GB needed) + + + + + MnemonicDialog + + + HD Wallet Setup + + + + + MnemonicDialog1 + + + HD Wallet Setup + + + + + Select the type of wallet to create. + + + + + Since no wallet.dat file was found in the Raven block chain data directory, a wallet file will be created. + + + + + Please choose what you would like to do: + + + + + Create a new wallet using a new BIP39 compliant set of 12 seed words. + + + + + Re-create an existing wallet using a previously used BIP39 compliant set + of 12 seed words which you know. + + + + + Accept + + + + + You are choosing to create a new wallet using new seed words. + + + + + You are choosing to re-create an old wallet using seed words which you know. + + + + + MnemonicDialog2 + + + New HD Wallet Creation + + + + + BIP39 Compliant Seed Words: + + + + + Generate New Seed Words + + + + + These 12 generated seed words will be used. + + + + + Passphrase: + + + + + Enter a Passphrase to protect your seed words (optional). + + + + + You may enter an optional Passphrase to protect your seed words. + + + + + Warning: + + + + + Please write down your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please generate new words and try again + + + + + MnemonicDialog3 + + + Previous HD Wallet Re-creation + + + + + BIP39 Compliant Seed Words: + + + + + Enter the 12 seed words from your previous wallet here. + + + + + Passphrase: + + + + + You will need the Passphrase if your previous wallet used one. + + + + + Enter the Passphrase from your previous wallet if it used one. + + + + + Warning: + + + + + Please continue to remember your 12 seed words and Passphrase before Accepting. +They are not recoverable !! + + + + + Accept + + + + + Go Back + + + + + Words are not valid, please check the words and try again + + + + + ModalOverlay + + + Form + 表單 + + + + Recent transactions may not yet be visible, and therefore your wallet's balance might be incorrect. This information will be correct once your wallet has finished synchronizing with the raven network, as detailed below. + 最近的交易可能還看不到,因此錢包餘額可能不正確。在錢包軟體完成跟 raven 網路的同步後,這裡的資訊就會正確。詳情請見下面。 + + + + Attempting to spend ravens that are affected by not-yet-displayed transactions will not be accepted by the network. + 使用還沒顯示出來的交易所影響到的 raven 可能會不被網路所接受。 + + + + Number of blocks left + 剩餘區塊數 + + + + + + Unknown... + 不明... + + + + Last block time + 最近區塊時間 + + + + Progress + 進度 + + + + Progress increase per hour + 每小時進度 + + + + + calculating... + 正在計算中... + + + + Estimated time left until synced + 預估完成同步所需時間 + + + + Hide + 隱藏 + + + + Unknown. Syncing Headers (%1)... + 不明。正在同步前導資料(%1)中... + + + + MyRestrictedAssetsTableModel + + + Date + + + + + Type + + + + + Address + + + + + Asset Name + + + + + Tagged + + + + + Untagged + + + + + Frozen + + + + + Unfrozen + + + + + Other + + + + + watch-only + + + + + (no label) + + + + + Date and time that the transaction was received. + + + + + Type of transaction. + + + + + User-defined intent/purpose of the transaction. + + + + + The asset (or RVN) removed or added to balance. + + + + + OpenURIDialog + + + Open URI + 開啓 URI + + + + Open payment request from URI or file + 從 URI 或檔案開啟付款要求 + + + + URI: + URI: + + + + Select payment request file + 選擇付款要求資料檔 + + + + Select payment request file to open + 選擇要開啟的付款要求資料檔 + + + + OptionsDialog + + + Options + 選項 + + + + &Main + 主要 + + + + Automatically start %1 after logging in to the system. + 在登入系統後自動啓動 %1。 + + + + &Start %1 on system login + 系統登入時啟動 %1 + + + + Size of &database cache + 資料庫快取大小 + + + + MB + MB (百萬位元組) + + + + Number of script &verification threads + 指令碼驗證執行緒數目 + + + + + IP address of the proxy (e.g. IPv4: 127.0.0.1 / IPv6: ::1) + 代理伺服器的網際網路位址(像是 IPv4 的 127.0.0.1 或 IPv6 的 ::1) + + + + + + Shows if the supplied default SOCKS5 proxy is used to reach peers via this network type. + + + + + Use separate SOCKS&5 proxy to reach peers via Tor hidden services: + + + + + Hide the icon from the system tray. + + + + + &Hide tray icon + + + + + Minimize instead of exit the application when the window is closed. When this option is enabled, the application will be closed only after selecting Exit in the menu. + 當視窗關閉時,把應用程式縮到最小,而不是結束。當勾選這個選項時,只能夠用選單中的結束來關掉應用程式。 + + + + &Currency Unit: + + + + + Choose which currency to display the realtime value of RVN in (ie: BTC/RVN). + + + + + + Third party URLs (e.g. a block explorer) that appear in the transactions tab as context menu items. %s in the URL is replaced by transaction hash. Multiple URLs are separated by vertical bar |. + 在交易頁籤的情境選單出現的第三方網址連結(URL),比如說區塊探索網站。網址中的 %s 會被取代為交易的雜湊值。可以用直線符號 | 來分隔多個連結。 + + + + Active command-line options that override above options: + 從命令列取代掉以上設定的選項有: + + + + Open the %1 configuration file from the working directory. + + + + + Open Configuration File + + + + + Reset all client options to default. + 重設所有客戶端軟體選項成預設值。 + + + + &Reset Options + 重設選項 + + + + &Network + 網路 + + + + (0 = auto, <0 = leave that many cores free) + (0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目) + + + + W&allet + 錢包 + + + + Expert + 專家 + + + + Enable coin &control features + 開啟錢幣控制功能 + + + + Enable fee control features + + + + + If you disable the spending of unconfirmed change, the change from a transaction cannot be used until that transaction has at least one confirmation. This also affects how your balance is computed. + 如果你關掉「可以花還沒確認的零錢」,那麼交易中找零的零錢就必須要等交易至少有一次確認後,才能夠使用。這也會影響餘額的計算方式。 + + + + &Spend unconfirmed change + 可以花還沒確認的零錢 + + + + Automatically open the Raven client port on the router. This only works when your router supports UPnP and it is enabled. + 自動在路由器上開放 Raven 的客戶端通訊埠。只有在你的路由器支援且開啓「通用即插即用」協定(UPnP)時才有作用。 + + + + Map port using &UPnP + 用 &UPnP 設定通訊埠對應 + + + + Accept connections from outside. + + + + + Allow incomin&g connections + + + + + Connect to the Raven network through a SOCKS5 proxy. + 透過 SOCKS5 代理伺服器來連線到 Raven 網路。 + + + + &Connect through SOCKS5 proxy (default proxy): + 透過 SOCKS5 代理伺服器連線(預設代理伺服器): + + + + + Proxy &IP: + 代理位址: + + + + + &Port: + 埠號: + + + + + Port of the proxy (e.g. 9050) + 代理伺服器的通訊埠(像是 9050) + + + + Used for reaching peers via: + 用來跟其他節點聯絡的中介: + + + + IPv4 + IPv4 + + + + IPv6 + IPv6 + + + + Tor + Tor + + + + Connect to the Raven network through a separate SOCKS5 proxy for Tor hidden services. + 透過另外的 SOCKS5 代理伺服器來連線到 Raven 網路中的 Tor 隱藏服務。 + + + + &Window + 視窗 + + + + Show only a tray icon after minimizing the window. + 視窗縮到最小後只在通知區顯示圖示。 + + + + &Minimize to the tray instead of the taskbar + 縮到最小到通知區而不是工作列 + + + + M&inimize on close + 關閉時縮到最小 + + + + Only show toolbar icons. No text. + + + + + &Icons only + + + + + &Display + 顯示 + + + + User Interface &language: + 使用界面語言: + + + + The user interface language can be set here. This setting will take effect after restarting %1. + 可以在這裡設定使用者介面的語言。這個設定在重啓 %1 後才會生效。 + + + + &Unit to show amounts in: + 金額顯示單位: + + + + Choose the default subdivision unit to show in the interface and when sending coins. + 選擇操作界面和付款時,預設顯示金額的細分單位。 + + + + Whether to show coin control features or not. + 是否要顯示錢幣控制功能。 + + + + &Third party transaction URLs + + + + + + Reset + + + + + + Third party URL for IPFS-viewer. %s in the URL is replaced by IPFS hash. + + + + + IPFS Viewer URL + + + + + Enable Dark Mode + + + + + &OK + + + + + &Cancel + 取消 + + + + default + 預設值 + + + + none + + + + + Confirm options reset + 確認重設選項 + + + + + Client restart required to activate changes. + 需要重新啟動客戶端軟體來讓改變生效。 + + + + Client will be shut down. Do you want to proceed? + 客戶端軟體就要關掉了。繼續做下去嗎? + + + + Configuration options + + + + + The configuration file is used to specify advanced user options which override GUI settings. Additionally, any command-line options will override this configuration file. + + + + + Error + + + + + The configuration file could not be opened. + + + + + This change would require a client restart. + 這項改變需要重新啟動客戶端軟體。 + + + + The supplied proxy address is invalid. + 提供的代理伺服器位址無效。 + + + + OverviewPage + + + Form + 表單 + + + + + + The displayed information may be out of date. Your wallet automatically synchronizes with the Raven network after a connection is established, but this process has not completed yet. + 顯示的資訊可能是過期的。跟 Raven 網路的連線建立後,你的錢包會自動和網路同步,但是這個步驟還沒完成。 + + + + Watch-only: + 只能看: + + + + Available: + 可用金額: + + + + Your current spendable balance + 目前可用餘額 + + + + Pending: + 未定金額: + + + + Total of transactions that have yet to be confirmed, and do not yet count toward the spendable balance + 還沒被確認的交易的總金額,可用餘額不包含這些金額 + + + + Immature: + 未成熟金額: + + + + Mined balance that has not yet matured + 還沒成熟的開採金額 + + + + Total: + 總金額: + + + + Your current total balance + 目前全部餘額 + + + + RVN Balances + + + + + Your current balance in watch-only addresses + 所有只能看位址的目前餘額 + + + + Spendable: + 可支配: + + + + Asset Balances + + + + + Search + + + + + Recent transactions + 最近的交易 + + + + Unconfirmed transactions to watch-only addresses + 所有只能看位址還沒確認的交易 + + + + Mined balance in watch-only addresses that has not yet matured + 所有只能看位址還沒成熟的開採金額 + + + + Current total balance in watch-only addresses + 所有只能看位址的目前全部餘額 + + + + Send Asset + + + + + Copy Amount + + + + + Copy Name + + + + + Copy Hash + + + + + Issue Sub Asset + + + + + Issue Unique Asset + + + + + Reissue Asset + + + + + Open IPFS in Browser + + + + + Open IPFS content? + + + + + Open the following IPFS content in your default browser? + + + + + + PaymentServer + + + + + + + + Payment request error + 要求付款時發生錯誤 + + + + Cannot start raven: click-to-pay handler + 沒辦法啟動 raven 協議的「按就付」處理器 + + + + + + URI handling + URI 處理 + + + + Payment request fetch URL is invalid: %1 取得付款要求的 URL 無效: %1 - Invalid payment address %1 - 無效的付款位址 %1 + + Invalid payment address %1 + 無效的付款位址 %1 + + + + URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. + 沒辦法解析 URI 位址!可能是因為 Raven 位址無效,或是 URI 參數格式錯誤。 + + + + Payment request file handling + 處理付款要求檔案 + + + + Payment request file cannot be read! This can be caused by an invalid payment request file. + 沒辦法讀取付款要求檔案!可能是無效的檔案造成的。 + + + + + + + + + Payment request rejected + 付款的要求被拒絕了 + + + + Payment request network doesn't match client network. + 付款要求的網路類型跟客戶端不符。 + + + + Payment request expired. + 付款的要求過期了。 + + + + Payment request is not initialized. + 付款的要求沒有完成初始化。 + + + + Unverified payment requests to custom payment scripts are unsupported. + 不支援含有自訂付款指令碼,且沒驗證過的付款要求。 + + + + + Invalid payment request. + 付款的要求無效。 + + + + Requested payment amount of %1 is too small (considered dust). + 要求付款的金額 %1 太少(會被網路認為是沒必要的零散錢)。 + + + + Refund from %1 + 來自 %1 的退款 + + + + Payment request %1 is too large (%2 bytes, allowed %3 bytes). + 付款要求 %1 過大 (%2 位元組, 上限 %3 位元組). + + + + Error communicating with %1: %2 + 跟 %1 通訊時發生錯誤: %2 + + + + Payment request cannot be parsed! + 沒辦法解析付款要求內容! + + + + Bad response from server %1 + 伺服器 %1 的回應有誤 + + + + Network request error + 發出要求時發生網路錯誤 + + + + Payment acknowledged + 付款已確認 + + + + PeerTableModel + + + User Agent + 使用者代理 + + + + Node/Service + 節點/服務 + + + + NodeId + 節點識別碼 + + + + Ping + Ping 時間 + + + + Sent + + + + + Received + + + + + QObject + + + Amount + 金額 + + + + Enter a Raven address (e.g. %1) + 輸入 Raven 位址 (比如說 %1) + + + + %1 d + %1 天 + + + + %1 h + %1 小時 + + + + %1 m + %1 分鐘 + + + + + %1 s + %1 秒 + + + + None + + + + + N/A + 未知 + + + + %1 ms + %1 毫秒 + + + + %n second(s) + + + + + %n minute(s) + + + + + %n hour(s) + + + + + %n day(s) + + + + + + %n week(s) + + + + + %1 and %2 + %1又 %2 + + + + %n year(s) + + + + + %1 B + + + + + %1 KB + + + + + %1 MB + + + + + %1 GB + + + + + %1 didn't yet exit safely... + %1 還沒有安全地結束... + + + + unknown + + + + + QObject::QObject + + + Error: Specified data directory "%1" does not exist. + 錯誤: 不存在指定的資料目錄 "%1" 。 + + + + Error: Cannot parse configuration file: %1. Only use key=value syntax. + 錯誤: 沒辦法解析設定檔: %1。只能用「名稱=設定值」這種語法。 + + + + Error: %1 + 錯誤: %1 + + + + QRImageWidget + + + &Save Image... + 儲存圖片... + + + + &Copy Image + 複製圖片 + + + + Save QR Code + 儲存 QR Code + + + + PNG Image (*.png) + PNG 圖檔(*.png) + + + + RPCConsole + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + N/A + 未知 + + + + Client version + 客戶端軟體版本 + + + + &Information + 資訊 + + + + Debug window + 除錯視窗 + + + + General + 普通 + + + + Using BerkeleyDB version + 使用 BerkeleyDB 版本 + + + + Datadir + 資料目錄 + + + + Startup time + 啓動時間 + + + + Network + 網路 + + + + Name + 名稱 + + + + Number of connections + 連線數 + + + + Block chain + 區塊鏈 + + + + Current number of blocks + 目前區塊數 + + + + Memory Pool + 記憶體暫存池 + + + + Current number of transactions + 目前交易數目 + + + + Memory usage + 記憶體使用量 + + + + &Reset + + + + + + Received + 收到 + + + + + Sent + 送出 + + + + &Peers + 節點 + + + + Banned peers + 被禁節點 + + + + + + Select a peer to view detailed information. + 選一個節點來看詳細資訊 + + + + Whitelisted + 列在白名單 + + + + Direction + 方向 + + + + Version + 版本 + + + + Starting Block + 起始區塊 + + + + Synced Headers + 已同步前導資料 + + + + Synced Blocks + 已同步區塊 + + + + &Wallet Repair + + + + + Wallet Repair Options + + + + + The buttons below will restart the wallet with command-line options to recover missing transactions or rebuild corrupt blockchain files. + + + + + Wallet Path + + + + + Rescan blockchain files + + + + + Recover transactions + + + + + Rebuild index + + + + + -rescan: Rescan the blockchain files on disk for missing wallet transactions. (Short process) + + + + + -zapwallettxes=1: Delete all wallet transactions and recover them with a rescan. (Keeps metadata) + + + + + Use to recover balance when transactions fail to broadcast to the network. + + + + + -reindex: Rebuild chain state and block index from the blk00*.dat files on disk. (Long process) + + + + + Use after importing private keys or restoring a wallet.dat backup. + + + + + + User Agent + 使用者代理 + + + + Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. + 從目前的資料目錄下開啓 %1 的除錯紀錄檔。當紀錄檔很大時,可能會花好幾秒的時間。 + + + + Decrease font size + 縮小文字 + + + + Increase font size + 放大文字 + + + + Services + 服務 + + + + Ban Score + 惡劣分數 + + + + Connection Time + 連線時間 + + + + Last Send + 最近送出 + + + + Last Receive + 最近收到 + + + + Ping Time + Ping 時間 + + + + The duration of a currently outstanding ping. + 目前這一次 ping 已經過去的時間。 + + + + Ping Wait + Ping 等待時間 + + + + Min Ping + Ping 最短時間 + + + + Time Offset + 時間差 + + + + Last block time + 最近區塊時間 + + + + &Open + 開啓 + + + + &Console + 主控台 + + + + &Network Traffic + 網路流量 + + + + Totals + 總計 + + + + In: + 來: + + + + Out: + 去: + + + + Debug log file + 除錯紀錄檔 + + + + Clear console + 清主控台 + + + + 1 &hour + 1 小時 + + + + 1 &day + 1 天 + + + + 1 &week + 1 星期 + + + + 1 &year + 1 年 + + + + &Disconnect + 斷線 + + + + + + + Ban for + 禁止連線 + + + + &Unban + 連線解禁 + + + + Are you sure you want to reindex? + + + + + Confirm reindex + + + + + Welcome to the %1 RPC console. + 歡迎使用 %1 的 RPC 主控台。 + + + + Type <b>help</b> for an overview of available commands. + 請打 <b>help</b> 來看可用指令的簡介。 + + + + Use up and down arrows to navigate history, and %1 to clear screen. + + + + + WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramifications of a command. + + + + + Network activity disabled + 網路活動已關閉 + + + + (node id: %1) + (節點識別碼: %1) + + + + via %1 + 經由 %1 + + + + + never + 沒有過 + + + + Inbound + 進來 + + + + Outbound + 出去 + + + + Yes + + + + + No + + + + + + Unknown + 不明 + + + + RavenGUI + + + Sign &message... + 簽署訊息... + + + + Synchronizing with network... + 正在跟網路進行同步... + + + + &Overview + 總覽 + + + + Node + 節點 + + + + Show general overview of wallet + 顯示錢包一般總覽 + + + + &Transactions + 交易 + + + + Browse transaction history + 瀏覽交易紀錄 + + + + &Create Assets + + + + + + Create new main/sub/unique assets + + + + + &Transfer Assets + + + + + + Transfer assets to RVN addresses + + + + + &Manage Assets + + + + + Manage assets you are the administrator of + + + + + &Messaging + + + + + + Coming Soon + + + + + &Voting + + + + + &Restricted Assets + + + + + + Manage restricted assets + + + + + E&xit + 結束 + + + + Quit application + 結束應用程式 + + + + &About %1 + 關於%1 + + + + Show information about %1 + 顯示 %1 的相關資訊 + + + + About &Qt + 關於 &Qt + + + + Show information about Qt + 顯示 Qt 相關資訊 + + + + &Options... + 選項... + + + + Modify configuration options for %1 + 修改 %1 的設定選項 + + + + &Encrypt Wallet... + 加密錢包... + + + + &Backup Wallet... + 備份錢包... + + + + &Change Passphrase... + 改變密碼... + + + + &Get my words... + + + + + Show the recoverywords for this wallet + + + + + &Debug Window + + + + + &Wallet Repair + + + + + Open wallet repair options + + + + + &Sending addresses... + 付款位址... + + + + &Receiving addresses... + 收款位址... + + + + Open &URI... + 開啓 URI... + + + + &Wallet + + + + + Ravencoin Market Price + + + + + Brought to you by binance.com + + + + + Click to disable network activity. + 按一下就會不使用網路。 + + + + Network activity disabled. + 網路活動關閉了。 + + + + Click to enable network activity again. + 按一下就又會使用網路。 + + + + Syncing Headers (%1%)... + 正在同步前導資料(%1%)中... + + + + Reindexing blocks on disk... + 正在為磁碟裡的區塊重建索引... + + + + Send coins to a Raven address + 付錢給一個 Raven 位址 + + + + Backup wallet to another location + 把錢包備份到其它地方 + + + + Change the passphrase used for wallet encryption + 改變錢包加密用的密碼 + + + + Open debugging and diagnostic console + 開啓除錯和診斷主控台 + + + + &Verify message... + 驗證訊息... + + + + Raven + Raven + + + + Wallet + 錢包 + + + + &Send + 付款 + + + + &Receive + 收款 + + + + &Show / Hide + 顯示或隱藏 + + + + Show or hide the main Window + 顯示或隱藏主視窗 + + + + Encrypt the private keys that belong to your wallet + 把錢包中的密鑰加密 + + + + Sign messages with your Raven addresses to prove you own them + 用 Raven 位址簽署訊息來證明位址是你的 + + + + Verify messages to ensure they were signed with specified Raven addresses + 驗證訊息是用來確定訊息是用指定的 Raven 位址簽署的 + + + + &File + 檔案 + + + + &Help + 說明 + + + + Request payments (generates QR codes and raven: URIs) + 要求付款(產生 QR Code 和 raven 付款協議的資源識別碼: URI) + + + + Show the list of used sending addresses and labels + 顯示已使用過的付款位址和標記的清單 + + + + Show the list of used receiving addresses and labels + 顯示已使用過的收款位址和標記的清單 + + + + Open a raven: URI or payment request + 開啓 raven 協議的資源識別碼(URI)或付款要求 + + + + &Command-line options + 命令列選項 + + + + %n active connection(s) to Raven network + + + + + Indexing blocks on disk... + 正在為磁碟裡的區塊建立索引... + + + + Processing blocks on disk... + 正在處理磁碟裡的區塊資料... + + + + Processed %n block(s) of transaction history. + + + + + %1 behind + 落後 %1 + + + + Last received block was generated %1 ago. + 最近收到的區塊是在 %1 以前生出來的。 + + + + Transactions after this will not yet be visible. + 暫時會看不到在這之後的交易。 + + + + Error + 錯誤 + + + + Warning + 警告 + + + + Information + 資訊 + + + + Up to date + 最新狀態 + + + + Show the %1 help message to get a list with possible Raven command-line options + 顯示 %1 的說明訊息,來取得可用命令列選項的列表 + + + + %1 client + %1 客戶端軟體 + + + + Connecting to peers... + 正在跟其他節點連線中... + + + + Catching up... + 正在趕進度... + + + + Date: %1 + + 日期: %1 + + + + + + Amount: %1 + + 金額: %1 + + + + + Type: %1 + + 種類: %1 + + + + + Label: %1 + + 標記: %1 + + + + + Address: %1 + + 位址: %1 + + + + + Sent transaction + 付款交易 + + + + Incoming transaction + 收款交易 + + + + + Assets not yet active + + + + + Restricted Assets not yet active + + + + + HD key generation is <b>enabled</b> + 產生 HD 金鑰<b>已經啟用</b> + + + + HD key generation is <b>disabled</b> + 產生 HD 金鑰<b>已經停用</b> + + + + Wallet is <b>encrypted</b> and currently <b>unlocked</b> + 錢包<b>已加密</b>並且<b>解鎖中</b> + + + + Wallet is <b>encrypted</b> and currently <b>locked</b> + 錢包<b>已加密</b>並且<b>上鎖中</b> + + + + A fatal error occurred. Raven can no longer continue safely and will quit. + 發生了致命的錯誤。Raven 軟體沒辦法再繼續安全執行,只好結束。 + + + + ReceiveCoinsDialog + + + &Amount: + 金額: + + + + &Label: + 標記: + + + + &Message: + 訊息: + + + + Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. + 重複使用先前使用過的收款位址。重複使用位址會有安全和隱私方面的問題。除非是要重新產生先前的付款要求,不然請不要使用。 + + + + R&euse an existing receiving address (not recommended) + 重複使用現有的收款位址(不建議) + + + + + An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. + 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到 Raven 網路上。 + + + + + An optional label to associate with the new receiving address. + 跟新收款位址關聯的標記,可以不填。 + + + + Use this form to request payments. All fields are <b>optional</b>. + 請用這份表單來要求付款。所有欄位都<b>可以不填</b>。 + + + + + An optional amount to request. Leave this empty or zero to not request a specific amount. + 要求付款的金額,可以不填。不確定金額時可以留白或是填零。 + + + + Clear all fields of the form. + 把表單中的所有欄位清空。 + + + + Clear + 清空 + + + + Requested payments history + 先前要求付款的記錄 + + + + &Request payment + 要求付款 + + + + Show the selected request (does the same as double clicking an entry) + 顯示選擇的要求內容(效果跟按它兩下一樣) + + + + Show + 顯示 + + + + Remove the selected entries from the list + 從列表中刪掉選擇的項目 + + + + Remove + 刪掉 + + + + Copy URI + 複製 URI + + + + Copy label + 複製標記 + + + + Copy message + 複製訊息 + + + + Copy amount + 複製金額 + + + + ReceiveRequestDialog + + + QR Code + QR Code + + + + Copy &URI + 複製 URI + + + + Copy &Address + 複製位址 + + + + &Save Image... + 儲存圖片... + + + + Request payment to %1 + 付款給 %1 的要求 + + + + Payment information + 付款資訊 + + + + URI + URI + + + + Address + 位址 + + + + Amount + 金額 + + + + Label + 標記: + + + + Message + 訊息 + + + + Resulting URI too long, try to reduce the text for label / message. + 產生的 URI 過長,請試著縮短標記或訊息的文字內容。 + + + + Error encoding URI into QR Code. + 把 URI 編碼成 QR Code 時發生錯誤。 + + + + RecentRequestsTableModel + + + Date + 日期 + + + + Label + 標記: - URI cannot be parsed! This can be caused by an invalid Raven address or malformed URI parameters. - 沒辦法解析 URI 位址!可能是因為 Raven 位址無效,或是 URI 參數格式錯誤。 + + Message + 訊息 - Payment request file handling - 處理付款要求檔案 + + (no label) + (無標記) - Payment request file cannot be read! This can be caused by an invalid payment request file. - 沒辦法讀取付款要求檔案!可能是無效的檔案造成的。 + + (no message) + (無訊息) - Payment request rejected - 付款的要求被拒絕了 + + (no amount requested) + (無要求金額) - Payment request network doesn't match client network. - 付款要求的網路類型跟客戶端不符。 + + Requested + 要求金額 + + + ReissueAssetDialog - Payment request expired. - 付款的要求過期了。 + + Coin Control Features + - Payment request is not initialized. - 付款的要求沒有完成初始化。 + + Inputs... + - Unverified payment requests to custom payment scripts are unsupported. - 不支援含有自訂付款指令碼,且沒驗證過的付款要求。 + + automatically selected + - Invalid payment request. - 付款的要求無效。 + + Insufficient funds! + - Requested payment amount of %1 is too small (considered dust). - 要求付款的金額 %1 太少(會被網路認為是沒必要的零散錢)。 + + + Quantity: + - Refund from %1 - 來自 %1 的退款 + + Bytes: + - Payment request %1 is too large (%2 bytes, allowed %3 bytes). - 付款要求 %1 過大 (%2 位元組, 上限 %3 位元組). + + Amount: + - Error communicating with %1: %2 - 跟 %1 通訊時發生錯誤: %2 + + Dust: + - Payment request cannot be parsed! - 沒辦法解析付款要求內容! + + Fee: + - Bad response from server %1 - 伺服器 %1 的回應有誤 + + After Fee: + - Network request error - 發出要求時發生網路錯誤 + + Change: + - Payment acknowledged - 付款已確認 + + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. + - - - PeerTableModel - User Agent - 使用者代理 + + Custom change address + - Node/Service - 節點/服務 + + + Reissue Asset + - NodeId - 節點識別碼 + + Select an asset to reissue: + - Ping - Ping 時間 + + Address: + - - - QObject - Amount - 金額 + + The RVN address that will hold this asset (You must own this address). Leave blank to create a new address. + - Enter a Raven address (e.g. %1) - 輸入 Raven 位址 (比如說 %1) + + Verifier String: + - %1 d - %1 天 + + Create a verifier string built from Qualifier names e.g (#KYC & #VALID). Leave blank not change this + - %1 h - %1 小時 + + Warning: + - %1 m - %1 分鐘 + + The number of assets that will be created + - %1 s - %1 秒 + + Unit: + - None - + + e.g. 1.00000000 + - N/A - 未知 + + If the owner of this asset will be able to issue more assets in the future + - %1 ms - %1 毫秒 - - - %n second(s) - %n 秒鐘 - - - %n minute(s) - %n 分鐘 - - - %n hour(s) - %n 小時 - - - %n day(s) - %n 天 + + Reissuable + - - %n week(s) - %n 星期 + + + Change IPFS/Txid Hash + - %1 and %2 - %1又 %2 + + The ipfs/txid hash that contains information about the asset + - - %n year(s) - %n 年 + + + The ipfs/txid hash that is associated with the asset being created (e.g. QmU4h365LYMHx...) + - %1 didn't yet exit safely... - %1 還沒有安全地結束... + + ERROR TEXT + - - - QObject::QObject - Error: Specified data directory "%1" does not exist. - 錯誤: 不存在指定的資料目錄 "%1" 。 + + Current Asset Settings + - Error: Cannot parse configuration file: %1. Only use key=value syntax. - 錯誤: 沒辦法解析設定檔: %1。只能用「名稱=設定值」這種語法。 + + Updated Asset Settings + - Error: %1 - 錯誤: %1 + + Transaction Fee: + - - - QRImageWidget - &Save Image... - 儲存圖片... + + Choose... + - &Copy Image - 複製圖片 + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + - Save QR Code - 儲存 QR Code + + Warning: Fee estimation is currently not possible. + - PNG Image (*.png) - PNG 圖檔(*.png) + + collapse fee-settings + - - - RPCConsole - N/A - 未知 + + Hide + - Client version - 客戶端軟體版本 + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + - &Information - 資訊 + + per kilobyte + - Debug window - 除錯視窗 + + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. + - General - 普通 + + (read the tooltip) + - Using BerkeleyDB version - 使用 BerkeleyDB 版本 + + Recommended: + - Datadir - 資料目錄 + + Cus&tom: + - Startup time - 啓動時間 + + (Smart fee not initialized yet. This usually takes a few blocks...) + - Network - 網路 + + Confirmation time target: + - Name - 名稱 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + - Number of connections - 連線數 + + Request Replace-By-Fee + - Block chain - 區塊鏈 + + Clear + - Current number of blocks - 目前區塊數 + + Balance: + - Memory Pool - 記憶體暫存池 + + 123.456 RVN + - Current number of transactions - 目前交易數目 + + Copy quantity + - Memory usage - 記憶體使用量 + + Copy amount + - Received - 收到 + + Copy fee + - Sent - 送出 + + Copy after fee + - &Peers - 節點 + + Copy bytes + - Banned peers - 被禁節點 + + Copy dust + - Select a peer to view detailed information. - 選一個節點來看詳細資訊 + + Copy change + - Whitelisted - 列在白名單 + + Select an asset to reissue.. + - Direction - 方向 + + Select the asset you want to reissue. + - Version - 版本 + + %1 (%2 blocks) + - Starting Block - 起始區塊 + + Cost + - Synced Headers - 已同步前導資料 + + Asset data couldn't be found + - Synced Blocks - 已同步區塊 + + Quantity is to large. Max is 21,000,000,000 + - User Agent - 使用者代理 + + Invalid Raven Destination Address + - Open the %1 debug log file from the current data directory. This can take a few seconds for large log files. - 從目前的資料目錄下開啓 %1 的除錯紀錄檔。當紀錄檔很大時,可能會花好幾秒的時間。 + + Warning: Restricted Assets Issuance requires an address + - Decrease font size - 縮小文字 + + + Warning: Invalid Raven address + - Increase font size - 放大文字 + + + Yes + - Services - 服務 + + No + - Ban Score - 惡劣分數 + + + Name + - Connection Time - 連線時間 + + + Total Quantity + - Last Send - 最近送出 + + + Units + - Last Receive - 最近收到 + + + Can Reisssue + - Ping Time - Ping 時間 + + + + IPFS Hash + - The duration of a currently outstanding ping. - 目前這一次 ping 已經過去的時間。 + + + + Txid Hash + - Ping Wait - Ping 等待時間 + + Verifier String + - Min Ping - Ping 最短時間 + + + Current Verifier String + - Time Offset - 時間差 + + Please select a asset from the menu to display the assets current settings + - Last block time - 最近區塊時間 + + Please select a asset from the menu to display the assets updated settings + - &Open - 開啓 + + Current Quantity + - &Console - 主控台 + + Current Units + - &Network Traffic - 網路流量 + + Can Reissue + - &Clear - 清掉 + + Unknown data hash type + - Totals - 總計 + + Only IPFS Hashes allowed until RIP5 is activated + - In: - 來: + + IPFS/Txid Hash must start with 'Qm' and be 46 characters or Txid Hash must have 64 hex characters + - Out: - 去: + + IPFS/Txid Hash must have size of 46 characters, or 64 hex characters + + + + + IPFS/Txid hash is not valid. Please use a valid IPFS/Txid hash + - Debug log file - 除錯紀錄檔 + + + %1 to %2 + - Clear console - 清主控台 + + Are you sure you want to send? + - 1 &hour - 1 小時 + + added as transaction fee + - 1 &day - 1 天 + + Total Amount %1 + - 1 &week - 1 星期 + + or + - 1 &year - 1 年 + + Confirm reissue assets + - &Disconnect - 斷線 + + Copy + - Ban for - 禁止連線 + + Transaction ID Copied + - &Unban - 連線解禁 + + Asset transaction sent to network: + + + + + Estimated to begin confirmation within %n block(s). + - Welcome to the %1 RPC console. - 歡迎使用 %1 的 RPC 主控台。 + + Warning: Unknown change address + - Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen. - 請用上下游標鍵來瀏覽先前指令的紀錄,並用 <b>Ctrl-L</b> 來清畫面。 + + Confirm custom change address + - Type <b>help</b> for an overview of available commands. - 請打 <b>help</b> 來看可用指令的簡介。 + + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? + - WARNING: Scammers have been active, telling users to type commands here, stealing their wallet contents. Do not use this console without fully understanding the ramification of a command. - 警告: 已知有詐騙集團會叫人在這個畫面輸入指令,以偷取他們錢包的內容物。請不要在沒有充分理解指令可能造成後果的情況下使用主控台。 + + (no label) + - Network activity disabled - 網路活動已關閉 + + Pay only the required fee of %1 + + + + RestrictedAssetsDialog - %1 B - %1 B (位元組) + + Send Coins + - %1 KB - %1 KB (千位元組) + + Asset Balances + - %1 MB - %1 MB (百萬位元組) + + + Search + - %1 GB - %1 GB (十億位元組) + + Address List + - (node id: %1) - (節點識別碼: %1) + + Balance: + - via %1 - 經由 %1 + + + Failed to create a change address + - never - 沒有過 + + Failed to generate the correct transaction. Please try again + - Inbound - 進來 + + Freezing all trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Outbound - 出去 + + Unfreezing trading of the restricted asset <b>%1</b> from address <b>%2</b><br> + - Yes - + + Freezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - No - + + Opening / Unfreezing all trading of the restricted asset <b>%1</b> from all addresses<br> + - Unknown - 不明 + + + added as transaction fee + - - - ReceiveCoinsDialog - &Amount: - 金額: + + + Total Amount %1 + - &Label: - 標記: + + + or + - &Message: - 訊息: + + Confirm adding restriction + - Reuse one of the previously used receiving addresses. Reusing addresses has security and privacy issues. Do not use this unless re-generating a payment request made before. - 重複使用先前使用過的收款位址。重複使用位址會有安全和隱私方面的問題。除非是要重新產生先前的付款要求,不然請不要使用。 + + Confirm removing resetricton + - R&euse an existing receiving address (not recommended) - 重複使用現有的收款位址(不建議) + + Adding qualifier <b>%1</b> to address <b>%2</b><br> + - An optional message to attach to the payment request, which will be displayed when the request is opened. Note: The message will not be sent with the payment over the Raven network. - 附加在付款要求中的訊息,可以不填,打開要求內容時會顯示。注意: 這個訊息不會隨著付款送到 Raven 網路上。 + + Removing qualifier <b>%1</b> from address <b>%2</b><br> + - An optional label to associate with the new receiving address. - 跟新收款位址關聯的標記,可以不填。 + + Confirm adding qualifier + - Use this form to request payments. All fields are <b>optional</b>. - 請用這份表單來要求付款。所有欄位都<b>可以不填</b>。 + + Confirm removing qualifier + + + + SendAssetsEntry - An optional amount to request. Leave this empty or zero to not request a specific amount. - 要求付款的金額,可以不填。不確定金額時可以留白或是填零。 + + This is an asset payment + - Clear all fields of the form. - 把表單中的所有欄位清空。 + + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. + - Clear - 清空 + + + + Memo: + - Requested payments history - 先前要求付款的記錄 + + Amount: + - &Request payment - 要求付款 + + Enter a label for this address to add it to the list of used addresses + - Show the selected request (does the same as double clicking an entry) - 顯示選擇的要求內容(效果跟按它兩下一樣) + + &Label: + - Show - 顯示 + + Asset: + - Remove the selected entries from the list - 從列表中刪掉選擇的項目 + + The Raven address to send the payment to + - Remove - 刪掉 + + Choose previously used address + - Copy URI - 複製 URI + + Alt+A + - Copy label - 複製標記 + + Paste address from clipboard + - Copy message - 複製訊息 + + Alt+P + - Copy amount - 複製金額 + + + + Remove this entry + - - - ReceiveRequestDialog - QR Code - QR Code + + Message: + - Copy &URI - 複製 URI + + Transfer &To: + - Copy &Address - 複製位址 + + Transfer Administrator Asset + - &Save Image... - 儲存圖片... + + Put a IPFS or Txid hash here to be sent with the asset transfer + - Request payment to %1 - 付款給 %1 的要求 + + This is an unauthenticated payment request. + - Payment information - 付款資訊 + + + Transfer to: + - URI - URI + + + A&mount: + - Address - 位址 + + This is an authenticated payment request. + - Amount - 金額 + + Enter a label for this address to add it to your address book + - Label - 標記: + + Select to view administrator assets to transfer + - Message - 訊息 + + + Select an asset to transfer + - Resulting URI too long, try to reduce the text for label / message. - 產生的 URI 過長,請試著縮短標記或訊息的文字內容。 + + Memos can only be added once RIP5 is voted in + - Error encoding URI into QR Code. - 把 URI 編碼成 QR Code 時發生錯誤。 + + This restricted asset has been frozen globally. No transfers can be sent on the network. + - - - RecentRequestsTableModel - Date - 日期 + + Failed to get asset metadata for: + - Label - 標記: + + The transaction in which the asset was issued must be mined into a block before you can transfer it + - Message - 訊息 + + Failed to get asset outpoints from database + - (no label) - (無標記) + + Selected Balance + - (no message) - (無訊息) + + Wallet Balance + - (no amount requested) - (無要求金額) + + Select an administrator asset to transfer + - Requested - 要求金額 + + Warning: Transferring administrator asset + SendCoinsDialog + + Send Coins 付款 + Coin Control Features 錢幣控制功能 + Inputs... 輸入... + automatically selected 自動選擇 + Insufficient funds! 累計金額不足! + Quantity: 數目: + Bytes: 位元組數: + Amount: 金額: + Fee: 手續費: + After Fee: 計費後金額: + Change: 找零金額: + If this is activated, but the change address is empty or invalid, change will be sent to a newly generated address. 如果這項有打開,但是找零位址是空的或無效,那麼找零的錢會送到一個新產生的位址去。 + Custom change address 自訂找零位址 + Transaction Fee: 交易手續費: + Choose... 選項... + + Using the fallbackfee can result in sending a transaction that will take several hours or days (or never) to confirm. Consider choosing your fee manually or wait until you have validated the complete chain. + + + + + Warning: Fee estimation is currently not possible. + + + + collapse fee-settings 展開手續費設定 + per kilobyte 每千位元組 - If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. + + If the custom fee is set to 1000 satoshis and the transaction is only 250 bytes, then "per kilobyte" only pays 250 satoshis in fee, while "total at least" pays 1000 satoshis. For transactions bigger than a kilobyte both pay by kilobyte. 如果自訂手續費設定為 1000 satoshi, 而交易資料大小只有 250 個位元組的話,那麽選擇「每千位元組」就只會付 250 satoshi 的手續費,換做選「總共至少」就會付 1000 satoshi. 但是如果交易資料大小超過一千個位元組,那麽兩者都是每千位元組的費用。 + Hide 隱藏 - total at least - 總共最少 - - + + Paying only the minimum fee is just fine as long as there is less transaction volume than space in the blocks. But be aware that this can end up in a never confirming transaction once there is more demand for raven transactions than the network can process. 當交易量少於區塊可容納的空間時,只付最低手續費不會有什麽問題。但是當交易量的需求成長到超過整體網路可以處理的量時,可能會造成一筆一直不會被確認的交易。 + (read the tooltip) (請看提示) + Recommended: 建議值: + Custom: 自訂: + (Smart fee not initialized yet. This usually takes a few blocks...) (手續費智慧演算法還沒準備好。通常都要等幾個區塊才行...) - normal - 正常 + + Request Replace-By-Fee + - fast - 快速 + + Indicates that the sender may wish to replace this transaction with a new one paying higher fees (prior to being confirmed). + + Send to multiple recipients at once 一次付給多個收款人 + Add &Recipient 增加收款人 + Clear all fields of the form. 把表單中的所有欄位清空。 + Dust: 零散錢: + Confirmation time target: 目標確認時間: + Clear &All 全部清掉 + Balance: 餘額: + Confirm the send action 確認付款動作 + S&end 付款 + Copy quantity 複製數目 + Copy amount 複製金額 + Copy fee 複製手續費 + Copy after fee 複製計費後金額 + Copy bytes 複製位元組數 + Copy dust 複製零散金額 + Copy change 複製找零金額 + + %1 (%2 blocks) + + + + + + + %1 to %2 %1 給 %2 + Are you sure you want to send? 你確定要付錢出去嗎? + added as transaction fee 加做交易手續費 + Total Amount %1 總金額 %1 + or + Confirm send coins 確認付款金額 + The recipient address is not valid. Please recheck. 收款位址無效。請再檢查看看。 + The amount to pay must be larger than 0. 付款金額必須大於零。 + The amount exceeds your balance. 金額超過餘額了。 + The total exceeds your balance when the %1 transaction fee is included. 包含 %1 的交易手續費後,總金額超過你的餘額了。 + Duplicate address found: addresses should only be used once each. 發現有重複的位址: 每個位址只能出現一次。 + Transaction creation failed! 製造交易失敗了! + The transaction was rejected with the following reason: %1 交易因為以下原因被拒絕了: %1 + A fee higher than %1 is considered an absurdly high fee. 高於 %1 的手續費會被認為是不合理。 + Payment request expired. 付款的要求過期了。 - - %n block(s) - %n 個區塊 - + Pay only the required fee of %1 只付必要的手續費 %1 + + + Estimated to begin confirmation within %n block(s). + + + Warning: Invalid Raven address 警告: Raven 位址無效 + Warning: Unknown change address 警告: 不明的找零位址 + Confirm custom change address 自定找零位址確認 + The address you selected for change is not part of this wallet. Any or all funds in your wallet may be sent to this address. Are you sure? 選擇的找零位址並不屬於這個錢包。部份或是全部的錢會被送到這個位址去。你確定嗎? + (no label) (無標記) @@ -2222,82 +5498,108 @@ SendCoinsEntry + + + A&mount: 金額: - Pay &To: - 付給: - - + &Label: 標記: + Choose previously used address 選擇先前使用過的位址 + This is a normal payment. 這是一筆正常的付款。 + The Raven address to send the payment to 接收付款的 Raven 位址 + Alt+A Alt+A + Paste address from clipboard 貼上剪貼簿裡的位址 + Alt+P Alt+P + + + Remove this entry 刪掉這個項目 + The fee will be deducted from the amount being sent. The recipient will receive less ravens than you enter in the amount field. If multiple recipients are selected, the fee is split equally. 手續費會從要付款出去的金額中扣掉。因此收款人會收到比輸入的金額還要少的 raven。如果有多個收款人的話,手續費會平均分配來扣除。 + S&ubtract fee from amount 從付款金額減去手續費 + Message: 訊息: + + Send &To: + + + + This is an unauthenticated payment request. 這是個沒有驗證過身份的付款要求。 + + + Send to: + + + + This is an authenticated payment request. 這是個已經驗證過身份的付款要求。 + Enter a label for this address to add it to the list of used addresses 請輸入這個位址的標記,來把它加進去已使用過位址的清單。 + A message that was attached to the raven: URI which will be stored with the transaction for your reference. Note: This message will not be sent over the Raven network. 附加在 Raven 付款協議的資源識別碼(URI)中的訊息,會和交易內容一起存起來,給你自己做參考。注意: 這個訊息不會送到 Raven 網路上。 - Pay To: - 付給: - - + + Memo: 備註: + Enter a label for this address to add it to your address book 請輸入這個位址的標記來把它加進位址簿中 @@ -2305,6 +5607,8 @@ SendConfirmationDialog + + Yes @@ -2312,10 +5616,12 @@ ShutdownWindow + %1 is shutting down... 正在關閉 %1 中... + Do not shut down the computer until this window disappears. 在這個視窗不見以前,請不要關掉電腦。 @@ -2323,138 +5629,181 @@ SignVerifyMessageDialog + Signatures - Sign / Verify a Message 簽章 - 簽署或驗證訊息 + &Sign Message 簽署訊息 + You can sign messages/agreements with your addresses to prove you can receive ravens sent to them. Be careful not to sign anything vague or random, as phishing attacks may try to trick you into signing your identity over to them. Only sign fully-detailed statements you agree to. 你可以用自己的位址簽署訊息或合約,來證明你可以從該位址收款。但是請小心,不要簽署語意含糊不清,或隨機產生的內容,因為釣魚式詐騙可能會用騙你簽署的手法來冒充是你。只有在語句中的細節你都同意時才簽署。 + The Raven address to sign the message with 用來簽署訊息的 Raven 位址 + + Choose previously used address 選擇先前使用過的位址 + + Alt+A Alt+A + Paste address from clipboard 貼上剪貼簿裡的位址 + Alt+P Alt+P + Enter the message you want to sign here 請在這裡輸入你想簽署的訊息 + Signature 簽章 + Copy the current signature to the system clipboard 複製目前的簽章到系統剪貼簿 + Sign the message to prove you own this Raven address 簽署這個訊息來證明這個 Raven 位址是你的 + Sign &Message 簽署訊息 + Reset all sign message fields 重設所有訊息簽署欄位 + + Clear &All 全部清掉 + &Verify Message 驗證訊息 - Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! + + Enter the receiver's address, message (ensure you copy line breaks, spaces, tabs, etc. exactly) and signature below to verify the message. Be careful not to read more into the signature than what is in the signed message itself, to avoid being tricked by a man-in-the-middle attack. Note that this only proves the signing party receives with the address, it cannot prove sendership of any transaction! 請在下面輸入收款人的位址,訊息(請確定完整複製了所包含的換行,空格,跳位符號等等),以及簽章,來驗證這個訊息。請小心,除了訊息內容以外,不要對簽章本身過度解讀,以避免被用「中間人攻擊法」詐騙。請注意,通過驗證的簽章只能證明簽章人確實可以從該位址收款,不能證明任何交易中的付款人身份! + The Raven address the message was signed with 簽署這個訊息的 Raven 位址 + Verify the message to ensure it was signed with the specified Raven address 驗證這個訊息來確定是用指定的 Raven 位址簽署的 + Verify &Message 驗證訊息 + Reset all verify message fields 重設所有訊息驗證欄位 - Click "Sign Message" to generate signature + + Click "Sign Message" to generate signature 請按一下「簽署訊息」來產生簽章 + + The entered address is invalid. 輸入的位址無效。 + + + + Please check the address and try again. 請檢查位址是否正確後再試一次。 + + The entered address does not refer to a key. 輸入的位址沒有對應到你的任何密鑰。 + Wallet unlock was cancelled. 錢包解鎖已取消。 + Private key for the entered address is not available. 沒有對應輸入位址的密鑰。 + Message signing failed. 訊息簽署失敗。 + Message signed. 訊息簽署好了。 + The signature could not be decoded. 沒辦法把這個簽章解碼。 + + Please check the signature and try again. 請檢查簽章是否正確後再試一次。 + The signature did not match the message digest. 這個簽章跟訊息的數位摘要不符。 + Message verification failed. 訊息驗證失敗。 + Message verified. 訊息驗證沒錯。 @@ -2462,6 +5811,7 @@ SplashScreen + [testnet] [testnet] @@ -2469,6 +5819,7 @@ TrafficGraphWidget + KB/s KB/s @@ -2476,174 +5827,260 @@ TransactionDesc + Open for %n more block(s) - 到下 %n 個區塊生出來前可修改 + + Open until %1 到 %1 前可修改 + conflicted with a transaction with %1 confirmations 跟一個目前確認 %1 次的交易互相衝突 + %1/offline %1 次/離線中 + 0/unconfirmed, %1 0 次/未確認,%1 + in memory pool 在記憶池中 + not in memory pool 不在記憶池中 + abandoned 已中止 + %1/unconfirmed %1 次/未確認 + %1 confirmations 確認 %1 次 + + Status 狀態 + + , has not been successfully broadcast yet ,還沒成功公告出去 + + , broadcast through %n node(s) - ,已公告給 %n 個節點 + + + Date 日期 + Source 來源 + Generated 生產出來 + + + + + From 來源 + + unknown 未知 + + + + + To 目的 + + own address 自己的位址 + + + watch-only 只能看 + + label 標記 + + + + + + + Credit 入帳 + matures in %n more block(s) - 再等 %n 個區塊生出來後成熟 + + not accepted 不被接受 + + + + + Debit 出帳 + Total debit 出帳總額 + Total credit 入帳總額 + Transaction fee 交易手續費 + Net amount 淨額 + + + + Message 訊息 + + Comment 附註 + + Transaction ID 交易識別碼 + + Transaction total size 交易總大小 + + Output index 輸出索引 + + Merchant 商家 - Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. + + + Generated coins must mature %1 blocks before they can be spent. When you generated this block, it was broadcast to the network to be added to the block chain. If it fails to get into the chain, its state will change to "not accepted" and it won't be spendable. This may occasionally happen if another node generates a block within a few seconds of yours. 生產出來的錢要再等 %1 個區塊生出來後才成熟可以用。當區塊生產出來時會公布到網路上,來被加進區塊鏈。如果加失敗了,狀態就會變成「不被接受」,而且不能夠花。如果在你生產出區塊的幾秒鐘內,也有其他節點生產出來的話,就有可能會發生這種情形。 + + Net RVN amount + + + + Debug information 除錯資訊 + Transaction 交易 + Inputs 輸入 + Amount 金額 + + true + + false @@ -2651,10 +6088,12 @@ TransactionDescDialog + This pane shows a detailed description of the transaction 這個版面顯示這次交易的詳細說明 + Details for %1 交易 %1 的明細 @@ -2662,269 +6101,411 @@ TransactionTableModel + Date 日期 + Type 種類 + Label 標記: + + + Amount + + + + + Asset + + + Open for %n more block(s) - 到下 %n 個區塊生出來前可修改 + + Open until %1 到 %1 前可修改 + Offline 離線中 + Unconfirmed 未確認 + Abandoned 已中止 + Confirming (%1 of %2 recommended confirmations) 確認中(已經 %1 次,建議至少 %2 次) + Confirmed (%1 confirmations) 已確認(%1 次) + Conflicted 有衝突 + Immature (%1 confirmations, will be available after %2) 未成熟(確認 %1 次,會在 %2 次後可用) + This block was not received by any other nodes and will probably not be accepted! 沒有其他節點收到這個區塊,也許它不會被接受! + Generated but not accepted 生產出來但是不被接受 + Received with 收款 + Received from 收款自 + Sent to 付款 + Payment to yourself 付給自己 + Mined 開採所得 + + Asset Issued + + + + + Asset Reissued + + + + + Assets Received + + + + + Assets Sent + + + + watch-only 只能看 + (n/a) (不適用) + (no label) (無標記) + Transaction status. Hover over this field to show number of confirmations. 交易狀態。把游標停在欄位上會顯示確認次數。 + Date and time that the transaction was received. 收到交易的日期和時間。 + Type of transaction. 交易的種類。 + Whether or not a watch-only address is involved in this transaction. 不論如何有一個只能觀看的地只有參與這次的交易 + User-defined intent/purpose of the transaction. 使用者定義的交易動機或理由。 + Amount removed from or added to balance. 要減掉或加進餘額的金額。 + + + The asset (or RVN) removed or added to balance. + + TransactionView + + All 全部 + Today 今天 + This week 這星期 + This month 這個月 + Last month 上個月 + This year 今年 + Range... 指定範圍... + Received with 收款 + Sent to 付款 + To yourself 給自己 + Mined 開採所得 + Other 其它 + Enter address or label to search 請輸入要搜尋的位址或標記 + Min amount 最小金額 + + Asset name + + + + Abandon transaction 中止交易 + Copy address 複製位址 + Copy label 複製標記 + Copy amount 複製金額 + Copy transaction ID 複製交易識別碼 + Copy raw transaction 複製交易原始資料 + Copy full transaction details 複製完整交易明細 + Edit label 編輯標記 + Show transaction details 顯示交易明細 + + Browse with: + + + + Export Transaction History 匯出交易記錄 + Comma separated file (*.csv) 逗點分隔資料檔(*.csv) + Confirmed 已確認 + Watch-only 只能觀看的 + Date 日期 + Type 種類 + Label 標記: + Address 位址 + + Asset + + + + ID 識別碼 + Exporting Failed 匯出失敗 + There was an error trying to save the transaction history to %1. 儲存交易記錄到 %1 時發生錯誤。 + Exporting Successful 匯出成功 + The transaction history was successfully saved to %1. 交易記錄已經成功儲存到 %1 了。 + + Asset Issued + + + + + Asset Reissued + + + + + Asset Received + + + + + Asset Sent + + + + + Copy asset name + + + + Range: 範圍: + to @@ -2932,6 +6513,7 @@ UnitDisplayStatusBarControl + Unit to show amounts in. Click to select another unit. 金額顯示單位。可以點選其他單位。 @@ -2939,6 +6521,7 @@ WalletFrame + No wallet has been loaded. 沒有載入錢包。 @@ -2946,969 +6529,1764 @@ WalletModel + Send Coins 付款 + + + Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words + + + + + Error: Wallet locked + + + + + Words: + + + + + Passphrase: + + WalletView + &Export 匯出 + Export the data in the current tab to a file 將目前分頁的資料匯出存成檔案 + Backup Wallet 備份錢包 + Wallet Data (*.dat) 錢包資料檔(*.dat) + Backup Failed 備份失敗 + There was an error trying to save the wallet data to %1. 儲存錢包資料到 %1 時發生錯誤。 + Backup Successful 備份成功 + The wallet data was successfully saved to %1. 錢包的資料已經成功儲存到 %1 了。 + + + Recovery information + + + + + No words available. + + + + + This wallet is not a HD wallet, words not supported. + + raven-core + Options: 選項: + Specify data directory 指定資料目錄 + Connect to a node to retrieve peer addresses, and disconnect 連線到某個節點來取得其它節點的位址,然後斷線 + Specify your own public address 指定自己的公開位址 + Accept command line and JSON-RPC commands 接受指令列和 JSON-RPC 指令 - Accept connections from outside (default: 1 if no -proxy or -connect/-noconnect) - 是否接受外來連線(預設值: 當沒有 -proxy 或 -connect/-noconnect 時為 1) - - - Connect only to the specified node(s); -noconnect or -connect=0 alone to disable automatic connections - 只連線到指定的節點。用 -noconnect 或是 -connect=0 可以關閉自動連線。 - - + Distributed under the MIT software license, see the accompanying file %s or %s 依據 MIT 軟體授權條款散布,詳情請見附帶的 %s 檔案或是 %s + If <category> is not supplied or if <category> = 1, output all debugging information. 如果沒有提供 <category> 或是值為 1 就會輸出所有的除錯資訊。 + Prune configured below the minimum of %d MiB. Please use a higher number. 設定的修剪值小於最小需求的 %d 百萬位元組(MiB)。請指定大一點的數字。 + Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node) 修剪模式:錢包的最後同步狀態是在被修剪掉的區塊資料中。你需要用 -reindex 參數執行(會重新下載整個區塊鏈) + Rescans are not possible in pruned mode. You will need to use -reindex which will download the whole blockchain again. 在修剪模式下沒辦法重新掃描區塊鏈。你需要配合使用 -reindex 參數來重新下載整個區塊鏈。 + Error: A fatal internal error occurred, see debug.log for details 錯誤: 發生了致命的內部錯誤,詳情請看 debug.log + Fee (in %s/kB) to add to transactions you send (default: %s) 交易付款時每千位元組(kB)的交易手續費(單位是 %s,預設值: %s) + Pruning blockstore... 正在修剪區塊資料庫中... + Run in the background as a daemon and accept commands 用護靈模式在背景執行並接受指令 + Unable to start HTTP server. See debug log for details. 無法啟動 HTTP 伺服器。詳情請看除錯紀錄。 + Raven Core Raven Core + The %s developers %s 開發人員 + A fee rate (in %s/kB) that will be used when fee estimation has insufficient data (default: %s) 當沒有足夠的資料計算預估手續費時,所使用的手續費費率(單位是 %s/kB, 預設值: %s) + Accept relayed transactions received from whitelisted peers even when not relaying transactions (default: %d) 接受從白名點節點收到的轉發交易,即使沒有(符合準則)轉發出去(預設值: %d) - Bind to given address and always listen on it. Use [host]:port notation for IPv6 - 和指定的位址繫結,並且一直在指定位址聽候連線。IPv6 請用 [主機]:通訊埠 這種格式 + + Add a node to connect to and attempt to keep the connection open (see the `addnode` RPC command help for more info) + + + + + Bind to given address and always listen on it. Use [host]:port notation for IPv6 + 和指定的位址繫結,並且一直在指定位址聽候連線。IPv6 請用 [主機]:通訊埠 這種格式 + + + + Cannot obtain a lock on data directory %s. %s is probably already running. + 沒辦法鎖定資料目錄 %s。%s 可能已經在執行了。 + + + + Cannot provide specific connections and have addrman find outgoing connections at the same. + + + + + Change address can not be sent to because it doesn't have the correct qualifier tags + - Cannot obtain a lock on data directory %s. %s is probably already running. - 沒辦法鎖定資料目錄 %s。%s 可能已經在執行了。 + + Connect only to the specified node(s); -connect=0 disables automatic connections (the rules for this peer are the same as for -addnode) + + Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup 清掉錢包裡的所有交易,並且在下次啟動時,使用 -rescan 來從區塊鏈中復原回來。 - Error loading %s: You can't enable HD on a already existing non-HD wallet - 載入 %s 發生錯誤:不能對已存在的非 HD 錢包啟用 HD 功能。 - - + Error reading %s! All keys read correctly, but transaction data or address book entries might be missing or incorrect. 讀取錢包檔 %s 時發生錯誤!所有的密鑰都正確讀取了,但是交易資料或位址簿資料可能會缺少或不正確。 + + Exclude debugging information for a category. Can be used in conjunction with -debug=1 to output debug logs for all categories except one or more specified categories. + + + + Execute command when a wallet transaction changes (%s in cmd is replaced by TxID) 當錢包有交易改變時要執行的指令(指令中的 %s 會被取代成交易識別碼) + Extra transactions to keep in memory for compact block reconstructions (default: %u) 為了將摘要區塊完整回組而額外保留在記憶體中的交易數量(預設值: %u) + If this block is in the chain assume that it and its ancestors are valid and potentially skip their script verification (0 to verify all, default: %s, testnet: %s) 假設已經在區塊鏈中的區塊以及其先前的區塊都合法,因此對它們略過指令碼驗證(0 表示一律要驗證,預設值: %s, 測試網路: %s) + Maximum allowed median peer time offset adjustment. Local perspective of time may be influenced by peers forward or backward by this amount. (default: %u seconds) 跟其他節點的時間差最高可接受的中位數值。本機所認為的時間可能會被其他節點影響,往前或往後在這個值之內。(預設值: %u 秒) + Maximum total fees (in %s) to use in a single wallet transaction or raw transaction; setting this too low may abort large transactions (default: %s) 允許一次錢包交易或未加工交易付出的最高總手續費(單位是 %s);設定太低的話,可能會無法進行資料量大的交易(預設值: %s) - Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. + + Please check that your computer's date and time are correct! If your clock is wrong, %s will not work properly. 請檢查電腦日期和時間是否正確!%s 沒辦法在時鐘不準的情況下正常運作。 + Please contribute if you find %s useful. Visit %s for further information about the software. 如果你覺得 %s 有用,可以幫助我們。關於這個軟體的更多資訊請見 %s。 + + Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect used) + + + + Reduce storage requirements by enabling pruning (deleting) of old blocks. This allows the pruneblockchain RPC to be called to delete specific blocks, and enables automatic pruning of old blocks if a target size in MiB is provided. This mode is incompatible with -txindex and -rescan. Warning: Reverting this setting requires re-downloading the entire blockchain. (default: 0 = disable pruning blocks, 1 = allow manual pruning via RPC, >%u = automatically prune block files to stay under the specified target size in MiB) 修剪(刪除)掉老舊區塊以降低需要的儲存空間。這樣會增加一個 RPC 指令 pruneblockchain,可以使用它來刪除指定的區塊;也可以指定目標儲存空間大小,以啟用對老舊區塊的自動修剪功能。這個模式跟 -txindex 和 -rescan 參數不相容。警告: 還原回不修剪模式會需要重新下載一整個區塊鏈。(預設值: 0 表示不修剪區塊,1 表示允許使用 RPC 指令做修剪,>%u 的值表示為區塊資料的目標大小,單位是百萬位元組,MiB) + Set lowest fee rate (in %s/kB) for transactions to be included in block creation. (default: %s) 設定製造區塊時,所要包含交易每千位元組的最低手續費(單位是 %s)。(預設值: %s) + Set the number of script verification threads (%u to %d, 0 = auto, <0 = leave that many cores free, default: %d) 設定指令碼驗證的執行緒數目 (%u 到 %d,0 表示程式自動決定,小於 0 表示保留處理器核心不用的數目,預設值: %d) - The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct + + The block database contains a block which appears to be from the future. This may be due to your computer's date and time being set incorrectly. Only rebuild the block database if you are sure that your computer's date and time are correct 區塊資料庫中有來自未來的區塊。可能是你電腦的日期時間不對。如果確定電腦日期時間沒錯的話,就重建區塊資料庫看看。 + This is a pre-release test build - use at your own risk - do not use for mining or merchant applications 這是個還沒發表的測試版本 - 使用請自負風險 - 請不要用來開採或做商業應用 + + This is the transaction fee you may discard if change is smaller than dust at this level + + + + + Unable to replay blocks. You will need to rebuild the database using -reindex-chainstate. + + + + Unable to rewind the database to a pre-fork state. You will need to redownload the blockchain 沒辦法將資料庫倒轉回分岔前的狀態。必須要重新下載區塊鍊。 + Use UPnP to map the listening port (default: 1 when listening and no -proxy) 是否要使用「通用即插即用」協定(UPnP),來設定聽候連線的通訊埠的對應(預設值: 當有聽候連線且沒有指定 -proxy 參數時為 1) + Username and hashed password for JSON-RPC connections. The field <userpw> comes in the format: <USERNAME>:<SALT>$<HASH>. A canonical python script is included in share/rpcuser. The client then connects normally using the rpcuser=<USERNAME>/rpcpassword=<PASSWORD> pair of arguments. This option can be specified multiple times JSON-RPC 連線要用的使用者名稱和雜湊密碼。<userpw> 的格式是:<使用者名稱>:<調味值>$<雜湊值>。在 share/rpcuser 目錄下有一個示範的 python 程式。之後客戶端程式就可以用這對參數正常連線:rpcuser=<使用者名稱> 和 rpcpassword=<密碼>。這個選項可以給很多次。 + Wallet will not create transactions that violate mempool chain limits (default: %u) 錢包軟體不會產生違反記憶池交易鏈限制的交易(預設值: %u) + Warning: The network does not appear to fully agree! Some miners appear to be experiencing issues. 警告: 位元幣網路對於區塊鏈結的決定目前有分歧!有些礦工看來會有問題。 + Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade. 警告: 我們和某些連線的節點對於區塊鏈結的決定不同!你可能需要升級,或是需要等其它的節點升級。 - You need to rebuild the database using -reindex-chainstate to change -txindex - 改變 -txindex 參數後,必須要用 -reindex-chainstate 參數來重建資料庫 + + Whether to save the mempool on shutdown and load on restart (default: %u) + + + + + %d of last 100 blocks have unexpected version + + %s corrupt, salvage failed 錢包檔 %s 壞掉了,搶救失敗 + -maxmempool must be at least %d MB 參數 -maxmempool 至少要給 %d 百萬位元組(MB) + <category> can be: <category> 可以是: + + Accept connections from outside (default: 1 if no -proxy or -connect) + + + + Append comment to the user agent string 對使用者代理字串添加註解 + Attempt to recover private keys from a corrupt wallet on startup 啟動時嘗試從壞掉的錢包檔復原密鑰 + Block creation options: 區塊製造選項: - Cannot resolve -%s address: '%s' - 沒辦法解析 -%s 參數指定的位址: '%s' + + Cannot resolve -%s address: '%s' + 沒辦法解析 -%s 參數指定的位址: '%s' + Chain selection options: 區塊鏈選項: + Change index out of range 找零的索引值超出範圍 + Connection options: 連線選項: + Copyright (C) %i-%i 版權所有 (C) %i-%i + Corrupted block database detected 發現區塊資料庫壞掉了 + Debugging/Testing options: 除錯與測試選項 + Do not load the wallet and disable wallet RPC calls 不要載入錢包,並且拿掉錢包相關的 RPC 功能請求。 + Do you want to rebuild the block database now? 你想要現在重建區塊資料庫嗎? + Enable publish hash block in <address> 開啟傳送區塊雜湊值到目標 ZeroMQ 位址 <address> 去 + Enable publish hash transaction in <address> 開啟傳送交易雜湊值到目標 ZeroMQ 位址 <address> 去 + Enable publish raw block in <address> 開啟傳送區塊原始資料到目標 ZeroMQ 位址 <address> 去 + Enable publish raw transaction in <address> 開啟傳送交易原始資料到目標 ZeroMQ 位址 <address> 去 + Enable transaction replacement in the memory pool (default: %u) 對交易暫存池啟用替代交易(預設值: %u) + Error initializing block database 初始化區塊資料庫時發生錯誤 + Error initializing wallet database environment %s! 初始化錢包資料庫環境 %s 時發生錯誤! + Error loading %s 載入檔案 %s 時發生錯誤 + Error loading %s: Wallet corrupted 載入檔案 %s 時發生錯誤: 錢包損毀了 + Error loading %s: Wallet requires newer version of %s 載入檔案 %s 時發生錯誤: 這個錢包需要新版的 %s - Error loading %s: You can't disable HD on a already existing HD wallet - 載入 %s 發生錯誤:不能對已存在的 HD 錢包停用 HD 功能。 - - + Error loading block database 載入區塊資料庫時發生錯誤 + Error opening block database 打開區塊資料庫時發生錯誤 + Error: Disk space is low! 錯誤: 磁碟空間很少! + Failed to listen on any port. Use -listen=0 if you want this. 在任意的通訊埠聽候失敗。如果你希望這樣的話,可以設定 -listen=0. + Importing... 正在匯入中... + Incorrect or no genesis block found. Wrong datadir for network? 創世區塊不正確或找不到。資料目錄錯了嗎? + Initialization sanity check failed. %s is shutting down. 初始化時的基本檢查失敗了。%s 就要關閉了。 - Invalid -onion address: '%s' - 無效的 -onion 位址: '%s' + + Invalid amount for -%s=<amount>: '%s' + 參數 -%s=<金額> 指定的金額無效: '%s' - Invalid amount for -%s=<amount>: '%s' - 參數 -%s=<金額> 指定的金額無效: '%s' + + Invalid amount for -discardfee=<amount>: '%s' + - Invalid amount for -fallbackfee=<amount>: '%s' - 設定 -fallbackfee=<金額> 的金額無效: '%s' + + Invalid amount for -fallbackfee=<amount>: '%s' + 設定 -fallbackfee=<金額> 的金額無效: '%s' + Keep the transaction memory pool below <n> megabytes (default: %u) 在記憶體暫存池中保持最多 <n> 個百萬位元組的交易(預設值: %u) + + Loading P2P addresses... + + + + Loading banlist... 正在載入禁止連線名單中... + Location of the auth cookie (default: data dir) 認證 cookie 資料的位置(預設值: 同資料目錄) + Not enough file descriptors available. 檔案描述元不足。 + Only connect to nodes in network <net> (ipv4, ipv6 or onion) 只和 <net> 網路上的節點連線(ipv4, ipv6, 或 onion) + Print this help message and exit 顯示說明訊息後結束 + Print version and exit 顯示版本後結束 + Prune cannot be configured with a negative value. 修剪值不能設定為負的。 + Prune mode is incompatible with -txindex. 修剪模式和 -txindex 參數不相容。 + Rebuild chain state and block index from the blk*.dat files on disk 從磁碟裡的區塊檔 blk*.dat 重建區塊鏈狀態和區塊索引 + Rebuild chain state from the currently indexed blocks 從目前已編索引的區塊資料重建區塊鏈狀態 + + Replaying blocks... + + + + Rewinding blocks... 正在倒轉回區塊鏈之前的狀態... + Set database cache size in megabytes (%d to %d, default: %d) 設定資料庫快取大小是多少百萬位元組(MB,範圍: %d 到 %d,預設值: %d) - Set maximum block size in bytes (default: %d) - 設定區塊大小上限成多少位元組(預設值: %d) - - + Specify wallet file (within data directory) 指定錢包檔(會在資料目錄中) + The source code is available from %s. 原始碼可以在 %s 取得。 + + Transaction fee and change calculation failed + + + + Unable to bind to %s on this computer. %s is probably already running. 沒辦法繫結在這台電腦上的 %s 。%s 可能已經在執行了。 + Unsupported argument -benchmark ignored, use -debug=bench. 忽略了不再支援的 -benchmark 參數,請改用 -debug=bench + Unsupported argument -debugnet ignored, use -debug=net. 忽略了不再支援的 -debugnet 參數,請改用 -debug=net + Unsupported argument -tor found, use -onion. 找到不再支援的 -tor 參數,請改用 -onion 參數。 + + Unsupported logging category %s=%s. + + + + + Upgrading UTXO database + + + + Use UPnP to map the listening port (default: %u) 使用通用隨插即用 (UPnP) 協定來設定對應的服務連接埠(預設值: %u) + Use the test chain 使用測試區塊鏈 + User Agent comment (%s) contains unsafe characters. 使用者代理註解(%s)中含有不安全的字元。 + Verifying blocks... 正在驗證區塊資料... - Verifying wallet... - 正在驗證錢包資料... - - + Wallet %s resides outside data directory %s 錢包檔 %s 沒有在資料目錄 %s 裡面 + Wallet debugging/testing options: 錢包除錯與測試選項: + Wallet needed to be rewritten: restart %s to complete 錢包需要重寫: 請重新啓動 %s 來完成 + Wallet options: 錢包選項: + Allow JSON-RPC connections from specified source. Valid for <ip> are a single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times 允許指定的來源建立 JSON-RPC 連線。<ip> 的有效值可以是一個單獨位址(像是 1.2.3.4),一個網段/網段罩遮值(像是 1.2.3.4/255.255.255.0),或是網段/CIDR值(像是 1.2.3.4/24)。這個選項可以設定多次。 + Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 和指定的位址繫結,並且把連線過來的節點放進白名單。IPv6 請用 [主機]:通訊埠 這種格式 - Bind to given address to listen for JSON-RPC connections. Use [host]:port notation for IPv6. This option can be specified multiple times (default: bind to all interfaces) - 和指定的位址繫結以聽候 JSON-RPC 連線。IPv6 請用 [主機]:通訊埠 這種格式。這個選項可以設定多次。(預設值: 跟所有網路界面上的位址繫結) - - + Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality) 用系統預設權限來造出新的檔案,而不是用使用者權限罩遮(umask)值 077 (只有在關掉錢包功能時才有作用)。 + Discover own IP addresses (default: 1 when listening and no -externalip or -proxy) 找出自己的網際網路位址(預設值: 當有聽候連線且沒有指定 -externalip 或 -proxy 時為 1) + Error: Listening for incoming connections failed (listen returned error %s) 錯誤: 聽候外來連線失敗(回傳錯誤 %s) + Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message) 當收到相關警示,或發現相當長的分支時,所要執行的指令(指令中的 %s 會被取代成警示訊息) + Fees (in %s/kB) smaller than this are considered zero fee for relaying, mining and transaction creation (default: %s) 當處理轉發的交易、挖礦、或製造交易時,如果每千位元組(kB)的手續費比這個值(單位是 %s)低,就視為沒付手續費(預設值: %s) + If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u) 當沒有設定 paytxfee 時,自動包含可以讓交易能在平均 n 個區塊內開始確認的手續費(預設值: %u) - Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) - -maxtxfee=<amount>: '%s' 的金額無效 (必須大於最低轉發手續費 %s 以避免交易無法確認) + + Invalid amount for -maxtxfee=<amount>: '%s' (must be at least the minrelay fee of %s to prevent stuck transactions) + -maxtxfee=<amount>: '%s' 的金額無效 (必須大於最低轉發手續費 %s 以避免交易無法確認) + Maximum size of data in data carrier transactions we relay and mine (default: %u) 轉發和開採時,對只帶資料的交易的大小上限(預設值: %u) + Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u) 對每個代理連線使用隨機產生的憑證。這個選項會開啟 Tor 的串流隔離(預設值: %u) - Set maximum size of high-priority/low-fee transactions in bytes (default: %d) - 設定高優先度或低手續費的交易資料大小上限成多少位元組(預設值: %d) - - + The transaction amount is too small to send after the fee has been deducted 扣除手續費後的交易金額太少而不能傳送 - Use hierarchical deterministic key generation (HD) after BIP32. Only has effect during wallet creation/first start - 在 BIP32 開始作用後,啟用階層式可預期性密鑰產生方式(HD)。只有在產生新錢包或第一次啟動時才有作用。 - - + Whitelisted peers cannot be DoS banned and their transactions are always relayed, even if they are already in the mempool, useful e.g. for a gateway 在白名單中的節點不會因為偵測到阻斷服務攻擊(DoS)而被停用。來自這些節點的交易也一定會被轉發,即使說交易本來就在記憶池裡了也一樣。適用於像是閘道伺服器。 + You need to rebuild the database using -reindex to go back to unpruned mode. This will redownload the entire blockchain 回到非修剪的模式需要用 -reindex 參數來重建資料庫。這會導致重新下載整個區塊鏈。 + (default: %u) (預設值: %u) + Accept public REST requests (default: %u) 接受公開的REST請求 (預設值: %u) + Automatically create Tor hidden service (default: %d) 自動產生 Tor 隱藏服務(預設值: %d) + Connect through SOCKS5 proxy 透過 SOCKS5 代理伺服器連線 + + Error loading %s: You can't disable HD on an already existing HD wallet + + + + Error reading from database, shutting down. 讀取資料庫時發生錯誤,要關閉了。 + + Error upgrading chainstate database + + + + Imports blocks from external blk000??.dat file on startup 啟動時從其它來源的 blk000??.dat 檔匯入區塊 + Information 資訊 - Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) - 設定 -paytxfee=<金額> 的金額無效: '%s' (至少要有 %s) + + Invalid -onion address or hostname: '%s' + + + + + Invalid -proxy address or hostname: '%s' + + + + + Invalid amount for -paytxfee=<amount>: '%s' (must be at least %s) + 設定 -paytxfee=<金額> 的金額無效: '%s' (至少要有 %s) - Invalid netmask specified in -whitelist: '%s' - 指定在 -whitelist 的網段無效: '%s' + + Invalid netmask specified in -whitelist: '%s' + 指定在 -whitelist 的網段無效: '%s' + Keep at most <n> unconnectable transactions in memory (default: %u) 保持最多 <n> 無法連結的交易在記憶體 (預設: %u) - Need to specify a port with -whitebind: '%s' - 指定 -whitebind 時必須包含通訊埠: '%s' + + Need to specify a port with -whitebind: '%s' + 指定 -whitebind 時必須包含通訊埠: '%s' + Node relay options: 節點轉發選項: + RPC server options: RPC 伺服器選項: + Reducing -maxconnections from %d to %d, because of system limitations. 因為系統的限制,將 -maxconnections 參數從 %d 降到了 %d + Rescan the block chain for missing wallet transactions on startup 啟動時重新掃描區塊鏈,來尋找錢包可能漏掉的交易。 + Send trace/debug info to console instead of debug.log file 在終端機顯示追蹤或除錯資訊,而不是寫到檔案 debug.log 中 - Send transactions as zero-fee transactions if possible (default: %u) - 盡可能送出不用付手續費的交易(預設值: %u) - - + Show all debugging options (usage: --help -help-debug) 顯示所有的除錯選項 (用法: --help --help-debug) + Shrink debug.log file on client startup (default: 1 when no -debug) 客戶端軟體啓動時把 debug.log 檔縮小(預設值: 當沒有 -debug 時為 1) + Signing transaction failed 簽署交易失敗 + The transaction amount is too small to pay the fee 交易金額太少而付不起手續費 + This is experimental software. 這套軟體屬於實驗性質。 + Tor control port password (default: empty) Tor 控制埠密碼(預設值: 空白) + Tor control port to use if onion listening enabled (default: %s) 開啟聽候 onion 連線時的 Tor 控制埠號碼(預設值: %s) + Transaction amount too small 交易金額太小 + Transaction too large for fee policy 根據交易手續費準則,本交易的位元量過大 + Transaction too large 交易位元量太大 + Unable to bind to %s on this computer (bind returned error %s) 無法和這台電腦上的 %s 繫結(回傳錯誤 %s) + Upgrade wallet to latest format on startup 啟動時把錢包檔案升級成最新的格式 + Username for JSON-RPC connections JSON-RPC 連線使用者名稱 + + Valid Verifier + + + + + Variable is not allow in the expression: ' + + + + + Verifier String doesn't exist for asset: + + + + + Verifier String for asset trasnfer, not found + + + + + Verifier not found for asset: + + + + + Verifier string can not be empty. To default to true, use "true" + + + + + Verifier string is empty + + + + + Verifier string not found + + + + + Verifying wallet(s)... + + + + Warning 警告 + Warning: unknown new rules activated (versionbit %i) 警告: 不明的交易規則被啟用了(versionbit %i) + Whether to operate in a blocks only mode (default: %u) 是否要用只要區塊模式運作(預設值: %u) + + You need to rebuild the database using -reindex to change -txindex + + + + Zapping all transactions from wallet... 正在砍掉錢包中的所有交易... + ZeroMQ notification options: ZeroMQ 通知選項: + Password for JSON-RPC connections JSON-RPC 連線密碼 + Execute command when the best block changes (%s in cmd is replaced by block hash) 當最新區塊改變時要執行的指令(指令中的 %s 會被取代成區塊雜湊值) + Allow DNS lookups for -addnode, -seednode and -connect 允許對 -addnode, -seednode, -connect 的參數使用域名查詢 - Loading addresses... - 正在載入位址資料... - - + (1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data) (1 表示保留交易描述資料,像是帳戶使用者和付款請求資訊;2 表示丟掉交易描述資料) + -maxtxfee is set very high! Fees this large could be paid on a single transaction. 參數 -maxtxfee 設定了很高的金額!這可是你一次交易就有可能付出的最高手續費。 + + Bind to given address to listen for JSON-RPC connections. This option is ignored unless -rpcallowip is also passed. Port is optional and overrides -rpcport. Use [host]:port notation for IPv6. This option can be specified multiple times (default: 127.0.0.1 and ::1 i.e., localhost, or if -rpcallowip has been specified, 0.0.0.0 and :: i.e., all addresses) + + + + Do not keep transactions in the mempool longer than <n> hours (default: %u) 不要讓交易留在記憶池中超過 <n> 個小時(預設值: %u) + Equivalent bytes per sigop in transactions for relay and mining (default: %u) 轉發和開採時,交易資料中每個 sigop 的等同位元組數(預設值: %u) + + Error loading %s: You can't enable HD on an already existing non-HD wallet + + + + + Error loading wallet %s. -wallet parameter must only specify a filename (not a path). + + + + Fees (in %s/kB) smaller than this are considered zero fee for transaction creation (default: %s) 當製造交易時,如果每千位元組(kB)的手續費比這個值(單位是 %s)低,就視為沒付手續費(預設值: %s) + Force relay of transactions from whitelisted peers even if they violate local relay policy (default: %d) 強制轉發從白名點節點收到的交易,即使它們違反了本機的轉發準則(預設值: %d) + How thorough the block verification of -checkblocks is (0-4, default: %u) 使用 -checkblocks 檢查區塊的仔細程度(0 到 4,預設值: %u) + + Invalid parameter: amount must be divisible by the smaller unit assigned to the asset + + + + + Invalid parameter: asset_name must only consist of valid characters and have a size between 3 and 30 characters. See help for more details. + + + + + Invalid parameter: ipfs_hash is not valid, or txid hash is not the right length + + + + + Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 character hash + + + + + Invalid parameters: asset_name can't have a '!' at the end of it. See help for more details. + + + + + Keep an index of assets, used by the requestsnapshot rpc call. Requires a -reindex. + + + + + Maintain a full address index, used to query for the balance, txids and unspent outputs for addresses (default: %u) + + + + + Maintain a full spent index, used to query the spending txid and input index for an outpoint (default: %u) + + + + Maintain a full transaction index, used by the getrawtransaction rpc call (default: %u) 維護全部交易的索引,用在 getrawtransaction 這個 RPC 請求(預設值: %u) + + Maintain a timestamp index for block hashes, used to query blocks hashes by a range of timestamps (default: %u) + + + + Number of seconds to keep misbehaving peers from reconnecting (default: %u) 避免與亂搞的節點連線的秒數(預設: %u) + Output debugging information (default: %u, supplying <category> is optional) 輸出除錯資訊(預設值: %u, 不一定要指定 <category>) - Query for peer addresses via DNS lookup, if low on addresses (default: 1 unless -connect/-noconnect) - 是否允許在節點位址數目不足時,使用域名查詢來搜尋節點 (預設值: 當沒用 -connect/-noconnect 時為 1) + + Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight + + + Set the Minimum amount of peers required to disallow reorg of chains of depth >= maxreorg. Peers must be greater than. (default: %u) + + + + + Set the Minimum tip age (in seconds) required to allow reorg of a chain of depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u) + + + + Sets the serialization of raw transaction or block hex returned in non-verbose mode, non-segwit(0) or segwit(1) (default: %d) 設定非冗長模式時,回傳的交易原始資料或區塊位元值的序列化形式:無 segwit 為 0,或是有 segwit 為 1 (預設值: %d) + + Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 (default: 1). Note: By default 12-words will automatically be generated for you (random word selection). See -mnemonic and -mnemonicpassphrase below to create a wallet using a specific word list (use an existing bip-44 wallet word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-generated word-list. This flag is ignored if there is already an existing non-bip44 wallet. + + + + Support filtering of blocks and transaction with bloom filters (default: %u) 支援用布倫過濾器來過濾區塊和交易(預設值: %u) + + The default height that is required before rewards are allowed to be sent out + + + + + The fee rate (in %s/kB) that indicates your tolerance for discarding change by adding it to the fee (default: %s). Note: An output is discarded if it is dust at this rate, but we will always discard up to the dust relay fee and a discard fee above that is limited by the fee estimate for the longest target + + + + + This address doesn't contain the correct tags to pass the verifier string check: + + + + This is the transaction fee you may pay when fee estimates are not available. 這是當預估手續費還沒計算出來時,付款交易預設會付的手續費。 + This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard. 此產品包含了由 OpenSSL Project 所開發的 OpenSSL Toolkit 軟體 %s, 由 Eric Young 撰寫的加解密軟體,以及由 Thomas Bernard 所撰寫的 UPnP 軟體。 + Total length of network version string (%i) exceeds maximum length (%i). Reduce the number or size of uacomments. 網路版本字串的總長度(%i)超過最大長度(%i)了。請減少 uacomment 參數的數目或長度。 + Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = no limit (default: %d) 試著保持輸出流量在目標值以下,單位是每 24 小時的百萬位元組(MiB)數,0 表示沒有限制(預設值: %d) - Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. + + Unable to get restricted assets verifier string. Database out of sync. Reindex required + + + + + Unable to reissue asset: amount must be divisible by the smaller unit assigned to the asset + + + + + Unable to reissue asset: unit must be larger than current unit selection + + + + + Unable to transfer restricted asset, this restricted asset has been globally frozen + + + + + Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported. 找到不再支援的 -socks 參數。現在只支援 SOCKS5 協定的代理伺服器,因此不可以指定 SOCKS 協定版本了。 + Unsupported argument -whitelistalwaysrelay ignored, use -whitelistrelay and/or -whitelistforcerelay. 忽略不支援的參數 -whitelistalwaysrelay,請改用 -whitelistrelay 和 -whitelistforcerelay​ 的組合。 + Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s) 使用另外的 SOCK5 代理伺服器,來透過 Tor 隱藏服務跟其他節點聯絡(預設值: %s) - Warning: Unknown block versions being mined! It's possible unknown rules are in effect + + Verifier string has length greater than 80 after whitespaces and '#' are removed + + + + + Warning: Unknown block versions being mined! It's possible unknown rules are in effect 警告: 有礦工正在開採不明版本的區塊!這表示有不明的交易規則正在作用中 + Warning: Wallet file corrupt, data salvaged! Original %s saved as %s in %s; if your balance or transactions are incorrect you should restore from a backup. 警告: 錢包檔壞掉,但資料被救回來了!原來的檔案 %s 改儲存為 %s,在目錄 %s 下。 如果餘額或交易資料有誤的話,你應該要從備份資料復原回來。 + + When getblocktemplate is called. It will create the coinbase transaction using this address(default: empty string) + + + + + When set, if the CreateNewBlock fails because of a transaction. The mempool will be cleared. (default: %d) + + + + + When set, if the chain is in initialblockdownload the getblocktemplate rpc call will still return block data (default: %d) + + + + + When transferring an 'Ownership Asset' the amount must always be 1. Please try again with the amount of 1 + + + + Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR notated network (e.g. 1.2.3.0/24). Can be specified multiple times. 把來自指定位址(例如:1.2.3.4)或 CIDR 格式網段(例如:1.2.3.0/24)的節點放進白名單。這個選項可以設定多次。 + + You need to rebuild the database using -reindex-chainstate to change -addressindex + + + + + You need to rebuild the database using -reindex-chainstate to change -spentindex + + + + + You need to rebuild the database using -reindex-chainstate to change -timestampindex + + + + %s is set very high! %s 的設定值異常大! + + ' doesn't exist in the database + + + + + ' has already been used + + + + + ' is not a valid character in the expression: + + + + + ' the amount trying to reissue is to large + + + + (default: %s) (預設值: %s) + + A space separated list of 12-words used to import a bip44 wallet + + + + Always query for peer addresses via DNS lookup (default: %u) 是否一定要用域名查詢來搜尋節點(預設值: %u) + + Asset Transfer amounts must be greater than 0 + + + + + Asset doesn't exist: + + + + + Asset must be a qualifier, sub qualifier, or a restricted asset + + + + + Asset name is not valid + + + + + Asset with this name is already in the mempool + + + + + Done Loading + + + + + Enable publish raw asset messages in <address> + + + + + Error creating %s: You can't create non-HD wallets with this version. + + + + + Error loading wallet %s. -wallet filename must be a regular file. + + + + + Error loading wallet %s. Duplicate -wallet filename specified. + + + + + Error loading wallet %s. Invalid characters in -wallet filename. + + + + + Error not set + + + + + Error writing bip 39 passphrase to database + + + + + Error writing bip 39 vchseed to database + + + + + Error writing bip 39 words to database + + + + + Every '(' must have a corresponding ')' in the expression: + + + + + Failed to extract destination from change script + + + + + Failed to find restricted asset change address from inputs + + + + + Failed to get asset data from script + + + + + Failed to get verifier string from output: + + + + + Failed to load Assets Database + + + + + Flag must be 1 or 0 + + + + How many blocks to check at startup (default: %u, 0 = all) 啓動時檢查的區塊數(預設值: %u, 指定 0 表示全部) + Include IP addresses in debug output (default: %u) 在除錯輸出內容中包含網際網路位址(預設值: %u) - Invalid -proxy address: '%s' - 無效的 -proxy 位址: '%s' + + Init Message Channels - Scanning Asset Transactions + + + + + Insufficient asset funds + + + + + Invalid Qualifier Name: + + + + + Invalid expressions in verifier string: + + + Invalid parameter: amount must be + + + + + Invalid parameter: amount must be between + + + + + Invalid parameter: asset amount can't be equal to or less than zero. + + + + + Invalid parameter: asset amount greater than max money: + + + + + Invalid parameter: asset_name ' + + + + + Invalid parameter: has_ipfs must be 0 or 1. + + + + + Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes + + + + + Invalid parameter: reissuable must be 0 or 1 + + + + + Invalid parameter: reissuable must be 0 + + + + + Invalid parameter: units must be + + + + + Invalid parameter: units must be between 0-8. + + + + + Invalid syntax: + + + + Keypool ran out, please call keypoolrefill first 密鑰池已經乾了,請先執行 keypoolrefill + + Length is to large. Please use a smaller length + + + + Listen for JSON-RPC connections on <port> (default: %u or testnet: %u) 在通訊埠 <port> 聽候 JSON-RPC 連線(預設值: %u, 或若為測試網路: %u) + Listen for connections on <port> (default: %u or testnet: %u) 在通訊埠 <port> 聽候連線(預設值: %u, 或若為測試網路: %u) + Maintain at most <n> connections to peers (default: %u) 維持與節點連線數的上限為 <n> 個(預設值: %u) + Make the wallet broadcast transactions 讓錢包能公告交易 + Maximum per-connection receive buffer, <n>*1000 bytes (default: %u) 每個連線的接收緩衝區大小上限為 <n>*1000 個位元組(預設值: %u) + Maximum per-connection send buffer, <n>*1000 bytes (default: %u) 每個連線的傳送緩衝區大小上限為 <n>*1000 個位元組(預設值: %u) + + Mempool cleared + + + + + Multiple verifier strings found in transaction + + + + + Passphrase securing your 12-word mnemonic word-list + + + + Prepend debug output with timestamp (default: %u) 在除錯輸出內容前附加時間(預設值: %u) + Relay and mine data carrier transactions (default: %u) 允許轉發和開採只帶資料的交易(預設值: %u) + Relay non-P2SH multisig (default: %u) 允許轉發非 P2SH 的多簽章交易(預設值: %u) + + Restricted asset transfer from address that has been frozen + + + + Send transactions with full-RBF opt-in enabled (default: %u) 送出允許提高手續費(full-RBF)的交易(預設值: %u) + Set key pool size to <n> (default: %u) 設定密鑰池大小為 <n> (預設值: %u) + Set maximum BIP141 block weight (default: %d) 設定 BIP141 區塊重量的最大值(預設值: %d) + + Set the Maximum reorg depth (default: %u) + + + + Set the number of threads to service RPC calls (default: %d) 設定處理 RPC 服務請求的執行緒數目(預設值: %d) + + Signing asset transaction failed + + + + Specify configuration file (default: %s) 指定設定檔(預設值: %s) + Specify connection timeout in milliseconds (minimum: 1, default: %d) 指定連線在幾毫秒後逾時 (最少值: 1, 預設值: %d) + Specify pid file (default: %s) 指定行程識別碼檔案(預設值: %s) + Spend unconfirmed change when sending transactions (default: %u) 傳送交易時可以花還沒確認的零錢(預設值: %u) + Starting network threads... 正在啟動網路執行緒... + + The symbol: ' + + + + + The verifier string has two operators without a tag between them + + + + The wallet will avoid paying less than the minimum relay fee. 錢包軟體會付多於最小轉發費用的手續費。 + This is the minimum transaction fee you pay on every transaction. 這是你每次交易付款時最少要付的手續費。 + This is the transaction fee you will pay if you send a transaction. 這是你交易付款時所要付的手續費。 + Threshold for disconnecting misbehaving peers (default: %u) 與亂搞的節點斷線的臨界值 (預設: %u) + Transaction amounts must not be negative 交易金額不能是負的 + Transaction has too long of a mempool chain 交易造成記憶池中的交易鏈太長 + Transaction must have at least one recipient 交易必須至少要有一個收款人 - Unknown network specified in -onlynet: '%s' - 在 -onlynet 指定了不明的網路別: '%s' + + Turn off the databasing the messages sent with assets (default: %u) + + + + + Unable to generate initial keys + + + + + Unable to get coin to verify restricted asset transfer from address + + + + + Unable to reissue asset: amount must be 0 or larger + + + Unable to reissue asset: asset_name ' + + + + + Unable to reissue asset: reissuable is set to false + + + + + Unable to reissue asset: reissuable must be 0 or 1 + + + + + Unable to reissue asset: unit must be between 8 and -1 + + + + + Unknown network specified in -onlynet: '%s' + 在 -onlynet 指定了不明的網路別: '%s' + + + Insufficient funds 累積金額不足 + Loading block index... 正在載入區塊索引... - Add a node to connect to and attempt to keep the connection open - 增加一個要連線的節線,並試著保持對它的連線暢通 - - + Loading wallet... 正在載入錢包資料... + Cannot downgrade wallet 沒辦法把錢包格式降級 - Cannot write default address - 沒辦法把預設位址寫進去 - - + Rescanning... 正在重新掃描... - Done loading - 載入完成 - - + Error 錯誤 diff --git a/src/qt/mnemonicdialog.cpp b/src/qt/mnemonicdialog.cpp index 0ba7598c6a..43bc3bb356 100644 --- a/src/qt/mnemonicdialog.cpp +++ b/src/qt/mnemonicdialog.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #if !TEST #include @@ -93,6 +94,13 @@ MnemonicDialog2::MnemonicDialog2(QWidget *parent) : ui(new Ui::MnemonicDialog2) { ui->setupUi(this); + + std::array languagesDetails = CMnemonic::GetLanguagesDetails(); + + for(int langNum = 0; langNum < NUM_LANGUAGES_BIP39_SUPPORTED; langNum++) { + MnemonicDialog2::ui->languageSeedWords->addItem(languagesDetails[langNum].label); + } + MnemonicDialog2::ui->languageSeedWords->installEventFilter(this); }; @@ -111,12 +119,16 @@ void MnemonicDialog2::on_acceptButton_clicked() std::string words = MnemonicDialog2::ui->seedwordsText->toPlainText().toStdString(); std::string passphrase = MnemonicDialog2::ui->passphraseEdit->text().toStdString(); + int languageSelected = MnemonicDialog2::ui->languageSeedWords->currentIndex(); + #if TEST std::string my_words; - std::string my_passphrase; + std::string my_passphrase; + int my_languageSelected; #endif my_words = words; my_passphrase = passphrase; + int my_languageSelected = languageSelected; #if TEST // NOTE: default mnemonic passphrase is an empty string @@ -125,7 +137,7 @@ void MnemonicDialog2::on_acceptButton_clicked() SecureString tmp(my_words.begin(), my_words.end()); // NOTE: default mnemonic passphrase is an empty string - if (!CMnemonic::Check(tmp)) { + if (!CMnemonic::Check(tmp, my_languageSelected)) { #endif MnemonicDialog2::ui->lblHelp->setText(tr("Words are not valid, please generate new words and try again")); @@ -141,20 +153,20 @@ void MnemonicDialog2::on_acceptButton_clicked() void MnemonicDialog2::on_generateButton_clicked() { MnemonicDialog2::ui->lblHelp->clear(); - GenerateWords(); + int languageSelected = MnemonicDialog2::ui->languageSeedWords->currentIndex(); + GenerateWords(languageSelected); }; -void MnemonicDialog2::GenerateWords() +void MnemonicDialog2::GenerateWords(int languageSelected) { #if TEST std::string str_words = "embark lawsuit town sunny forum churn amused gate ensuure smooth valley veteran"; #else - SecureString words = CMnemonic::Generate(128); + SecureString words = CMnemonic::Generate(128, languageSelected); std::string str_words = std::string(words.begin(), words.end()); #endif MnemonicDialog2::ui->seedwordsText->setPlainText(QString::fromStdString(str_words)); - } // ========= @@ -166,6 +178,13 @@ MnemonicDialog3::MnemonicDialog3(QWidget *parent) : ui->setupUi(this); MnemonicDialog3::ui->seedwordsEdit->installEventFilter(this); + + std::array languagesDetails = CMnemonic::GetLanguagesDetails(); + + for(int langNum = 0; langNum < NUM_LANGUAGES_BIP39_SUPPORTED; langNum++) { + MnemonicDialog3::ui->languageSeedWords->addItem(languagesDetails[langNum].label); + } + MnemonicDialog3::ui->languageSeedWords->installEventFilter(this); }; bool MnemonicDialog3::eventFilter(QObject *obj, QEvent *ev) @@ -174,6 +193,7 @@ bool MnemonicDialog3::eventFilter(QObject *obj, QEvent *ev) { // Clear invalid flag on focus MnemonicDialog3::ui->lblHelp->clear(); + MnemonicDialog3::ui->lblWarningJapanese->clear(); } return QWidget::eventFilter(obj, ev); } @@ -194,12 +214,16 @@ void MnemonicDialog3::on_acceptButton_clicked() std::string words = MnemonicDialog3::ui->seedwordsEdit->toPlainText().toStdString(); std::string passphrase = MnemonicDialog3::ui->passphraseEdit->text().toStdString(); + int languageSelected = MnemonicDialog3::ui->languageSeedWords->currentIndex(); + #if TEST std::string my_words; std::string my_passphrase; + int my_languageSelected; #endif my_words = words; my_passphrase = passphrase; + int my_languageSelected = languageSelected; #if TEST // NOTE: default mnemonic passphrase is an empty string @@ -208,10 +232,17 @@ void MnemonicDialog3::on_acceptButton_clicked() SecureString tmp(my_words.begin(), my_words.end()); // NOTE: default mnemonic passphrase is an empty string - if (!CMnemonic::Check(tmp)) { + if (!CMnemonic::Check(tmp, my_languageSelected)) { #endif - MnemonicDialog3::ui->lblHelp->setText(tr("Words are not valid, please check the words and try again")); + MnemonicDialog3::ui->lblHelp->setText(tr("Words are not valid, please check the words and the language, and try again.")); + + if (CMnemonic::GetLanguagesDetails()[my_languageSelected].name == JAPANESE){ + MnemonicDialog3::ui->lblWarningJapanese->setText(tr("In Japanese, please use standard space, ideographic japanese space is not supported.")); + }else { + MnemonicDialog3::ui->lblWarningJapanese->clear(); + } + my_words.clear(); my_passphrase.clear(); return; diff --git a/src/qt/mnemonicdialog.h b/src/qt/mnemonicdialog.h index 18fa8f3fe5..b3fad45f38 100644 --- a/src/qt/mnemonicdialog.h +++ b/src/qt/mnemonicdialog.h @@ -47,7 +47,7 @@ class MnemonicDialog2 : public QFrame public: explicit MnemonicDialog2(QWidget *parent); ~MnemonicDialog2(); - void GenerateWords(); + void GenerateWords(int languageSelected); public Q_SLOTS: void on_acceptButton_clicked(); diff --git a/src/qt/modaloverlay.cpp b/src/qt/modaloverlay.cpp index 022c5ba8bb..032006071e 100644 --- a/src/qt/modaloverlay.cpp +++ b/src/qt/modaloverlay.cpp @@ -1,17 +1,19 @@ // Copyright (c) 2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "modaloverlay.h" #include "ui_modaloverlay.h" +#include #include "guiutil.h" #include "chainparams.h" #include #include +#include ModalOverlay::ModalOverlay(QWidget *parent) : QWidget(parent), @@ -30,6 +32,7 @@ userClosed(false) blockProcessTime.clear(); setVisible(false); + ui->versionLabel->setText(QString::fromStdString(FormatFullVersion())); } ModalOverlay::~ModalOverlay() diff --git a/src/qt/myrestrictedassettablemodel.cpp b/src/qt/myrestrictedassettablemodel.cpp index 36aae57663..2686c1498a 100644 --- a/src/qt/myrestrictedassettablemodel.cpp +++ b/src/qt/myrestrictedassettablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index a1b7776004..33ccfb08d0 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -216,6 +216,7 @@ void OptionsDialog::setMapper() mapper->addMapping(ui->currencyUnitIndex, OptionsModel::DisplayCurrencyIndex); mapper->addMapping(ui->thirdPartyTxUrls, OptionsModel::ThirdPartyTxUrls); mapper->addMapping(ui->ipfsUrl, OptionsModel::IpfsUrl); + mapper->addMapping(ui->toolbarIconsOnly, OptionsModel::ToolbarIconsOnly); } void OptionsDialog::setOkButtonState(bool fState) diff --git a/src/qt/optionsdialog.h b/src/qt/optionsdialog.h index b5e0f1dd02..74f1ccd0d5 100644 --- a/src/qt/optionsdialog.h +++ b/src/qt/optionsdialog.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 4944f4c6bc..1ad9681521 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -70,6 +70,10 @@ void OptionsModel::Init(bool resetSettings) settings.setValue("fMinimizeOnClose", false); fMinimizeOnClose = settings.value("fMinimizeOnClose").toBool(); + if (!settings.contains("fToolbarIconsOnly")) + settings.setValue("fToolbarIconsOnly", false); + fToolbarIconsOnly = settings.value("fToolbarIconsOnly").toBool(); + // Display if (!settings.contains("nDisplayUnit")) settings.setValue("nDisplayUnit", RavenUnits::RVN); @@ -232,6 +236,8 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const return fHideTrayIcon; case MinimizeToTray: return fMinimizeToTray; + case ToolbarIconsOnly: + return fToolbarIconsOnly; case MapPortUPnP: #ifdef USE_UPNP return settings.value("fUseUPnP"); @@ -323,6 +329,11 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in fMinimizeToTray = value.toBool(); settings.setValue("fMinimizeToTray", fMinimizeToTray); break; + case ToolbarIconsOnly: + fToolbarIconsOnly = value.toBool(); + settings.setValue("fToolbarIconsOnly", fToolbarIconsOnly); + Q_EMIT updateIconsOnlyToolbar(fToolbarIconsOnly); + break; case MapPortUPnP: // core option - can be changed on-the-fly settings.setValue("fUseUPnP", value.toBool()); MapPort(value.toBool()); diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 5db6e02ab9..913cb3dce6 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -31,6 +31,7 @@ class OptionsModel : public QAbstractListModel StartAtStartup, // bool HideTrayIcon, // bool MinimizeToTray, // bool + ToolbarIconsOnly, // bool MapPortUPnP, // bool MinimizeOnClose, // bool ProxyUse, // bool @@ -88,6 +89,7 @@ class OptionsModel : public QAbstractListModel bool fHideTrayIcon; bool fMinimizeToTray; bool fMinimizeOnClose; + bool fToolbarIconsOnly; QString language; int nDisplayUnit; int nDisplayCurrencyIndex; @@ -112,6 +114,7 @@ class OptionsModel : public QAbstractListModel void coinControlFeaturesChanged(bool); void customFeeFeaturesChanged(bool); void hideTrayIconChanged(bool); + void updateIconsOnlyToolbar(bool); }; #endif // RAVEN_QT_OPTIONSMODEL_H diff --git a/src/qt/overviewpage.cpp b/src/qt/overviewpage.cpp index f12f14ae21..c6e1f3c754 100644 --- a/src/qt/overviewpage.cpp +++ b/src/qt/overviewpage.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/overviewpage.h b/src/qt/overviewpage.h index 02969b3e2b..3c401b17e3 100644 --- a/src/qt/overviewpage.h +++ b/src/qt/overviewpage.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index b45ddc4b3b..c04bf7e1d5 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/peertablemodel.cpp b/src/qt/peertablemodel.cpp index 9157c3022f..eddde9cec0 100644 --- a/src/qt/peertablemodel.cpp +++ b/src/qt/peertablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/platformstyle.cpp b/src/qt/platformstyle.cpp index a449f5e2c3..ae5bf1f308 100644 --- a/src/qt/platformstyle.cpp +++ b/src/qt/platformstyle.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2015-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/raven.cpp b/src/qt/raven.cpp index 86f3711b39..2818cbe4a8 100644 --- a/src/qt/raven.cpp +++ b/src/qt/raven.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -427,8 +427,8 @@ void RavenApplication::createOptionsModel(bool resetSettings) void RavenApplication::createWindow(const NetworkStyle *networkStyle) { window = new RavenGUI(platformStyle, networkStyle, 0); - window->setMinimumSize(200,200); - window->setBaseSize(640,640); + window->setMinimumSize(875,700); + window->setBaseSize(875,700); pollShutdownTimer = new QTimer(window); connect(pollShutdownTimer, SIGNAL(timeout()), window, SLOT(detectShutdown())); @@ -607,21 +607,16 @@ int main(int argc, char *argv[]) Q_INIT_RESOURCE(raven); Q_INIT_RESOURCE(raven_locale); -#if QT_VERSION > 0x050100 +#if QT_VERSION > 0x050600 // Generate high-dpi pixmaps QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); -#endif -#if QT_VERSION >= 0x050600 QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #ifdef Q_OS_MAC QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); #endif -#if QT_VERSION >= 0x050500 - - // This should be after the attributes. - RavenApplication app(argc, argv); +#if QT_VERSION >= 0x050500 // Because of the POODLE attack it is recommended to disable SSLv3 (https://disablessl3.com/), // so set SSL protocols to TLS1.0+. QSslConfiguration sslconf = QSslConfiguration::defaultConfiguration(); @@ -629,6 +624,9 @@ int main(int argc, char *argv[]) QSslConfiguration::setDefaultConfiguration(sslconf); #endif + // This should be after the attributes. + RavenApplication app(argc, argv); + // Register meta types used for QMetaObject::invokeMethod qRegisterMetaType< bool* >(); // Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType) diff --git a/src/qt/raven.qrc b/src/qt/raven.qrc index 26b8ff2886..0d00092dbb 100644 --- a/src/qt/raven.qrc +++ b/src/qt/raven.qrc @@ -43,6 +43,7 @@ res/icons/tx_inout.png res/icons/tx_asset_input.png res/icons/tx_asset_output.png + res/icons/tx_atomic_swap.png res/icons/lock_closed.png res/icons/lock_open.png res/icons/key.png @@ -72,6 +73,7 @@ res/icons/asset_transfer.png res/icons/asset_transfer_selected.png res/icons/ravencointext.png + res/icons/rvntext.png res/icons/restricted_asset.png res/icons/restricted_asset_selected.png diff --git a/src/qt/ravenamountfield.cpp b/src/qt/ravenamountfield.cpp index d150be05f0..78f8a9fe5e 100644 --- a/src/qt/ravenamountfield.cpp +++ b/src/qt/ravenamountfield.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2015 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/ravenamountfield.h b/src/qt/ravenamountfield.h index a02072a469..76c39df4b1 100644 --- a/src/qt/ravenamountfield.h +++ b/src/qt/ravenamountfield.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2015 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/ravengui.cpp b/src/qt/ravengui.cpp index 71ff9d896a..ac662a3ba7 100644 --- a/src/qt/ravengui.cpp +++ b/src/qt/ravengui.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -120,64 +120,6 @@ static bool ThreadSafeMessageBox(RavenGUI *gui, const std::string& message, cons RavenGUI::RavenGUI(const PlatformStyle *_platformStyle, const NetworkStyle *networkStyle, QWidget *parent) : QMainWindow(parent), enableWallet(false), - clientModel(0), - walletFrame(0), - unitDisplayControl(0), - labelWalletEncryptionIcon(0), - labelWalletHDStatusIcon(0), - connectionsControl(0), - labelBlocksIcon(0), - progressBarLabel(0), - progressBar(0), - progressDialog(0), - appMenuBar(0), - overviewAction(0), - historyAction(0), - quitAction(0), - sendCoinsAction(0), - sendCoinsMenuAction(0), - usedSendingAddressesAction(0), - usedReceivingAddressesAction(0), - signMessageAction(0), - verifyMessageAction(0), - aboutAction(0), - receiveCoinsAction(0), - receiveCoinsMenuAction(0), - optionsAction(0), - toggleHideAction(0), - encryptWalletAction(0), - backupWalletAction(0), - changePassphraseAction(0), - getMyWordsAction(0), - aboutQtAction(0), - openRPCConsoleAction(0), - openWalletRepairAction(0), - openAction(0), - showHelpMessageAction(0), - transferAssetAction(0), - createAssetAction(0), - manageAssetAction(0), - messagingAction(0), - votingAction(0), - restrictedAssetAction(0), - headerWidget(0), - labelCurrentMarket(0), - labelCurrentPrice(0), - comboRvnUnit(0), - pricingTimer(0), - networkManager(0), - request(0), - labelVersionUpdate(0), - networkVersionManager(0), - versionRequest(0), - trayIcon(0), - trayIconMenu(0), - notificator(0), - rpcConsole(0), - helpMessageDialog(0), - modalOverlay(0), - prevBlocks(0), - spinnerFrame(0), platformStyle(_platformStyle) { @@ -425,22 +367,22 @@ void RavenGUI::createActions() tabGroup->addAction(historyAction); /** RVN START */ - transferAssetAction = new QAction(platformStyle->SingleColorIconOnOff(":/icons/asset_transfer_selected", ":/icons/asset_transfer"), tr("&Transfer Assets"), this); - transferAssetAction->setStatusTip(tr("Transfer assets to RVN addresses")); - transferAssetAction->setToolTip(transferAssetAction->statusTip()); - transferAssetAction->setCheckable(true); - transferAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5)); - transferAssetAction->setFont(font); - tabGroup->addAction(transferAssetAction); - createAssetAction = new QAction(platformStyle->SingleColorIconOnOff(":/icons/asset_create_selected", ":/icons/asset_create"), tr("&Create Assets"), this); createAssetAction->setStatusTip(tr("Create new main/sub/unique assets")); createAssetAction->setToolTip(createAssetAction->statusTip()); createAssetAction->setCheckable(true); - createAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_6)); + createAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5)); createAssetAction->setFont(font); tabGroup->addAction(createAssetAction); + transferAssetAction = new QAction(platformStyle->SingleColorIconOnOff(":/icons/asset_transfer_selected", ":/icons/asset_transfer"), tr("&Transfer Assets"), this); + transferAssetAction->setStatusTip(tr("Transfer assets to RVN addresses")); + transferAssetAction->setToolTip(transferAssetAction->statusTip()); + transferAssetAction->setCheckable(true); + transferAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_6)); + transferAssetAction->setFont(font); + tabGroup->addAction(transferAssetAction); + manageAssetAction = new QAction(platformStyle->SingleColorIconOnOff(":/icons/asset_manage_selected", ":/icons/asset_manage"), tr("&Manage Assets"), this); manageAssetAction->setStatusTip(tr("Manage assets you are the administrator of")); manageAssetAction->setToolTip(manageAssetAction->statusTip()); @@ -453,7 +395,7 @@ void RavenGUI::createActions() messagingAction->setStatusTip(tr("Coming Soon")); messagingAction->setToolTip(messagingAction->statusTip()); messagingAction->setCheckable(true); - messagingAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_8)); +// messagingAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_9)); messagingAction->setFont(font); tabGroup->addAction(messagingAction); @@ -461,7 +403,7 @@ void RavenGUI::createActions() votingAction->setStatusTip(tr("Coming Soon")); votingAction->setToolTip(votingAction->statusTip()); votingAction->setCheckable(true); - votingAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_9)); + // votingAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_V)); votingAction->setFont(font); tabGroup->addAction(votingAction); @@ -469,7 +411,7 @@ void RavenGUI::createActions() restrictedAssetAction->setStatusTip(tr("Manage restricted assets")); restrictedAssetAction->setToolTip(restrictedAssetAction->statusTip()); restrictedAssetAction->setCheckable(true); -// restrictedAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_9)); + restrictedAssetAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_8)); restrictedAssetAction->setFont(font); tabGroup->addAction(restrictedAssetAction); @@ -639,36 +581,54 @@ void RavenGUI::createToolBars() { if(walletFrame) { + QSettings settings; + bool IconsOnly = settings.value("fToolbarIconsOnly", false).toBool(); + /** RVN START */ - // Create the orange background and the vertical tool bar + // Create the background and the vertical tool bar QWidget* toolbarWidget = new QWidget(); QString widgetStyleSheet = ".QWidget {background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 %1, stop: 1 %2);}"; toolbarWidget->setStyleSheet(widgetStyleSheet.arg(platformStyle->LightBlueColor().name(), platformStyle->DarkBlueColor().name())); - QLabel* label = new QLabel(); - label->setPixmap(QPixmap::fromImage(QImage(":/icons/ravencointext"))); - label->setContentsMargins(0,0,0,50); - label->setStyleSheet(".QLabel{background-color: transparent;}"); + labelToolbar = new QLabel(); + labelToolbar->setContentsMargins(0,0,0,50); + labelToolbar->setAlignment(Qt::AlignLeft); + + if(IconsOnly) { + labelToolbar->setPixmap(QPixmap::fromImage(QImage(":/icons/rvntext"))); + } + else { + labelToolbar->setPixmap(QPixmap::fromImage(QImage(":/icons/ravencointext"))); + } + labelToolbar->setStyleSheet(".QLabel{background-color: transparent;}"); + /** RVN END */ - QToolBar *toolbar = new QToolBar(); - toolbar->setStyle(style()); - toolbar->setMinimumWidth(label->width()); - toolbar->setContextMenuPolicy(Qt::PreventContextMenu); - toolbar->setMovable(false); - toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - toolbar->addAction(overviewAction); - toolbar->addAction(sendCoinsAction); - toolbar->addAction(receiveCoinsAction); - toolbar->addAction(historyAction); - toolbar->addAction(createAssetAction); - toolbar->addAction(transferAssetAction); - toolbar->addAction(manageAssetAction); -// toolbar->addAction(messagingAction); -// toolbar->addAction(votingAction); - toolbar->addAction(restrictedAssetAction); + m_toolbar = new QToolBar(); + m_toolbar->setStyle(style()); + m_toolbar->setContextMenuPolicy(Qt::PreventContextMenu); + m_toolbar->setMovable(false); + + if(IconsOnly) { + m_toolbar->setMaximumWidth(65); + m_toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly); + } + else { + m_toolbar->setMinimumWidth(labelToolbar->width()); + m_toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); + } + m_toolbar->addAction(overviewAction); + m_toolbar->addAction(sendCoinsAction); + m_toolbar->addAction(receiveCoinsAction); + m_toolbar->addAction(historyAction); + m_toolbar->addAction(createAssetAction); + m_toolbar->addAction(transferAssetAction); + m_toolbar->addAction(manageAssetAction); +// m_toolbar->addAction(messagingAction); +// m_toolbar->addAction(votingAction); + m_toolbar->addAction(restrictedAssetAction); QString openSansFontString = "font: normal 22pt \"Open Sans\";"; QString normalString = "font: normal 22pt \"Arial\";"; @@ -687,22 +647,22 @@ void RavenGUI::createToolBars() ".QToolButton:hover {background: none; background-color: none; border: none; color: %3;} " ".QToolButton:disabled {color: gray;}"; - toolbar->setStyleSheet(tbStyleSheet.arg(platformStyle->ToolBarNotSelectedTextColor().name(), + m_toolbar->setStyleSheet(tbStyleSheet.arg(platformStyle->ToolBarNotSelectedTextColor().name(), platformStyle->ToolBarSelectedTextColor().name(), platformStyle->DarkOrangeColor().name(), stringToUse)); - toolbar->setOrientation(Qt::Vertical); - toolbar->setIconSize(QSize(40, 40)); + m_toolbar->setOrientation(Qt::Vertical); + m_toolbar->setIconSize(QSize(40, 40)); - QLayout* lay = toolbar->layout(); + QLayout* lay = m_toolbar->layout(); for(int i = 0; i < lay->count(); ++i) lay->itemAt(i)->setAlignment(Qt::AlignLeft); overviewAction->setChecked(true); QVBoxLayout* ravenLabelLayout = new QVBoxLayout(toolbarWidget); - ravenLabelLayout->addWidget(label); - ravenLabelLayout->addWidget(toolbar); + ravenLabelLayout->addWidget(labelToolbar); + ravenLabelLayout->addWidget(m_toolbar); ravenLabelLayout->setDirection(QBoxLayout::TopToBottom); ravenLabelLayout->addStretch(1); @@ -952,6 +912,20 @@ void RavenGUI::createToolBars() } } +void RavenGUI::updateIconsOnlyToolbar(bool IconsOnly) +{ + if(IconsOnly) { + labelToolbar->setPixmap(QPixmap::fromImage(QImage(":/icons/rvntext"))); + m_toolbar->setMaximumWidth(65); + m_toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly); + } + else { + labelToolbar->setPixmap(QPixmap::fromImage(QImage(":/icons/ravencointext"))); + m_toolbar->setMinimumWidth(labelToolbar->width()); + m_toolbar->setMaximumWidth(255); + m_toolbar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); + } +} void RavenGUI::setClientModel(ClientModel *_clientModel) { this->clientModel = _clientModel; @@ -999,6 +973,10 @@ void RavenGUI::setClientModel(ClientModel *_clientModel) // Init the currency display from settings this->onCurrencyChange(optionsModel->getDisplayCurrencyIndex()); + + // Signal to update toolbar on iconsonly checkbox clicked. + connect(optionsModel, SIGNAL(updateIconsOnlyToolbar(bool)), this, SLOT(updateIconsOnlyToolbar(bool))); + } } else { // Disable possibility to show main window via action diff --git a/src/qt/ravengui.h b/src/qt/ravengui.h index f95b861c24..3fb2b53633 100644 --- a/src/qt/ravengui.h +++ b/src/qt/ravengui.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -90,72 +90,76 @@ class RavenGUI : public QMainWindow bool eventFilter(QObject *object, QEvent *event); private: - ClientModel *clientModel; - WalletFrame *walletFrame; - - UnitDisplayStatusBarControl *unitDisplayControl; - QLabel *labelWalletEncryptionIcon; - QLabel *labelWalletHDStatusIcon; - QLabel *connectionsControl; - QLabel *labelBlocksIcon; - QLabel *progressBarLabel; - QProgressBar *progressBar; - QProgressDialog *progressDialog; - - QMenuBar *appMenuBar; - QAction *overviewAction; - QAction *historyAction; - QAction *quitAction; - QAction *sendCoinsAction; - QAction *sendCoinsMenuAction; - QAction *usedSendingAddressesAction; - QAction *usedReceivingAddressesAction; - QAction *signMessageAction; - QAction *verifyMessageAction; - QAction *aboutAction; - QAction *receiveCoinsAction; - QAction *receiveCoinsMenuAction; - QAction *optionsAction; - QAction *toggleHideAction; - QAction *encryptWalletAction; - QAction *backupWalletAction; - QAction *changePassphraseAction; - QAction *aboutQtAction; - QAction *openRPCConsoleAction; - QAction *openWalletRepairAction; - QAction *openAction; - QAction *showHelpMessageAction; + ClientModel *clientModel = nullptr; + WalletFrame *walletFrame = nullptr; + + UnitDisplayStatusBarControl *unitDisplayControl = nullptr; + QLabel *labelWalletEncryptionIcon = nullptr; + QLabel *labelWalletHDStatusIcon = nullptr; + QLabel *connectionsControl = nullptr; + QLabel *labelBlocksIcon = nullptr; + QLabel *progressBarLabel = nullptr; + QProgressBar *progressBar = nullptr; + QProgressDialog *progressDialog = nullptr; + + QMenuBar *appMenuBar = nullptr; + QAction *getMyWordsAction = nullptr; + QAction *overviewAction = nullptr; + QAction *historyAction = nullptr; + QAction *quitAction = nullptr; + QAction *sendCoinsAction = nullptr; + QAction *sendCoinsMenuAction = nullptr; + QAction *usedSendingAddressesAction = nullptr; + QAction *usedReceivingAddressesAction = nullptr; + QAction *signMessageAction = nullptr; + QAction *verifyMessageAction = nullptr; + QAction *aboutAction = nullptr; + QAction *receiveCoinsAction = nullptr; + QAction *receiveCoinsMenuAction = nullptr; + QAction *optionsAction = nullptr; + QAction *toggleHideAction = nullptr; + QAction *encryptWalletAction = nullptr; + QAction *backupWalletAction = nullptr; + QAction *changePassphraseAction = nullptr; + QAction *aboutQtAction = nullptr; + QAction *openRPCConsoleAction = nullptr; + QAction *openWalletRepairAction = nullptr; + QAction *openAction = nullptr; + QAction *showHelpMessageAction = nullptr; /** RVN START */ - QAction *transferAssetAction; - QAction *createAssetAction; - QAction *manageAssetAction; - QAction *messagingAction; - QAction *votingAction; - QAction *restrictedAssetAction; - QAction *getMyWordsAction; - QWidget *headerWidget; - QLabel *labelCurrentMarket; - QLabel *labelCurrentPrice; - QComboBox *comboRvnUnit; - QTimer *pricingTimer; - QNetworkAccessManager* networkManager; - QNetworkRequest* request; - QLabel *labelVersionUpdate; - QNetworkAccessManager* networkVersionManager; - QNetworkRequest* versionRequest; + QAction *transferAssetAction = nullptr; + QAction *createAssetAction = nullptr; + QAction *manageAssetAction = nullptr; + QAction *messagingAction = nullptr; + QAction *votingAction = nullptr; + QAction *restrictedAssetAction = nullptr; + QWidget *headerWidget = nullptr; + QLabel *labelCurrentMarket = nullptr; + QLabel *labelCurrentPrice = nullptr; + QComboBox *comboRvnUnit = nullptr; + QTimer *pricingTimer = nullptr; + QNetworkAccessManager* networkManager = nullptr; + QNetworkRequest* request = nullptr; + QLabel *labelVersionUpdate = nullptr; + QNetworkAccessManager* networkVersionManager = nullptr; + QNetworkRequest* versionRequest = nullptr; + + QLabel *labelToolbar = nullptr; + QToolBar *m_toolbar = nullptr; + /** RVN END */ - QSystemTrayIcon *trayIcon; - QMenu *trayIconMenu; - Notificator *notificator; - RPCConsole *rpcConsole; - HelpMessageDialog *helpMessageDialog; - ModalOverlay *modalOverlay; + QSystemTrayIcon *trayIcon = nullptr; + QMenu *trayIconMenu = nullptr; + Notificator *notificator = nullptr; + RPCConsole *rpcConsole = nullptr; + HelpMessageDialog *helpMessageDialog = nullptr; + ModalOverlay *modalOverlay = nullptr; /** Keep track of previous number of blocks, to detect progress */ - int prevBlocks; - int spinnerFrame; + int prevBlocks = 0; + int spinnerFrame = 0; const PlatformStyle *platformStyle; @@ -220,6 +224,9 @@ public Q_SLOTS: void getLatestVersion(); + /** IconsOnly true/false and updates toolbar accordingly. */ + void updateIconsOnlyToolbar(bool); + #ifdef ENABLE_WALLET /** Set the encryption status as shown in the UI. @param[in] status current encryption status diff --git a/src/qt/ravenstrings.cpp b/src/qt/ravenstrings.cpp index 5deb2ab94f..bfc2850bac 100644 --- a/src/qt/ravenstrings.cpp +++ b/src/qt/ravenstrings.cpp @@ -24,6 +24,9 @@ QT_TRANSLATE_NOOP("raven-core", "" "Accept relayed transactions received from whitelisted peers even when not " "relaying transactions (default: %d)"), QT_TRANSLATE_NOOP("raven-core", "" +"Add a node to connect to and attempt to keep the connection open (see the " +"`addnode` RPC command help for more info)"), +QT_TRANSLATE_NOOP("raven-core", "" "Allow JSON-RPC connections from specified source. Valid for are a " "single IP (e.g. 1.2.3.4), a network/netmask (e.g. 1.2.3.4/255.255.255.0) or " "a network/CIDR (e.g. 1.2.3.4/24). This option can be specified multiple times"), @@ -42,8 +45,14 @@ QT_TRANSLATE_NOOP("raven-core", "" QT_TRANSLATE_NOOP("raven-core", "" "Cannot obtain a lock on data directory %s. %s is probably already running."), QT_TRANSLATE_NOOP("raven-core", "" +"Cannot provide specific connections and have addrman find outgoing " +"connections at the same."), +QT_TRANSLATE_NOOP("raven-core", "" +"Change address can not be sent to because it doesn't have the correct " +"qualifier tags "), +QT_TRANSLATE_NOOP("raven-core", "" "Connect only to the specified node(s); -connect=0 disables automatic " -"connections"), +"connections (the rules for this peer are the same as for -addnode)"), QT_TRANSLATE_NOOP("raven-core", "" "Create new files with system default permissions, instead of umask 077 (only " "effective with disabled wallet functionality)"), @@ -111,9 +120,36 @@ QT_TRANSLATE_NOOP("raven-core", "" "Invalid amount for -maxtxfee=: '%s' (must be at least the minrelay " "fee of %s to prevent stuck transactions)"), QT_TRANSLATE_NOOP("raven-core", "" +"Invalid parameter: amount must be divisible by the smaller unit assigned to " +"the asset"), +QT_TRANSLATE_NOOP("raven-core", "" +"Invalid parameter: asset_name must only consist of valid characters and have " +"a size between 3 and 30 characters. See help for more details."), +QT_TRANSLATE_NOOP("raven-core", "" +"Invalid parameter: ipfs_hash is not valid, or txid hash is not the right " +"length"), +QT_TRANSLATE_NOOP("raven-core", "" +"Invalid parameter: ipfs_hash must be 46 characters. Txid must be valid 64 " +"character hash"), +QT_TRANSLATE_NOOP("raven-core", "" +"Invalid parameters: asset_name can't have a '!' at the end of it. See help " +"for more details."), +QT_TRANSLATE_NOOP("raven-core", "" +"Keep an index of assets, used by the requestsnapshot rpc call. Requires a -" +"reindex."), +QT_TRANSLATE_NOOP("raven-core", "" +"Maintain a full address index, used to query for the balance, txids and " +"unspent outputs for addresses (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "" +"Maintain a full spent index, used to query the spending txid and input index " +"for an outpoint (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "" "Maintain a full transaction index, used by the getrawtransaction rpc call " "(default: %u)"), QT_TRANSLATE_NOOP("raven-core", "" +"Maintain a timestamp index for block hashes, used to query blocks hashes by " +"a range of timestamps (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "" "Maximum allowed median peer time offset adjustment. Local perspective of " "time may be influenced by peers forward or backward by this amount. " "(default: %u seconds)"), @@ -160,12 +196,28 @@ QT_TRANSLATE_NOOP("raven-core", "" "Set lowest fee rate (in %s/kB) for transactions to be included in block " "creation. (default: %s)"), QT_TRANSLATE_NOOP("raven-core", "" +"Set maximum BIP141 block weight to this * 4. Deprecated, use blockmaxweight"), +QT_TRANSLATE_NOOP("raven-core", "" +"Set the Minimum amount of peers required to disallow reorg of chains of " +"depth >= maxreorg. Peers must be greater than. (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "" +"Set the Minimum tip age (in seconds) required to allow reorg of a chain of " +"depth >= maxreorg on a node with more than minreorgpeers peers. (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "" "Set the number of script verification threads (%u to %d, 0 = auto, <0 = " "leave that many cores free, default: %d)"), QT_TRANSLATE_NOOP("raven-core", "" "Sets the serialization of raw transaction or block hex returned in non-" "verbose mode, non-segwit(0) or segwit(1) (default: %d)"), QT_TRANSLATE_NOOP("raven-core", "" +"Sets the wallet to use/not use bip44 12-words, non-bip44=0 or bip44=1 " +"(default: 1). Note: By default 12-words will automatically be generated for " +"you (random word selection). See -mnemonic and -mnemonicpassphrase below to " +"create a wallet using a specific word list (use an existing bip-44 wallet " +"word-list), or use the RPC/CLI getmywords or dumpwallet to retrieve the auto-" +"generated word-list. This flag is ignored if there is already an existing " +"non-bip44 wallet."), +QT_TRANSLATE_NOOP("raven-core", "" "Support filtering of blocks and transaction with bloom filters (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "" "The block database contains a block which appears to be from the future. " @@ -173,6 +225,8 @@ QT_TRANSLATE_NOOP("raven-core", "" "rebuild the block database if you are sure that your computer's date and " "time are correct"), QT_TRANSLATE_NOOP("raven-core", "" +"The default height that is required before rewards are allowed to be sent out"), +QT_TRANSLATE_NOOP("raven-core", "" "The fee rate (in %s/kB) that indicates your tolerance for discarding change " "by adding it to the fee (default: %s). Note: An output is discarded if it is " "dust at this rate, but we will always discard up to the dust relay fee and a " @@ -180,6 +234,9 @@ QT_TRANSLATE_NOOP("raven-core", "" QT_TRANSLATE_NOOP("raven-core", "" "The transaction amount is too small to send after the fee has been deducted"), QT_TRANSLATE_NOOP("raven-core", "" +"This address doesn't contain the correct tags to pass the verifier string " +"check: "), +QT_TRANSLATE_NOOP("raven-core", "" "This is a pre-release test build - use at your own risk - do not use for " "mining or merchant applications"), QT_TRANSLATE_NOOP("raven-core", "" @@ -198,12 +255,23 @@ QT_TRANSLATE_NOOP("raven-core", "" "Tries to keep outbound traffic under the given target (in MiB per 24h), 0 = " "no limit (default: %d)"), QT_TRANSLATE_NOOP("raven-core", "" +"Unable to get restricted assets verifier string. Database out of sync. " +"Reindex required"), +QT_TRANSLATE_NOOP("raven-core", "" +"Unable to reissue asset: amount must be divisible by the smaller unit " +"assigned to the asset"), +QT_TRANSLATE_NOOP("raven-core", "" +"Unable to reissue asset: unit must be larger than current unit selection"), +QT_TRANSLATE_NOOP("raven-core", "" "Unable to replay blocks. You will need to rebuild the database using -" "reindex-chainstate."), QT_TRANSLATE_NOOP("raven-core", "" "Unable to rewind the database to a pre-fork state. You will need to " "redownload the blockchain"), QT_TRANSLATE_NOOP("raven-core", "" +"Unable to transfer restricted asset, this restricted asset has been globally " +"frozen"), +QT_TRANSLATE_NOOP("raven-core", "" "Unsupported argument -socks found. Setting SOCKS version isn't possible " "anymore, only SOCKS5 proxies are supported."), QT_TRANSLATE_NOOP("raven-core", "" @@ -212,9 +280,6 @@ QT_TRANSLATE_NOOP("raven-core", "" QT_TRANSLATE_NOOP("raven-core", "" "Use UPnP to map the listening port (default: 1 when listening and no -proxy)"), QT_TRANSLATE_NOOP("raven-core", "" -"Use hierarchical deterministic key generation (HD) after BIP32. Only has " -"effect during wallet creation/first start"), -QT_TRANSLATE_NOOP("raven-core", "" "Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: " "%s)"), QT_TRANSLATE_NOOP("raven-core", "" @@ -224,6 +289,9 @@ QT_TRANSLATE_NOOP("raven-core", "" "rpcuser=/rpcpassword= pair of arguments. This option can " "be specified multiple times"), QT_TRANSLATE_NOOP("raven-core", "" +"Verifier string has length greater than 80 after whitespaces and '#' are " +"removed"), +QT_TRANSLATE_NOOP("raven-core", "" "Wallet will not create transactions that violate mempool chain limits " "(default: %u)"), QT_TRANSLATE_NOOP("raven-core", "" @@ -240,6 +308,18 @@ QT_TRANSLATE_NOOP("raven-core", "" "Warning: We do not appear to fully agree with our peers! You may need to " "upgrade, or other nodes may need to upgrade."), QT_TRANSLATE_NOOP("raven-core", "" +"When getblocktemplate is called. It will create the coinbase transaction " +"using this address(default: empty string)"), +QT_TRANSLATE_NOOP("raven-core", "" +"When set, if the CreateNewBlock fails because of a transaction. The mempool " +"will be cleared. (default: %d)"), +QT_TRANSLATE_NOOP("raven-core", "" +"When set, if the chain is in initialblockdownload the getblocktemplate rpc " +"call will still return block data (default: %d)"), +QT_TRANSLATE_NOOP("raven-core", "" +"When transferring an 'Ownership Asset' the amount must always be 1. Please " +"try again with the amount of 1"), +QT_TRANSLATE_NOOP("raven-core", "" "Whether to save the mempool on shutdown and load on restart (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "" "Whitelist peers connecting from the given IP address (e.g. 1.2.3.4) or CIDR " @@ -251,28 +331,42 @@ QT_TRANSLATE_NOOP("raven-core", "" "You need to rebuild the database using -reindex to go back to unpruned " "mode. This will redownload the entire blockchain"), QT_TRANSLATE_NOOP("raven-core", "" -"You need to rebuild the database using -reindex-chainstate to change -txindex"), +"You need to rebuild the database using -reindex-chainstate to change -" +"addressindex"), +QT_TRANSLATE_NOOP("raven-core", "" +"You need to rebuild the database using -reindex-chainstate to change -" +"spentindex"), +QT_TRANSLATE_NOOP("raven-core", "" +"You need to rebuild the database using -reindex-chainstate to change -" +"timestampindex"), QT_TRANSLATE_NOOP("raven-core", "%d of last 100 blocks have unexpected version"), QT_TRANSLATE_NOOP("raven-core", "%s corrupt, salvage failed"), QT_TRANSLATE_NOOP("raven-core", "%s is set very high!"), +QT_TRANSLATE_NOOP("raven-core", "' doesn't exist in the database"), +QT_TRANSLATE_NOOP("raven-core", "' has already been used"), +QT_TRANSLATE_NOOP("raven-core", "' is not a valid character in the expression: "), +QT_TRANSLATE_NOOP("raven-core", "' the amount trying to reissue is to large"), QT_TRANSLATE_NOOP("raven-core", "(default: %s)"), QT_TRANSLATE_NOOP("raven-core", "(default: %u)"), -QT_TRANSLATE_NOOP("raven-core", "(press q to shutdown and continue later)"), QT_TRANSLATE_NOOP("raven-core", "-maxmempool must be at least %d MB"), QT_TRANSLATE_NOOP("raven-core", " can be:"), +QT_TRANSLATE_NOOP("raven-core", "A space separated list of 12-words used to import a bip44 wallet"), QT_TRANSLATE_NOOP("raven-core", "Accept command line and JSON-RPC commands"), QT_TRANSLATE_NOOP("raven-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"), QT_TRANSLATE_NOOP("raven-core", "Accept public REST requests (default: %u)"), -QT_TRANSLATE_NOOP("raven-core", "Add a node to connect to and attempt to keep the connection open"), QT_TRANSLATE_NOOP("raven-core", "Allow DNS lookups for -addnode, -seednode and -connect"), QT_TRANSLATE_NOOP("raven-core", "Always query for peer addresses via DNS lookup (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Append comment to the user agent string"), +QT_TRANSLATE_NOOP("raven-core", "Asset Transfer amounts must be greater than 0"), +QT_TRANSLATE_NOOP("raven-core", "Asset doesn't exist: "), +QT_TRANSLATE_NOOP("raven-core", "Asset must be a qualifier, sub qualifier, or a restricted asset"), +QT_TRANSLATE_NOOP("raven-core", "Asset name is not valid"), +QT_TRANSLATE_NOOP("raven-core", "Asset with this name is already in the mempool"), QT_TRANSLATE_NOOP("raven-core", "Attempt to recover private keys from a corrupt wallet on startup"), QT_TRANSLATE_NOOP("raven-core", "Automatically create Tor hidden service (default: %d)"), QT_TRANSLATE_NOOP("raven-core", "Block creation options:"), QT_TRANSLATE_NOOP("raven-core", "Cannot downgrade wallet"), QT_TRANSLATE_NOOP("raven-core", "Cannot resolve -%s address: '%s'"), -QT_TRANSLATE_NOOP("raven-core", "Cannot write default address"), QT_TRANSLATE_NOOP("raven-core", "Chain selection options:"), QT_TRANSLATE_NOOP("raven-core", "Change index out of range"), QT_TRANSLATE_NOOP("raven-core", "Connect through SOCKS5 proxy"), @@ -283,12 +377,14 @@ QT_TRANSLATE_NOOP("raven-core", "Corrupted block database detected"), QT_TRANSLATE_NOOP("raven-core", "Debugging/Testing options:"), QT_TRANSLATE_NOOP("raven-core", "Do not load the wallet and disable wallet RPC calls"), QT_TRANSLATE_NOOP("raven-core", "Do you want to rebuild the block database now?"), -QT_TRANSLATE_NOOP("raven-core", "Done loading"), +QT_TRANSLATE_NOOP("raven-core", "Done Loading"), QT_TRANSLATE_NOOP("raven-core", "Enable publish hash block in
"), QT_TRANSLATE_NOOP("raven-core", "Enable publish hash transaction in
"), +QT_TRANSLATE_NOOP("raven-core", "Enable publish raw asset messages in
"), QT_TRANSLATE_NOOP("raven-core", "Enable publish raw block in
"), QT_TRANSLATE_NOOP("raven-core", "Enable publish raw transaction in
"), QT_TRANSLATE_NOOP("raven-core", "Enable transaction replacement in the memory pool (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "Error creating %s: You can't create non-HD wallets with this version."), QT_TRANSLATE_NOOP("raven-core", "Error initializing block database"), QT_TRANSLATE_NOOP("raven-core", "Error initializing wallet database environment %s!"), QT_TRANSLATE_NOOP("raven-core", "Error loading %s"), @@ -299,32 +395,60 @@ QT_TRANSLATE_NOOP("raven-core", "Error loading block database"), QT_TRANSLATE_NOOP("raven-core", "Error loading wallet %s. -wallet filename must be a regular file."), QT_TRANSLATE_NOOP("raven-core", "Error loading wallet %s. Duplicate -wallet filename specified."), QT_TRANSLATE_NOOP("raven-core", "Error loading wallet %s. Invalid characters in -wallet filename."), +QT_TRANSLATE_NOOP("raven-core", "Error not set"), QT_TRANSLATE_NOOP("raven-core", "Error opening block database"), QT_TRANSLATE_NOOP("raven-core", "Error reading from database, shutting down."), QT_TRANSLATE_NOOP("raven-core", "Error upgrading chainstate database"), +QT_TRANSLATE_NOOP("raven-core", "Error writing bip 39 passphrase to database"), +QT_TRANSLATE_NOOP("raven-core", "Error writing bip 39 vchseed to database"), +QT_TRANSLATE_NOOP("raven-core", "Error writing bip 39 words to database"), QT_TRANSLATE_NOOP("raven-core", "Error"), QT_TRANSLATE_NOOP("raven-core", "Error: A fatal internal error occurred, see debug.log for details"), QT_TRANSLATE_NOOP("raven-core", "Error: Disk space is low!"), +QT_TRANSLATE_NOOP("raven-core", "Every '(' must have a corresponding ')' in the expression: "), +QT_TRANSLATE_NOOP("raven-core", "Failed to extract destination from change script"), +QT_TRANSLATE_NOOP("raven-core", "Failed to find restricted asset change address from inputs"), +QT_TRANSLATE_NOOP("raven-core", "Failed to get asset data from script"), +QT_TRANSLATE_NOOP("raven-core", "Failed to get verifier string from output: "), QT_TRANSLATE_NOOP("raven-core", "Failed to listen on any port. Use -listen=0 if you want this."), +QT_TRANSLATE_NOOP("raven-core", "Failed to load Assets Database"), QT_TRANSLATE_NOOP("raven-core", "Fee (in %s/kB) to add to transactions you send (default: %s)"), +QT_TRANSLATE_NOOP("raven-core", "Flag must be 1 or 0"), QT_TRANSLATE_NOOP("raven-core", "How many blocks to check at startup (default: %u, 0 = all)"), QT_TRANSLATE_NOOP("raven-core", "Importing..."), QT_TRANSLATE_NOOP("raven-core", "Imports blocks from external blk000??.dat file on startup"), QT_TRANSLATE_NOOP("raven-core", "Include IP addresses in debug output (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Incorrect or no genesis block found. Wrong datadir for network?"), QT_TRANSLATE_NOOP("raven-core", "Information"), +QT_TRANSLATE_NOOP("raven-core", "Init Message Channels - Scanning Asset Transactions"), QT_TRANSLATE_NOOP("raven-core", "Initialization sanity check failed. %s is shutting down."), +QT_TRANSLATE_NOOP("raven-core", "Insufficient asset funds"), QT_TRANSLATE_NOOP("raven-core", "Insufficient funds"), QT_TRANSLATE_NOOP("raven-core", "Invalid -onion address or hostname: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Invalid -proxy address or hostname: '%s'"), +QT_TRANSLATE_NOOP("raven-core", "Invalid Qualifier Name: "), QT_TRANSLATE_NOOP("raven-core", "Invalid amount for -%s=: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Invalid amount for -discardfee=: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Invalid amount for -fallbackfee=: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Invalid amount for -paytxfee=: '%s' (must be at least %s)"), +QT_TRANSLATE_NOOP("raven-core", "Invalid expressions in verifier string: "), QT_TRANSLATE_NOOP("raven-core", "Invalid netmask specified in -whitelist: '%s'"), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: amount must be "), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: amount must be between "), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: asset amount can't be equal to or less than zero."), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: asset amount greater than max money: "), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: asset_name '"), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: has_ipfs must be 0 or 1."), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: ipfs_hash must be 34 bytes, Txid must be 32 bytes"), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: reissuable must be 0 or 1"), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: reissuable must be 0"), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: units must be "), +QT_TRANSLATE_NOOP("raven-core", "Invalid parameter: units must be between 0-8."), +QT_TRANSLATE_NOOP("raven-core", "Invalid syntax: "), QT_TRANSLATE_NOOP("raven-core", "Keep at most unconnectable transactions in memory (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Keep the transaction memory pool below megabytes (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Keypool ran out, please call keypoolrefill first"), +QT_TRANSLATE_NOOP("raven-core", "Length is to large. Please use a smaller length"), QT_TRANSLATE_NOOP("raven-core", "Listen for JSON-RPC connections on (default: %u or testnet: %u)"), QT_TRANSLATE_NOOP("raven-core", "Listen for connections on (default: %u or testnet: %u)"), QT_TRANSLATE_NOOP("raven-core", "Loading P2P addresses..."), @@ -336,11 +460,14 @@ QT_TRANSLATE_NOOP("raven-core", "Maintain at most connections to peers (defa QT_TRANSLATE_NOOP("raven-core", "Make the wallet broadcast transactions"), QT_TRANSLATE_NOOP("raven-core", "Maximum per-connection receive buffer, *1000 bytes (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Maximum per-connection send buffer, *1000 bytes (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "Mempool cleared"), +QT_TRANSLATE_NOOP("raven-core", "Multiple verifier strings found in transaction"), QT_TRANSLATE_NOOP("raven-core", "Need to specify a port with -whitebind: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Node relay options:"), QT_TRANSLATE_NOOP("raven-core", "Not enough file descriptors available."), QT_TRANSLATE_NOOP("raven-core", "Only connect to nodes in network (ipv4, ipv6 or onion)"), QT_TRANSLATE_NOOP("raven-core", "Options:"), +QT_TRANSLATE_NOOP("raven-core", "Passphrase securing your 12-word mnemonic word-list"), QT_TRANSLATE_NOOP("raven-core", "Password for JSON-RPC connections"), QT_TRANSLATE_NOOP("raven-core", "Prepend debug output with timestamp (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Print this help message and exit"), @@ -357,6 +484,7 @@ QT_TRANSLATE_NOOP("raven-core", "Relay non-P2SH multisig (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Replaying blocks..."), QT_TRANSLATE_NOOP("raven-core", "Rescan the block chain for missing wallet transactions on startup"), QT_TRANSLATE_NOOP("raven-core", "Rescanning..."), +QT_TRANSLATE_NOOP("raven-core", "Restricted asset transfer from address that has been frozen"), QT_TRANSLATE_NOOP("raven-core", "Rewinding blocks..."), QT_TRANSLATE_NOOP("raven-core", "Run in the background as a daemon and accept commands"), QT_TRANSLATE_NOOP("raven-core", "Send trace/debug info to console instead of debug.log file"), @@ -364,10 +492,11 @@ QT_TRANSLATE_NOOP("raven-core", "Send transactions with full-RBF opt-in enabled QT_TRANSLATE_NOOP("raven-core", "Set database cache size in megabytes (%d to %d, default: %d)"), QT_TRANSLATE_NOOP("raven-core", "Set key pool size to (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Set maximum BIP141 block weight (default: %d)"), -QT_TRANSLATE_NOOP("raven-core", "Set maximum block size in bytes (default: %d)"), +QT_TRANSLATE_NOOP("raven-core", "Set the Maximum reorg depth (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Set the number of threads to service RPC calls (default: %d)"), QT_TRANSLATE_NOOP("raven-core", "Show all debugging options (usage: --help -help-debug)"), QT_TRANSLATE_NOOP("raven-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"), +QT_TRANSLATE_NOOP("raven-core", "Signing asset transaction failed"), QT_TRANSLATE_NOOP("raven-core", "Signing transaction failed"), QT_TRANSLATE_NOOP("raven-core", "Specify configuration file (default: %s)"), QT_TRANSLATE_NOOP("raven-core", "Specify connection timeout in milliseconds (minimum: 1, default: %d)"), @@ -378,7 +507,9 @@ QT_TRANSLATE_NOOP("raven-core", "Specify your own public address"), QT_TRANSLATE_NOOP("raven-core", "Spend unconfirmed change when sending transactions (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Starting network threads..."), QT_TRANSLATE_NOOP("raven-core", "The source code is available from %s."), +QT_TRANSLATE_NOOP("raven-core", "The symbol: '"), QT_TRANSLATE_NOOP("raven-core", "The transaction amount is too small to pay the fee"), +QT_TRANSLATE_NOOP("raven-core", "The verifier string has two operators without a tag between them"), QT_TRANSLATE_NOOP("raven-core", "The wallet will avoid paying less than the minimum relay fee."), QT_TRANSLATE_NOOP("raven-core", "This is experimental software."), QT_TRANSLATE_NOOP("raven-core", "This is the minimum transaction fee you pay on every transaction."), @@ -393,8 +524,16 @@ QT_TRANSLATE_NOOP("raven-core", "Transaction has too long of a mempool chain"), QT_TRANSLATE_NOOP("raven-core", "Transaction must have at least one recipient"), QT_TRANSLATE_NOOP("raven-core", "Transaction too large for fee policy"), QT_TRANSLATE_NOOP("raven-core", "Transaction too large"), +QT_TRANSLATE_NOOP("raven-core", "Turn off the databasing the messages sent with assets (default: %u)"), QT_TRANSLATE_NOOP("raven-core", "Unable to bind to %s on this computer (bind returned error %s)"), QT_TRANSLATE_NOOP("raven-core", "Unable to bind to %s on this computer. %s is probably already running."), +QT_TRANSLATE_NOOP("raven-core", "Unable to generate initial keys"), +QT_TRANSLATE_NOOP("raven-core", "Unable to get coin to verify restricted asset transfer from address"), +QT_TRANSLATE_NOOP("raven-core", "Unable to reissue asset: amount must be 0 or larger"), +QT_TRANSLATE_NOOP("raven-core", "Unable to reissue asset: asset_name '"), +QT_TRANSLATE_NOOP("raven-core", "Unable to reissue asset: reissuable is set to false"), +QT_TRANSLATE_NOOP("raven-core", "Unable to reissue asset: reissuable must be 0 or 1"), +QT_TRANSLATE_NOOP("raven-core", "Unable to reissue asset: unit must be between 8 and -1"), QT_TRANSLATE_NOOP("raven-core", "Unable to start HTTP server. See debug log for details."), QT_TRANSLATE_NOOP("raven-core", "Unknown network specified in -onlynet: '%s'"), QT_TRANSLATE_NOOP("raven-core", "Unsupported argument -benchmark ignored, use -debug=bench."), @@ -407,6 +546,14 @@ QT_TRANSLATE_NOOP("raven-core", "Use UPnP to map the listening port (default: %u QT_TRANSLATE_NOOP("raven-core", "Use the test chain"), QT_TRANSLATE_NOOP("raven-core", "User Agent comment (%s) contains unsafe characters."), QT_TRANSLATE_NOOP("raven-core", "Username for JSON-RPC connections"), +QT_TRANSLATE_NOOP("raven-core", "Valid Verifier"), +QT_TRANSLATE_NOOP("raven-core", "Variable is not allow in the expression: '"), +QT_TRANSLATE_NOOP("raven-core", "Verifier String doesn't exist for asset: "), +QT_TRANSLATE_NOOP("raven-core", "Verifier String for asset trasnfer, not found"), +QT_TRANSLATE_NOOP("raven-core", "Verifier not found for asset: "), +QT_TRANSLATE_NOOP("raven-core", "Verifier string can not be empty. To default to true, use \"true\""), +QT_TRANSLATE_NOOP("raven-core", "Verifier string is empty"), +QT_TRANSLATE_NOOP("raven-core", "Verifier string not found"), QT_TRANSLATE_NOOP("raven-core", "Verifying blocks..."), QT_TRANSLATE_NOOP("raven-core", "Verifying wallet(s)..."), QT_TRANSLATE_NOOP("raven-core", "Wallet %s resides outside data directory %s"), @@ -416,6 +563,7 @@ QT_TRANSLATE_NOOP("raven-core", "Wallet options:"), QT_TRANSLATE_NOOP("raven-core", "Warning"), QT_TRANSLATE_NOOP("raven-core", "Warning: unknown new rules activated (versionbit %i)"), QT_TRANSLATE_NOOP("raven-core", "Whether to operate in a blocks only mode (default: %u)"), +QT_TRANSLATE_NOOP("raven-core", "You need to rebuild the database using -reindex to change -txindex"), QT_TRANSLATE_NOOP("raven-core", "Zapping all transactions from wallet..."), QT_TRANSLATE_NOOP("raven-core", "ZeroMQ notification options:"), }; diff --git a/src/qt/ravenunits.h b/src/qt/ravenunits.h index 72f081976a..f92bb70460 100644 --- a/src/qt/ravenunits.h +++ b/src/qt/ravenunits.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/receivecoinsdialog.cpp b/src/qt/receivecoinsdialog.cpp index c8e267c694..68147aec8f 100644 --- a/src/qt/receivecoinsdialog.cpp +++ b/src/qt/receivecoinsdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -28,7 +28,6 @@ ReceiveCoinsDialog::ReceiveCoinsDialog(const PlatformStyle *_platformStyle, QWidget *parent) : QDialog(parent), ui(new Ui::ReceiveCoinsDialog), - columnResizingFixer(0), model(0), platformStyle(_platformStyle) { @@ -97,8 +96,6 @@ void ReceiveCoinsDialog::setModel(WalletModel *_model) connect(tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), this, SLOT(recentRequestsView_selectionChanged(QItemSelection, QItemSelection))); - // Last 2 columns are set by the columnResizingFixer, when the table geometry is ready. - columnResizingFixer = new GUIUtil::TableViewLastColumnResizingFixer(tableView, AMOUNT_MINIMUM_COLUMN_WIDTH, DATE_COLUMN_WIDTH, this); tableView->show(); } @@ -269,14 +266,6 @@ void ReceiveCoinsDialog::on_removeRequestButton_clicked() model->getRecentRequestsTableModel()->removeRows(firstIndex.row(), selection.length(), firstIndex.parent()); } -// We override the virtual resizeEvent of the QWidget to adjust tables column -// sizes as the tables width is proportional to the dialogs width. -void ReceiveCoinsDialog::resizeEvent(QResizeEvent *event) -{ - QWidget::resizeEvent(event); - columnResizingFixer->stretchColumnWidth(RecentRequestsTableModel::Message); -} - void ReceiveCoinsDialog::keyPressEvent(QKeyEvent *event) { if (event->key() == Qt::Key_Return) diff --git a/src/qt/receivecoinsdialog.h b/src/qt/receivecoinsdialog.h index 97c2b72922..f9647092c5 100644 --- a/src/qt/receivecoinsdialog.h +++ b/src/qt/receivecoinsdialog.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -57,14 +57,12 @@ public Q_SLOTS: private: Ui::ReceiveCoinsDialog *ui; - GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer; WalletModel *model; QMenu *contextMenu; const PlatformStyle *platformStyle; QModelIndex selectedRow(); void copyColumnToClipboard(int column); - virtual void resizeEvent(QResizeEvent *event); private Q_SLOTS: void on_receiveButton_clicked(); diff --git a/src/qt/receiverequestdialog.cpp b/src/qt/receiverequestdialog.cpp index d093521482..1ed2db0d3c 100644 --- a/src/qt/receiverequestdialog.cpp +++ b/src/qt/receiverequestdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/reissueassetdialog.cpp b/src/qt/reissueassetdialog.cpp index cfb557177c..aee2c50a78 100644 --- a/src/qt/reissueassetdialog.cpp +++ b/src/qt/reissueassetdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -146,6 +146,7 @@ ReissueAssetDialog::ReissueAssetDialog(const PlatformStyle *_platformStyle, QWid ui->addressText->installEventFilter(this); + ui->comboBox->installEventFilter(this); ui->lineEditVerifierString->installEventFilter(this); } @@ -258,6 +259,12 @@ bool ReissueAssetDialog::eventFilter(QObject *sender, QEvent *event) { hideInvalidVerifierStringMessage(); } + } else if (sender == ui->comboBox) + { + if(event->type()== QEvent::Show) + { + updateAssetsList(); + } } return QWidget::eventFilter(sender,event); } @@ -723,9 +730,13 @@ void ReissueAssetDialog::onAssetSelected(int index) ss.precision(asset->units); ss << std::fixed << value.get_real(); - ui->unitSpinBox->setValue(asset->units); ui->unitSpinBox->setMinimum(asset->units); + ui->unitSpinBox->setValue(asset->units); + if (asset->units == MAX_ASSET_UNITS) { + ui->unitSpinBox->setDisabled(true); + } + ui->quantitySpinBox->setMaximum(21000000000 - value.get_real()); ui->currentAssetData->clear(); diff --git a/src/qt/res/icons/rvntext.png b/src/qt/res/icons/rvntext.png new file mode 100644 index 0000000000..108ae142d4 Binary files /dev/null and b/src/qt/res/icons/rvntext.png differ diff --git a/src/qt/res/icons/tx_atomic_swap.png b/src/qt/res/icons/tx_atomic_swap.png new file mode 100644 index 0000000000..2cc819bcb8 Binary files /dev/null and b/src/qt/res/icons/tx_atomic_swap.png differ diff --git a/src/qt/restrictedfreezeaddress.cpp b/src/qt/restrictedfreezeaddress.cpp index 50392f5ff4..553fdac97f 100644 --- a/src/qt/restrictedfreezeaddress.cpp +++ b/src/qt/restrictedfreezeaddress.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2019 The Raven Core developers +// Copyright (c) 2019-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -177,7 +177,7 @@ void FreezeAddress::check() bool failed = false; if (!IsAssetNameAnRestricted(restricted_asset.toStdString())){ - showWarning(tr("Must have a restricteds asset selected")); + showWarning(tr("Must have a restricted asset selected")); failed = true; } diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 5de94300e7..10b810f750 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index 9d472df1b3..a2b767b18c 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/sendassetsentry.cpp b/src/qt/sendassetsentry.cpp index 617e80bdcf..f957245a82 100644 --- a/src/qt/sendassetsentry.cpp +++ b/src/qt/sendassetsentry.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "sendassetsentry.h" diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index da14667b3d..b701b4a801 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 2c3a7a070f..bcfa707496 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/splashscreen.h b/src/qt/splashscreen.h index ded482f2e2..6c21d343eb 100644 --- a/src/qt/splashscreen.h +++ b/src/qt/splashscreen.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/trafficgraphwidget.cpp b/src/qt/trafficgraphwidget.cpp index 9a397671ac..1e8ff4b857 100644 --- a/src/qt/trafficgraphwidget.cpp +++ b/src/qt/trafficgraphwidget.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2015 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/transactiondesc.cpp b/src/qt/transactiondesc.cpp index e2b9f24d0a..89a8443a23 100644 --- a/src/qt/transactiondesc.cpp +++ b/src/qt/transactiondesc.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -37,8 +37,6 @@ QString TransactionDesc::FormatTxStatus(const CWalletTx& wtx) int nDepth = wtx.GetDepthInMainChain(); if (nDepth < 0) return tr("conflicted with a transaction with %1 confirmations").arg(-nDepth); - else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0) - return tr("%1/offline").arg(nDepth); else if (nDepth == 0) return tr("0/unconfirmed, %1").arg((wtx.InMempool() ? tr("in memory pool") : tr("not in memory pool"))) + (wtx.isAbandoned() ? ", "+tr("abandoned") : ""); else if (nDepth < 6) @@ -66,14 +64,6 @@ QString TransactionDesc::toHTML(CWallet *wallet, CWalletTx &wtx, TransactionReco CAmount nNet = nCredit - nDebit; strHTML += "" + tr("Status") + ": " + FormatTxStatus(wtx); - int nRequests = wtx.GetRequestCount(); - if (nRequests != -1) - { - if (nRequests == 0) - strHTML += tr(", has not been successfully broadcast yet"); - else if (nRequests > 0) - strHTML += tr(", broadcast through %n node(s)", "", nRequests); - } strHTML += "
"; strHTML += "" + tr("Date") + ": " + (nTime ? GUIUtil::dateTimeStr(nTime) : "") + "
"; @@ -312,14 +302,6 @@ QString TransactionDesc::toAssetHTML(CWallet *wallet, CWalletTx &wtx, Transactio // Status strHTML += "" + tr("Status") + ": " + FormatTxStatus(wtx); - int nRequests = wtx.GetRequestCount(); - if (nRequests != -1) - { - if (nRequests == 0) - strHTML += tr(", has not been successfully broadcast yet"); - else if (nRequests > 0) - strHTML += tr(", broadcast through %n node(s)", "", nRequests); - } strHTML += "
"; strHTML += "" + tr("Date") + ": " + (nTime ? GUIUtil::dateTimeStr(nTime) : "") + "
"; diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index 9ca6bdae73..1c36aac18d 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -1,16 +1,19 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "transactionrecord.h" +#include "transactionview.h" #include "assets/assets.h" #include "base58.h" #include "consensus/consensus.h" #include "validation.h" +#include "ravenunits.h" #include "timedata.h" #include "wallet/wallet.h" +#include "core_io.h" #include @@ -38,6 +41,11 @@ QList TransactionRecord::decomposeTransaction(const CWallet * uint256 hash = wtx.GetHash(); std::map mapValue = wtx.mapValue; + + /** RVN START */ + if(isSwapTransaction(wallet, wtx, parts, nCredit, nDebit, nNet)) + return parts; + /** RVN END */ if (nNet > 0 || wtx.IsCoinBase()) { // @@ -51,7 +59,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * /** RVN START */ if (txout.scriptPubKey.IsAssetScript() || txout.scriptPubKey.IsNullAssetTxDataScript() || txout.scriptPubKey.IsNullGlobalRestrictionAssetTxDataScript()) continue; - /** RVN START */ + /** RVN END */ if(mine) { @@ -99,7 +107,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * /** RVN START */ if (txout.scriptPubKey.IsAssetScript() || txout.scriptPubKey.IsNullAssetTxDataScript() || txout.scriptPubKey.IsNullGlobalRestrictionAssetTxDataScript()) continue; - /** RVN START */ + /** RVN END */ isminetype mine = wallet->IsMine(txout); if(mine & ISMINE_WATCH_ONLY) involvesWatchAddress = true; @@ -129,7 +137,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * /** RVN START */ if (txout.scriptPubKey.IsAssetScript()) continue; - /** RVN START */ + /** RVN END */ TransactionRecord sub(hash, nTime); sub.idx = nOut; @@ -195,7 +203,7 @@ QList TransactionRecord::decomposeTransaction(const CWallet * parts.append(TransactionRecord(hash, nTime, TransactionRecord::Other, "", nNet, 0)); parts.last().involvesWatchAddress = involvesWatchAddress; } - /** RVN START */ + /** RVN END */ } } @@ -212,6 +220,8 @@ QList TransactionRecord::decomposeTransaction(const CWallet * wtx.GetAmounts(listReceived, listSent, nFee, strSentAccount, ISMINE_ALL, listAssetsReceived, listAssetsSent); + //LogPrintf("TXID: %s: Rec: %d Sent: %d\n", wtx.GetHash().ToString(), listAssetsReceived.size(), listAssetsSent.size()); + if (listAssetsReceived.size() > 0) { for (const CAssetOutputEntry &data : listAssetsReceived) @@ -300,6 +310,143 @@ QList TransactionRecord::decomposeTransaction(const CWallet * return parts; } +bool TransactionRecord::isSwapTransaction(const CWallet *wallet, const CWalletTx &wtx, QList &txRecords, const CAmount& nCredit, const CAmount& nDebit, const CAmount& nNet) +{ + if(!AreAssetsDeployed()) return false; + + bool isSwap = false; + std::map mapValue = wtx.mapValue; + for(size_t i=0; i < wtx.tx->vin.size(); i++) + { + auto tx_vin = wtx.tx->vin[i]; + + std::string vin_script = ScriptToAsmStr(tx_vin.scriptSig, true); + auto fIsSingleSign = vin_script.find("[SINGLE|ANYONECANPAY]") != std::string::npos; + isminetype mine = wallet->IsMine(tx_vin); + + if(fIsSingleSign) + { + //There will always be a corresponding vout with the same index when SINGLE|ANYONECANPAY is used + auto swap_vout = wtx.tx->vout[i]; //The vout here represents what was recieved in the trade + + TransactionRecord sub(wtx.GetHash(), wtx.GetTxTime()); + sub.idx = i; + + sub.involvesWatchAddress = mine & ISMINE_WATCH_ONLY; + CTxDestination destination; + ExtractDestination(swap_vout.scriptPubKey, destination); + sub.address = EncodeDestination(destination); + + bool fSentAssets = false; + bool fRecvAssets = false; + + CTxOut myProvidedInput; + CTxOut myReceievedOutput; + + if(mine) + { + //If this is our SINGLE|ANYONECANPAY section, that means this was executed by another party + //Lookup previous transaction (*OF OURS*) in wallet history for full vout info + auto it = wallet->mapWallet.find(tx_vin.prevout.hash); + bool missing = (it == wallet->mapWallet.end()); + CWalletTx my_input_vout_tx; + CTxOut my_input_vout; + if (missing) { + LogPrintf("\tUnable to cross-refrerence historical transaction\n"); + } else { + my_input_vout_tx = it->second; + my_input_vout = my_input_vout_tx.tx->vout[tx_vin.prevout.n]; + } + + //We were sent assets in the output + if(swap_vout.scriptPubKey.IsAssetScript()) + fRecvAssets = true; + + //The vout we provided was for assets + if(!missing && my_input_vout.scriptPubKey.IsAssetScript()) + fSentAssets = true; + + myReceievedOutput = swap_vout; + myProvidedInput = my_input_vout; + sub.type = TransactionRecord::Swap; + } + else //We were the ones executing the transaction + { + //In this case, the counterparty received assets, so we sent them. + if(swap_vout.scriptPubKey.IsAssetScript()) + fSentAssets = true; + + //We can't directly check the counterparties vin here, so we have to look at the vouts to determine if we were sent assets or not + for(const CTxOut &txout : wtx.tx->vout) + { + if(wallet->IsMine(txout)) + { + //If we sent assets, we need to see if we were sent assets or RVN in return + if(txout.scriptPubKey.IsAssetScript()) + { + if(fSentAssets) { //Check to skip asset change by name + std::string sentType;CAmount sentAmount; + GetAssetInfoFromScript(swap_vout.scriptPubKey, sentType, sentAmount); + std::string recvType;CAmount recvAmount; + GetAssetInfoFromScript(txout.scriptPubKey, recvType, recvAmount); + if(sentType == recvType) + continue; + } + fRecvAssets = true; + myReceievedOutput = txout; + break; + } + else //We got RVN + { + if(fSentAssets) { //If we sent assets, this is ours. but we need to adjust for change. + myReceievedOutput = txout; + } else { + //If we didn't send assets (buying), this is likely just change + } + } + } + } + + myProvidedInput = swap_vout; + sub.type = TransactionRecord::SwapExecute; + } + + std::string sentType;CAmount sentAmount; + std::string recvType;CAmount recvAmount; + if(fSentAssets) GetAssetInfoFromScript(myProvidedInput.scriptPubKey, sentType, sentAmount); + if(fRecvAssets) GetAssetInfoFromScript(myReceievedOutput.scriptPubKey, recvType, recvAmount); + + if(fSentAssets && fRecvAssets) { + //Trade! + //Amount represents the asset we sent, no matter the perspective + sub.credit = recvAmount; + std::string asset_qty_format = RavenUnits::formatWithCustomName(QString::fromStdString(sentType), sentAmount, 2).toUtf8().constData(); + sub.assetName = strprintf("%s (%s %s)", TransactionView::tr("Traded Away").toUtf8().constData(), recvType, asset_qty_format); + } else if (fSentAssets) { + //Sell! + //Total price paid, need to use net calculation when we executed + sub.credit = mine ? myReceievedOutput.nValue : nNet; + std::string asset_qty_format = RavenUnits::formatWithCustomName(QString::fromStdString(sentType), sentAmount, 2).toUtf8().constData(); + sub.assetName = strprintf("RVN (%s %s)", TransactionView::tr("Sold").toUtf8().constData(), asset_qty_format); + } else if (fRecvAssets) { + //Buy! + //Total price paid, need to use net calculation when we executed + sub.credit = (mine ? -myProvidedInput.nValue : nNet); + std::string asset_qty_format = RavenUnits::formatWithCustomName(QString::fromStdString(recvType), recvAmount, 2).toUtf8().constData(); + sub.assetName = strprintf("RVN (%s %s)", TransactionView::tr("Bought").toUtf8().constData(), asset_qty_format); + } else { + LogPrintf("\tFell Through!\n"); + return false; //! + } + + txRecords.append(sub); + isSwap = true; + } + } + + return isSwap; +} + void TransactionRecord::updateStatus(const CWalletTx &wtx) { AssertLockHeld(cs_main); @@ -344,10 +491,6 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx) if (wtx.IsInMainChain()) { status.matures_in = wtx.GetBlocksToMaturity(); - - // Check if the block was requested by anyone - if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0) - status.status = TransactionStatus::MaturesWarning; } else { @@ -365,10 +508,6 @@ void TransactionRecord::updateStatus(const CWalletTx &wtx) { status.status = TransactionStatus::Conflicted; } - else if (GetAdjustedTime() - wtx.nTimeReceived > 2 * 60 && wtx.GetRequestCount() == 0) - { - status.status = TransactionStatus::Offline; - } else if (status.depth == 0) { status.status = TransactionStatus::Unconfirmed; diff --git a/src/qt/transactionrecord.h b/src/qt/transactionrecord.h index c78191d31f..ce0b3654b7 100644 --- a/src/qt/transactionrecord.h +++ b/src/qt/transactionrecord.h @@ -19,7 +19,7 @@ class TransactionStatus public: TransactionStatus(): countsForBalance(false), sortKey(""), - matures_in(0), status(Offline), depth(0), open_for(0), cur_num_blocks(-1) + matures_in(0), status(Unconfirmed), depth(0), open_for(0), cur_num_blocks(-1) { } enum Status { @@ -27,14 +27,12 @@ class TransactionStatus /// Normal (sent/received) transactions OpenUntilDate, /**< Transaction not yet final, waiting for date */ OpenUntilBlock, /**< Transaction not yet final, waiting for block */ - Offline, /**< Not sent to any other nodes **/ Unconfirmed, /**< Not yet mined into a block **/ Confirming, /**< Confirmed, but waiting for the recommended number of confirmations **/ Conflicted, /**< Conflicts with other transaction or mempool **/ Abandoned, /**< Abandoned from the wallet **/ /// Generated (mined) transactions Immature, /**< Mined but waiting for maturity */ - MaturesWarning, /**< Transaction will likely not mature because no nodes have confirmed */ NotAccepted /**< Mined but not accepted */ }; @@ -81,7 +79,9 @@ class TransactionRecord Issue, Reissue, TransferTo, - TransferFrom + TransferFrom, + Swap, + SwapExecute }; /** Number of confirmation recommended for accepting a transaction */ @@ -110,6 +110,7 @@ class TransactionRecord */ static bool showTransaction(const CWalletTx &wtx); static QList decomposeTransaction(const CWallet *wallet, const CWalletTx &wtx); + static bool isSwapTransaction(const CWallet *wallet, const CWalletTx &wtx, QList &txRecords, const CAmount& nCredit, const CAmount& nDebit, const CAmount& nNet); /** @name Immutable transaction attributes @{*/ diff --git a/src/qt/transactiontablemodel.cpp b/src/qt/transactiontablemodel.cpp index c87842a27b..44a4739a31 100644 --- a/src/qt/transactiontablemodel.cpp +++ b/src/qt/transactiontablemodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -315,9 +315,6 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons case TransactionStatus::OpenUntilDate: status = tr("Open until %1").arg(GUIUtil::dateTimeStr(wtx->status.open_for)); break; - case TransactionStatus::Offline: - status = tr("Offline"); - break; case TransactionStatus::Unconfirmed: status = tr("Unconfirmed"); break; @@ -336,9 +333,6 @@ QString TransactionTableModel::formatTxStatus(const TransactionRecord *wtx) cons case TransactionStatus::Immature: status = tr("Immature (%1 confirmations, will be available after %2)").arg(wtx->status.depth).arg(wtx->status.depth + wtx->status.matures_in); break; - case TransactionStatus::MaturesWarning: - status = tr("This block was not received by any other nodes and will probably not be accepted!"); - break; case TransactionStatus::NotAccepted: status = tr("Generated but not accepted"); break; @@ -397,6 +391,10 @@ QString TransactionTableModel::formatTxType(const TransactionRecord *wtx) const return tr("Assets Received"); case TransactionRecord::TransferTo: return tr("Assets Sent"); + case TransactionRecord::Swap: + return tr("Atomic Swap"); + case TransactionRecord::SwapExecute: + return tr("Executed Atomic Swap"); default: return QString(); } @@ -420,6 +418,9 @@ QVariant TransactionTableModel::txAddressDecoration(const TransactionRecord *wtx return QIcon(":/icons/tx_asset_input"); case TransactionRecord::TransferTo: return QIcon(":/icons/tx_asset_output"); + case TransactionRecord::Swap: + case TransactionRecord::SwapExecute: + return QIcon(":/icons/tx_atomic_swap"); default: return QIcon(":/icons/tx_inout"); } @@ -448,6 +449,9 @@ QString TransactionTableModel::formatTxToAddress(const TransactionRecord *wtx, b return lookupAddress(wtx->address, tooltip) + watchAddress; case TransactionRecord::SendToOther: return QString::fromStdString(wtx->address) + watchAddress; + case TransactionRecord::Swap: + case TransactionRecord::SwapExecute: + return QString::fromStdString(wtx->address) + watchAddress; case TransactionRecord::SendToSelf: default: return tr("(n/a)") + watchAddress; @@ -507,8 +511,6 @@ QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx) case TransactionStatus::OpenUntilBlock: case TransactionStatus::OpenUntilDate: return COLOR_TX_STATUS_OPENUNTILDATE; - case TransactionStatus::Offline: - return COLOR_TX_STATUS_OFFLINE; case TransactionStatus::Unconfirmed: return QIcon(":/icons/transaction_0"); case TransactionStatus::Abandoned: @@ -531,7 +533,6 @@ QVariant TransactionTableModel::txStatusDecoration(const TransactionRecord *wtx) int part = (wtx->status.depth * 4 / total) + 1; return QIcon(QString(":/icons/transaction_%1").arg(part)); } - case TransactionStatus::MaturesWarning: case TransactionStatus::NotAccepted: return QIcon(":/icons/transaction_0"); default: diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 9d2a962679..ce4b175dc9 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -43,7 +43,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *parent) : QWidget(parent), model(0), transactionProxyModel(0), - transactionView(0), abandonAction(0), bumpFeeAction(0), columnResizingFixer(0) + transactionView(0), abandonAction(0), bumpFeeAction(0) { // Build filter row setContentsMargins(0,0,0,0); @@ -253,13 +253,12 @@ void TransactionView::setModel(WalletModel *_model) transactionProxyModel->setSortRole(Qt::EditRole); - transactionView->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); transactionView->setModel(transactionProxyModel); transactionView->setAlternatingRowColors(true); transactionView->setSelectionBehavior(QAbstractItemView::SelectRows); transactionView->setSelectionMode(QAbstractItemView::ExtendedSelection); + transactionView->horizontalHeader()->setSortIndicator(TransactionTableModel::Date, Qt::DescendingOrder); transactionView->setSortingEnabled(true); - transactionView->sortByColumn(TransactionTableModel::Date, Qt::DescendingOrder); transactionView->verticalHeader()->hide(); transactionView->setColumnWidth(TransactionTableModel::Status, STATUS_COLUMN_WIDTH); @@ -268,8 +267,9 @@ void TransactionView::setModel(WalletModel *_model) transactionView->setColumnWidth(TransactionTableModel::Type, TYPE_COLUMN_WIDTH); transactionView->setColumnWidth(TransactionTableModel::Amount, AMOUNT_MINIMUM_COLUMN_WIDTH); transactionView->setColumnWidth(TransactionTableModel::AssetName, AMOUNT_MINIMUM_COLUMN_WIDTH); + transactionView->horizontalHeader()->setMinimumSectionSize(MINIMUM_COLUMN_WIDTH); + transactionView->horizontalHeader()->setStretchLastSection(true); - columnResizingFixer = new GUIUtil::TableViewLastColumnResizingFixer(transactionView, AMOUNT_MINIMUM_COLUMN_WIDTH, MINIMUM_COLUMN_WIDTH, this); if (_model->getOptionsModel()) { @@ -667,14 +667,6 @@ void TransactionView::focusTransaction(const QModelIndex &idx) transactionView->setFocus(); } -// We override the virtual resizeEvent of the QWidget to adjust tables column -// sizes as the tables width is proportional to the dialogs width. -void TransactionView::resizeEvent(QResizeEvent* event) -{ - QWidget::resizeEvent(event); - columnResizingFixer->stretchColumnWidth(TransactionTableModel::ToAddress); -} - // Need to override default Ctrl+C action for amount as default behaviour is just to copy DisplayRole text bool TransactionView::eventFilter(QObject *obj, QEvent *event) { diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index 627009a267..2925cb9f6a 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -86,10 +86,6 @@ class TransactionView : public QWidget QWidget *createDateRangeWidget(); - GUIUtil::TableViewLastColumnResizingFixer *columnResizingFixer; - - virtual void resizeEvent(QResizeEvent* event); - bool eventFilter(QObject *obj, QEvent *event); private Q_SLOTS: diff --git a/src/qt/utilitydialog.h b/src/qt/utilitydialog.h index c8f42c0b42..62dc931beb 100644 --- a/src/qt/utilitydialog.h +++ b/src/qt/utilitydialog.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/walletframe.cpp b/src/qt/walletframe.cpp index df98376908..6edafacf49 100644 --- a/src/qt/walletframe.cpp +++ b/src/qt/walletframe.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/walletframe.h b/src/qt/walletframe.h index 876751aa9e..dbf1d113ce 100644 --- a/src/qt/walletframe.h +++ b/src/qt/walletframe.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index 41e72b4724..f7c9c27ae4 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -871,9 +871,10 @@ QString WalletModel::getMyWords() const LOCK2(cs_main, wallet->cs_wallet); // Check for bip44 - if (!wallet->GetHDChain().IsBip44()) + if (!wallet->GetHDChain().IsBip44()) { return tr("Error: Wallet doesn't have 12 words. Only new wallets generated by the mnemonic phrase will have 12 words"); - + wallet->Lock(); + } // Check locked if (wallet->IsLocked()) return tr("Error: Wallet locked"); diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index 2dec030879..2a290e5c63 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp index 3348f1bc32..bd2456070b 100644 --- a/src/qt/walletview.cpp +++ b/src/qt/walletview.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/qt/walletview.h b/src/qt/walletview.h index 17d6c36631..eea5f4a927 100644 --- a/src/qt/walletview.h +++ b/src/qt/walletview.h @@ -1,5 +1,5 @@ // Copyright (c) 2011-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/random.h b/src/random.h index 9e093a4e24..acece9c66d 100644 --- a/src/random.h +++ b/src/random.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -124,6 +124,29 @@ class FastRandomContext { bool randbool() { return randbits(1); } }; +/** More efficient than using std::shuffle on a FastRandomContext. + * + * This is more efficient as std::shuffle will consume entropy in groups of + * 64 bits at the time and throw away most. + * + * This also works around a bug in libstdc++ std::shuffle that may cause + * type::operator=(type&&) to be invoked on itself, which the library's + * debug mode detects and panics on. This is a known issue, see + * https://stackoverflow.com/questions/22915325/avoiding-self-assignment-in-stdshuffle + */ +template +void Shuffle(I first, I last, R&& rng) +{ + while (first != last) { + size_t j = rng.randrange(last - first); + if (j) { + using std::swap; + swap(*first, *(first + j)); + } + ++first; + } +} + /* Number of random bytes returned by GetOSRand. * When changing this constant make sure to change all call sites, and make * sure that the underlying OS APIs for all platforms support the number. diff --git a/src/ravend.cpp b/src/ravend.cpp index de854896f6..2bbad9982b 100644 --- a/src/ravend.cpp +++ b/src/ravend.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/rpc/assets.cpp b/src/rpc/assets.cpp index 3a133a0b51..3e025af8ef 100644 --- a/src/rpc/assets.cpp +++ b/src/rpc/assets.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 53dce9c5ba..ee02c3cfeb 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -1504,6 +1504,7 @@ UniValue getblockchaininfo(const JSONRPCRequest& request) BIP9SoftForkDescPushBack(bip9_softforks, "transfer_script", consensusParams, Consensus::DEPLOYMENT_TRANSFER_SCRIPT_SIZE); BIP9SoftForkDescPushBack(bip9_softforks, "enforce", consensusParams, Consensus::DEPLOYMENT_ENFORCE_VALUE); BIP9SoftForkDescPushBack(bip9_softforks, "coinbase", consensusParams, Consensus::DEPLOYMENT_COINBASE_ASSETS); + BIP9SoftForkDescPushBack(bip9_softforks, "p2sh_assets", consensusParams, Consensus::DEPLOYMENT_P2SH_ASSETS); obj.push_back(Pair("softforks", softforks)); obj.push_back(Pair("bip9_softforks", bip9_softforks)); diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index fc62dd9355..119471a06d 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 738b805d72..a9cc09d1c5 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index 5ce38013ac..f285bc485a 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -150,8 +150,9 @@ class DescribeAddressVisitor : public boost::static_visitor if (pwallet && pwallet->GetCScript(scriptID, subscript)) { std::vector addresses; txnouttype whichType; + txnouttype scriptType; int nRequired; - ExtractDestinations(subscript, whichType, addresses, nRequired); + ExtractDestinations(subscript, whichType, scriptType, addresses, nRequired); obj.push_back(Pair("script", GetTxnOutputType(whichType))); obj.push_back(Pair("hex", HexStr(subscript.begin(), subscript.end()))); UniValue a(UniValue::VARR); diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 986a326980..e0d672a22d 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2020 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -1955,7 +1955,7 @@ UniValue signrawtransaction(const JSONRPCRequest& request) // if redeemScript given and not using the local wallet (private keys // given), add redeemScript to the tempKeystore so it can be signed: - if (fGivenKeys && (scriptPubKey.IsPayToScriptHash() || scriptPubKey.IsPayToWitnessScriptHash())) { + if (fGivenKeys && (scriptPubKey.IsPayToScriptHash() || scriptPubKey.IsPayToWitnessScriptHash() || scriptPubKey.IsP2SHAssetScript())) { RPCTypeCheckObj(prevOut, { {"txid", UniValueType(UniValue::VSTR)}, diff --git a/src/scheduler.cpp b/src/scheduler.cpp index 3c710588dc..faee5e9563 100644 --- a/src/scheduler.cpp +++ b/src/scheduler.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2015-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2020 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index e1620996d3..f4b26cdb72 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -297,6 +297,7 @@ bool EvalScript(std::vector > &stack, const CScript & CScript::const_iterator pc = script.begin(); CScript::const_iterator pend = script.end(); + CScript::const_iterator pbegincodehash = script.begin(); opcodetype opcode; valtype vchPushValue; @@ -1602,7 +1603,7 @@ bool VerifyScript(const CScript &scriptSig, const CScript &scriptPubKey, const C } // Additional validation for spend-to-script-hash transactions: - if ((flags & SCRIPT_VERIFY_P2SH) && scriptPubKey.IsPayToScriptHash()) + if ((flags & SCRIPT_VERIFY_P2SH) && (scriptPubKey.IsPayToScriptHash() || scriptPubKey.IsP2SHAssetScript())) { // scriptSig must be literals-only or validation fails if (!scriptSig.IsPushOnly()) diff --git a/src/script/ismine.cpp b/src/script/ismine.cpp index c6c0c15b09..71e367d757 100644 --- a/src/script/ismine.cpp +++ b/src/script/ismine.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -53,7 +53,8 @@ isminetype IsMine(const CKeyStore &keystore, const CScript& scriptPubKey, bool& std::vector vSolutions; txnouttype whichType; - if (!Solver(scriptPubKey, whichType, vSolutions)) { + txnouttype scriptType; + if (!Solver(scriptPubKey, whichType, scriptType, vSolutions)) { if (keystore.HaveWatchOnly(scriptPubKey)) return ISMINE_WATCH_UNSOLVABLE; return ISMINE_NO; @@ -145,52 +146,32 @@ isminetype IsMine(const CKeyStore &keystore, const CScript& scriptPubKey, bool& break; } /** RVN START */ - case TX_NEW_ASSET: { + case TX_NEW_ASSET: + case TX_TRANSFER_ASSET: + case TX_REISSUE_ASSET: { if (!AreAssetsDeployed()) return ISMINE_NO; - keyID = CKeyID(uint160(vSolutions[0])); - if (sigversion != SIGVERSION_BASE) { - CPubKey pubkey; - if (keystore.GetPubKey(keyID, pubkey) && !pubkey.IsCompressed()) { - isInvalid = true; - return ISMINE_NO; - } - } - if (keystore.HaveKey(keyID)) - return ISMINE_SPENDABLE; - break; - - } - case TX_TRANSFER_ASSET: { - if (!AreAssetsDeployed()) - return ISMINE_NO; - keyID = CKeyID(uint160(vSolutions[0])); - if (sigversion != SIGVERSION_BASE) { - CPubKey pubkey; - if (keystore.GetPubKey(keyID, pubkey) && !pubkey.IsCompressed()) { - isInvalid = true; - return ISMINE_NO; + if (scriptType == TX_PUBKEYHASH) { + keyID = CKeyID(uint160(vSolutions[0])); + if (sigversion != SIGVERSION_BASE) { + CPubKey pubkey; + if (keystore.GetPubKey(keyID, pubkey) && !pubkey.IsCompressed()) { + isInvalid = true; + return ISMINE_NO; + } } - } - if (keystore.HaveKey(keyID)) - return ISMINE_SPENDABLE; - break; - } - - case TX_REISSUE_ASSET: { - if (!AreAssetsDeployed()) - return ISMINE_NO; - keyID = CKeyID(uint160(vSolutions[0])); - if (sigversion != SIGVERSION_BASE) { - CPubKey pubkey; - if (keystore.GetPubKey(keyID, pubkey) && !pubkey.IsCompressed()) { - isInvalid = true; - return ISMINE_NO; + if (keystore.HaveKey(keyID)) + return ISMINE_SPENDABLE; + } else if (scriptType == TX_SCRIPTHASH) { + CScriptID scriptID = CScriptID(uint160(vSolutions[0])); + CScript subscript; + if (keystore.GetCScript(scriptID, subscript)) { + isminetype ret = IsMine(keystore, subscript, isInvalid); + if (ret == ISMINE_SPENDABLE || ret == ISMINE_WATCH_SOLVABLE || (ret == ISMINE_NO && isInvalid)) + return ret; } } - if (keystore.HaveKey(keyID)) - return ISMINE_SPENDABLE; break; } /** RVN END*/ diff --git a/src/script/script.cpp b/src/script/script.cpp index 2e154834ff..77388c0419 100644 --- a/src/script/script.cpp +++ b/src/script/script.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "streams.h" @@ -231,56 +231,88 @@ bool CScript::IsPayToScriptHash() const bool CScript::IsAssetScript() const { int nType = 0; + int nScriptType = 0; bool isOwner = false; int start = 0; - return IsAssetScript(nType, isOwner, start); + return IsAssetScript(nType, nScriptType, isOwner, start); } -bool CScript::IsAssetScript(int& nType, bool& isOwner) const +bool CScript::IsAssetScript(int& nType, bool& fIsOwner) const { int start = 0; - return IsAssetScript(nType, isOwner, start); + int nScriptType = 0; + return IsAssetScript(nType, nScriptType, fIsOwner, start); } -bool CScript::IsAssetScript(int& nType, bool& fIsOwner, int& nStartingIndex) const +bool CScript::IsAssetScript(int& nType, int& nScriptType, bool& isOwner) const +{ + int start = 0; + return IsAssetScript(nType, nScriptType, isOwner, start); +} + +bool CScript::IsAssetScript(int& nType, int& nScriptType, bool& fIsOwner, int& nStartingIndex, bool nP2Active) const { if (this->size() > 31) { - if ((*this)[25] == OP_RVN_ASSET) { // OP_RVN_ASSET is always in the 25 index of the script if it exists - int index = -1; - if ((*this)[27] == RVN_R) { // Check to see if RVN starts at 27 ( this->size() < 105) - if ((*this)[28] == RVN_V) - if ((*this)[29] == RVN_N) - index = 30; - } else { - if ((*this)[28] == RVN_R) // Check to see if RVN starts at 28 ( this->size() >= 105) - if ((*this)[29] == RVN_V) - if ((*this)[30] == RVN_N) - index = 31; - } + // Extra-fast test for pay-to-script-hash CScripts: + if ( (*this)[0] == OP_HASH160 + && (*this)[1] == 0x14 + && (*this)[22] == OP_EQUAL + && nP2Active == true + ) { + + // If this is of the P2SH type, we need to return this type so we know how to interact and solve it + nScriptType = TX_SCRIPTHASH; + } else { + // If this is of the P2PKH type, we need to return this type so we know how to interact and solve it + nScriptType = TX_PUBKEYHASH; + } + + // Initialize the index + int index = -1; - if (index > 0) { - nStartingIndex = index + 1; // Set the index where the asset data begins. Use to serialize the asset data into asset objects - if ((*this)[index] == RVN_T) { // Transfer first anticipating more transfers than other assets operations - nType = TX_TRANSFER_ASSET; - return true; - } else if ((*this)[index] == RVN_Q && this->size() > 39) { - nType = TX_NEW_ASSET; - fIsOwner = false; - return true; - } else if ((*this)[index] == RVN_O) { - nType = TX_NEW_ASSET; - fIsOwner = true; - return true; - } else if ((*this)[index] == RVN_R) { - nType = TX_REISSUE_ASSET; - return true; - } + // OP_RVN_ASSET is always in the 23 index of the P2SH script if it exists + if (nScriptType == TX_SCRIPTHASH && (*this)[23] == OP_RVN_ASSET) { + // We have a potential asset interacting with a P2SH + index = SearchForRVN(*this, 25); + + } + else if ((*this)[25] == OP_RVN_ASSET) { // OP_RVN_ASSET is always in the 25 index of the P2PKH script if it exists + // We have a potential asset interacting with a P2PKH + index = SearchForRVN(*this, 27); + } + + if (index > 0) { + nStartingIndex = index + 1; // Set the index where the asset data begins. Use to serialize the asset data into asset objects + if ((*this)[index] == RVN_T) { // Transfer first anticipating more transfers than other assets operations + nType = TX_TRANSFER_ASSET; + return true; + } else if ((*this)[index] == RVN_Q && this->size() > 39) { + nType = TX_NEW_ASSET; + fIsOwner = false; + return true; + } else if ((*this)[index] == RVN_O) { + nType = TX_NEW_ASSET; + fIsOwner = true; + return true; + } else if ((*this)[index] == RVN_R) { + nType = TX_REISSUE_ASSET; + return true; } } } + return false; } +bool CScript::IsP2SHAssetScript() const +{ + int nType = 0; + int nScriptType = 0; + bool isOwner = false; + IsAssetScript(nType, nScriptType, isOwner); + return nScriptType == TX_SCRIPTHASH; +} + bool CScript::IsNewAsset() const { @@ -465,8 +497,9 @@ bool GetAssetAmountFromScript(const CScript& script, CAmount& nAmount) std::string assetName = ""; int nType = 0; + int nScriptType = 0; bool fIsOwner = false; - if (!script.IsAssetScript(nType, fIsOwner)) { + if (!script.IsAssetScript(nType, nScriptType, fIsOwner)) { return false; } @@ -496,8 +529,9 @@ bool GetAssetAmountFromScript(const CScript& script, CAmount& nAmount) bool ScriptNewAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; - bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + int nScriptType = 0; + bool fIsOwner = false; + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_NEW_ASSET && !fIsOwner; } @@ -507,8 +541,9 @@ bool ScriptNewAsset(const CScript& scriptPubKey, int& nStartingIndex) bool ScriptTransferAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; - bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + int nScriptType = 0; + bool fIsOwner = false; + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_TRANSFER_ASSET; } @@ -518,8 +553,9 @@ bool ScriptTransferAsset(const CScript& scriptPubKey, int& nStartingIndex) bool ScriptReissueAsset(const CScript& scriptPubKey, int& nStartingIndex) { int nType = 0; - bool fIsOwner =false; - if (scriptPubKey.IsAssetScript(nType, fIsOwner, nStartingIndex)) { + int nScriptType = 0; + bool fIsOwner = false; + if (scriptPubKey.IsAssetScript(nType, nScriptType, fIsOwner, nStartingIndex)) { return nType == TX_REISSUE_ASSET; } @@ -592,6 +628,27 @@ bool AmountFromReissueScript(const CScript& scriptPubKey, CAmount& nAmount) nAmount = asset.nAmount; return true; } + +int SearchForRVN(const CScript& script, const int startingValue) { + + // Initialize the start value + int index = -1; + + // Search for RVN at the two places in the script it can be depending on the size of the script + if (script[startingValue] == RVN_R) { // Check to see if RVN starts at the starting value ( this->size() < 105) + if (script[startingValue + 1] == RVN_V) + if (script[startingValue + 2] == RVN_N) + index = startingValue + 3; + } else { + if (script[startingValue + 1] == RVN_R) // Check to see if RVN starts at starting value + 1 ( this->size() >= 105) + if (script[startingValue + 2] == RVN_V) + if (script[startingValue + 3] == RVN_N) + index = startingValue + 4; + } + + return index; + +} //!--------------------------------------------------------------------------------------------------------------------------!// diff --git a/src/script/script.h b/src/script/script.h index 744b993645..1014ffa2db 100644 --- a/src/script/script.h +++ b/src/script/script.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -664,9 +664,11 @@ class CScript : public CScriptBase /** RVN START */ enum class txnouttype; - bool IsAssetScript(int& nType, bool& fIsOwner, int& nStartingIndex) const; - bool IsAssetScript(int& nType, bool& fIsOwner) const; bool IsAssetScript() const; + bool IsAssetScript(int& nType, bool& fIsOwner) const; + bool IsAssetScript(int& nType, int& nScriptType, bool& fIsOwner) const; + bool IsAssetScript(int& nTXType, int& nScriptType, bool& fIsOwner, int& nStartingIndex, bool nP2Active = true) const; + bool IsP2SHAssetScript() const; bool IsNewAsset() const; bool IsOwnerAsset() const; bool IsReissueAsset() const; @@ -739,4 +741,6 @@ bool ScriptNewAsset(const CScript& scriptPubKey, int& nStartingIndex); bool ScriptTransferAsset(const CScript& scriptPubKey, int& nStartingIndex); bool ScriptReissueAsset(const CScript& scriptPubKey, int& nStartingIndex); +int SearchForRVN(const CScript& script, const int startingValue); + #endif // RAVEN_SCRIPT_SCRIPT_H diff --git a/src/script/sign.cpp b/src/script/sign.cpp index 7a76302993..9f79d0a479 100644 --- a/src/script/sign.cpp +++ b/src/script/sign.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -65,14 +65,14 @@ static bool SignN(const std::vector& multisigdata, const BaseSignatureC * Returns false if scriptPubKey could not be completely satisfied. */ static bool SignStep(const BaseSignatureCreator& creator, const CScript& scriptPubKey, - std::vector& ret, txnouttype& whichTypeRet, SigVersion sigversion) + std::vector& ret, txnouttype& whichTypeRet, txnouttype& whichScriptTypeRet, SigVersion sigversion) { CScript scriptRet; uint160 h160; ret.clear(); std::vector vSolutions; - if (!Solver(scriptPubKey, whichTypeRet, vSolutions)) + if (!Solver(scriptPubKey, whichTypeRet, whichScriptTypeRet, vSolutions)) return false; CKeyID keyID; @@ -85,39 +85,27 @@ static bool SignStep(const BaseSignatureCreator& creator, const CScript& scriptP return false; /** RVN START */ case TX_NEW_ASSET: - keyID = CKeyID(uint160(vSolutions[0])); - if (!Sign1(keyID, creator, scriptPubKey, ret, sigversion)) - return false; - else - { - CPubKey vch; - creator.KeyStore().GetPubKey(keyID, vch); - ret.push_back(ToByteVector(vch)); - } - return true; case TX_TRANSFER_ASSET: - keyID = CKeyID(uint160(vSolutions[0])); - if (!Sign1(keyID, creator, scriptPubKey, ret, sigversion)) + case TX_REISSUE_ASSET: { + if (whichScriptTypeRet == TX_PUBKEYHASH) { + keyID = CKeyID(uint160(vSolutions[0])); + if (!Sign1(keyID, creator, scriptPubKey, ret, sigversion)) + return false; + else { + CPubKey vch; + creator.KeyStore().GetPubKey(keyID, vch); + ret.push_back(ToByteVector(vch)); + } + return true; + } else if (whichScriptTypeRet == TX_SCRIPTHASH) { + if (creator.KeyStore().GetCScript(uint160(vSolutions[0]), scriptRet)) { + ret.push_back(std::vector(scriptRet.begin(), scriptRet.end())); + return true; + } return false; - else - { - CPubKey vch; - creator.KeyStore().GetPubKey(keyID, vch); - ret.push_back(ToByteVector(vch)); } - return true; + } - case TX_REISSUE_ASSET: - keyID = CKeyID(uint160(vSolutions[0])); - if (!Sign1(keyID, creator, scriptPubKey, ret, sigversion)) - return false; - else - { - CPubKey vch; - creator.KeyStore().GetPubKey(keyID, vch); - ret.push_back(ToByteVector(vch)); - } - return true; /** RVN END */ case TX_PUBKEY: keyID = CPubKey(vSolutions[0]).GetID(); @@ -179,20 +167,39 @@ static CScript PushAll(const std::vector& values) bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& fromPubKey, SignatureData& sigdata) { CScript script = fromPubKey; + CScript modifiedScript = fromPubKey; + + // If this is a P2SH Asset Script, grab the P2SH section of the script + if(fromPubKey.IsP2SHAssetScript()) { + modifiedScript = CScript(fromPubKey.begin(), fromPubKey.begin() + 23); + script = modifiedScript; + } + std::vector result; txnouttype whichType; - bool solved = SignStep(creator, script, result, whichType, SIGVERSION_BASE); + txnouttype whichScriptType; + bool solved = SignStep(creator, script, result, whichType, whichScriptType, SIGVERSION_BASE); bool P2SH = false; CScript subscript; sigdata.scriptWitness.stack.clear(); - if (solved && whichType == TX_SCRIPTHASH) + if (solved && whichType == TX_SCRIPTHASH ) { // Solver returns the subscript that needs to be evaluated; // the final scriptSig is the signatures from that // and then the serialized subscript: script = subscript = CScript(result[0].begin(), result[0].end()); - solved = solved && SignStep(creator, script, result, whichType, SIGVERSION_BASE) && whichType != TX_SCRIPTHASH; + solved = solved && SignStep(creator, script, result, whichType, whichScriptType, SIGVERSION_BASE) && whichType != TX_SCRIPTHASH; + P2SH = true; + } + + if (solved && whichScriptType == TX_SCRIPTHASH ) + { + // Solver returns the subscript that needs to be evaluated; + // the final scriptSig is the signatures from that + // and then the serialized subscript: + script = subscript = CScript(result[0].begin(), result[0].end()); + solved = solved && SignStep(creator, script, result, whichType, whichScriptType, SIGVERSION_BASE) && whichType != TX_SCRIPTHASH; P2SH = true; } @@ -201,7 +208,7 @@ bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& fromPu CScript witnessscript; witnessscript << OP_DUP << OP_HASH160 << ToByteVector(result[0]) << OP_EQUALVERIFY << OP_CHECKSIG; txnouttype subType; - solved = solved && SignStep(creator, witnessscript, result, subType, SIGVERSION_WITNESS_V0); + solved = solved && SignStep(creator, witnessscript, result, subType, whichScriptType, SIGVERSION_WITNESS_V0); sigdata.scriptWitness.stack = result; result.clear(); } @@ -209,7 +216,7 @@ bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& fromPu { CScript witnessscript(result[0].begin(), result[0].end()); txnouttype subType; - solved = solved && SignStep(creator, witnessscript, result, subType, SIGVERSION_WITNESS_V0) && subType != TX_SCRIPTHASH && subType != TX_WITNESS_V0_SCRIPTHASH && subType != TX_WITNESS_V0_KEYHASH; + solved = solved && SignStep(creator, witnessscript, result, subType, whichScriptType, SIGVERSION_WITNESS_V0) && subType != TX_SCRIPTHASH && subType != TX_WITNESS_V0_SCRIPTHASH && subType != TX_WITNESS_V0_KEYHASH; result.push_back(std::vector(witnessscript.begin(), witnessscript.end())); sigdata.scriptWitness.stack = result; result.clear(); @@ -221,7 +228,7 @@ bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& fromPu sigdata.scriptSig = PushAll(result); // Test solution - return solved && VerifyScript(sigdata.scriptSig, fromPubKey, &sigdata.scriptWitness, STANDARD_SCRIPT_VERIFY_FLAGS, creator.Checker()); + return solved && VerifyScript(sigdata.scriptSig, modifiedScript, &sigdata.scriptWitness, STANDARD_SCRIPT_VERIFY_FLAGS, creator.Checker()); } SignatureData DataFromTransaction(const CMutableTransaction& tx, unsigned int nIn) @@ -380,8 +387,9 @@ static Stacks CombineSignatures(const CScript& scriptPubKey, const BaseSignature CScript pubKey2(spk.begin(), spk.end()); txnouttype txType2; + txnouttype scriptType2; std::vector > vSolutions2; - Solver(pubKey2, txType2, vSolutions2); + Solver(pubKey2, txType2, scriptType2, vSolutions2); sigs1.script.pop_back(); sigs2.script.pop_back(); Stacks result = CombineSignatures(pubKey2, checker, txType2, vSolutions2, sigs1, sigs2, sigversion); @@ -400,8 +408,9 @@ static Stacks CombineSignatures(const CScript& scriptPubKey, const BaseSignature // Recur to combine: CScript pubKey2(sigs1.witness.back().begin(), sigs1.witness.back().end()); txnouttype txType2; + txnouttype scriptType2; std::vector vSolutions2; - Solver(pubKey2, txType2, vSolutions2); + Solver(pubKey2, txType2, scriptType2, vSolutions2); sigs1.witness.pop_back(); sigs1.script = sigs1.witness; sigs1.witness.clear(); @@ -439,10 +448,19 @@ SignatureData CombineSignatures(const CScript& scriptPubKey, const BaseSignature const SignatureData& scriptSig1, const SignatureData& scriptSig2) { txnouttype txType; + txnouttype scriptType; std::vector > vSolutions; - Solver(scriptPubKey, txType, vSolutions); - return CombineSignatures(scriptPubKey, checker, txType, vSolutions, Stacks(scriptSig1), Stacks(scriptSig2), SIGVERSION_BASE).Output(); + CScript modifiedScript = scriptPubKey; + + // If this is a P2SH Asset Script, grab the P2SH section of the script + if(scriptPubKey.IsP2SHAssetScript()) { + modifiedScript = CScript(scriptPubKey.begin(), scriptPubKey.begin() + 23); + } + + Solver(modifiedScript, txType, scriptType, vSolutions); + + return CombineSignatures(modifiedScript, checker, txType, vSolutions, Stacks(scriptSig1), Stacks(scriptSig2), SIGVERSION_BASE).Output(); } namespace { diff --git a/src/script/standard.cpp b/src/script/standard.cpp index fd2a15a194..9a1b6c0533 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -44,7 +44,7 @@ const char* GetTxnOutputType(txnouttype t) return nullptr; } -bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector >& vSolutionsRet) +bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, txnouttype& scriptTypeRet, std::vector >& vSolutionsRet) { // Templates static std::multimap mTemplates; @@ -73,12 +73,22 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector hashBytes(scriptPubKey.begin()+3, scriptPubKey.begin()+23); - vSolutionsRet.push_back(hashBytes); - return true; + scriptTypeRet = (txnouttype)nScriptType; + + if (scriptTypeRet == TX_SCRIPTHASH) { + std::vector hashBytes(scriptPubKey.begin()+2, scriptPubKey.begin()+22); + vSolutionsRet.push_back(hashBytes); + return true; + } else if (scriptTypeRet == TX_PUBKEYHASH) { + std::vector hashBytes(scriptPubKey.begin()+3, scriptPubKey.begin()+23); + vSolutionsRet.push_back(hashBytes); + return true; + } + return false; } /** RVN END */ @@ -149,6 +159,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector n || vSolutionsRet.size()-2 != n) return false; } + return true; } if (!script1.GetOp(pc1, opcode1, vch1)) @@ -211,7 +222,8 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet) { std::vector vSolutions; txnouttype whichType; - if (!Solver(scriptPubKey, whichType, vSolutions)) { + txnouttype scriptType; + if (!Solver(scriptPubKey, whichType, scriptType, vSolutions)) { return false; } @@ -235,7 +247,11 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet) return true; /** RVN START */ } else if (whichType == TX_NEW_ASSET || whichType == TX_REISSUE_ASSET || whichType == TX_TRANSFER_ASSET) { - addressRet = CKeyID(uint160(vSolutions[0])); + if (scriptType == TX_SCRIPTHASH) { + addressRet = CScriptID(uint160(vSolutions[0])); + } else { + addressRet = CKeyID(uint160(vSolutions[0])); + } return true; } else if (whichType == TX_RESTRICTED_ASSET_DATA) { if (vSolutions.size()) { @@ -248,12 +264,13 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet) return false; } -bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector& addressRet, int& nRequiredRet) +bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, txnouttype& scriptType, std::vector& addressRet, int& nRequiredRet) { addressRet.clear(); typeRet = TX_NONSTANDARD; + scriptType = TX_NONSTANDARD; std::vector vSolutions; - if (!Solver(scriptPubKey, typeRet, vSolutions)) + if (!Solver(scriptPubKey, typeRet, scriptType, vSolutions)) return false; if (typeRet == TX_NULL_DATA) { // This is data, not addresses @@ -381,8 +398,9 @@ CScript GetScriptForWitness(const CScript& redeemscript) CScript ret; txnouttype typ; + txnouttype scriptTyp; std::vector > vSolutions; - if (Solver(redeemscript, typ, vSolutions)) { + if (Solver(redeemscript, typ, scriptTyp, vSolutions)) { if (typ == TX_PUBKEY) { unsigned char h160[20]; CHash160().Write(&vSolutions[0][0], vSolutions[0].size()).Finalize(h160); diff --git a/src/script/standard.h b/src/script/standard.h index 21d8e872db..25a5654663 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -1,6 +1,6 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2016 The Bitcoin Core developers -// Copyright (c) 2017-2019 The Raven Core developers +// Copyright (c) 2017-2021 The Raven Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -105,7 +105,7 @@ const char* GetTxnOutputType(txnouttype t); * @param[out] vSolutionsRet Vector of parsed pubkeys and hashes * @return True if script matches standard template */ -bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, std::vector >& vSolutionsRet); +bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, txnouttype& scriptTypeRet, std::vector >& vSolutionsRet); /** * Parse a standard scriptPubKey for the destination address. Assigns result to @@ -123,7 +123,7 @@ bool ExtractDestination(const CScript& scriptPubKey, CTxDestination& addressRet) * Returns true if successful. Currently does not extract address from * pay-to-witness scripts. */ -bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, std::vector& addressRet, int& nRequiredRet); +bool ExtractDestinations(const CScript& scriptPubKey, txnouttype& typeRet, txnouttype& scriptType, std::vector& addressRet, int& nRequiredRet); /** * Generate a Raven scriptPubKey for the given CTxDestination. Returns a P2PKH diff --git a/src/support/lockedpool.cpp b/src/support/lockedpool.cpp index 5f9bb6d6f8..05d8724992 100644 --- a/src/support/lockedpool.cpp +++ b/src/support/lockedpool.cpp @@ -231,6 +231,11 @@ void *PosixLockedPageAllocator::AllocateLocked(size_t len, bool *lockingSuccess) addr = mmap(nullptr, len, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); if (addr) { *lockingSuccess = mlock(addr, len) == 0; +#if defined(MADV_DONTDUMP) // Linux + madvise(addr, len, MADV_DONTDUMP); +#elif defined(MADV_NOCORE) // FreeBSD + madvise(addr, len, MADV_NOCORE); +#endif } return addr; } diff --git a/src/test/assets/asset_p2sh_tests.cpp b/src/test/assets/asset_p2sh_tests.cpp new file mode 100644 index 0000000000..fc6bbaafb1 --- /dev/null +++ b/src/test/assets/asset_p2sh_tests.cpp @@ -0,0 +1,59 @@ +// Copyright (c) 2017-2021 The Raven Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include + +#include + +#include + +#include +#include